[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 1 | # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
mef | ff34b82 | 2016-01-11 15:28:08 | [diff] [blame] | 5 | import("//build/buildflag_header.gni") |
slan | 77bdc2e6 | 2015-09-21 17:56:26 | [diff] [blame] | 6 | import("//build/config/chromecast_build.gni") |
brettw | 4cab0f1 | 2015-09-14 21:40:01 | [diff] [blame] | 7 | import("//build/config/compiler/compiler.gni") |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 8 | import("//build/config/crypto.gni") |
| 9 | import("//build/config/features.gni") |
| 10 | import("//build/config/ui.gni") |
sdefresne | eb26586 | 2016-09-08 14:27:12 | [diff] [blame] | 11 | import("//net/features.gni") |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 12 | import("//testing/libfuzzer/fuzzer_test.gni") |
qsr | fb5251d1 | 2015-01-21 15:57:22 | [diff] [blame] | 13 | import("//testing/test.gni") |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 14 | import("//third_party/icu/config.gni") |
rtenneti | b6f1c0d | 2015-04-03 17:52:06 | [diff] [blame] | 15 | import("//third_party/protobuf/proto_library.gni") |
tfarina | e597851a | 2015-10-06 23:14:41 | [diff] [blame] | 16 | import("//tools/grit/grit_rule.gni") |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 17 | import("//url/features.gni") |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 18 | |
| 19 | if (!is_proto_quic) { |
| 20 | import("//v8/gni/v8.gni") |
| 21 | } |
[email protected] | 26046b5 | 2014-07-16 00:11:03 | [diff] [blame] | 22 | |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 23 | if (is_android) { |
| 24 | import("//build/config/android/config.gni") |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 25 | import("//build/config/android/rules.gni") |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 26 | } else if (is_mac) { |
| 27 | import("//build/config/mac/mac_sdk.gni") |
| 28 | } |
| 29 | |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 30 | # The way the cache uses mmap() is inefficient on some Android devices. If |
| 31 | # this flag is set, we hackily avoid using mmap() in the disk cache. We are |
| 32 | # pretty confident that mmap-ing the index would not hurt any existing x86 |
| 33 | # android devices, but we cannot be so sure about the variety of ARM devices. |
| 34 | # So enable it for x86 only for now. |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 35 | posix_avoid_mmap = is_android && current_cpu != "x86" |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 36 | |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 37 | use_v8_in_net = !is_ios && !is_proto_quic |
| 38 | enable_built_in_dns = !is_ios && !is_proto_quic |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 39 | |
Fabrice de Gans-Riberi | 9fba3aff | 2018-04-12 19:00:48 | [diff] [blame] | 40 | # Unix sockets are not supported on iOS or NaCl. |
| 41 | enable_unix_sockets = is_posix && !is_ios && !is_nacl |
Sergey Ulanov | 21dea15 | 2017-09-13 00:50:50 | [diff] [blame] | 42 | |
Sergey Volk | 3ee3537f | 2018-06-12 01:45:48 | [diff] [blame] | 43 | # x86/x64 cast_shell builds run on regular trybots and can use python runtime |
| 44 | # and remote test server. ARM cast_shell builds don't have python runtime. |
| 45 | is_arm_cast_shell_build = |
| 46 | is_chromecast && (current_cpu == "arm" || current_cpu == "arm64") |
Sergey Ulanov | 2a0b019 | 2017-08-31 23:09:40 | [diff] [blame] | 47 | |
Daniel Bratell | e0c1730 | 2018-09-27 08:52:45 | [diff] [blame] | 48 | # Python works only on Linux, MacOS and Windows so exclude the others, |
| 49 | # chromecast, android, fuchsia, ios. |
Sergey Volk | 3ee3537f | 2018-06-12 01:45:48 | [diff] [blame] | 50 | enable_python_utils = |
| 51 | !is_arm_cast_shell_build && !is_android && !is_fuchsia && !is_ios |
| 52 | |
Daniel Bratell | e0c1730 | 2018-09-27 08:52:45 | [diff] [blame] | 53 | # Platforms that cannot use python_utils (like Android but see full |
| 54 | # list above) will instead use a remote server, except for iOS which |
| 55 | # won't get either. |
| 56 | use_remote_test_server = !enable_python_utils && !is_ios |
Sergey Volk | 3ee3537f | 2018-06-12 01:45:48 | [diff] [blame] | 57 | |
| 58 | config("net_test_config") { |
| 59 | if (use_remote_test_server) { |
| 60 | defines = [ "USE_REMOTE_TEST_SERVER" ] |
| 61 | } |
| 62 | } |
Sergey Ulanov | ec1d3de | 2017-09-19 19:27:47 | [diff] [blame] | 63 | |
Scott Violet | 0caaaf43 | 2018-03-24 00:43:59 | [diff] [blame] | 64 | buildflag_header("buildflags") { |
| 65 | header = "net_buildflags.h" |
brettw | a1228ebb | 2016-10-28 03:51:34 | [diff] [blame] | 66 | flags = [ |
| 67 | "POSIX_AVOID_MMAP=$posix_avoid_mmap", |
| 68 | "DISABLE_FILE_SUPPORT=$disable_file_support", |
| 69 | "DISABLE_FTP_SUPPORT=$disable_ftp_support", |
brettw | 5224a18 | 2016-10-28 22:13:02 | [diff] [blame] | 70 | "ENABLE_MDNS=$enable_mdns", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 71 | "ENABLE_REPORTING=$enable_reporting", |
brettw | a1228ebb | 2016-10-28 03:51:34 | [diff] [blame] | 72 | "ENABLE_WEBSOCKETS=$enable_websockets", |
xunjieli | 815ad5b | 2017-07-18 15:51:35 | [diff] [blame] | 73 | "INCLUDE_TRANSPORT_SECURITY_STATE_PRELOAD_LIST=$include_transport_security_state_preload_list", |
Nico Weber | 0699ffbd | 2018-07-09 16:57:05 | [diff] [blame] | 74 | "USE_KERBEROS=$use_kerberos", |
Matt Mueller | dbc0aa7 | 2019-02-04 22:13:18 | [diff] [blame] | 75 | "TRIAL_COMPARISON_CERT_VERIFIER_SUPPORTED=$trial_comparison_cert_verifier_supported", |
brettw | a1228ebb | 2016-10-28 03:51:34 | [diff] [blame] | 76 | ] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 77 | } |
| 78 | |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 79 | config("net_internal_config") { |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 80 | defines = [ |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 81 | "DLOPEN_KERBEROS", |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 82 | "NET_IMPLEMENTATION", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 83 | ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 84 | |
Nico Weber | 0699ffbd | 2018-07-09 16:57:05 | [diff] [blame] | 85 | if (use_kerberos && is_android) { |
| 86 | include_dirs = [ "/usr/include/kerberosV" ] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | if (enable_built_in_dns) { |
| 90 | defines += [ "ENABLE_BUILT_IN_DNS" ] |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 91 | } |
| 92 | } |
| 93 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 94 | net_configs = [ |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 95 | ":net_internal_config", |
| 96 | "//build/config:precompiled_headers", |
| 97 | |
rsesek | 99679aa | 2016-06-28 21:24:17 | [diff] [blame] | 98 | "//build/config/compiler:wexit_time_destructors", |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 99 | ] |
| 100 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 101 | if (is_linux) { |
| 102 | net_configs += [ "//build/config/linux:libresolv" ] |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 103 | } |
| 104 | |
xunjieli | 0b7f5b6 | 2016-12-06 20:43:48 | [diff] [blame] | 105 | source_set("constants") { |
| 106 | sources = [ |
xunjieli | 0b7f5b6 | 2016-12-06 20:43:48 | [diff] [blame] | 107 | "base/trace_constants.h", |
| 108 | ] |
| 109 | deps = [ |
| 110 | "//base", |
| 111 | ] |
| 112 | } |
| 113 | |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 114 | component("net") { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 115 | sources = [ |
| 116 | "base/address_family.cc", |
| 117 | "base/address_family.h", |
| 118 | "base/address_list.cc", |
| 119 | "base/address_list.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 120 | "base/auth.cc", |
| 121 | "base/auth.h", |
Matt Menke | dadd6c7 | 2018-01-30 23:07:25 | [diff] [blame] | 122 | "base/completion_once_callback.h", |
Bence Béky | 61f756c | 2018-04-25 14:17:53 | [diff] [blame] | 123 | "base/completion_repeating_callback.h", |
Charles 'Buck' Krasic | ed43ded | 2018-03-23 18:48:12 | [diff] [blame] | 124 | "base/datagram_buffer.cc", |
| 125 | "base/datagram_buffer.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 126 | "base/escape.cc", |
| 127 | "base/escape.h", |
Mythri Alle | 030e8f89 | 2018-10-09 14:58:17 | [diff] [blame] | 128 | "base/features.cc", |
| 129 | "base/features.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 130 | "base/hash_value.cc", |
| 131 | "base/hash_value.h", |
| 132 | "base/host_port_pair.cc", |
| 133 | "base/host_port_pair.h", |
fayang | baec8ff5 | 2017-01-28 03:26:12 | [diff] [blame] | 134 | "base/interval.h", |
| 135 | "base/interval_set.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 136 | "base/io_buffer.cc", |
| 137 | "base/io_buffer.h", |
| 138 | "base/ip_address.cc", |
| 139 | "base/ip_address.h", |
| 140 | "base/ip_endpoint.cc", |
| 141 | "base/ip_endpoint.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 142 | "base/load_timing_info.cc", |
| 143 | "base/load_timing_info.h", |
| 144 | "base/lookup_string_in_fixed_set.cc", |
| 145 | "base/lookup_string_in_fixed_set.h", |
| 146 | "base/net_error_details.h", |
| 147 | "base/net_error_list.h", |
| 148 | "base/net_errors.cc", |
| 149 | "base/net_errors.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 150 | "base/net_module.cc", |
| 151 | "base/net_module.h", |
| 152 | "base/net_string_util.h", |
| 153 | "base/network_interfaces.cc", |
| 154 | "base/network_interfaces.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 155 | "base/parse_number.cc", |
| 156 | "base/parse_number.h", |
| 157 | "base/port_util.cc", |
| 158 | "base/port_util.h", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 159 | "base/privacy_mode.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 160 | "base/rand_callback.h", |
| 161 | "base/registry_controlled_domains/registry_controlled_domain.cc", |
| 162 | "base/registry_controlled_domains/registry_controlled_domain.h", |
| 163 | "base/sockaddr_storage.cc", |
| 164 | "base/sockaddr_storage.h", |
| 165 | "base/sys_addrinfo.h", |
| 166 | "base/url_util.cc", |
| 167 | "base/url_util.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 168 | "cert/asn1_util.cc", |
| 169 | "cert/asn1_util.h", |
| 170 | "cert/cert_database.cc", |
| 171 | "cert/cert_database.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 172 | "cert/cert_status_flags.cc", |
| 173 | "cert/cert_status_flags.h", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 174 | "cert/cert_status_flags_list.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 175 | "cert/cert_verifier.cc", |
| 176 | "cert/cert_verifier.h", |
| 177 | "cert/cert_verify_result.cc", |
| 178 | "cert/cert_verify_result.h", |
| 179 | "cert/client_cert_verifier.h", |
| 180 | "cert/crl_set.cc", |
| 181 | "cert/crl_set.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 182 | "cert/ct_policy_enforcer.cc", |
| 183 | "cert/ct_policy_enforcer.h", |
| 184 | "cert/ct_policy_status.h", |
| 185 | "cert/ct_verifier.h", |
| 186 | "cert/ct_verify_result.cc", |
| 187 | "cert/ct_verify_result.h", |
| 188 | "cert/do_nothing_ct_verifier.cc", |
| 189 | "cert/do_nothing_ct_verifier.h", |
| 190 | "cert/internal/cert_error_id.cc", |
| 191 | "cert/internal/cert_error_id.h", |
| 192 | "cert/internal/cert_error_params.cc", |
| 193 | "cert/internal/cert_error_params.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 194 | "cert/internal/cert_errors.cc", |
| 195 | "cert/internal/cert_errors.h", |
| 196 | "cert/internal/cert_issuer_source.h", |
| 197 | "cert/internal/cert_issuer_source_aia.cc", |
| 198 | "cert/internal/cert_issuer_source_aia.h", |
| 199 | "cert/internal/cert_issuer_source_static.cc", |
| 200 | "cert/internal/cert_issuer_source_static.h", |
| 201 | "cert/internal/certificate_policies.cc", |
| 202 | "cert/internal/certificate_policies.h", |
Eric Roman | caa0a60 | 2017-07-28 21:17:11 | [diff] [blame] | 203 | "cert/internal/common_cert_errors.cc", |
| 204 | "cert/internal/common_cert_errors.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 205 | "cert/internal/extended_key_usage.cc", |
| 206 | "cert/internal/extended_key_usage.h", |
Matt Mueller | 9e3ad303 | 2017-09-14 19:29:31 | [diff] [blame] | 207 | "cert/internal/general_names.cc", |
| 208 | "cert/internal/general_names.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 209 | "cert/internal/name_constraints.cc", |
| 210 | "cert/internal/name_constraints.h", |
Eric Roman | a2f6f55d | 2017-09-07 23:34:57 | [diff] [blame] | 211 | "cert/internal/ocsp.cc", |
| 212 | "cert/internal/ocsp.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 213 | "cert/internal/parse_certificate.cc", |
| 214 | "cert/internal/parse_certificate.h", |
| 215 | "cert/internal/parse_name.cc", |
| 216 | "cert/internal/parse_name.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 217 | "cert/internal/parsed_certificate.cc", |
| 218 | "cert/internal/parsed_certificate.h", |
| 219 | "cert/internal/path_builder.cc", |
| 220 | "cert/internal/path_builder.h", |
Eric Roman | cc56d16f | 2017-10-11 23:04:26 | [diff] [blame] | 221 | "cert/internal/revocation_checker.cc", |
| 222 | "cert/internal/revocation_checker.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 223 | "cert/internal/signature_algorithm.cc", |
| 224 | "cert/internal/signature_algorithm.h", |
Eric Roman | 5431d70 | 2017-07-26 01:58:18 | [diff] [blame] | 225 | "cert/internal/simple_path_builder_delegate.cc", |
| 226 | "cert/internal/simple_path_builder_delegate.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 227 | "cert/internal/trust_store.cc", |
| 228 | "cert/internal/trust_store.h", |
| 229 | "cert/internal/trust_store_collection.cc", |
| 230 | "cert/internal/trust_store_collection.h", |
| 231 | "cert/internal/trust_store_in_memory.cc", |
| 232 | "cert/internal/trust_store_in_memory.h", |
| 233 | "cert/internal/verify_certificate_chain.cc", |
| 234 | "cert/internal/verify_certificate_chain.h", |
| 235 | "cert/internal/verify_name_match.cc", |
| 236 | "cert/internal/verify_name_match.h", |
| 237 | "cert/internal/verify_signed_data.cc", |
| 238 | "cert/internal/verify_signed_data.h", |
| 239 | "cert/ocsp_revocation_status.h", |
| 240 | "cert/ocsp_verify_result.cc", |
| 241 | "cert/ocsp_verify_result.h", |
| 242 | "cert/pem_tokenizer.cc", |
| 243 | "cert/pem_tokenizer.h", |
| 244 | "cert/sct_status_flags.cc", |
| 245 | "cert/sct_status_flags.h", |
| 246 | "cert/signed_certificate_timestamp.cc", |
| 247 | "cert/signed_certificate_timestamp.h", |
| 248 | "cert/signed_certificate_timestamp_and_status.cc", |
| 249 | "cert/signed_certificate_timestamp_and_status.h", |
| 250 | "cert/signed_tree_head.cc", |
| 251 | "cert/signed_tree_head.h", |
Emily Stark | d29cdae | 2017-09-16 01:59:34 | [diff] [blame] | 252 | "cert/symantec_certs.cc", |
| 253 | "cert/symantec_certs.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 254 | "cert/x509_cert_types.cc", |
| 255 | "cert/x509_cert_types.h", |
| 256 | "cert/x509_certificate.cc", |
| 257 | "cert/x509_certificate.h", |
| 258 | "cert/x509_certificate_net_log_param.cc", |
| 259 | "cert/x509_certificate_net_log_param.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 260 | "cert/x509_util.cc", |
| 261 | "cert/x509_util.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 262 | "der/encode_values.cc", |
| 263 | "der/encode_values.h", |
| 264 | "der/input.cc", |
| 265 | "der/input.h", |
| 266 | "der/parse_values.cc", |
| 267 | "der/parse_values.h", |
| 268 | "der/parser.cc", |
| 269 | "der/parser.h", |
| 270 | "der/tag.cc", |
| 271 | "der/tag.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 272 | "http/http_auth_challenge_tokenizer.cc", |
| 273 | "http/http_auth_challenge_tokenizer.h", |
| 274 | "http/http_auth_scheme.cc", |
| 275 | "http/http_auth_scheme.h", |
| 276 | "http/http_byte_range.cc", |
| 277 | "http/http_byte_range.h", |
| 278 | "http/http_log_util.cc", |
| 279 | "http/http_log_util.h", |
Andrey Kosyakov | 83a6eee | 2017-08-14 19:20:04 | [diff] [blame] | 280 | "http/http_raw_request_headers.cc", |
| 281 | "http/http_raw_request_headers.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 282 | "http/http_request_headers.cc", |
| 283 | "http/http_request_headers.h", |
| 284 | "http/http_response_headers.cc", |
| 285 | "http/http_response_headers.h", |
| 286 | "http/http_response_info.cc", |
| 287 | "http/http_response_info.h", |
| 288 | "http/http_security_headers.cc", |
| 289 | "http/http_security_headers.h", |
Daniel Bratell | a6f7191d | 2017-11-23 09:20:37 | [diff] [blame] | 290 | "http/http_status_code_list.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 291 | "http/http_util.cc", |
| 292 | "http/http_util.h", |
| 293 | "http/http_vary_data.cc", |
| 294 | "http/http_vary_data.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 295 | "http/transport_security_state.h", |
xunjieli | 815ad5b | 2017-07-18 15:51:35 | [diff] [blame] | 296 | "http/transport_security_state_source.cc", |
martijn | 9b806ab2 | 2017-03-18 16:13:21 | [diff] [blame] | 297 | "http/transport_security_state_source.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 298 | "log/net_log.cc", |
| 299 | "log/net_log.h", |
| 300 | "log/net_log_capture_mode.cc", |
| 301 | "log/net_log_capture_mode.h", |
| 302 | "log/net_log_entry.cc", |
| 303 | "log/net_log_entry.h", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 304 | "log/net_log_event_type.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 305 | "log/net_log_event_type_list.h", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 306 | "log/net_log_parameters_callback.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 307 | "log/net_log_source.cc", |
| 308 | "log/net_log_source.h", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 309 | "log/net_log_source_type.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 310 | "log/net_log_source_type_list.h", |
| 311 | "log/net_log_with_source.cc", |
| 312 | "log/net_log_with_source.h", |
| 313 | "socket/client_socket_handle.cc", |
| 314 | "socket/client_socket_handle.h", |
Matt Menke | 977e61b | 2019-01-10 19:36:02 | [diff] [blame] | 315 | "socket/connect_job.cc", |
| 316 | "socket/connect_job.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 317 | "socket/connection_attempts.h", |
| 318 | "socket/next_proto.cc", |
| 319 | "socket/next_proto.h", |
xunjieli | 321a96f3 | 2017-03-07 19:42:17 | [diff] [blame] | 320 | "socket/socket.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 321 | "socket/socket.h", |
| 322 | "socket/socket_bio_adapter.cc", |
| 323 | "socket/socket_bio_adapter.h", |
| 324 | "socket/socket_performance_watcher.h", |
| 325 | "socket/socket_performance_watcher_factory.h", |
| 326 | "socket/ssl_client_socket.cc", |
| 327 | "socket/ssl_client_socket.h", |
| 328 | "socket/ssl_client_socket_impl.cc", |
| 329 | "socket/ssl_client_socket_impl.h", |
| 330 | "socket/ssl_socket.h", |
Bence Béky | dae8af5f | 2018-04-13 08:53:17 | [diff] [blame] | 331 | "socket/stream_socket.cc", |
| 332 | "socket/stream_socket.h", |
mattm | 436ccfe | 2017-06-19 20:24:08 | [diff] [blame] | 333 | "ssl/client_cert_identity.cc", |
| 334 | "ssl/client_cert_identity.h", |
| 335 | "ssl/client_cert_identity_mac.cc", |
| 336 | "ssl/client_cert_identity_mac.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 337 | "ssl/openssl_ssl_util.cc", |
| 338 | "ssl/openssl_ssl_util.h", |
| 339 | "ssl/ssl_cert_request_info.cc", |
| 340 | "ssl/ssl_cert_request_info.h", |
| 341 | "ssl/ssl_cipher_suite_names.cc", |
| 342 | "ssl/ssl_cipher_suite_names.h", |
| 343 | "ssl/ssl_client_auth_cache.cc", |
| 344 | "ssl/ssl_client_auth_cache.h", |
| 345 | "ssl/ssl_client_cert_type.h", |
| 346 | "ssl/ssl_client_session_cache.cc", |
| 347 | "ssl/ssl_client_session_cache.h", |
| 348 | "ssl/ssl_config.cc", |
| 349 | "ssl/ssl_config.h", |
| 350 | "ssl/ssl_config_service.cc", |
| 351 | "ssl/ssl_config_service.h", |
| 352 | "ssl/ssl_connection_status_flags.h", |
| 353 | "ssl/ssl_info.cc", |
| 354 | "ssl/ssl_info.h", |
David Benjamin | bd37c17 | 2018-07-11 17:24:57 | [diff] [blame] | 355 | "ssl/ssl_key_logger.h", |
David Benjamin | b9bafbe | 2017-11-07 21:41:38 | [diff] [blame] | 356 | "ssl/ssl_private_key.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 357 | "ssl/ssl_private_key.h", |
| 358 | "ssl/ssl_server_config.cc", |
| 359 | "ssl/ssl_server_config.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 360 | "third_party/quiche/src/quic/core/quic_error_codes.cc", |
| 361 | "third_party/quiche/src/quic/core/quic_error_codes.h", |
dalyk | 6b82a025 | 2018-08-22 15:22:38 | [diff] [blame] | 362 | "third_party/uri_template/uri_template.cc", |
| 363 | "third_party/uri_template/uri_template.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 364 | ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 365 | net_unfiltered_sources = [] |
| 366 | |
Fabrice de Gans-Riberi | 0ab6b07 | 2018-04-20 21:32:58 | [diff] [blame] | 367 | if (is_posix || is_fuchsia) { |
| 368 | sources += [ "base/net_errors_posix.cc" ] |
| 369 | } |
| 370 | |
Adam Langley | 93cbfad1 | 2018-07-06 22:07:16 | [diff] [blame] | 371 | defines = [] |
| 372 | if (disable_brotli_filter || is_nacl) { |
| 373 | defines += [ "NET_DISABLE_BROTLI" ] |
| 374 | } |
| 375 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 376 | deps = [ |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 377 | ":net_deps", |
Takuto Ikuta | 94330d9b | 2019-03-09 11:03:14 | [diff] [blame] | 378 | "//net/http:transport_security_state_generated_files", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 379 | ] |
| 380 | |
| 381 | public_deps = [ |
Daniel Bratell | c36e87a | 2019-03-26 16:31:46 | [diff] [blame] | 382 | ":net_export_header", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 383 | ":net_public_deps", |
| 384 | "//net/dns", |
| 385 | "//net/dns:dns_client", |
Eric Orth | 168a7e5 | 2018-08-27 19:11:32 | [diff] [blame] | 386 | "//net/dns:host_resolver", |
Eric Orth | 0bea166 | 2019-03-20 19:11:22 | [diff] [blame] | 387 | "//net/dns:host_resolver_manager", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 388 | "//net/dns:mdns_client", |
Eric Orth | 8afaf15 | 2018-11-07 21:01:26 | [diff] [blame] | 389 | "//net/dns/public", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 390 | ] |
| 391 | |
| 392 | allow_circular_includes_from = [ |
| 393 | "//net/dns", |
| 394 | "//net/dns:dns_client", |
Eric Orth | 168a7e5 | 2018-08-27 19:11:32 | [diff] [blame] | 395 | "//net/dns:host_resolver", |
Eric Orth | 0bea166 | 2019-03-20 19:11:22 | [diff] [blame] | 396 | "//net/dns:host_resolver_manager", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 397 | "//net/dns:mdns_client", |
Eric Orth | 8afaf15 | 2018-11-07 21:01:26 | [diff] [blame] | 398 | "//net/dns/public", |
Takuto Ikuta | 94330d9b | 2019-03-09 11:03:14 | [diff] [blame] | 399 | "//net/http:transport_security_state_generated_files", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 400 | ] |
| 401 | |
| 402 | if (!is_nacl) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 403 | sources += [ |
Ryan Sleevi | 24fe268 | 2018-08-16 21:33:46 | [diff] [blame] | 404 | "android/android_http_util.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 405 | "android/cellular_signal_strength.cc", |
| 406 | "android/cellular_signal_strength.h", |
| 407 | "android/cert_verify_result_android.cc", |
| 408 | "android/cert_verify_result_android.h", |
| 409 | "android/gurl_utils.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 410 | "android/http_auth_negotiate_android.cc", |
| 411 | "android/http_auth_negotiate_android.h", |
| 412 | "android/keystore.cc", |
| 413 | "android/keystore.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 414 | "android/network_change_notifier_android.cc", |
| 415 | "android/network_change_notifier_android.h", |
| 416 | "android/network_change_notifier_delegate_android.cc", |
| 417 | "android/network_change_notifier_delegate_android.h", |
| 418 | "android/network_change_notifier_factory_android.cc", |
| 419 | "android/network_change_notifier_factory_android.h", |
| 420 | "android/network_library.cc", |
| 421 | "android/network_library.h", |
| 422 | "android/traffic_stats.cc", |
| 423 | "android/traffic_stats.h", |
| 424 | "base/address_tracker_linux.cc", |
| 425 | "base/address_tracker_linux.h", |
| 426 | "base/backoff_entry.cc", |
| 427 | "base/backoff_entry.h", |
| 428 | "base/backoff_entry_serializer.cc", |
| 429 | "base/backoff_entry_serializer.h", |
| 430 | "base/cache_type.h", |
| 431 | "base/chunked_upload_data_stream.cc", |
| 432 | "base/chunked_upload_data_stream.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 433 | "base/data_url.cc", |
| 434 | "base/data_url.h", |
| 435 | "base/elements_upload_data_stream.cc", |
| 436 | "base/elements_upload_data_stream.h", |
| 437 | "base/expiring_cache.h", |
| 438 | "base/file_stream.cc", |
| 439 | "base/file_stream.h", |
| 440 | "base/file_stream_context.cc", |
| 441 | "base/file_stream_context.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 442 | "base/file_stream_context_win.cc", |
| 443 | "base/filename_util.cc", |
| 444 | "base/filename_util.h", |
| 445 | "base/filename_util_internal.cc", |
| 446 | "base/filename_util_internal.h", |
Bence Béky | d5c16edf | 2017-08-04 17:32:30 | [diff] [blame] | 447 | "base/hex_utils.cc", |
| 448 | "base/hex_utils.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 449 | "base/host_mapping_rules.cc", |
| 450 | "base/host_mapping_rules.h", |
Matt Menke | d732ea4 | 2019-03-08 12:05:00 | [diff] [blame] | 451 | "base/http_user_agent_settings.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 452 | "base/ip_pattern.cc", |
| 453 | "base/ip_pattern.h", |
| 454 | "base/layered_network_delegate.cc", |
| 455 | "base/layered_network_delegate.h", |
| 456 | "base/load_flags.h", |
| 457 | "base/load_flags_list.h", |
| 458 | "base/load_states.h", |
| 459 | "base/load_states_list.h", |
| 460 | "base/logging_network_change_observer.cc", |
| 461 | "base/logging_network_change_observer.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 462 | "base/mime_sniffer.cc", |
| 463 | "base/mime_sniffer.h", |
| 464 | "base/mime_util.cc", |
| 465 | "base/mime_util.h", |
| 466 | "base/net_errors_win.cc", |
| 467 | "base/net_info_source_list.h", |
| 468 | "base/network_activity_monitor.cc", |
| 469 | "base/network_activity_monitor.h", |
| 470 | "base/network_change_notifier.cc", |
| 471 | "base/network_change_notifier.h", |
| 472 | "base/network_change_notifier_factory.h", |
| 473 | "base/network_change_notifier_linux.cc", |
| 474 | "base/network_change_notifier_linux.h", |
| 475 | "base/network_change_notifier_mac.cc", |
| 476 | "base/network_change_notifier_mac.h", |
| 477 | "base/network_change_notifier_win.cc", |
| 478 | "base/network_change_notifier_win.h", |
| 479 | "base/network_config_watcher_mac.cc", |
| 480 | "base/network_config_watcher_mac.h", |
| 481 | "base/network_delegate.cc", |
| 482 | "base/network_delegate.h", |
| 483 | "base/network_delegate_impl.cc", |
| 484 | "base/network_delegate_impl.h", |
| 485 | "base/network_interfaces_linux.cc", |
wychen | 36575ffb | 2017-04-01 05:50:47 | [diff] [blame] | 486 | "base/network_interfaces_linux.h", |
Sergey Ulanov | 5c33235ae | 2017-07-06 23:55:07 | [diff] [blame] | 487 | "base/network_interfaces_nacl.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 488 | "base/network_interfaces_win.cc", |
thakis | b8590c9 | 2017-03-23 18:14:53 | [diff] [blame] | 489 | "base/network_interfaces_win.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 490 | "base/platform_mime_util.h", |
| 491 | "base/platform_mime_util_linux.cc", |
| 492 | "base/platform_mime_util_mac.mm", |
| 493 | "base/platform_mime_util_win.cc", |
| 494 | "base/prioritized_dispatcher.cc", |
| 495 | "base/prioritized_dispatcher.h", |
Josh Karlin | dd9a5d14 | 2018-06-06 00:35:48 | [diff] [blame] | 496 | "base/prioritized_task_runner.cc", |
| 497 | "base/prioritized_task_runner.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 498 | "base/priority_queue.h", |
| 499 | "base/proxy_delegate.h", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 500 | "base/proxy_server.cc", |
| 501 | "base/proxy_server.h", |
| 502 | "base/proxy_server_mac.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 503 | "base/request_priority.cc", |
| 504 | "base/request_priority.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 505 | "base/static_cookie_policy.cc", |
| 506 | "base/static_cookie_policy.h", |
| 507 | "base/test_data_stream.cc", |
| 508 | "base/test_data_stream.h", |
| 509 | "base/upload_bytes_element_reader.cc", |
| 510 | "base/upload_bytes_element_reader.h", |
| 511 | "base/upload_data_stream.cc", |
| 512 | "base/upload_data_stream.h", |
| 513 | "base/upload_element_reader.cc", |
| 514 | "base/upload_element_reader.h", |
| 515 | "base/upload_file_element_reader.cc", |
| 516 | "base/upload_file_element_reader.h", |
| 517 | "base/upload_progress.h", |
| 518 | "base/winsock_init.cc", |
| 519 | "base/winsock_init.h", |
| 520 | "base/winsock_util.cc", |
| 521 | "base/winsock_util.h", |
| 522 | "cert/caching_cert_verifier.cc", |
| 523 | "cert/caching_cert_verifier.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 524 | "cert/cert_database_mac.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 525 | "cert/cert_net_fetcher.h", |
| 526 | "cert/cert_verify_proc.cc", |
| 527 | "cert/cert_verify_proc.h", |
| 528 | "cert/cert_verify_proc_android.cc", |
| 529 | "cert/cert_verify_proc_android.h", |
eroman | 8ccd62d | 2017-03-16 23:54:26 | [diff] [blame] | 530 | "cert/cert_verify_proc_builtin.cc", |
| 531 | "cert/cert_verify_proc_builtin.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 532 | "cert/cert_verify_proc_ios.cc", |
| 533 | "cert/cert_verify_proc_ios.h", |
| 534 | "cert/cert_verify_proc_mac.cc", |
| 535 | "cert/cert_verify_proc_mac.h", |
| 536 | "cert/cert_verify_proc_nss.cc", |
| 537 | "cert/cert_verify_proc_nss.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 538 | "cert/cert_verify_proc_win.cc", |
| 539 | "cert/cert_verify_proc_win.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 540 | "cert/ct_log_response_parser.cc", |
| 541 | "cert/ct_log_response_parser.h", |
| 542 | "cert/ct_log_verifier.cc", |
| 543 | "cert/ct_log_verifier.h", |
| 544 | "cert/ct_log_verifier_util.cc", |
| 545 | "cert/ct_log_verifier_util.h", |
| 546 | "cert/ct_objects_extractor.cc", |
| 547 | "cert/ct_objects_extractor.h", |
| 548 | "cert/ct_sct_to_string.cc", |
| 549 | "cert/ct_sct_to_string.h", |
| 550 | "cert/ct_serialization.cc", |
| 551 | "cert/ct_serialization.h", |
| 552 | "cert/ct_signed_certificate_timestamp_log_param.cc", |
| 553 | "cert/ct_signed_certificate_timestamp_log_param.h", |
| 554 | "cert/ev_root_ca_metadata.cc", |
| 555 | "cert/ev_root_ca_metadata.h", |
eroman | f628d6b | 2017-04-19 22:47:27 | [diff] [blame] | 556 | "cert/internal/system_trust_store.cc", |
| 557 | "cert/internal/system_trust_store.h", |
mattm | ea4ed823 | 2017-02-28 23:13:23 | [diff] [blame] | 558 | "cert/internal/trust_store_mac.cc", |
| 559 | "cert/internal/trust_store_mac.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 560 | "cert/internal/trust_store_nss.cc", |
| 561 | "cert/internal/trust_store_nss.h", |
| 562 | "cert/jwk_serializer.cc", |
| 563 | "cert/jwk_serializer.h", |
Ryan Sleevi | 19a7bde | 2017-11-22 06:51:39 | [diff] [blame] | 564 | "cert/known_roots.cc", |
| 565 | "cert/known_roots.h", |
eroman | f2971fd | 2017-04-20 20:10:45 | [diff] [blame] | 566 | "cert/known_roots_mac.cc", |
| 567 | "cert/known_roots_mac.h", |
| 568 | "cert/known_roots_nss.cc", |
| 569 | "cert/known_roots_nss.h", |
| 570 | "cert/known_roots_win.cc", |
| 571 | "cert/known_roots_win.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 572 | "cert/merkle_audit_proof.cc", |
| 573 | "cert/merkle_audit_proof.h", |
| 574 | "cert/merkle_consistency_proof.cc", |
| 575 | "cert/merkle_consistency_proof.h", |
| 576 | "cert/merkle_tree_leaf.cc", |
| 577 | "cert/merkle_tree_leaf.h", |
| 578 | "cert/multi_log_ct_verifier.cc", |
| 579 | "cert/multi_log_ct_verifier.h", |
| 580 | "cert/multi_threaded_cert_verifier.cc", |
| 581 | "cert/multi_threaded_cert_verifier.h", |
| 582 | "cert/nss_cert_database.cc", |
| 583 | "cert/nss_cert_database.h", |
| 584 | "cert/nss_cert_database_chromeos.cc", |
| 585 | "cert/nss_cert_database_chromeos.h", |
| 586 | "cert/nss_profile_filter_chromeos.cc", |
| 587 | "cert/nss_profile_filter_chromeos.h", |
Ryan Sleevi | 19a7bde | 2017-11-22 06:51:39 | [diff] [blame] | 588 | "cert/root_cert_list_generated.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 589 | "cert/test_keychain_search_list_mac.cc", |
| 590 | "cert/test_keychain_search_list_mac.h", |
| 591 | "cert/test_root_certs.cc", |
| 592 | "cert/test_root_certs.h", |
| 593 | "cert/test_root_certs_android.cc", |
| 594 | "cert/test_root_certs_mac.cc", |
| 595 | "cert/test_root_certs_nss.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 596 | "cert/test_root_certs_win.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 597 | "cert/x509_util_android.cc", |
mattm | 4cede8d | 2017-04-11 02:55:01 | [diff] [blame] | 598 | "cert/x509_util_ios.cc", |
| 599 | "cert/x509_util_ios.h", |
mattm | 1a07e63 | 2017-05-16 05:55:50 | [diff] [blame] | 600 | "cert/x509_util_ios_and_mac.cc", |
| 601 | "cert/x509_util_ios_and_mac.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 602 | "cert/x509_util_mac.cc", |
| 603 | "cert/x509_util_mac.h", |
| 604 | "cert/x509_util_nss.cc", |
| 605 | "cert/x509_util_nss.h", |
mattm | 2fe429a | 2017-06-20 01:53:44 | [diff] [blame] | 606 | "cert/x509_util_win.cc", |
| 607 | "cert/x509_util_win.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 608 | "cert_net/cert_net_fetcher_impl.cc", |
| 609 | "cert_net/cert_net_fetcher_impl.h", |
| 610 | "cert_net/nss_ocsp.cc", |
| 611 | "cert_net/nss_ocsp.h", |
| 612 | "cookies/canonical_cookie.cc", |
| 613 | "cookies/canonical_cookie.h", |
Victor Costan | 14f47c1 | 2018-03-01 08:02:24 | [diff] [blame] | 614 | "cookies/cookie_change_dispatcher.cc", |
| 615 | "cookies/cookie_change_dispatcher.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 616 | "cookies/cookie_constants.cc", |
| 617 | "cookies/cookie_constants.h", |
Chris Mumford | d8ed9f8 | 2018-05-01 15:43:13 | [diff] [blame] | 618 | "cookies/cookie_deletion_info.cc", |
| 619 | "cookies/cookie_deletion_info.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 620 | "cookies/cookie_monster.cc", |
| 621 | "cookies/cookie_monster.h", |
Victor Costan | 14f47c1 | 2018-03-01 08:02:24 | [diff] [blame] | 622 | "cookies/cookie_monster_change_dispatcher.cc", |
| 623 | "cookies/cookie_monster_change_dispatcher.h", |
Helen Li | cd0fab86 | 2018-08-13 16:07:53 | [diff] [blame] | 624 | "cookies/cookie_monster_netlog_params.cc", |
| 625 | "cookies/cookie_monster_netlog_params.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 626 | "cookies/cookie_options.cc", |
| 627 | "cookies/cookie_options.h", |
| 628 | "cookies/cookie_store.cc", |
| 629 | "cookies/cookie_store.h", |
| 630 | "cookies/cookie_util.cc", |
| 631 | "cookies/cookie_util.h", |
| 632 | "cookies/parsed_cookie.cc", |
| 633 | "cookies/parsed_cookie.h", |
Maks Orlovich | 036fd1f | 2017-08-07 17:51:11 | [diff] [blame] | 634 | "disk_cache/backend_cleanup_tracker.cc", |
| 635 | "disk_cache/backend_cleanup_tracker.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 636 | "disk_cache/blockfile/addr.cc", |
| 637 | "disk_cache/blockfile/addr.h", |
| 638 | "disk_cache/blockfile/backend_impl.cc", |
| 639 | "disk_cache/blockfile/backend_impl.h", |
| 640 | "disk_cache/blockfile/bitmap.cc", |
| 641 | "disk_cache/blockfile/bitmap.h", |
| 642 | "disk_cache/blockfile/block_files.cc", |
| 643 | "disk_cache/blockfile/block_files.h", |
| 644 | "disk_cache/blockfile/disk_format.cc", |
| 645 | "disk_cache/blockfile/disk_format.h", |
| 646 | "disk_cache/blockfile/disk_format_base.h", |
| 647 | "disk_cache/blockfile/entry_impl.cc", |
| 648 | "disk_cache/blockfile/entry_impl.h", |
| 649 | "disk_cache/blockfile/errors.h", |
| 650 | "disk_cache/blockfile/eviction.cc", |
| 651 | "disk_cache/blockfile/eviction.h", |
| 652 | "disk_cache/blockfile/experiments.h", |
| 653 | "disk_cache/blockfile/file.cc", |
| 654 | "disk_cache/blockfile/file.h", |
| 655 | "disk_cache/blockfile/file_block.h", |
| 656 | "disk_cache/blockfile/file_ios.cc", |
| 657 | "disk_cache/blockfile/file_lock.cc", |
| 658 | "disk_cache/blockfile/file_lock.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 659 | "disk_cache/blockfile/file_win.cc", |
| 660 | "disk_cache/blockfile/histogram_macros.h", |
| 661 | "disk_cache/blockfile/in_flight_backend_io.cc", |
| 662 | "disk_cache/blockfile/in_flight_backend_io.h", |
| 663 | "disk_cache/blockfile/in_flight_io.cc", |
| 664 | "disk_cache/blockfile/in_flight_io.h", |
| 665 | "disk_cache/blockfile/mapped_file.cc", |
| 666 | "disk_cache/blockfile/mapped_file.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 667 | "disk_cache/blockfile/mapped_file_win.cc", |
| 668 | "disk_cache/blockfile/rankings.cc", |
| 669 | "disk_cache/blockfile/rankings.h", |
| 670 | "disk_cache/blockfile/sparse_control.cc", |
| 671 | "disk_cache/blockfile/sparse_control.h", |
| 672 | "disk_cache/blockfile/stats.cc", |
| 673 | "disk_cache/blockfile/stats.h", |
| 674 | "disk_cache/blockfile/storage_block-inl.h", |
| 675 | "disk_cache/blockfile/storage_block.h", |
| 676 | "disk_cache/blockfile/stress_support.h", |
| 677 | "disk_cache/blockfile/trace.cc", |
| 678 | "disk_cache/blockfile/trace.h", |
| 679 | "disk_cache/blockfile/webfonts_histogram.cc", |
| 680 | "disk_cache/blockfile/webfonts_histogram.h", |
| 681 | "disk_cache/cache_util.cc", |
| 682 | "disk_cache/cache_util.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 683 | "disk_cache/cache_util_win.cc", |
| 684 | "disk_cache/disk_cache.cc", |
| 685 | "disk_cache/disk_cache.h", |
| 686 | "disk_cache/memory/mem_backend_impl.cc", |
| 687 | "disk_cache/memory/mem_backend_impl.h", |
| 688 | "disk_cache/memory/mem_entry_impl.cc", |
| 689 | "disk_cache/memory/mem_entry_impl.h", |
| 690 | "disk_cache/net_log_parameters.cc", |
| 691 | "disk_cache/net_log_parameters.h", |
| 692 | "disk_cache/simple/simple_backend_impl.cc", |
| 693 | "disk_cache/simple/simple_backend_impl.h", |
| 694 | "disk_cache/simple/simple_backend_version.h", |
| 695 | "disk_cache/simple/simple_entry_format.cc", |
| 696 | "disk_cache/simple/simple_entry_format.h", |
| 697 | "disk_cache/simple/simple_entry_format_history.h", |
| 698 | "disk_cache/simple/simple_entry_impl.cc", |
| 699 | "disk_cache/simple/simple_entry_impl.h", |
| 700 | "disk_cache/simple/simple_entry_operation.cc", |
| 701 | "disk_cache/simple/simple_entry_operation.h", |
Maks Orlovich | f378b3a | 2017-10-31 16:27:30 | [diff] [blame] | 702 | "disk_cache/simple/simple_file_tracker.cc", |
| 703 | "disk_cache/simple/simple_file_tracker.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 704 | "disk_cache/simple/simple_histogram_macros.h", |
| 705 | "disk_cache/simple/simple_index.cc", |
| 706 | "disk_cache/simple/simple_index.h", |
| 707 | "disk_cache/simple/simple_index_delegate.h", |
| 708 | "disk_cache/simple/simple_index_file.cc", |
| 709 | "disk_cache/simple/simple_index_file.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 710 | "disk_cache/simple/simple_index_file_win.cc", |
| 711 | "disk_cache/simple/simple_net_log_parameters.cc", |
| 712 | "disk_cache/simple/simple_net_log_parameters.h", |
| 713 | "disk_cache/simple/simple_synchronous_entry.cc", |
| 714 | "disk_cache/simple/simple_synchronous_entry.h", |
| 715 | "disk_cache/simple/simple_util.cc", |
| 716 | "disk_cache/simple/simple_util.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 717 | "disk_cache/simple/simple_util_win.cc", |
| 718 | "disk_cache/simple/simple_version_upgrade.cc", |
| 719 | "disk_cache/simple/simple_version_upgrade.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 720 | "filter/filter_source_stream.cc", |
| 721 | "filter/filter_source_stream.h", |
| 722 | "filter/gzip_header.cc", |
| 723 | "filter/gzip_header.h", |
| 724 | "filter/gzip_source_stream.cc", |
| 725 | "filter/gzip_source_stream.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 726 | "filter/source_stream.cc", |
| 727 | "filter/source_stream.h", |
| 728 | "filter/source_stream_type_list.h", |
| 729 | "http/bidirectional_stream.cc", |
| 730 | "http/bidirectional_stream.h", |
| 731 | "http/bidirectional_stream_impl.cc", |
| 732 | "http/bidirectional_stream_impl.h", |
| 733 | "http/bidirectional_stream_request_info.cc", |
| 734 | "http/bidirectional_stream_request_info.h", |
wangyix | 64ccc57c | 2017-06-01 23:14:16 | [diff] [blame] | 735 | "http/broken_alternative_services.cc", |
| 736 | "http/broken_alternative_services.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 737 | "http/failing_http_transaction_factory.cc", |
| 738 | "http/failing_http_transaction_factory.h", |
| 739 | "http/http_auth.cc", |
| 740 | "http/http_auth.h", |
| 741 | "http/http_auth_cache.cc", |
| 742 | "http/http_auth_cache.h", |
| 743 | "http/http_auth_controller.cc", |
| 744 | "http/http_auth_controller.h", |
| 745 | "http/http_auth_filter.cc", |
| 746 | "http/http_auth_filter.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 747 | "http/http_auth_handler.cc", |
| 748 | "http/http_auth_handler.h", |
| 749 | "http/http_auth_handler_basic.cc", |
| 750 | "http/http_auth_handler_basic.h", |
| 751 | "http/http_auth_handler_digest.cc", |
| 752 | "http/http_auth_handler_digest.h", |
| 753 | "http/http_auth_handler_factory.cc", |
| 754 | "http/http_auth_handler_factory.h", |
| 755 | "http/http_auth_handler_negotiate.cc", |
| 756 | "http/http_auth_handler_negotiate.h", |
| 757 | "http/http_auth_handler_ntlm.cc", |
| 758 | "http/http_auth_handler_ntlm.h", |
| 759 | "http/http_auth_handler_ntlm_portable.cc", |
| 760 | "http/http_auth_handler_ntlm_win.cc", |
| 761 | "http/http_auth_multi_round_parse.cc", |
| 762 | "http/http_auth_multi_round_parse.h", |
| 763 | "http/http_auth_preferences.cc", |
| 764 | "http/http_auth_preferences.h", |
| 765 | "http/http_auth_sspi_win.cc", |
| 766 | "http/http_auth_sspi_win.h", |
| 767 | "http/http_basic_state.cc", |
| 768 | "http/http_basic_state.h", |
| 769 | "http/http_basic_stream.cc", |
| 770 | "http/http_basic_stream.h", |
| 771 | "http/http_cache.cc", |
| 772 | "http/http_cache.h", |
| 773 | "http/http_cache_lookup_manager.cc", |
| 774 | "http/http_cache_lookup_manager.h", |
| 775 | "http/http_cache_transaction.cc", |
| 776 | "http/http_cache_transaction.h", |
shivanisha | c6582e1 | 2017-07-14 22:18:19 | [diff] [blame] | 777 | "http/http_cache_writers.cc", |
| 778 | "http/http_cache_writers.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 779 | "http/http_chunked_decoder.cc", |
| 780 | "http/http_chunked_decoder.h", |
| 781 | "http/http_content_disposition.cc", |
| 782 | "http/http_content_disposition.h", |
Clark DuVall | 502f6639 | 2019-01-23 16:55:17 | [diff] [blame] | 783 | "http/http_negotiate_auth_system.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 784 | "http/http_network_layer.cc", |
| 785 | "http/http_network_layer.h", |
| 786 | "http/http_network_session.cc", |
| 787 | "http/http_network_session.h", |
| 788 | "http/http_network_session_peer.cc", |
| 789 | "http/http_network_session_peer.h", |
| 790 | "http/http_network_transaction.cc", |
| 791 | "http/http_network_transaction.h", |
| 792 | "http/http_proxy_client_socket.cc", |
| 793 | "http/http_proxy_client_socket.h", |
Matt Menke | 47a8ec13 | 2019-02-09 00:48:39 | [diff] [blame] | 794 | "http/http_proxy_connect_job.cc", |
| 795 | "http/http_proxy_connect_job.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 796 | "http/http_request_info.cc", |
| 797 | "http/http_request_info.h", |
| 798 | "http/http_response_body_drainer.cc", |
| 799 | "http/http_response_body_drainer.h", |
| 800 | "http/http_server_properties.cc", |
| 801 | "http/http_server_properties.h", |
| 802 | "http/http_server_properties_impl.cc", |
| 803 | "http/http_server_properties_impl.h", |
| 804 | "http/http_server_properties_manager.cc", |
| 805 | "http/http_server_properties_manager.h", |
| 806 | "http/http_status_code.cc", |
| 807 | "http/http_status_code.h", |
| 808 | "http/http_stream.h", |
| 809 | "http/http_stream_factory.cc", |
| 810 | "http/http_stream_factory.h", |
Xida Chen | 9bfe0b6 | 2018-04-24 19:52:21 | [diff] [blame] | 811 | "http/http_stream_factory_job.cc", |
| 812 | "http/http_stream_factory_job.h", |
| 813 | "http/http_stream_factory_job_controller.cc", |
| 814 | "http/http_stream_factory_job_controller.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 815 | "http/http_stream_parser.cc", |
| 816 | "http/http_stream_parser.h", |
Bence Béky | 6b44abf | 2018-04-11 10:32:51 | [diff] [blame] | 817 | "http/http_stream_request.cc", |
| 818 | "http/http_stream_request.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 819 | "http/http_transaction.h", |
| 820 | "http/http_transaction_factory.h", |
| 821 | "http/http_version.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 822 | "http/partial_data.cc", |
| 823 | "http/partial_data.h", |
| 824 | "http/proxy_client_socket.cc", |
| 825 | "http/proxy_client_socket.h", |
Eric Roman | 6f800335 | 2018-03-01 22:49:14 | [diff] [blame] | 826 | "http/proxy_fallback.cc", |
| 827 | "http/proxy_fallback.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 828 | "http/transport_security_persister.cc", |
| 829 | "http/transport_security_persister.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 830 | "http/url_security_manager.cc", |
| 831 | "http/url_security_manager.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 832 | "http/url_security_manager_win.cc", |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 833 | "http2/platform/impl/http2_arraysize_impl.h", |
| 834 | "http2/platform/impl/http2_bug_tracker_impl.h", |
| 835 | "http2/platform/impl/http2_containers_impl.h", |
| 836 | "http2/platform/impl/http2_estimate_memory_usage_impl.h", |
| 837 | "http2/platform/impl/http2_export_impl.h", |
| 838 | "http2/platform/impl/http2_flag_utils_impl.h", |
| 839 | "http2/platform/impl/http2_flags_impl.cc", |
| 840 | "http2/platform/impl/http2_flags_impl.h", |
Victor Vasiliev | 27ca04a | 2019-03-09 01:28:00 | [diff] [blame] | 841 | "http2/platform/impl/http2_logging_impl.h", |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 842 | "http2/platform/impl/http2_macros_impl.h", |
| 843 | "http2/platform/impl/http2_optional_impl.h", |
| 844 | "http2/platform/impl/http2_ptr_util_impl.h", |
| 845 | "http2/platform/impl/http2_reconstruct_object_impl.h", |
| 846 | "http2/platform/impl/http2_string_impl.h", |
| 847 | "http2/platform/impl/http2_string_piece_impl.h", |
| 848 | "http2/platform/impl/http2_string_utils_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 849 | "log/file_net_log_observer.cc", |
| 850 | "log/file_net_log_observer.h", |
| 851 | "log/net_log_util.cc", |
| 852 | "log/net_log_util.h", |
| 853 | "log/trace_net_log_observer.cc", |
| 854 | "log/trace_net_log_observer.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 855 | "nqe/cached_network_quality.cc", |
| 856 | "nqe/cached_network_quality.h", |
| 857 | "nqe/effective_connection_type.cc", |
| 858 | "nqe/effective_connection_type.h", |
tbansal | 1bd4a95 | 2017-06-06 23:01:46 | [diff] [blame] | 859 | "nqe/effective_connection_type_observer.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 860 | "nqe/event_creator.cc", |
| 861 | "nqe/event_creator.h", |
Tarun Bansal | 9414bae | 2017-11-21 01:37:23 | [diff] [blame] | 862 | "nqe/network_id.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 863 | "nqe/network_id.h", |
| 864 | "nqe/network_qualities_prefs_manager.cc", |
| 865 | "nqe/network_qualities_prefs_manager.h", |
| 866 | "nqe/network_quality.cc", |
| 867 | "nqe/network_quality.h", |
| 868 | "nqe/network_quality_estimator.cc", |
| 869 | "nqe/network_quality_estimator.h", |
| 870 | "nqe/network_quality_estimator_params.cc", |
| 871 | "nqe/network_quality_estimator_params.h", |
tbansal | 82edab4 | 2017-06-19 05:55:25 | [diff] [blame] | 872 | "nqe/network_quality_estimator_util.cc", |
| 873 | "nqe/network_quality_estimator_util.h", |
Devdeep Ray | 35f5066 | 2017-08-11 02:41:30 | [diff] [blame] | 874 | "nqe/network_quality_observation.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 875 | "nqe/network_quality_observation.h", |
Tarun Bansal | d2677a1 | 2017-08-31 01:26:38 | [diff] [blame] | 876 | "nqe/network_quality_observation_source.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 877 | "nqe/network_quality_observation_source.h", |
| 878 | "nqe/network_quality_store.cc", |
| 879 | "nqe/network_quality_store.h", |
Devdeep Ray | 35f5066 | 2017-08-11 02:41:30 | [diff] [blame] | 880 | "nqe/observation_buffer.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 881 | "nqe/observation_buffer.h", |
tbansal | 1bd4a95 | 2017-06-06 23:01:46 | [diff] [blame] | 882 | "nqe/rtt_throughput_estimates_observer.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 883 | "nqe/socket_watcher.cc", |
| 884 | "nqe/socket_watcher.h", |
| 885 | "nqe/socket_watcher_factory.cc", |
| 886 | "nqe/socket_watcher_factory.h", |
| 887 | "nqe/throughput_analyzer.cc", |
| 888 | "nqe/throughput_analyzer.h", |
| 889 | "nqe/weighted_observation.h", |
zentaro | b89acda4 | 2017-07-14 01:28:57 | [diff] [blame] | 890 | "ntlm/ntlm.cc", |
| 891 | "ntlm/ntlm.h", |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 892 | "ntlm/ntlm_buffer_reader.cc", |
| 893 | "ntlm/ntlm_buffer_reader.h", |
| 894 | "ntlm/ntlm_buffer_writer.cc", |
| 895 | "ntlm/ntlm_buffer_writer.h", |
Zentaro Kavanagh | dd55661 | 2017-08-03 20:27:04 | [diff] [blame] | 896 | "ntlm/ntlm_client.cc", |
| 897 | "ntlm/ntlm_client.h", |
Ryan Sleevi | 34ac4b2f | 2018-05-15 01:46:46 | [diff] [blame] | 898 | "ntlm/ntlm_constants.cc", |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 899 | "ntlm/ntlm_constants.h", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 900 | "proxy_resolution/dhcp_pac_file_adapter_fetcher_win.cc", |
| 901 | "proxy_resolution/dhcp_pac_file_adapter_fetcher_win.h", |
| 902 | "proxy_resolution/dhcp_pac_file_fetcher.cc", |
| 903 | "proxy_resolution/dhcp_pac_file_fetcher.h", |
| 904 | "proxy_resolution/dhcp_pac_file_fetcher_factory.cc", |
| 905 | "proxy_resolution/dhcp_pac_file_fetcher_factory.h", |
| 906 | "proxy_resolution/dhcp_pac_file_fetcher_win.cc", |
| 907 | "proxy_resolution/dhcp_pac_file_fetcher_win.h", |
| 908 | "proxy_resolution/dhcpcsvc_init_win.cc", |
| 909 | "proxy_resolution/dhcpcsvc_init_win.h", |
| 910 | "proxy_resolution/multi_threaded_proxy_resolver.cc", |
| 911 | "proxy_resolution/multi_threaded_proxy_resolver.h", |
| 912 | "proxy_resolution/network_delegate_error_observer.cc", |
| 913 | "proxy_resolution/network_delegate_error_observer.h", |
| 914 | "proxy_resolution/pac_file_data.cc", |
| 915 | "proxy_resolution/pac_file_data.h", |
| 916 | "proxy_resolution/pac_file_decider.cc", |
| 917 | "proxy_resolution/pac_file_decider.h", |
| 918 | "proxy_resolution/pac_file_fetcher.h", |
| 919 | "proxy_resolution/pac_file_fetcher_impl.cc", |
| 920 | "proxy_resolution/pac_file_fetcher_impl.h", |
| 921 | "proxy_resolution/pac_js_library.h", |
Eric Roman | 7193c9f | 2018-11-22 01:39:58 | [diff] [blame] | 922 | "proxy_resolution/pac_library.cc", |
| 923 | "proxy_resolution/pac_library.h", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 924 | "proxy_resolution/polling_proxy_config_service.cc", |
| 925 | "proxy_resolution/polling_proxy_config_service.h", |
| 926 | "proxy_resolution/proxy_bypass_rules.cc", |
| 927 | "proxy_resolution/proxy_bypass_rules.h", |
| 928 | "proxy_resolution/proxy_config.cc", |
| 929 | "proxy_resolution/proxy_config.h", |
| 930 | "proxy_resolution/proxy_config_service.h", |
| 931 | "proxy_resolution/proxy_config_service_android.cc", |
| 932 | "proxy_resolution/proxy_config_service_android.h", |
| 933 | "proxy_resolution/proxy_config_service_fixed.cc", |
| 934 | "proxy_resolution/proxy_config_service_fixed.h", |
| 935 | "proxy_resolution/proxy_config_service_ios.cc", |
| 936 | "proxy_resolution/proxy_config_service_ios.h", |
| 937 | "proxy_resolution/proxy_config_service_linux.cc", |
| 938 | "proxy_resolution/proxy_config_service_linux.h", |
| 939 | "proxy_resolution/proxy_config_service_mac.cc", |
| 940 | "proxy_resolution/proxy_config_service_mac.h", |
| 941 | "proxy_resolution/proxy_config_service_win.cc", |
| 942 | "proxy_resolution/proxy_config_service_win.h", |
Ramin Halavati | ca8d525 | 2018-03-12 05:33:49 | [diff] [blame] | 943 | "proxy_resolution/proxy_config_with_annotation.cc", |
| 944 | "proxy_resolution/proxy_config_with_annotation.h", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 945 | "proxy_resolution/proxy_info.cc", |
| 946 | "proxy_resolution/proxy_info.h", |
| 947 | "proxy_resolution/proxy_list.cc", |
| 948 | "proxy_resolution/proxy_list.h", |
Lily Houghton | ffe89daa0 | 2018-03-09 18:30:03 | [diff] [blame] | 949 | "proxy_resolution/proxy_resolution_service.cc", |
| 950 | "proxy_resolution/proxy_resolution_service.h", |
Eric Orth | fa19a83 | 2019-02-13 20:04:50 | [diff] [blame] | 951 | "proxy_resolution/proxy_resolve_dns_operation.h", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 952 | "proxy_resolution/proxy_resolver.h", |
| 953 | "proxy_resolution/proxy_resolver_error_observer.h", |
| 954 | "proxy_resolution/proxy_resolver_factory.cc", |
| 955 | "proxy_resolution/proxy_resolver_factory.h", |
| 956 | "proxy_resolution/proxy_resolver_mac.cc", |
| 957 | "proxy_resolution/proxy_resolver_mac.h", |
| 958 | "proxy_resolution/proxy_resolver_winhttp.cc", |
| 959 | "proxy_resolution/proxy_resolver_winhttp.h", |
| 960 | "proxy_resolution/proxy_retry_info.h", |
Ryan Hamilton | a3ee93a7 | 2018-08-01 22:03:08 | [diff] [blame] | 961 | "quic/bidirectional_stream_quic_impl.cc", |
| 962 | "quic/bidirectional_stream_quic_impl.h", |
Ryan Hamilton | a3ee93a7 | 2018-08-01 22:03:08 | [diff] [blame] | 963 | "quic/crypto/proof_source_chromium.cc", |
| 964 | "quic/crypto/proof_source_chromium.h", |
| 965 | "quic/crypto/proof_verifier_chromium.cc", |
| 966 | "quic/crypto/proof_verifier_chromium.h", |
| 967 | "quic/network_connection.cc", |
| 968 | "quic/network_connection.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 969 | "quic/platform/impl/quic_aligned_impl.h", |
| 970 | "quic/platform/impl/quic_arraysize_impl.h", |
| 971 | "quic/platform/impl/quic_bug_tracker_impl.h", |
| 972 | "quic/platform/impl/quic_cert_utils_impl.h", |
| 973 | "quic/platform/impl/quic_chromium_clock.cc", |
| 974 | "quic/platform/impl/quic_chromium_clock.h", |
| 975 | "quic/platform/impl/quic_client_stats_impl.h", |
| 976 | "quic/platform/impl/quic_containers_impl.h", |
| 977 | "quic/platform/impl/quic_endian_impl.h", |
| 978 | "quic/platform/impl/quic_error_code_wrappers_impl.h", |
| 979 | "quic/platform/impl/quic_estimate_memory_usage_impl.h", |
| 980 | "quic/platform/impl/quic_export_impl.h", |
| 981 | "quic/platform/impl/quic_fallthrough_impl.h", |
| 982 | "quic/platform/impl/quic_file_utils_impl.h", |
| 983 | "quic/platform/impl/quic_flag_utils_impl.h", |
| 984 | "quic/platform/impl/quic_flags_impl.cc", |
| 985 | "quic/platform/impl/quic_flags_impl.h", |
| 986 | "quic/platform/impl/quic_hostname_utils_impl.cc", |
| 987 | "quic/platform/impl/quic_hostname_utils_impl.h", |
| 988 | "quic/platform/impl/quic_iovec_impl.h", |
| 989 | "quic/platform/impl/quic_ip_address_impl.cc", |
| 990 | "quic/platform/impl/quic_ip_address_impl.h", |
| 991 | "quic/platform/impl/quic_logging_impl.h", |
| 992 | "quic/platform/impl/quic_macros_impl.h", |
| 993 | "quic/platform/impl/quic_map_util_impl.h", |
| 994 | "quic/platform/impl/quic_mem_slice_impl.cc", |
| 995 | "quic/platform/impl/quic_mem_slice_impl.h", |
| 996 | "quic/platform/impl/quic_mem_slice_span_impl.cc", |
| 997 | "quic/platform/impl/quic_mem_slice_span_impl.h", |
| 998 | "quic/platform/impl/quic_mem_slice_storage_impl.cc", |
| 999 | "quic/platform/impl/quic_mem_slice_storage_impl.h", |
| 1000 | "quic/platform/impl/quic_mutex_impl.cc", |
| 1001 | "quic/platform/impl/quic_mutex_impl.h", |
| 1002 | "quic/platform/impl/quic_pcc_sender_impl.h", |
| 1003 | "quic/platform/impl/quic_prefetch_impl.h", |
| 1004 | "quic/platform/impl/quic_ptr_util_impl.h", |
| 1005 | "quic/platform/impl/quic_reference_counted_impl.h", |
| 1006 | "quic/platform/impl/quic_server_stats_impl.h", |
| 1007 | "quic/platform/impl/quic_sleep_impl.h", |
| 1008 | "quic/platform/impl/quic_socket_address_impl.cc", |
| 1009 | "quic/platform/impl/quic_socket_address_impl.h", |
| 1010 | "quic/platform/impl/quic_stack_trace_impl.h", |
| 1011 | "quic/platform/impl/quic_str_cat_impl.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 1012 | "quic/platform/impl/quic_string_piece_impl.h", |
| 1013 | "quic/platform/impl/quic_text_utils_impl.h", |
Ryan Hamilton | a3ee93a7 | 2018-08-01 22:03:08 | [diff] [blame] | 1014 | "quic/properties_based_quic_server_info.cc", |
| 1015 | "quic/properties_based_quic_server_info.h", |
| 1016 | "quic/quic_address_mismatch.cc", |
| 1017 | "quic/quic_address_mismatch.h", |
| 1018 | "quic/quic_chromium_alarm_factory.cc", |
| 1019 | "quic/quic_chromium_alarm_factory.h", |
| 1020 | "quic/quic_chromium_client_session.cc", |
| 1021 | "quic/quic_chromium_client_session.h", |
| 1022 | "quic/quic_chromium_client_stream.cc", |
| 1023 | "quic/quic_chromium_client_stream.h", |
| 1024 | "quic/quic_chromium_connection_helper.cc", |
| 1025 | "quic/quic_chromium_connection_helper.h", |
| 1026 | "quic/quic_chromium_packet_reader.cc", |
| 1027 | "quic/quic_chromium_packet_reader.h", |
| 1028 | "quic/quic_chromium_packet_writer.cc", |
| 1029 | "quic/quic_chromium_packet_writer.h", |
| 1030 | "quic/quic_clock_skew_detector.cc", |
| 1031 | "quic/quic_clock_skew_detector.h", |
| 1032 | "quic/quic_connection_logger.cc", |
| 1033 | "quic/quic_connection_logger.h", |
| 1034 | "quic/quic_connectivity_probing_manager.cc", |
| 1035 | "quic/quic_connectivity_probing_manager.h", |
| 1036 | "quic/quic_crypto_client_stream_factory.cc", |
| 1037 | "quic/quic_crypto_client_stream_factory.h", |
Ryan Hamilton | 7582d265 | 2018-08-01 22:35:32 | [diff] [blame] | 1038 | "quic/quic_flags_list.h", |
Ryan Hamilton | a3ee93a7 | 2018-08-01 22:03:08 | [diff] [blame] | 1039 | "quic/quic_http_stream.cc", |
| 1040 | "quic/quic_http_stream.h", |
| 1041 | "quic/quic_http_utils.cc", |
| 1042 | "quic/quic_http_utils.h", |
| 1043 | "quic/quic_proxy_client_socket.cc", |
| 1044 | "quic/quic_proxy_client_socket.h", |
| 1045 | "quic/quic_server_info.cc", |
| 1046 | "quic/quic_server_info.h", |
| 1047 | "quic/quic_session_key.cc", |
| 1048 | "quic/quic_session_key.h", |
| 1049 | "quic/quic_stream_factory.cc", |
| 1050 | "quic/quic_stream_factory.h", |
| 1051 | "quic/quic_utils_chromium.cc", |
| 1052 | "quic/quic_utils_chromium.h", |
Dan Zhang | b4d098e3 | 2019-05-03 15:29:48 | [diff] [blame] | 1053 | "quiche/common/platform/impl/quiche_logging_impl.h", |
| 1054 | "quiche/common/platform/impl/quiche_ptr_util_impl.h", |
| 1055 | "quiche/common/platform/impl/quiche_unordered_containers_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1056 | "socket/client_socket_factory.cc", |
| 1057 | "socket/client_socket_factory.h", |
| 1058 | "socket/client_socket_pool.cc", |
| 1059 | "socket/client_socket_pool.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1060 | "socket/client_socket_pool_manager.cc", |
| 1061 | "socket/client_socket_pool_manager.h", |
| 1062 | "socket/client_socket_pool_manager_impl.cc", |
| 1063 | "socket/client_socket_pool_manager_impl.h", |
| 1064 | "socket/datagram_client_socket.h", |
| 1065 | "socket/datagram_server_socket.h", |
| 1066 | "socket/datagram_socket.h", |
| 1067 | "socket/diff_serv_code_point.h", |
| 1068 | "socket/server_socket.cc", |
| 1069 | "socket/server_socket.h", |
| 1070 | "socket/socket_descriptor.cc", |
| 1071 | "socket/socket_descriptor.h", |
| 1072 | "socket/socket_net_log_params.cc", |
| 1073 | "socket/socket_net_log_params.h", |
tfarina | 8a40706 | 2017-04-06 13:14:17 | [diff] [blame] | 1074 | "socket/socket_options.cc", |
| 1075 | "socket/socket_options.h", |
Paul Jensen | ec3c1112 | 2017-11-28 16:48:38 | [diff] [blame] | 1076 | "socket/socket_tag.cc", |
| 1077 | "socket/socket_tag.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1078 | "socket/socks5_client_socket.cc", |
| 1079 | "socket/socks5_client_socket.h", |
| 1080 | "socket/socks_client_socket.cc", |
| 1081 | "socket/socks_client_socket.h", |
Matt Menke | f368bedf | 2019-01-16 23:08:57 | [diff] [blame] | 1082 | "socket/socks_connect_job.cc", |
| 1083 | "socket/socks_connect_job.h", |
Daniel Bratell | b01af14 | 2019-02-19 16:32:27 | [diff] [blame] | 1084 | "socket/ssl_connect_job.cc", |
| 1085 | "socket/ssl_connect_job.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1086 | "socket/ssl_server_socket.h", |
| 1087 | "socket/ssl_server_socket_impl.cc", |
| 1088 | "socket/ssl_server_socket_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1089 | "socket/tcp_client_socket.cc", |
| 1090 | "socket/tcp_client_socket.h", |
| 1091 | "socket/tcp_server_socket.cc", |
| 1092 | "socket/tcp_server_socket.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1093 | "socket/tcp_socket.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1094 | "socket/tcp_socket_win.cc", |
| 1095 | "socket/tcp_socket_win.h", |
Helen Li | 48f117e | 2018-05-29 20:38:40 | [diff] [blame] | 1096 | "socket/transport_client_socket.cc", |
Helen Li | d5bb922 | 2018-04-12 15:33:09 | [diff] [blame] | 1097 | "socket/transport_client_socket.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1098 | "socket/transport_client_socket_pool.cc", |
| 1099 | "socket/transport_client_socket_pool.h", |
Matt Menke | 3abc57c | 2019-01-10 21:48:42 | [diff] [blame] | 1100 | "socket/transport_connect_job.cc", |
| 1101 | "socket/transport_connect_job.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1102 | "socket/udp_client_socket.cc", |
| 1103 | "socket/udp_client_socket.h", |
| 1104 | "socket/udp_net_log_parameters.cc", |
| 1105 | "socket/udp_net_log_parameters.h", |
| 1106 | "socket/udp_server_socket.cc", |
| 1107 | "socket/udp_server_socket.h", |
| 1108 | "socket/udp_socket.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1109 | "socket/udp_socket_win.cc", |
| 1110 | "socket/udp_socket_win.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1111 | "socket/websocket_endpoint_lock_manager.cc", |
| 1112 | "socket/websocket_endpoint_lock_manager.h", |
| 1113 | "socket/websocket_transport_client_socket_pool.cc", |
| 1114 | "socket/websocket_transport_client_socket_pool.h", |
Matt Menke | 96d6689 | 2019-01-15 13:53:47 | [diff] [blame] | 1115 | "socket/websocket_transport_connect_job.cc", |
| 1116 | "socket/websocket_transport_connect_job.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1117 | "socket/websocket_transport_connect_sub_job.cc", |
| 1118 | "socket/websocket_transport_connect_sub_job.h", |
Bence Béky | 94658bf | 2018-05-11 19:22:58 | [diff] [blame] | 1119 | "spdy/bidirectional_stream_spdy_impl.cc", |
| 1120 | "spdy/bidirectional_stream_spdy_impl.h", |
| 1121 | "spdy/buffered_spdy_framer.cc", |
| 1122 | "spdy/buffered_spdy_framer.h", |
| 1123 | "spdy/header_coalescer.cc", |
| 1124 | "spdy/header_coalescer.h", |
| 1125 | "spdy/http2_priority_dependencies.cc", |
| 1126 | "spdy/http2_priority_dependencies.h", |
| 1127 | "spdy/http2_push_promise_index.cc", |
| 1128 | "spdy/http2_push_promise_index.h", |
| 1129 | "spdy/multiplexed_http_stream.cc", |
| 1130 | "spdy/multiplexed_http_stream.h", |
| 1131 | "spdy/multiplexed_session.cc", |
| 1132 | "spdy/multiplexed_session.h", |
Victor Vasiliev | 27cc771 | 2019-01-24 11:50:14 | [diff] [blame] | 1133 | "spdy/platform/impl/spdy_arraysize_impl.h", |
| 1134 | "spdy/platform/impl/spdy_bug_tracker_impl.h", |
| 1135 | "spdy/platform/impl/spdy_containers_impl.h", |
| 1136 | "spdy/platform/impl/spdy_endianness_util_impl.h", |
| 1137 | "spdy/platform/impl/spdy_estimate_memory_usage_impl.h", |
| 1138 | "spdy/platform/impl/spdy_export_impl.h", |
| 1139 | "spdy/platform/impl/spdy_flags_impl.cc", |
| 1140 | "spdy/platform/impl/spdy_flags_impl.h", |
Ryan Hamilton | 57a5d12 | 2019-03-08 18:30:32 | [diff] [blame] | 1141 | "spdy/platform/impl/spdy_logging_impl.h", |
Victor Vasiliev | 27cc771 | 2019-01-24 11:50:14 | [diff] [blame] | 1142 | "spdy/platform/impl/spdy_macros_impl.h", |
| 1143 | "spdy/platform/impl/spdy_mem_slice_impl.cc", |
| 1144 | "spdy/platform/impl/spdy_mem_slice_impl.h", |
| 1145 | "spdy/platform/impl/spdy_ptr_util_impl.h", |
| 1146 | "spdy/platform/impl/spdy_string_impl.h", |
| 1147 | "spdy/platform/impl/spdy_string_piece_impl.h", |
| 1148 | "spdy/platform/impl/spdy_string_utils_impl.cc", |
| 1149 | "spdy/platform/impl/spdy_string_utils_impl.h", |
| 1150 | "spdy/platform/impl/spdy_test_utils_prod_impl.h", |
Victor Vasiliev | 27cc771 | 2019-01-24 11:50:14 | [diff] [blame] | 1151 | "spdy/platform/impl/spdy_unsafe_arena_impl.h", |
Bence Béky | 94658bf | 2018-05-11 19:22:58 | [diff] [blame] | 1152 | "spdy/server_push_delegate.h", |
| 1153 | "spdy/spdy_buffer.cc", |
| 1154 | "spdy/spdy_buffer.h", |
| 1155 | "spdy/spdy_buffer_producer.cc", |
| 1156 | "spdy/spdy_buffer_producer.h", |
| 1157 | "spdy/spdy_http_stream.cc", |
| 1158 | "spdy/spdy_http_stream.h", |
| 1159 | "spdy/spdy_http_utils.cc", |
| 1160 | "spdy/spdy_http_utils.h", |
| 1161 | "spdy/spdy_log_util.cc", |
| 1162 | "spdy/spdy_log_util.h", |
| 1163 | "spdy/spdy_proxy_client_socket.cc", |
| 1164 | "spdy/spdy_proxy_client_socket.h", |
| 1165 | "spdy/spdy_read_queue.cc", |
| 1166 | "spdy/spdy_read_queue.h", |
| 1167 | "spdy/spdy_session.cc", |
| 1168 | "spdy/spdy_session.h", |
| 1169 | "spdy/spdy_session_key.cc", |
| 1170 | "spdy/spdy_session_key.h", |
| 1171 | "spdy/spdy_session_pool.cc", |
| 1172 | "spdy/spdy_session_pool.h", |
| 1173 | "spdy/spdy_stream.cc", |
| 1174 | "spdy/spdy_stream.h", |
| 1175 | "spdy/spdy_write_queue.cc", |
| 1176 | "spdy/spdy_write_queue.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1177 | "ssl/client_cert_store.h", |
| 1178 | "ssl/client_cert_store_mac.cc", |
| 1179 | "ssl/client_cert_store_mac.h", |
| 1180 | "ssl/client_cert_store_nss.cc", |
| 1181 | "ssl/client_cert_store_nss.h", |
| 1182 | "ssl/client_cert_store_win.cc", |
| 1183 | "ssl/client_cert_store_win.h", |
| 1184 | "ssl/ssl_config_service_defaults.cc", |
| 1185 | "ssl/ssl_config_service_defaults.h", |
David Benjamin | bd37c17 | 2018-07-11 17:24:57 | [diff] [blame] | 1186 | "ssl/ssl_key_logger_impl.cc", |
| 1187 | "ssl/ssl_key_logger_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1188 | "ssl/ssl_platform_key_android.cc", |
thakis | b8590c9 | 2017-03-23 18:14:53 | [diff] [blame] | 1189 | "ssl/ssl_platform_key_android.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1190 | "ssl/ssl_platform_key_mac.cc", |
thakis | b8590c9 | 2017-03-23 18:14:53 | [diff] [blame] | 1191 | "ssl/ssl_platform_key_mac.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1192 | "ssl/ssl_platform_key_nss.cc", |
mattm | 436ccfe | 2017-06-19 20:24:08 | [diff] [blame] | 1193 | "ssl/ssl_platform_key_nss.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1194 | "ssl/ssl_platform_key_util.cc", |
| 1195 | "ssl/ssl_platform_key_util.h", |
| 1196 | "ssl/ssl_platform_key_win.cc", |
| 1197 | "ssl/test_ssl_private_key.cc", |
| 1198 | "ssl/test_ssl_private_key.h", |
| 1199 | "ssl/threaded_ssl_private_key.cc", |
| 1200 | "ssl/threaded_ssl_private_key.h", |
| 1201 | "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp", |
| 1202 | "third_party/mozilla_security_manager/nsNSSCertificateDB.h", |
| 1203 | "third_party/mozilla_security_manager/nsPKCS12Blob.cpp", |
| 1204 | "third_party/mozilla_security_manager/nsPKCS12Blob.h", |
Ryan Hamilton | 14557b8 | 2019-05-01 21:57:15 | [diff] [blame] | 1205 | "third_party/quiche/src/common/platform/api/quiche_logging.h", |
| 1206 | "third_party/quiche/src/common/platform/api/quiche_ptr_util.h", |
Ryan Hamilton | 14557b8 | 2019-05-01 21:57:15 | [diff] [blame] | 1207 | "third_party/quiche/src/common/platform/api/quiche_unordered_containers.h", |
| 1208 | "third_party/quiche/src/common/simple_linked_hash_map.h", |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 1209 | "third_party/quiche/src/http2/decoder/decode_buffer.cc", |
| 1210 | "third_party/quiche/src/http2/decoder/decode_buffer.h", |
| 1211 | "third_party/quiche/src/http2/decoder/decode_http2_structures.cc", |
| 1212 | "third_party/quiche/src/http2/decoder/decode_http2_structures.h", |
| 1213 | "third_party/quiche/src/http2/decoder/decode_status.cc", |
| 1214 | "third_party/quiche/src/http2/decoder/decode_status.h", |
| 1215 | "third_party/quiche/src/http2/decoder/frame_decoder_state.cc", |
| 1216 | "third_party/quiche/src/http2/decoder/frame_decoder_state.h", |
| 1217 | "third_party/quiche/src/http2/decoder/http2_frame_decoder.cc", |
| 1218 | "third_party/quiche/src/http2/decoder/http2_frame_decoder.h", |
| 1219 | "third_party/quiche/src/http2/decoder/http2_frame_decoder_listener.cc", |
| 1220 | "third_party/quiche/src/http2/decoder/http2_frame_decoder_listener.h", |
| 1221 | "third_party/quiche/src/http2/decoder/http2_structure_decoder.cc", |
| 1222 | "third_party/quiche/src/http2/decoder/http2_structure_decoder.h", |
| 1223 | "third_party/quiche/src/http2/decoder/payload_decoders/altsvc_payload_decoder.cc", |
| 1224 | "third_party/quiche/src/http2/decoder/payload_decoders/altsvc_payload_decoder.h", |
| 1225 | "third_party/quiche/src/http2/decoder/payload_decoders/continuation_payload_decoder.cc", |
| 1226 | "third_party/quiche/src/http2/decoder/payload_decoders/continuation_payload_decoder.h", |
| 1227 | "third_party/quiche/src/http2/decoder/payload_decoders/data_payload_decoder.cc", |
| 1228 | "third_party/quiche/src/http2/decoder/payload_decoders/data_payload_decoder.h", |
| 1229 | "third_party/quiche/src/http2/decoder/payload_decoders/goaway_payload_decoder.cc", |
| 1230 | "third_party/quiche/src/http2/decoder/payload_decoders/goaway_payload_decoder.h", |
| 1231 | "third_party/quiche/src/http2/decoder/payload_decoders/headers_payload_decoder.cc", |
| 1232 | "third_party/quiche/src/http2/decoder/payload_decoders/headers_payload_decoder.h", |
| 1233 | "third_party/quiche/src/http2/decoder/payload_decoders/ping_payload_decoder.cc", |
| 1234 | "third_party/quiche/src/http2/decoder/payload_decoders/ping_payload_decoder.h", |
| 1235 | "third_party/quiche/src/http2/decoder/payload_decoders/priority_payload_decoder.cc", |
| 1236 | "third_party/quiche/src/http2/decoder/payload_decoders/priority_payload_decoder.h", |
| 1237 | "third_party/quiche/src/http2/decoder/payload_decoders/push_promise_payload_decoder.cc", |
| 1238 | "third_party/quiche/src/http2/decoder/payload_decoders/push_promise_payload_decoder.h", |
| 1239 | "third_party/quiche/src/http2/decoder/payload_decoders/rst_stream_payload_decoder.cc", |
| 1240 | "third_party/quiche/src/http2/decoder/payload_decoders/rst_stream_payload_decoder.h", |
| 1241 | "third_party/quiche/src/http2/decoder/payload_decoders/settings_payload_decoder.cc", |
| 1242 | "third_party/quiche/src/http2/decoder/payload_decoders/settings_payload_decoder.h", |
| 1243 | "third_party/quiche/src/http2/decoder/payload_decoders/unknown_payload_decoder.cc", |
| 1244 | "third_party/quiche/src/http2/decoder/payload_decoders/unknown_payload_decoder.h", |
| 1245 | "third_party/quiche/src/http2/decoder/payload_decoders/window_update_payload_decoder.cc", |
| 1246 | "third_party/quiche/src/http2/decoder/payload_decoders/window_update_payload_decoder.h", |
| 1247 | "third_party/quiche/src/http2/hpack/decoder/hpack_block_decoder.cc", |
| 1248 | "third_party/quiche/src/http2/hpack/decoder/hpack_block_decoder.h", |
| 1249 | "third_party/quiche/src/http2/hpack/decoder/hpack_decoder.cc", |
| 1250 | "third_party/quiche/src/http2/hpack/decoder/hpack_decoder.h", |
| 1251 | "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_listener.cc", |
| 1252 | "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_listener.h", |
| 1253 | "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_state.cc", |
| 1254 | "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_state.h", |
| 1255 | "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_string_buffer.cc", |
| 1256 | "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_string_buffer.h", |
| 1257 | "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_tables.cc", |
| 1258 | "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_tables.h", |
| 1259 | "third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder.cc", |
| 1260 | "third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder.h", |
| 1261 | "third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder_listener.cc", |
| 1262 | "third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder_listener.h", |
| 1263 | "third_party/quiche/src/http2/hpack/decoder/hpack_entry_type_decoder.cc", |
| 1264 | "third_party/quiche/src/http2/hpack/decoder/hpack_entry_type_decoder.h", |
| 1265 | "third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder.cc", |
| 1266 | "third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder.h", |
| 1267 | "third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder_listener.cc", |
| 1268 | "third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder_listener.h", |
| 1269 | "third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_buffer.cc", |
| 1270 | "third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_buffer.h", |
| 1271 | "third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_listener.cc", |
| 1272 | "third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_listener.h", |
| 1273 | "third_party/quiche/src/http2/hpack/hpack_static_table_entries.inc", |
| 1274 | "third_party/quiche/src/http2/hpack/hpack_string.cc", |
| 1275 | "third_party/quiche/src/http2/hpack/hpack_string.h", |
| 1276 | "third_party/quiche/src/http2/hpack/http2_hpack_constants.cc", |
| 1277 | "third_party/quiche/src/http2/hpack/http2_hpack_constants.h", |
| 1278 | "third_party/quiche/src/http2/hpack/huffman/hpack_huffman_decoder.cc", |
| 1279 | "third_party/quiche/src/http2/hpack/huffman/hpack_huffman_decoder.h", |
| 1280 | "third_party/quiche/src/http2/hpack/huffman/hpack_huffman_encoder.cc", |
| 1281 | "third_party/quiche/src/http2/hpack/huffman/hpack_huffman_encoder.h", |
| 1282 | "third_party/quiche/src/http2/hpack/huffman/huffman_spec_tables.cc", |
| 1283 | "third_party/quiche/src/http2/hpack/huffman/huffman_spec_tables.h", |
| 1284 | "third_party/quiche/src/http2/hpack/varint/hpack_varint_decoder.cc", |
| 1285 | "third_party/quiche/src/http2/hpack/varint/hpack_varint_decoder.h", |
| 1286 | "third_party/quiche/src/http2/hpack/varint/hpack_varint_encoder.cc", |
| 1287 | "third_party/quiche/src/http2/hpack/varint/hpack_varint_encoder.h", |
| 1288 | "third_party/quiche/src/http2/http2_constants.cc", |
| 1289 | "third_party/quiche/src/http2/http2_constants.h", |
| 1290 | "third_party/quiche/src/http2/http2_structures.cc", |
| 1291 | "third_party/quiche/src/http2/http2_structures.h", |
| 1292 | "third_party/quiche/src/http2/platform/api/http2_arraysize.h", |
| 1293 | "third_party/quiche/src/http2/platform/api/http2_bug_tracker.h", |
Ryan Hamilton | 14557b8 | 2019-05-01 21:57:15 | [diff] [blame] | 1294 | "third_party/quiche/src/http2/platform/api/http2_containers.h", |
| 1295 | "third_party/quiche/src/http2/platform/api/http2_estimate_memory_usage.h", |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 1296 | "third_party/quiche/src/http2/platform/api/http2_export.h", |
| 1297 | "third_party/quiche/src/http2/platform/api/http2_flag_utils.h", |
| 1298 | "third_party/quiche/src/http2/platform/api/http2_flags.h", |
Victor Vasiliev | 27ca04a | 2019-03-09 01:28:00 | [diff] [blame] | 1299 | "third_party/quiche/src/http2/platform/api/http2_logging.h", |
Ryan Hamilton | 14557b8 | 2019-05-01 21:57:15 | [diff] [blame] | 1300 | "third_party/quiche/src/http2/platform/api/http2_macros.h", |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 1301 | "third_party/quiche/src/http2/platform/api/http2_optional.h", |
| 1302 | "third_party/quiche/src/http2/platform/api/http2_ptr_util.h", |
| 1303 | "third_party/quiche/src/http2/platform/api/http2_reconstruct_object.h", |
| 1304 | "third_party/quiche/src/http2/platform/api/http2_string.h", |
| 1305 | "third_party/quiche/src/http2/platform/api/http2_string_piece.h", |
| 1306 | "third_party/quiche/src/http2/platform/api/http2_string_utils.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 1307 | "third_party/quiche/src/quic/core/congestion_control/bandwidth_sampler.cc", |
| 1308 | "third_party/quiche/src/quic/core/congestion_control/bandwidth_sampler.h", |
| 1309 | "third_party/quiche/src/quic/core/congestion_control/bbr_sender.cc", |
| 1310 | "third_party/quiche/src/quic/core/congestion_control/bbr_sender.h", |
| 1311 | "third_party/quiche/src/quic/core/congestion_control/cubic_bytes.cc", |
| 1312 | "third_party/quiche/src/quic/core/congestion_control/cubic_bytes.h", |
| 1313 | "third_party/quiche/src/quic/core/congestion_control/general_loss_algorithm.cc", |
| 1314 | "third_party/quiche/src/quic/core/congestion_control/general_loss_algorithm.h", |
| 1315 | "third_party/quiche/src/quic/core/congestion_control/hybrid_slow_start.cc", |
| 1316 | "third_party/quiche/src/quic/core/congestion_control/hybrid_slow_start.h", |
| 1317 | "third_party/quiche/src/quic/core/congestion_control/loss_detection_interface.h", |
| 1318 | "third_party/quiche/src/quic/core/congestion_control/pacing_sender.cc", |
| 1319 | "third_party/quiche/src/quic/core/congestion_control/pacing_sender.h", |
| 1320 | "third_party/quiche/src/quic/core/congestion_control/prr_sender.cc", |
| 1321 | "third_party/quiche/src/quic/core/congestion_control/prr_sender.h", |
| 1322 | "third_party/quiche/src/quic/core/congestion_control/rtt_stats.cc", |
| 1323 | "third_party/quiche/src/quic/core/congestion_control/rtt_stats.h", |
| 1324 | "third_party/quiche/src/quic/core/congestion_control/send_algorithm_interface.cc", |
| 1325 | "third_party/quiche/src/quic/core/congestion_control/send_algorithm_interface.h", |
| 1326 | "third_party/quiche/src/quic/core/congestion_control/tcp_cubic_sender_bytes.cc", |
| 1327 | "third_party/quiche/src/quic/core/congestion_control/tcp_cubic_sender_bytes.h", |
| 1328 | "third_party/quiche/src/quic/core/congestion_control/uber_loss_algorithm.cc", |
| 1329 | "third_party/quiche/src/quic/core/congestion_control/uber_loss_algorithm.h", |
| 1330 | "third_party/quiche/src/quic/core/congestion_control/windowed_filter.h", |
| 1331 | "third_party/quiche/src/quic/core/crypto/aead_base_decrypter.cc", |
| 1332 | "third_party/quiche/src/quic/core/crypto/aead_base_decrypter.h", |
| 1333 | "third_party/quiche/src/quic/core/crypto/aead_base_encrypter.cc", |
| 1334 | "third_party/quiche/src/quic/core/crypto/aead_base_encrypter.h", |
| 1335 | "third_party/quiche/src/quic/core/crypto/aes_128_gcm_12_decrypter.cc", |
| 1336 | "third_party/quiche/src/quic/core/crypto/aes_128_gcm_12_decrypter.h", |
| 1337 | "third_party/quiche/src/quic/core/crypto/aes_128_gcm_12_encrypter.cc", |
| 1338 | "third_party/quiche/src/quic/core/crypto/aes_128_gcm_12_encrypter.h", |
| 1339 | "third_party/quiche/src/quic/core/crypto/aes_128_gcm_decrypter.cc", |
| 1340 | "third_party/quiche/src/quic/core/crypto/aes_128_gcm_decrypter.h", |
| 1341 | "third_party/quiche/src/quic/core/crypto/aes_128_gcm_encrypter.cc", |
| 1342 | "third_party/quiche/src/quic/core/crypto/aes_128_gcm_encrypter.h", |
| 1343 | "third_party/quiche/src/quic/core/crypto/aes_256_gcm_decrypter.cc", |
| 1344 | "third_party/quiche/src/quic/core/crypto/aes_256_gcm_decrypter.h", |
| 1345 | "third_party/quiche/src/quic/core/crypto/aes_256_gcm_encrypter.cc", |
| 1346 | "third_party/quiche/src/quic/core/crypto/aes_256_gcm_encrypter.h", |
Ryan Hamilton | 96fb5f4 | 2019-03-21 16:24:19 | [diff] [blame] | 1347 | "third_party/quiche/src/quic/core/crypto/aes_base_decrypter.cc", |
| 1348 | "third_party/quiche/src/quic/core/crypto/aes_base_decrypter.h", |
| 1349 | "third_party/quiche/src/quic/core/crypto/aes_base_encrypter.cc", |
| 1350 | "third_party/quiche/src/quic/core/crypto/aes_base_encrypter.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 1351 | "third_party/quiche/src/quic/core/crypto/cert_compressor.cc", |
| 1352 | "third_party/quiche/src/quic/core/crypto/cert_compressor.h", |
| 1353 | "third_party/quiche/src/quic/core/crypto/chacha20_poly1305_decrypter.cc", |
| 1354 | "third_party/quiche/src/quic/core/crypto/chacha20_poly1305_decrypter.h", |
| 1355 | "third_party/quiche/src/quic/core/crypto/chacha20_poly1305_encrypter.cc", |
| 1356 | "third_party/quiche/src/quic/core/crypto/chacha20_poly1305_encrypter.h", |
| 1357 | "third_party/quiche/src/quic/core/crypto/chacha20_poly1305_tls_decrypter.cc", |
| 1358 | "third_party/quiche/src/quic/core/crypto/chacha20_poly1305_tls_decrypter.h", |
| 1359 | "third_party/quiche/src/quic/core/crypto/chacha20_poly1305_tls_encrypter.cc", |
| 1360 | "third_party/quiche/src/quic/core/crypto/chacha20_poly1305_tls_encrypter.h", |
Ryan Hamilton | 96fb5f4 | 2019-03-21 16:24:19 | [diff] [blame] | 1361 | "third_party/quiche/src/quic/core/crypto/chacha_base_decrypter.cc", |
| 1362 | "third_party/quiche/src/quic/core/crypto/chacha_base_decrypter.h", |
| 1363 | "third_party/quiche/src/quic/core/crypto/chacha_base_encrypter.cc", |
| 1364 | "third_party/quiche/src/quic/core/crypto/chacha_base_encrypter.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 1365 | "third_party/quiche/src/quic/core/crypto/channel_id.cc", |
| 1366 | "third_party/quiche/src/quic/core/crypto/channel_id.h", |
| 1367 | "third_party/quiche/src/quic/core/crypto/common_cert_set.cc", |
| 1368 | "third_party/quiche/src/quic/core/crypto/common_cert_set.h", |
| 1369 | "third_party/quiche/src/quic/core/crypto/crypto_framer.cc", |
| 1370 | "third_party/quiche/src/quic/core/crypto/crypto_framer.h", |
| 1371 | "third_party/quiche/src/quic/core/crypto/crypto_handshake.cc", |
| 1372 | "third_party/quiche/src/quic/core/crypto/crypto_handshake.h", |
| 1373 | "third_party/quiche/src/quic/core/crypto/crypto_handshake_message.cc", |
| 1374 | "third_party/quiche/src/quic/core/crypto/crypto_handshake_message.h", |
| 1375 | "third_party/quiche/src/quic/core/crypto/crypto_message_parser.h", |
| 1376 | "third_party/quiche/src/quic/core/crypto/crypto_protocol.h", |
| 1377 | "third_party/quiche/src/quic/core/crypto/crypto_secret_boxer.cc", |
| 1378 | "third_party/quiche/src/quic/core/crypto/crypto_secret_boxer.h", |
| 1379 | "third_party/quiche/src/quic/core/crypto/crypto_utils.cc", |
| 1380 | "third_party/quiche/src/quic/core/crypto/crypto_utils.h", |
| 1381 | "third_party/quiche/src/quic/core/crypto/curve25519_key_exchange.cc", |
| 1382 | "third_party/quiche/src/quic/core/crypto/curve25519_key_exchange.h", |
Ryan Hamilton | 840358c | 2019-03-19 19:00:35 | [diff] [blame] | 1383 | "third_party/quiche/src/quic/core/crypto/key_exchange.cc", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 1384 | "third_party/quiche/src/quic/core/crypto/key_exchange.h", |
| 1385 | "third_party/quiche/src/quic/core/crypto/null_decrypter.cc", |
| 1386 | "third_party/quiche/src/quic/core/crypto/null_decrypter.h", |
| 1387 | "third_party/quiche/src/quic/core/crypto/null_encrypter.cc", |
| 1388 | "third_party/quiche/src/quic/core/crypto/null_encrypter.h", |
| 1389 | "third_party/quiche/src/quic/core/crypto/p256_key_exchange.cc", |
| 1390 | "third_party/quiche/src/quic/core/crypto/p256_key_exchange.h", |
| 1391 | "third_party/quiche/src/quic/core/crypto/proof_source.cc", |
| 1392 | "third_party/quiche/src/quic/core/crypto/proof_source.h", |
| 1393 | "third_party/quiche/src/quic/core/crypto/proof_verifier.h", |
| 1394 | "third_party/quiche/src/quic/core/crypto/quic_compressed_certs_cache.cc", |
| 1395 | "third_party/quiche/src/quic/core/crypto/quic_compressed_certs_cache.h", |
| 1396 | "third_party/quiche/src/quic/core/crypto/quic_crypter.h", |
| 1397 | "third_party/quiche/src/quic/core/crypto/quic_crypto_client_config.cc", |
| 1398 | "third_party/quiche/src/quic/core/crypto/quic_crypto_client_config.h", |
| 1399 | "third_party/quiche/src/quic/core/crypto/quic_crypto_proof.cc", |
| 1400 | "third_party/quiche/src/quic/core/crypto/quic_crypto_proof.h", |
| 1401 | "third_party/quiche/src/quic/core/crypto/quic_crypto_server_config.cc", |
| 1402 | "third_party/quiche/src/quic/core/crypto/quic_crypto_server_config.h", |
| 1403 | "third_party/quiche/src/quic/core/crypto/quic_decrypter.cc", |
| 1404 | "third_party/quiche/src/quic/core/crypto/quic_decrypter.h", |
| 1405 | "third_party/quiche/src/quic/core/crypto/quic_encrypter.cc", |
| 1406 | "third_party/quiche/src/quic/core/crypto/quic_encrypter.h", |
| 1407 | "third_party/quiche/src/quic/core/crypto/quic_hkdf.cc", |
| 1408 | "third_party/quiche/src/quic/core/crypto/quic_hkdf.h", |
| 1409 | "third_party/quiche/src/quic/core/crypto/quic_random.cc", |
| 1410 | "third_party/quiche/src/quic/core/crypto/quic_random.h", |
| 1411 | "third_party/quiche/src/quic/core/crypto/transport_parameters.cc", |
| 1412 | "third_party/quiche/src/quic/core/crypto/transport_parameters.h", |
| 1413 | "third_party/quiche/src/quic/core/frames/quic_ack_frame.cc", |
| 1414 | "third_party/quiche/src/quic/core/frames/quic_ack_frame.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 1415 | "third_party/quiche/src/quic/core/frames/quic_blocked_frame.cc", |
| 1416 | "third_party/quiche/src/quic/core/frames/quic_blocked_frame.h", |
| 1417 | "third_party/quiche/src/quic/core/frames/quic_connection_close_frame.cc", |
| 1418 | "third_party/quiche/src/quic/core/frames/quic_connection_close_frame.h", |
| 1419 | "third_party/quiche/src/quic/core/frames/quic_crypto_frame.cc", |
| 1420 | "third_party/quiche/src/quic/core/frames/quic_crypto_frame.h", |
| 1421 | "third_party/quiche/src/quic/core/frames/quic_frame.cc", |
| 1422 | "third_party/quiche/src/quic/core/frames/quic_frame.h", |
| 1423 | "third_party/quiche/src/quic/core/frames/quic_goaway_frame.cc", |
| 1424 | "third_party/quiche/src/quic/core/frames/quic_goaway_frame.h", |
| 1425 | "third_party/quiche/src/quic/core/frames/quic_inlined_frame.h", |
David Schinazi | cc1bc59 | 2019-04-24 19:40:31 | [diff] [blame] | 1426 | "third_party/quiche/src/quic/core/frames/quic_max_streams_frame.cc", |
| 1427 | "third_party/quiche/src/quic/core/frames/quic_max_streams_frame.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 1428 | "third_party/quiche/src/quic/core/frames/quic_message_frame.cc", |
| 1429 | "third_party/quiche/src/quic/core/frames/quic_message_frame.h", |
| 1430 | "third_party/quiche/src/quic/core/frames/quic_mtu_discovery_frame.h", |
| 1431 | "third_party/quiche/src/quic/core/frames/quic_new_connection_id_frame.cc", |
| 1432 | "third_party/quiche/src/quic/core/frames/quic_new_connection_id_frame.h", |
| 1433 | "third_party/quiche/src/quic/core/frames/quic_new_token_frame.cc", |
| 1434 | "third_party/quiche/src/quic/core/frames/quic_new_token_frame.h", |
| 1435 | "third_party/quiche/src/quic/core/frames/quic_padding_frame.cc", |
| 1436 | "third_party/quiche/src/quic/core/frames/quic_padding_frame.h", |
| 1437 | "third_party/quiche/src/quic/core/frames/quic_path_challenge_frame.cc", |
| 1438 | "third_party/quiche/src/quic/core/frames/quic_path_challenge_frame.h", |
| 1439 | "third_party/quiche/src/quic/core/frames/quic_path_response_frame.cc", |
| 1440 | "third_party/quiche/src/quic/core/frames/quic_path_response_frame.h", |
| 1441 | "third_party/quiche/src/quic/core/frames/quic_ping_frame.cc", |
| 1442 | "third_party/quiche/src/quic/core/frames/quic_ping_frame.h", |
| 1443 | "third_party/quiche/src/quic/core/frames/quic_retire_connection_id_frame.cc", |
| 1444 | "third_party/quiche/src/quic/core/frames/quic_retire_connection_id_frame.h", |
| 1445 | "third_party/quiche/src/quic/core/frames/quic_rst_stream_frame.cc", |
| 1446 | "third_party/quiche/src/quic/core/frames/quic_rst_stream_frame.h", |
| 1447 | "third_party/quiche/src/quic/core/frames/quic_stop_sending_frame.cc", |
| 1448 | "third_party/quiche/src/quic/core/frames/quic_stop_sending_frame.h", |
| 1449 | "third_party/quiche/src/quic/core/frames/quic_stop_waiting_frame.cc", |
| 1450 | "third_party/quiche/src/quic/core/frames/quic_stop_waiting_frame.h", |
| 1451 | "third_party/quiche/src/quic/core/frames/quic_stream_frame.cc", |
| 1452 | "third_party/quiche/src/quic/core/frames/quic_stream_frame.h", |
David Schinazi | cc1bc59 | 2019-04-24 19:40:31 | [diff] [blame] | 1453 | "third_party/quiche/src/quic/core/frames/quic_streams_blocked_frame.cc", |
| 1454 | "third_party/quiche/src/quic/core/frames/quic_streams_blocked_frame.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 1455 | "third_party/quiche/src/quic/core/frames/quic_window_update_frame.cc", |
| 1456 | "third_party/quiche/src/quic/core/frames/quic_window_update_frame.h", |
| 1457 | "third_party/quiche/src/quic/core/http/http_decoder.cc", |
| 1458 | "third_party/quiche/src/quic/core/http/http_decoder.h", |
| 1459 | "third_party/quiche/src/quic/core/http/http_encoder.cc", |
| 1460 | "third_party/quiche/src/quic/core/http/http_encoder.h", |
| 1461 | "third_party/quiche/src/quic/core/http/http_frames.h", |
| 1462 | "third_party/quiche/src/quic/core/http/quic_client_promised_info.cc", |
| 1463 | "third_party/quiche/src/quic/core/http/quic_client_promised_info.h", |
| 1464 | "third_party/quiche/src/quic/core/http/quic_client_push_promise_index.cc", |
| 1465 | "third_party/quiche/src/quic/core/http/quic_client_push_promise_index.h", |
| 1466 | "third_party/quiche/src/quic/core/http/quic_header_list.cc", |
| 1467 | "third_party/quiche/src/quic/core/http/quic_header_list.h", |
| 1468 | "third_party/quiche/src/quic/core/http/quic_headers_stream.cc", |
| 1469 | "third_party/quiche/src/quic/core/http/quic_headers_stream.h", |
Ryan Hamilton | d6cdacef | 2019-05-01 19:19:05 | [diff] [blame] | 1470 | "third_party/quiche/src/quic/core/http/quic_receive_control_stream.cc", |
| 1471 | "third_party/quiche/src/quic/core/http/quic_receive_control_stream.h", |
| 1472 | "third_party/quiche/src/quic/core/http/quic_send_control_stream.cc", |
| 1473 | "third_party/quiche/src/quic/core/http/quic_send_control_stream.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 1474 | "third_party/quiche/src/quic/core/http/quic_server_session_base.cc", |
| 1475 | "third_party/quiche/src/quic/core/http/quic_server_session_base.h", |
| 1476 | "third_party/quiche/src/quic/core/http/quic_spdy_client_session_base.cc", |
| 1477 | "third_party/quiche/src/quic/core/http/quic_spdy_client_session_base.h", |
| 1478 | "third_party/quiche/src/quic/core/http/quic_spdy_session.cc", |
| 1479 | "third_party/quiche/src/quic/core/http/quic_spdy_session.h", |
| 1480 | "third_party/quiche/src/quic/core/http/quic_spdy_stream.cc", |
| 1481 | "third_party/quiche/src/quic/core/http/quic_spdy_stream.h", |
| 1482 | "third_party/quiche/src/quic/core/http/quic_spdy_stream_body_buffer.cc", |
| 1483 | "third_party/quiche/src/quic/core/http/quic_spdy_stream_body_buffer.h", |
| 1484 | "third_party/quiche/src/quic/core/http/spdy_utils.cc", |
| 1485 | "third_party/quiche/src/quic/core/http/spdy_utils.h", |
| 1486 | "third_party/quiche/src/quic/core/legacy_quic_stream_id_manager.cc", |
| 1487 | "third_party/quiche/src/quic/core/legacy_quic_stream_id_manager.h", |
| 1488 | "third_party/quiche/src/quic/core/packet_number_indexed_queue.h", |
| 1489 | "third_party/quiche/src/quic/core/qpack/qpack_constants.cc", |
| 1490 | "third_party/quiche/src/quic/core/qpack/qpack_constants.h", |
| 1491 | "third_party/quiche/src/quic/core/qpack/qpack_decoded_headers_accumulator.cc", |
| 1492 | "third_party/quiche/src/quic/core/qpack/qpack_decoded_headers_accumulator.h", |
| 1493 | "third_party/quiche/src/quic/core/qpack/qpack_decoder.cc", |
| 1494 | "third_party/quiche/src/quic/core/qpack/qpack_decoder.h", |
| 1495 | "third_party/quiche/src/quic/core/qpack/qpack_decoder_stream_receiver.cc", |
| 1496 | "third_party/quiche/src/quic/core/qpack/qpack_decoder_stream_receiver.h", |
| 1497 | "third_party/quiche/src/quic/core/qpack/qpack_decoder_stream_sender.cc", |
| 1498 | "third_party/quiche/src/quic/core/qpack/qpack_decoder_stream_sender.h", |
| 1499 | "third_party/quiche/src/quic/core/qpack/qpack_encoder.cc", |
| 1500 | "third_party/quiche/src/quic/core/qpack/qpack_encoder.h", |
| 1501 | "third_party/quiche/src/quic/core/qpack/qpack_encoder_stream_receiver.cc", |
| 1502 | "third_party/quiche/src/quic/core/qpack/qpack_encoder_stream_receiver.h", |
| 1503 | "third_party/quiche/src/quic/core/qpack/qpack_encoder_stream_sender.cc", |
| 1504 | "third_party/quiche/src/quic/core/qpack/qpack_encoder_stream_sender.h", |
| 1505 | "third_party/quiche/src/quic/core/qpack/qpack_header_table.cc", |
| 1506 | "third_party/quiche/src/quic/core/qpack/qpack_header_table.h", |
| 1507 | "third_party/quiche/src/quic/core/qpack/qpack_instruction_decoder.cc", |
| 1508 | "third_party/quiche/src/quic/core/qpack/qpack_instruction_decoder.h", |
| 1509 | "third_party/quiche/src/quic/core/qpack/qpack_instruction_encoder.cc", |
| 1510 | "third_party/quiche/src/quic/core/qpack/qpack_instruction_encoder.h", |
| 1511 | "third_party/quiche/src/quic/core/qpack/qpack_progressive_decoder.cc", |
| 1512 | "third_party/quiche/src/quic/core/qpack/qpack_progressive_decoder.h", |
| 1513 | "third_party/quiche/src/quic/core/qpack/qpack_progressive_encoder.cc", |
| 1514 | "third_party/quiche/src/quic/core/qpack/qpack_progressive_encoder.h", |
| 1515 | "third_party/quiche/src/quic/core/qpack/qpack_static_table.cc", |
| 1516 | "third_party/quiche/src/quic/core/qpack/qpack_static_table.h", |
Bence Béky | 3e38655 | 2019-04-29 23:44:46 | [diff] [blame] | 1517 | "third_party/quiche/src/quic/core/qpack/value_splitting_header_list.cc", |
| 1518 | "third_party/quiche/src/quic/core/qpack/value_splitting_header_list.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 1519 | "third_party/quiche/src/quic/core/quic_ack_listener_interface.cc", |
| 1520 | "third_party/quiche/src/quic/core/quic_ack_listener_interface.h", |
| 1521 | "third_party/quiche/src/quic/core/quic_alarm.cc", |
| 1522 | "third_party/quiche/src/quic/core/quic_alarm.h", |
| 1523 | "third_party/quiche/src/quic/core/quic_alarm_factory.h", |
| 1524 | "third_party/quiche/src/quic/core/quic_arena_scoped_ptr.h", |
| 1525 | "third_party/quiche/src/quic/core/quic_bandwidth.cc", |
| 1526 | "third_party/quiche/src/quic/core/quic_bandwidth.h", |
| 1527 | "third_party/quiche/src/quic/core/quic_blocked_writer_interface.h", |
| 1528 | "third_party/quiche/src/quic/core/quic_buffer_allocator.cc", |
| 1529 | "third_party/quiche/src/quic/core/quic_buffer_allocator.h", |
| 1530 | "third_party/quiche/src/quic/core/quic_buffered_packet_store.cc", |
| 1531 | "third_party/quiche/src/quic/core/quic_buffered_packet_store.h", |
| 1532 | "third_party/quiche/src/quic/core/quic_config.cc", |
| 1533 | "third_party/quiche/src/quic/core/quic_config.h", |
| 1534 | "third_party/quiche/src/quic/core/quic_connection.cc", |
| 1535 | "third_party/quiche/src/quic/core/quic_connection.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 1536 | "third_party/quiche/src/quic/core/quic_connection_id.cc", |
| 1537 | "third_party/quiche/src/quic/core/quic_connection_id.h", |
| 1538 | "third_party/quiche/src/quic/core/quic_connection_stats.cc", |
| 1539 | "third_party/quiche/src/quic/core/quic_connection_stats.h", |
| 1540 | "third_party/quiche/src/quic/core/quic_constants.cc", |
| 1541 | "third_party/quiche/src/quic/core/quic_constants.h", |
| 1542 | "third_party/quiche/src/quic/core/quic_control_frame_manager.cc", |
| 1543 | "third_party/quiche/src/quic/core/quic_control_frame_manager.h", |
| 1544 | "third_party/quiche/src/quic/core/quic_crypto_client_handshaker.cc", |
| 1545 | "third_party/quiche/src/quic/core/quic_crypto_client_handshaker.h", |
| 1546 | "third_party/quiche/src/quic/core/quic_crypto_client_stream.cc", |
| 1547 | "third_party/quiche/src/quic/core/quic_crypto_client_stream.h", |
| 1548 | "third_party/quiche/src/quic/core/quic_crypto_handshaker.cc", |
| 1549 | "third_party/quiche/src/quic/core/quic_crypto_handshaker.h", |
| 1550 | "third_party/quiche/src/quic/core/quic_crypto_server_handshaker.cc", |
| 1551 | "third_party/quiche/src/quic/core/quic_crypto_server_handshaker.h", |
| 1552 | "third_party/quiche/src/quic/core/quic_crypto_server_stream.cc", |
| 1553 | "third_party/quiche/src/quic/core/quic_crypto_server_stream.h", |
| 1554 | "third_party/quiche/src/quic/core/quic_crypto_stream.cc", |
| 1555 | "third_party/quiche/src/quic/core/quic_crypto_stream.h", |
| 1556 | "third_party/quiche/src/quic/core/quic_data_reader.cc", |
| 1557 | "third_party/quiche/src/quic/core/quic_data_reader.h", |
| 1558 | "third_party/quiche/src/quic/core/quic_data_writer.cc", |
| 1559 | "third_party/quiche/src/quic/core/quic_data_writer.h", |
| 1560 | "third_party/quiche/src/quic/core/quic_flow_controller.cc", |
| 1561 | "third_party/quiche/src/quic/core/quic_flow_controller.h", |
| 1562 | "third_party/quiche/src/quic/core/quic_framer.cc", |
| 1563 | "third_party/quiche/src/quic/core/quic_framer.h", |
| 1564 | "third_party/quiche/src/quic/core/quic_interval.h", |
| 1565 | "third_party/quiche/src/quic/core/quic_interval_set.h", |
| 1566 | "third_party/quiche/src/quic/core/quic_lru_cache.h", |
| 1567 | "third_party/quiche/src/quic/core/quic_one_block_arena.h", |
| 1568 | "third_party/quiche/src/quic/core/quic_packet_creator.cc", |
| 1569 | "third_party/quiche/src/quic/core/quic_packet_creator.h", |
| 1570 | "third_party/quiche/src/quic/core/quic_packet_generator.cc", |
| 1571 | "third_party/quiche/src/quic/core/quic_packet_generator.h", |
| 1572 | "third_party/quiche/src/quic/core/quic_packet_number.cc", |
| 1573 | "third_party/quiche/src/quic/core/quic_packet_number.h", |
| 1574 | "third_party/quiche/src/quic/core/quic_packet_writer.h", |
| 1575 | "third_party/quiche/src/quic/core/quic_packets.cc", |
| 1576 | "third_party/quiche/src/quic/core/quic_packets.h", |
| 1577 | "third_party/quiche/src/quic/core/quic_pending_retransmission.h", |
| 1578 | "third_party/quiche/src/quic/core/quic_received_packet_manager.cc", |
| 1579 | "third_party/quiche/src/quic/core/quic_received_packet_manager.h", |
| 1580 | "third_party/quiche/src/quic/core/quic_sent_packet_manager.cc", |
| 1581 | "third_party/quiche/src/quic/core/quic_sent_packet_manager.h", |
| 1582 | "third_party/quiche/src/quic/core/quic_server_id.cc", |
| 1583 | "third_party/quiche/src/quic/core/quic_server_id.h", |
| 1584 | "third_party/quiche/src/quic/core/quic_session.cc", |
| 1585 | "third_party/quiche/src/quic/core/quic_session.h", |
| 1586 | "third_party/quiche/src/quic/core/quic_simple_buffer_allocator.cc", |
| 1587 | "third_party/quiche/src/quic/core/quic_simple_buffer_allocator.h", |
| 1588 | "third_party/quiche/src/quic/core/quic_socket_address_coder.cc", |
| 1589 | "third_party/quiche/src/quic/core/quic_socket_address_coder.h", |
| 1590 | "third_party/quiche/src/quic/core/quic_stream.cc", |
| 1591 | "third_party/quiche/src/quic/core/quic_stream.h", |
| 1592 | "third_party/quiche/src/quic/core/quic_stream_frame_data_producer.h", |
| 1593 | "third_party/quiche/src/quic/core/quic_stream_id_manager.cc", |
| 1594 | "third_party/quiche/src/quic/core/quic_stream_id_manager.h", |
| 1595 | "third_party/quiche/src/quic/core/quic_stream_send_buffer.cc", |
| 1596 | "third_party/quiche/src/quic/core/quic_stream_send_buffer.h", |
| 1597 | "third_party/quiche/src/quic/core/quic_stream_sequencer.cc", |
| 1598 | "third_party/quiche/src/quic/core/quic_stream_sequencer.h", |
| 1599 | "third_party/quiche/src/quic/core/quic_stream_sequencer_buffer.cc", |
| 1600 | "third_party/quiche/src/quic/core/quic_stream_sequencer_buffer.h", |
| 1601 | "third_party/quiche/src/quic/core/quic_sustained_bandwidth_recorder.cc", |
| 1602 | "third_party/quiche/src/quic/core/quic_sustained_bandwidth_recorder.h", |
| 1603 | "third_party/quiche/src/quic/core/quic_tag.cc", |
| 1604 | "third_party/quiche/src/quic/core/quic_tag.h", |
| 1605 | "third_party/quiche/src/quic/core/quic_time.cc", |
| 1606 | "third_party/quiche/src/quic/core/quic_time.h", |
| 1607 | "third_party/quiche/src/quic/core/quic_transmission_info.cc", |
| 1608 | "third_party/quiche/src/quic/core/quic_transmission_info.h", |
| 1609 | "third_party/quiche/src/quic/core/quic_types.cc", |
| 1610 | "third_party/quiche/src/quic/core/quic_types.h", |
| 1611 | "third_party/quiche/src/quic/core/quic_unacked_packet_map.cc", |
| 1612 | "third_party/quiche/src/quic/core/quic_unacked_packet_map.h", |
| 1613 | "third_party/quiche/src/quic/core/quic_utils.cc", |
| 1614 | "third_party/quiche/src/quic/core/quic_utils.h", |
| 1615 | "third_party/quiche/src/quic/core/quic_version_manager.cc", |
| 1616 | "third_party/quiche/src/quic/core/quic_version_manager.h", |
| 1617 | "third_party/quiche/src/quic/core/quic_versions.cc", |
| 1618 | "third_party/quiche/src/quic/core/quic_versions.h", |
| 1619 | "third_party/quiche/src/quic/core/quic_write_blocked_list.cc", |
| 1620 | "third_party/quiche/src/quic/core/quic_write_blocked_list.h", |
Ryan Hamilton | d6cdacef | 2019-05-01 19:19:05 | [diff] [blame] | 1621 | "third_party/quiche/src/quic/core/session_notifier_interface.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 1622 | "third_party/quiche/src/quic/core/tls_client_handshaker.cc", |
| 1623 | "third_party/quiche/src/quic/core/tls_client_handshaker.h", |
| 1624 | "third_party/quiche/src/quic/core/tls_handshaker.cc", |
| 1625 | "third_party/quiche/src/quic/core/tls_handshaker.h", |
| 1626 | "third_party/quiche/src/quic/core/tls_server_handshaker.cc", |
| 1627 | "third_party/quiche/src/quic/core/tls_server_handshaker.h", |
| 1628 | "third_party/quiche/src/quic/core/uber_quic_stream_id_manager.cc", |
| 1629 | "third_party/quiche/src/quic/core/uber_quic_stream_id_manager.h", |
Ryan Hamilton | 39aedbdd | 2019-03-22 23:59:03 | [diff] [blame] | 1630 | "third_party/quiche/src/quic/core/uber_received_packet_manager.cc", |
| 1631 | "third_party/quiche/src/quic/core/uber_received_packet_manager.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 1632 | "third_party/quiche/src/quic/platform/api/quic_aligned.h", |
| 1633 | "third_party/quiche/src/quic/platform/api/quic_arraysize.h", |
| 1634 | "third_party/quiche/src/quic/platform/api/quic_bug_tracker.h", |
| 1635 | "third_party/quiche/src/quic/platform/api/quic_cert_utils.h", |
| 1636 | "third_party/quiche/src/quic/platform/api/quic_client_stats.h", |
| 1637 | "third_party/quiche/src/quic/platform/api/quic_clock.cc", |
| 1638 | "third_party/quiche/src/quic/platform/api/quic_clock.h", |
| 1639 | "third_party/quiche/src/quic/platform/api/quic_containers.h", |
| 1640 | "third_party/quiche/src/quic/platform/api/quic_endian.h", |
| 1641 | "third_party/quiche/src/quic/platform/api/quic_error_code_wrappers.h", |
| 1642 | "third_party/quiche/src/quic/platform/api/quic_estimate_memory_usage.h", |
| 1643 | "third_party/quiche/src/quic/platform/api/quic_export.h", |
| 1644 | "third_party/quiche/src/quic/platform/api/quic_exported_stats.h", |
| 1645 | "third_party/quiche/src/quic/platform/api/quic_fallthrough.h", |
| 1646 | "third_party/quiche/src/quic/platform/api/quic_file_utils.cc", |
| 1647 | "third_party/quiche/src/quic/platform/api/quic_file_utils.h", |
| 1648 | "third_party/quiche/src/quic/platform/api/quic_flag_utils.h", |
| 1649 | "third_party/quiche/src/quic/platform/api/quic_flags.h", |
| 1650 | "third_party/quiche/src/quic/platform/api/quic_hostname_utils.cc", |
| 1651 | "third_party/quiche/src/quic/platform/api/quic_hostname_utils.h", |
| 1652 | "third_party/quiche/src/quic/platform/api/quic_iovec.h", |
| 1653 | "third_party/quiche/src/quic/platform/api/quic_ip_address.cc", |
| 1654 | "third_party/quiche/src/quic/platform/api/quic_ip_address.h", |
| 1655 | "third_party/quiche/src/quic/platform/api/quic_ip_address_family.h", |
| 1656 | "third_party/quiche/src/quic/platform/api/quic_logging.h", |
| 1657 | "third_party/quiche/src/quic/platform/api/quic_macros.h", |
| 1658 | "third_party/quiche/src/quic/platform/api/quic_map_util.h", |
| 1659 | "third_party/quiche/src/quic/platform/api/quic_mem_slice.h", |
| 1660 | "third_party/quiche/src/quic/platform/api/quic_mem_slice_span.h", |
| 1661 | "third_party/quiche/src/quic/platform/api/quic_mem_slice_storage.h", |
| 1662 | "third_party/quiche/src/quic/platform/api/quic_mutex.cc", |
| 1663 | "third_party/quiche/src/quic/platform/api/quic_mutex.h", |
| 1664 | "third_party/quiche/src/quic/platform/api/quic_pcc_sender.h", |
| 1665 | "third_party/quiche/src/quic/platform/api/quic_prefetch.h", |
| 1666 | "third_party/quiche/src/quic/platform/api/quic_ptr_util.h", |
| 1667 | "third_party/quiche/src/quic/platform/api/quic_reference_counted.h", |
| 1668 | "third_party/quiche/src/quic/platform/api/quic_server_stats.h", |
| 1669 | "third_party/quiche/src/quic/platform/api/quic_sleep.h", |
| 1670 | "third_party/quiche/src/quic/platform/api/quic_socket_address.cc", |
| 1671 | "third_party/quiche/src/quic/platform/api/quic_socket_address.h", |
| 1672 | "third_party/quiche/src/quic/platform/api/quic_stack_trace.h", |
| 1673 | "third_party/quiche/src/quic/platform/api/quic_str_cat.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 1674 | "third_party/quiche/src/quic/platform/api/quic_string_piece.h", |
Ryan Hamilton | d6cdacef | 2019-05-01 19:19:05 | [diff] [blame] | 1675 | "third_party/quiche/src/quic/platform/api/quic_string_utils.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 1676 | "third_party/quiche/src/quic/platform/api/quic_text_utils.h", |
Ryan Hamilton | d6cdacef | 2019-05-01 19:19:05 | [diff] [blame] | 1677 | "third_party/quiche/src/quic/platform/api/quic_thread.h", |
| 1678 | "third_party/quiche/src/quic/platform/api/quic_uint128.h", |
Victor Vasiliev | 27cc771 | 2019-01-24 11:50:14 | [diff] [blame] | 1679 | "third_party/quiche/src/spdy/core/hpack/hpack_constants.cc", |
| 1680 | "third_party/quiche/src/spdy/core/hpack/hpack_constants.h", |
| 1681 | "third_party/quiche/src/spdy/core/hpack/hpack_decoder_adapter.cc", |
| 1682 | "third_party/quiche/src/spdy/core/hpack/hpack_decoder_adapter.h", |
| 1683 | "third_party/quiche/src/spdy/core/hpack/hpack_encoder.cc", |
| 1684 | "third_party/quiche/src/spdy/core/hpack/hpack_encoder.h", |
| 1685 | "third_party/quiche/src/spdy/core/hpack/hpack_entry.cc", |
| 1686 | "third_party/quiche/src/spdy/core/hpack/hpack_entry.h", |
| 1687 | "third_party/quiche/src/spdy/core/hpack/hpack_header_table.cc", |
| 1688 | "third_party/quiche/src/spdy/core/hpack/hpack_header_table.h", |
| 1689 | "third_party/quiche/src/spdy/core/hpack/hpack_huffman_table.cc", |
| 1690 | "third_party/quiche/src/spdy/core/hpack/hpack_huffman_table.h", |
| 1691 | "third_party/quiche/src/spdy/core/hpack/hpack_output_stream.cc", |
| 1692 | "third_party/quiche/src/spdy/core/hpack/hpack_output_stream.h", |
| 1693 | "third_party/quiche/src/spdy/core/hpack/hpack_static_table.cc", |
| 1694 | "third_party/quiche/src/spdy/core/hpack/hpack_static_table.h", |
| 1695 | "third_party/quiche/src/spdy/core/http2_frame_decoder_adapter.cc", |
| 1696 | "third_party/quiche/src/spdy/core/http2_frame_decoder_adapter.h", |
| 1697 | "third_party/quiche/src/spdy/core/priority_write_scheduler.h", |
| 1698 | "third_party/quiche/src/spdy/core/spdy_alt_svc_wire_format.cc", |
| 1699 | "third_party/quiche/src/spdy/core/spdy_alt_svc_wire_format.h", |
| 1700 | "third_party/quiche/src/spdy/core/spdy_bitmasks.h", |
| 1701 | "third_party/quiche/src/spdy/core/spdy_frame_builder.cc", |
| 1702 | "third_party/quiche/src/spdy/core/spdy_frame_builder.h", |
| 1703 | "third_party/quiche/src/spdy/core/spdy_frame_reader.cc", |
| 1704 | "third_party/quiche/src/spdy/core/spdy_frame_reader.h", |
| 1705 | "third_party/quiche/src/spdy/core/spdy_framer.cc", |
| 1706 | "third_party/quiche/src/spdy/core/spdy_framer.h", |
| 1707 | "third_party/quiche/src/spdy/core/spdy_header_block.cc", |
| 1708 | "third_party/quiche/src/spdy/core/spdy_header_block.h", |
| 1709 | "third_party/quiche/src/spdy/core/spdy_headers_handler_interface.h", |
| 1710 | "third_party/quiche/src/spdy/core/spdy_pinnable_buffer_piece.cc", |
| 1711 | "third_party/quiche/src/spdy/core/spdy_pinnable_buffer_piece.h", |
| 1712 | "third_party/quiche/src/spdy/core/spdy_prefixed_buffer_reader.cc", |
| 1713 | "third_party/quiche/src/spdy/core/spdy_prefixed_buffer_reader.h", |
| 1714 | "third_party/quiche/src/spdy/core/spdy_protocol.cc", |
| 1715 | "third_party/quiche/src/spdy/core/spdy_protocol.h", |
Dan Zhang | 6c64d6fc | 2019-04-30 21:35:16 | [diff] [blame] | 1716 | "third_party/quiche/src/spdy/core/spdy_simple_arena.cc", |
| 1717 | "third_party/quiche/src/spdy/core/spdy_simple_arena.h", |
Victor Vasiliev | 27cc771 | 2019-01-24 11:50:14 | [diff] [blame] | 1718 | "third_party/quiche/src/spdy/core/write_scheduler.h", |
| 1719 | "third_party/quiche/src/spdy/core/zero_copy_output_buffer.h", |
| 1720 | "third_party/quiche/src/spdy/platform/api/spdy_arraysize.h", |
| 1721 | "third_party/quiche/src/spdy/platform/api/spdy_bug_tracker.h", |
| 1722 | "third_party/quiche/src/spdy/platform/api/spdy_containers.h", |
| 1723 | "third_party/quiche/src/spdy/platform/api/spdy_endianness_util.h", |
| 1724 | "third_party/quiche/src/spdy/platform/api/spdy_estimate_memory_usage.h", |
| 1725 | "third_party/quiche/src/spdy/platform/api/spdy_export.h", |
| 1726 | "third_party/quiche/src/spdy/platform/api/spdy_flags.h", |
Ryan Hamilton | 14557b8 | 2019-05-01 21:57:15 | [diff] [blame] | 1727 | "third_party/quiche/src/spdy/platform/api/spdy_logging.h", |
Victor Vasiliev | 27cc771 | 2019-01-24 11:50:14 | [diff] [blame] | 1728 | "third_party/quiche/src/spdy/platform/api/spdy_macros.h", |
| 1729 | "third_party/quiche/src/spdy/platform/api/spdy_mem_slice.h", |
| 1730 | "third_party/quiche/src/spdy/platform/api/spdy_ptr_util.h", |
| 1731 | "third_party/quiche/src/spdy/platform/api/spdy_string.h", |
| 1732 | "third_party/quiche/src/spdy/platform/api/spdy_string_piece.h", |
| 1733 | "third_party/quiche/src/spdy/platform/api/spdy_string_utils.h", |
Victor Vasiliev | 27cc771 | 2019-01-24 11:50:14 | [diff] [blame] | 1734 | "third_party/quiche/src/spdy/platform/api/spdy_unsafe_arena.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1735 | "url_request/data_protocol_handler.cc", |
| 1736 | "url_request/data_protocol_handler.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1737 | "url_request/redirect_info.cc", |
| 1738 | "url_request/redirect_info.h", |
Tsuyoshi Horo | 9e2ec4df | 2017-10-16 15:15:55 | [diff] [blame] | 1739 | "url_request/redirect_util.cc", |
| 1740 | "url_request/redirect_util.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1741 | "url_request/report_sender.cc", |
| 1742 | "url_request/report_sender.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1743 | "url_request/static_http_user_agent_settings.cc", |
| 1744 | "url_request/static_http_user_agent_settings.h", |
| 1745 | "url_request/url_fetcher.cc", |
| 1746 | "url_request/url_fetcher.h", |
| 1747 | "url_request/url_fetcher_core.cc", |
| 1748 | "url_request/url_fetcher_core.h", |
| 1749 | "url_request/url_fetcher_delegate.cc", |
| 1750 | "url_request/url_fetcher_delegate.h", |
| 1751 | "url_request/url_fetcher_factory.h", |
| 1752 | "url_request/url_fetcher_impl.cc", |
| 1753 | "url_request/url_fetcher_impl.h", |
| 1754 | "url_request/url_fetcher_response_writer.cc", |
| 1755 | "url_request/url_fetcher_response_writer.h", |
| 1756 | "url_request/url_range_request_job.cc", |
| 1757 | "url_request/url_range_request_job.h", |
| 1758 | "url_request/url_request.cc", |
| 1759 | "url_request/url_request.h", |
| 1760 | "url_request/url_request_context.cc", |
| 1761 | "url_request/url_request_context.h", |
| 1762 | "url_request/url_request_context_builder.cc", |
| 1763 | "url_request/url_request_context_builder.h", |
| 1764 | "url_request/url_request_context_getter.cc", |
| 1765 | "url_request/url_request_context_getter.h", |
| 1766 | "url_request/url_request_context_getter_observer.h", |
| 1767 | "url_request/url_request_context_storage.cc", |
| 1768 | "url_request/url_request_context_storage.h", |
| 1769 | "url_request/url_request_data_job.cc", |
| 1770 | "url_request/url_request_data_job.h", |
| 1771 | "url_request/url_request_error_job.cc", |
| 1772 | "url_request/url_request_error_job.h", |
| 1773 | "url_request/url_request_filter.cc", |
| 1774 | "url_request/url_request_filter.h", |
| 1775 | "url_request/url_request_http_job.cc", |
| 1776 | "url_request/url_request_http_job.h", |
Thiemo Nagel | 0793b9c53 | 2018-04-18 16:57:58 | [diff] [blame] | 1777 | "url_request/url_request_http_job_histogram.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1778 | "url_request/url_request_intercepting_job_factory.cc", |
| 1779 | "url_request/url_request_intercepting_job_factory.h", |
| 1780 | "url_request/url_request_interceptor.cc", |
| 1781 | "url_request/url_request_interceptor.h", |
| 1782 | "url_request/url_request_job.cc", |
| 1783 | "url_request/url_request_job.h", |
| 1784 | "url_request/url_request_job_factory.cc", |
| 1785 | "url_request/url_request_job_factory.h", |
| 1786 | "url_request/url_request_job_factory_impl.cc", |
| 1787 | "url_request/url_request_job_factory_impl.h", |
| 1788 | "url_request/url_request_job_manager.cc", |
| 1789 | "url_request/url_request_job_manager.h", |
| 1790 | "url_request/url_request_netlog_params.cc", |
| 1791 | "url_request/url_request_netlog_params.h", |
| 1792 | "url_request/url_request_redirect_job.cc", |
| 1793 | "url_request/url_request_redirect_job.h", |
| 1794 | "url_request/url_request_simple_job.cc", |
| 1795 | "url_request/url_request_simple_job.h", |
| 1796 | "url_request/url_request_status.cc", |
| 1797 | "url_request/url_request_status.h", |
| 1798 | "url_request/url_request_test_job.cc", |
| 1799 | "url_request/url_request_test_job.h", |
| 1800 | "url_request/url_request_throttler_entry.cc", |
| 1801 | "url_request/url_request_throttler_entry.h", |
| 1802 | "url_request/url_request_throttler_entry_interface.h", |
| 1803 | "url_request/url_request_throttler_manager.cc", |
| 1804 | "url_request/url_request_throttler_manager.h", |
| 1805 | "url_request/view_cache_helper.cc", |
| 1806 | "url_request/view_cache_helper.h", |
| 1807 | "url_request/websocket_handshake_userdata_key.cc", |
| 1808 | "url_request/websocket_handshake_userdata_key.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1809 | ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1810 | |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 1811 | if (enable_reporting) { |
| 1812 | sources += [ |
Julia Tuttle | 6c949ae | 2017-11-17 16:36:27 | [diff] [blame] | 1813 | "network_error_logging/network_error_logging_service.cc", |
| 1814 | "network_error_logging/network_error_logging_service.h", |
Lily Chen | c565231 | 2019-03-20 21:58:30 | [diff] [blame] | 1815 | "network_error_logging/persistent_reporting_and_nel_store.h", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 1816 | "reporting/reporting_browsing_data_remover.cc", |
| 1817 | "reporting/reporting_browsing_data_remover.h", |
| 1818 | "reporting/reporting_cache.cc", |
| 1819 | "reporting/reporting_cache.h", |
Lily Chen | 34448a7 | 2019-01-31 21:49:13 | [diff] [blame] | 1820 | "reporting/reporting_cache_impl.cc", |
| 1821 | "reporting/reporting_cache_impl.h", |
Lily Chen | d3967817 | 2018-12-07 20:16:32 | [diff] [blame] | 1822 | "reporting/reporting_cache_observer.cc", |
| 1823 | "reporting/reporting_cache_observer.h", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 1824 | "reporting/reporting_context.cc", |
| 1825 | "reporting/reporting_context.h", |
| 1826 | "reporting/reporting_delegate.cc", |
| 1827 | "reporting/reporting_delegate.h", |
| 1828 | "reporting/reporting_delivery_agent.cc", |
| 1829 | "reporting/reporting_delivery_agent.h", |
Lily Chen | fc92ff4 | 2019-05-06 22:59:10 | [diff] [blame] | 1830 | "reporting/reporting_endpoint.cc", |
| 1831 | "reporting/reporting_endpoint.h", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 1832 | "reporting/reporting_endpoint_manager.cc", |
| 1833 | "reporting/reporting_endpoint_manager.h", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 1834 | "reporting/reporting_garbage_collector.cc", |
| 1835 | "reporting/reporting_garbage_collector.h", |
| 1836 | "reporting/reporting_header_parser.cc", |
| 1837 | "reporting/reporting_header_parser.h", |
| 1838 | "reporting/reporting_network_change_observer.cc", |
| 1839 | "reporting/reporting_network_change_observer.h", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 1840 | "reporting/reporting_policy.cc", |
| 1841 | "reporting/reporting_policy.h", |
| 1842 | "reporting/reporting_report.cc", |
| 1843 | "reporting/reporting_report.h", |
| 1844 | "reporting/reporting_service.cc", |
| 1845 | "reporting/reporting_service.h", |
| 1846 | "reporting/reporting_uploader.cc", |
| 1847 | "reporting/reporting_uploader.h", |
| 1848 | ] |
| 1849 | } |
| 1850 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1851 | if (!use_kerberos) { |
| 1852 | sources -= [ |
| 1853 | "http/http_auth_handler_negotiate.cc", |
| 1854 | "http/http_auth_handler_negotiate.h", |
| 1855 | ] |
| 1856 | } |
| 1857 | |
Fabrice de Gans-Riberi | 9fba3aff | 2018-04-12 19:00:48 | [diff] [blame] | 1858 | if (is_posix || is_fuchsia) { |
Fabrice de Gans-Riberi | 0ab6b07 | 2018-04-20 21:32:58 | [diff] [blame] | 1859 | sources += [ |
| 1860 | "base/file_stream_context_posix.cc", |
| 1861 | "base/network_interfaces_posix.cc", |
| 1862 | "base/network_interfaces_posix.h", |
| 1863 | "disk_cache/blockfile/file_posix.cc", |
| 1864 | "disk_cache/cache_util_posix.cc", |
| 1865 | "disk_cache/simple/simple_index_file_posix.cc", |
| 1866 | "disk_cache/simple/simple_util_posix.cc", |
Fabrice de Gans-Riberi | 0ab6b07 | 2018-04-20 21:32:58 | [diff] [blame] | 1867 | "http/url_security_manager_posix.cc", |
| 1868 | "socket/socket_posix.cc", |
| 1869 | "socket/socket_posix.h", |
| 1870 | "socket/tcp_socket_posix.cc", |
| 1871 | "socket/tcp_socket_posix.h", |
| 1872 | "socket/udp_socket_posix.cc", |
| 1873 | "socket/udp_socket_posix.h", |
| 1874 | ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1875 | if (posix_avoid_mmap) { |
Fabrice de Gans-Riberi | 0ab6b07 | 2018-04-20 21:32:58 | [diff] [blame] | 1876 | sources += [ "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1877 | } else { |
Fabrice de Gans-Riberi | 0ab6b07 | 2018-04-20 21:32:58 | [diff] [blame] | 1878 | sources += [ "disk_cache/blockfile/mapped_file_posix.cc" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1879 | } |
| 1880 | } |
| 1881 | |
Clark DuVall | fe37e8e0 | 2019-02-15 02:00:28 | [diff] [blame] | 1882 | if (is_android || is_chromeos) { |
| 1883 | sources += [ |
| 1884 | "base/network_change_notifier_posix.cc", |
| 1885 | "base/network_change_notifier_posix.h", |
| 1886 | ] |
| 1887 | } |
| 1888 | |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 1889 | if (is_win) { |
| 1890 | sources -= [ |
zentaro | b89acda4 | 2017-07-14 01:28:57 | [diff] [blame] | 1891 | "ntlm/ntlm.cc", |
| 1892 | "ntlm/ntlm.h", |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 1893 | "ntlm/ntlm_buffer_reader.cc", |
| 1894 | "ntlm/ntlm_buffer_reader.h", |
| 1895 | "ntlm/ntlm_buffer_writer.cc", |
| 1896 | "ntlm/ntlm_buffer_writer.h", |
Zentaro Kavanagh | dd55661 | 2017-08-03 20:27:04 | [diff] [blame] | 1897 | "ntlm/ntlm_client.cc", |
| 1898 | "ntlm/ntlm_client.h", |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 1899 | "ntlm/ntlm_constants.h", |
| 1900 | ] |
| 1901 | } |
| 1902 | |
Fabrice de Gans-Riberi | 0ab6b07 | 2018-04-20 21:32:58 | [diff] [blame] | 1903 | if (use_kerberos && ((is_posix && !is_android) || is_fuchsia)) { |
| 1904 | sources += [ |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1905 | "http/http_auth_gssapi_posix.cc", |
| 1906 | "http/http_auth_gssapi_posix.h", |
| 1907 | ] |
| 1908 | } |
| 1909 | |
Sergey Ulanov | 5c33235ae | 2017-07-06 23:55:07 | [diff] [blame] | 1910 | if (!is_nacl) { |
David Benjamin | 739c2c8 | 2018-05-10 19:31:06 | [diff] [blame] | 1911 | sources -= [ "base/network_interfaces_nacl.cc" ] |
Sergey Ulanov | 5c33235ae | 2017-07-06 23:55:07 | [diff] [blame] | 1912 | } |
| 1913 | |
| 1914 | # Use getifaddrs() on POSIX platforms, except Linux and Android. |
Fabrice de Gans-Riberi | 9fba3aff | 2018-04-12 19:00:48 | [diff] [blame] | 1915 | if (is_posix && !is_linux && !is_android) { |
| 1916 | sources += [ |
Sergey Ulanov | 5c33235ae | 2017-07-06 23:55:07 | [diff] [blame] | 1917 | "base/network_interfaces_getifaddrs.cc", |
| 1918 | "base/network_interfaces_getifaddrs.h", |
| 1919 | ] |
| 1920 | } |
| 1921 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1922 | if (!use_nss_certs) { |
| 1923 | sources -= [ |
mattm | 9c63d44 | 2016-09-03 00:45:51 | [diff] [blame] | 1924 | "cert/internal/trust_store_nss.cc", |
| 1925 | "cert/internal/trust_store_nss.h", |
eroman | f2971fd | 2017-04-20 20:10:45 | [diff] [blame] | 1926 | "cert/known_roots_nss.cc", |
| 1927 | "cert/known_roots_nss.h", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1928 | "cert/nss_cert_database.cc", |
| 1929 | "cert/nss_cert_database.h", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1930 | "ssl/client_cert_store_nss.cc", |
| 1931 | "ssl/client_cert_store_nss.h", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1932 | "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp", |
| 1933 | "third_party/mozilla_security_manager/nsNSSCertificateDB.h", |
| 1934 | "third_party/mozilla_security_manager/nsPKCS12Blob.cpp", |
| 1935 | "third_party/mozilla_security_manager/nsPKCS12Blob.h", |
| 1936 | ] |
| 1937 | if (is_chromeos) { |
| 1938 | # These were already removed on non-ChromeOS. |
| 1939 | sources -= [ |
| 1940 | "cert/nss_cert_database_chromeos.cc", |
| 1941 | "cert/nss_cert_database_chromeos.h", |
| 1942 | "cert/nss_profile_filter_chromeos.cc", |
| 1943 | "cert/nss_profile_filter_chromeos.h", |
| 1944 | ] |
| 1945 | } |
mattm | bbf7fc0 | 2017-06-19 23:38:19 | [diff] [blame] | 1946 | sources -= [ "ssl/ssl_platform_key_nss.cc" ] |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 1947 | } else { |
davidben | 8d569f5 | 2016-07-29 16:03:18 | [diff] [blame] | 1948 | sources += [ |
| 1949 | "third_party/nss/ssl/cmpcert.cc", |
| 1950 | "third_party/nss/ssl/cmpcert.h", |
| 1951 | ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1952 | } |
| 1953 | |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 1954 | if (!use_nss_certs) { |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1955 | # These files are part of the partial implementation of NSS for |
| 1956 | # cert verification, so keep them in that case. |
| 1957 | sources -= [ |
| 1958 | "cert/cert_verify_proc_nss.cc", |
| 1959 | "cert/cert_verify_proc_nss.h", |
| 1960 | "cert/test_root_certs_nss.cc", |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 1961 | "cert/x509_util_nss.cc", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1962 | "cert_net/nss_ocsp.cc", |
| 1963 | "cert_net/nss_ocsp.h", |
| 1964 | ] |
| 1965 | } |
| 1966 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1967 | if (is_chromecast && use_nss_certs) { |
mattm | 436ccfe | 2017-06-19 20:24:08 | [diff] [blame] | 1968 | sources -= [ |
| 1969 | "ssl/client_cert_store_nss.cc", |
| 1970 | "ssl/client_cert_store_nss.h", |
| 1971 | "ssl/ssl_platform_key_nss.cc", |
| 1972 | ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1973 | } |
| 1974 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1975 | if (is_win) { |
| 1976 | sources -= [ "http/http_auth_handler_ntlm_portable.cc" ] |
| 1977 | } else { # !is_win |
| 1978 | sources -= [ |
| 1979 | "base/winsock_init.cc", |
| 1980 | "base/winsock_init.h", |
| 1981 | "base/winsock_util.cc", |
| 1982 | "base/winsock_util.h", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 1983 | "proxy_resolution/proxy_resolver_winhttp.cc", |
| 1984 | "proxy_resolution/proxy_resolver_winhttp.h", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1985 | ] |
| 1986 | } |
| 1987 | |
| 1988 | if (is_ios) { |
| 1989 | # Add back some sources that were otherwise filtered out. |
| 1990 | # iOS needs some Mac files. |
| 1991 | net_unfiltered_sources += [ |
| 1992 | "base/mac/url_conversions.h", |
| 1993 | "base/mac/url_conversions.mm", |
| 1994 | "base/network_change_notifier_mac.cc", |
wychen | ebb66ffb | 2017-04-05 07:19:37 | [diff] [blame] | 1995 | "base/network_change_notifier_mac.h", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1996 | "base/network_config_watcher_mac.cc", |
wychen | ebb66ffb | 2017-04-05 07:19:37 | [diff] [blame] | 1997 | "base/network_config_watcher_mac.h", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1998 | "base/platform_mime_util_mac.mm", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 1999 | "base/proxy_server_mac.cc", |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 2000 | "cert/test_root_certs_mac.cc", |
mattm | 1a07e63 | 2017-05-16 05:55:50 | [diff] [blame] | 2001 | "cert/x509_util_ios_and_mac.cc", |
| 2002 | "cert/x509_util_ios_and_mac.h", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 2003 | "proxy_resolution/proxy_resolver_mac.cc", |
| 2004 | "proxy_resolution/proxy_resolver_mac.h", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2005 | ] |
| 2006 | |
| 2007 | sources -= [ "disk_cache/blockfile/file_posix.cc" ] |
| 2008 | } |
| 2009 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2010 | if (is_ios || is_mac) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2011 | sources += [ |
| 2012 | "base/mac/url_conversions.h", |
| 2013 | "base/mac/url_conversions.mm", |
| 2014 | ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2015 | } |
| 2016 | |
| 2017 | if (is_android) { |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2018 | # Add some Linux sources that were excluded by the filter, but which |
| 2019 | # are needed. |
| 2020 | net_unfiltered_sources += [ |
| 2021 | "base/address_tracker_linux.cc", |
| 2022 | "base/address_tracker_linux.h", |
| 2023 | "base/network_interfaces_linux.cc", |
| 2024 | "base/network_interfaces_linux.h", |
| 2025 | "base/platform_mime_util_linux.cc", |
| 2026 | ] |
| 2027 | } |
Sergey Ulanov | 4908557 | 2017-07-10 23:25:46 | [diff] [blame] | 2028 | |
| 2029 | if (is_fuchsia) { |
| 2030 | sources += [ |
Kevin Marshall | 3e89fd7 | 2018-06-05 21:29:10 | [diff] [blame] | 2031 | "base/network_change_notifier_fuchsia.cc", |
| 2032 | "base/network_change_notifier_fuchsia.h", |
Sergey Ulanov | 2beef3d | 2017-10-19 21:53:53 | [diff] [blame] | 2033 | "base/network_interfaces_fuchsia.cc", |
Aidan Wolter | d89b754 | 2019-01-24 11:01:21 | [diff] [blame] | 2034 | "base/network_interfaces_fuchsia.h", |
Sergey Ulanov | 4908557 | 2017-07-10 23:25:46 | [diff] [blame] | 2035 | "base/platform_mime_util_fuchsia.cc", |
Sergey Ulanov | 4908557 | 2017-07-10 23:25:46 | [diff] [blame] | 2036 | "cert/test_root_certs_fuchsia.cc", |
| 2037 | ] |
| 2038 | } |
Matt Mueller | dbc0aa7 | 2019-02-04 22:13:18 | [diff] [blame] | 2039 | |
| 2040 | if (trial_comparison_cert_verifier_supported) { |
| 2041 | sources += [ |
| 2042 | "cert/trial_comparison_cert_verifier.cc", |
| 2043 | "cert/trial_comparison_cert_verifier.h", |
| 2044 | ] |
| 2045 | } |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2046 | } |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 2047 | |
Sergey Ulanov | 21dea15 | 2017-09-13 00:50:50 | [diff] [blame] | 2048 | if (enable_unix_sockets) { |
| 2049 | sources += [ |
| 2050 | "socket/unix_domain_client_socket_posix.cc", |
| 2051 | "socket/unix_domain_client_socket_posix.h", |
| 2052 | "socket/unix_domain_server_socket_posix.cc", |
| 2053 | "socket/unix_domain_server_socket_posix.h", |
| 2054 | ] |
| 2055 | } |
| 2056 | |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 2057 | # Add back some sources that were otherwise filtered out. |
| 2058 | set_sources_assignment_filter([]) |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2059 | sources += net_unfiltered_sources |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 2060 | set_sources_assignment_filter(sources_assignment_filter) |
| 2061 | |
| 2062 | cflags = [] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2063 | |
| 2064 | if (is_mac) { |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2065 | libs = [ |
rsesek | 02aa51c | 2016-05-11 02:13:57 | [diff] [blame] | 2066 | "CFNetwork.framework", |
| 2067 | "CoreServices.framework", |
[email protected] | ab9ce6e | 2014-04-17 20:33:19 | [diff] [blame] | 2068 | "Foundation.framework", |
| 2069 | "Security.framework", |
| 2070 | "SystemConfiguration.framework", |
| 2071 | "resolv", |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2072 | ] |
| 2073 | } |
| 2074 | |
| 2075 | if (is_ios) { |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2076 | libs = [ |
[email protected] | ab9ce6e | 2014-04-17 20:33:19 | [diff] [blame] | 2077 | "CFNetwork.framework", |
| 2078 | "MobileCoreServices.framework", |
| 2079 | "Security.framework", |
| 2080 | "SystemConfiguration.framework", |
| 2081 | "resolv", |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2082 | ] |
xunjieli | 06d9398 | 2015-08-27 17:13:02 | [diff] [blame] | 2083 | } |
xunjieli | 4c8c692 | 2015-08-27 16:02:40 | [diff] [blame] | 2084 | |
jam | 5332a63 | 2016-04-01 22:36:05 | [diff] [blame] | 2085 | if (is_win) { |
| 2086 | libs = [ |
| 2087 | "crypt32.lib", |
| 2088 | "dhcpcsvc.lib", |
| 2089 | "iphlpapi.lib", |
davidben | 6239919 | 2016-09-13 01:54:22 | [diff] [blame] | 2090 | "ncrypt.lib", |
jam | 5332a63 | 2016-04-01 22:36:05 | [diff] [blame] | 2091 | "rpcrt4.lib", |
| 2092 | "secur32.lib", |
| 2093 | "urlmon.lib", |
| 2094 | "winhttp.lib", |
| 2095 | ] |
Cliff Smolinsky | c5c5210 | 2019-05-03 20:51:54 | [diff] [blame] | 2096 | |
| 2097 | ldflags = [ "/DELAYLOAD:urlmon.dll" ] |
jam | 5332a63 | 2016-04-01 22:36:05 | [diff] [blame] | 2098 | } |
| 2099 | |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 2100 | if (!is_nacl) { |
| 2101 | if (!disable_file_support) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2102 | sources += [ |
| 2103 | "base/directory_lister.cc", |
| 2104 | "base/directory_lister.h", |
| 2105 | "base/directory_listing.cc", |
| 2106 | "base/directory_listing.h", |
| 2107 | "url_request/file_protocol_handler.cc", |
| 2108 | "url_request/file_protocol_handler.h", |
| 2109 | "url_request/url_request_file_dir_job.cc", |
| 2110 | "url_request/url_request_file_dir_job.h", |
| 2111 | "url_request/url_request_file_job.cc", |
| 2112 | "url_request/url_request_file_job.h", |
| 2113 | ] |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 2114 | } |
xunjieli | 06d9398 | 2015-08-27 17:13:02 | [diff] [blame] | 2115 | |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 2116 | if (!disable_ftp_support) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2117 | sources += [ |
| 2118 | "ftp/ftp_auth_cache.cc", |
| 2119 | "ftp/ftp_auth_cache.h", |
| 2120 | "ftp/ftp_ctrl_response_buffer.cc", |
| 2121 | "ftp/ftp_ctrl_response_buffer.h", |
| 2122 | "ftp/ftp_directory_listing_parser.cc", |
| 2123 | "ftp/ftp_directory_listing_parser.h", |
| 2124 | "ftp/ftp_directory_listing_parser_ls.cc", |
| 2125 | "ftp/ftp_directory_listing_parser_ls.h", |
| 2126 | "ftp/ftp_directory_listing_parser_vms.cc", |
| 2127 | "ftp/ftp_directory_listing_parser_vms.h", |
| 2128 | "ftp/ftp_directory_listing_parser_windows.cc", |
| 2129 | "ftp/ftp_directory_listing_parser_windows.h", |
| 2130 | "ftp/ftp_network_layer.cc", |
| 2131 | "ftp/ftp_network_layer.h", |
| 2132 | "ftp/ftp_network_session.cc", |
| 2133 | "ftp/ftp_network_session.h", |
| 2134 | "ftp/ftp_network_transaction.cc", |
| 2135 | "ftp/ftp_network_transaction.h", |
| 2136 | "ftp/ftp_request_info.h", |
| 2137 | "ftp/ftp_response_info.cc", |
| 2138 | "ftp/ftp_response_info.h", |
Eric Roman | f2503f8f | 2019-04-23 18:20:25 | [diff] [blame] | 2139 | "ftp/ftp_server_type.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2140 | "ftp/ftp_transaction.h", |
| 2141 | "ftp/ftp_transaction_factory.h", |
| 2142 | "ftp/ftp_util.cc", |
| 2143 | "ftp/ftp_util.h", |
| 2144 | "url_request/ftp_protocol_handler.cc", |
| 2145 | "url_request/ftp_protocol_handler.h", |
| 2146 | "url_request/url_request_ftp_job.cc", |
| 2147 | "url_request/url_request_ftp_job.h", |
| 2148 | ] |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 2149 | } |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 2150 | |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 2151 | if (enable_websockets) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2152 | sources += [ |
| 2153 | "websockets/websocket_basic_handshake_stream.cc", |
| 2154 | "websockets/websocket_basic_handshake_stream.h", |
| 2155 | "websockets/websocket_basic_stream.cc", |
| 2156 | "websockets/websocket_basic_stream.h", |
Bence Béky | 7294fc2 | 2018-02-08 14:26:17 | [diff] [blame] | 2157 | "websockets/websocket_basic_stream_adapters.cc", |
| 2158 | "websockets/websocket_basic_stream_adapters.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2159 | "websockets/websocket_channel.cc", |
| 2160 | "websockets/websocket_channel.h", |
| 2161 | "websockets/websocket_deflate_parameters.cc", |
| 2162 | "websockets/websocket_deflate_parameters.h", |
| 2163 | "websockets/websocket_deflate_predictor.h", |
| 2164 | "websockets/websocket_deflate_predictor_impl.cc", |
| 2165 | "websockets/websocket_deflate_predictor_impl.h", |
| 2166 | "websockets/websocket_deflate_stream.cc", |
| 2167 | "websockets/websocket_deflate_stream.h", |
| 2168 | "websockets/websocket_deflater.cc", |
| 2169 | "websockets/websocket_deflater.h", |
| 2170 | "websockets/websocket_errors.cc", |
| 2171 | "websockets/websocket_errors.h", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 2172 | "websockets/websocket_event_interface.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2173 | "websockets/websocket_extension.cc", |
| 2174 | "websockets/websocket_extension.h", |
| 2175 | "websockets/websocket_extension_parser.cc", |
| 2176 | "websockets/websocket_extension_parser.h", |
| 2177 | "websockets/websocket_frame.cc", |
| 2178 | "websockets/websocket_frame.h", |
| 2179 | "websockets/websocket_frame_parser.cc", |
| 2180 | "websockets/websocket_frame_parser.h", |
| 2181 | "websockets/websocket_handshake_challenge.cc", |
| 2182 | "websockets/websocket_handshake_challenge.h", |
| 2183 | "websockets/websocket_handshake_constants.cc", |
| 2184 | "websockets/websocket_handshake_constants.h", |
| 2185 | "websockets/websocket_handshake_request_info.cc", |
| 2186 | "websockets/websocket_handshake_request_info.h", |
| 2187 | "websockets/websocket_handshake_response_info.cc", |
| 2188 | "websockets/websocket_handshake_response_info.h", |
Bence Béky | cc7249a | 2018-03-06 16:23:27 | [diff] [blame] | 2189 | "websockets/websocket_handshake_stream_base.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2190 | "websockets/websocket_handshake_stream_base.h", |
| 2191 | "websockets/websocket_handshake_stream_create_helper.cc", |
| 2192 | "websockets/websocket_handshake_stream_create_helper.h", |
Bence Béky | 46bfbc1 | 2018-02-22 19:28:20 | [diff] [blame] | 2193 | "websockets/websocket_http2_handshake_stream.cc", |
| 2194 | "websockets/websocket_http2_handshake_stream.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2195 | "websockets/websocket_inflater.cc", |
| 2196 | "websockets/websocket_inflater.h", |
| 2197 | "websockets/websocket_stream.cc", |
| 2198 | "websockets/websocket_stream.h", |
| 2199 | ] |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 2200 | } |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 2201 | |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 2202 | # ICU support. |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2203 | if (use_platform_icu_alternatives) { |
| 2204 | if (is_android) { |
| 2205 | # Use ICU alternative on Android. |
torne | d8b7d925 | 2016-08-04 19:41:45 | [diff] [blame] | 2206 | sources += [ "base/net_string_util_icu_alternatives_android.cc" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2207 | } else if (is_ios) { |
| 2208 | # Use ICU alternative on iOS. |
| 2209 | sources += [ "base/net_string_util_icu_alternatives_ios.mm" ] |
| 2210 | } else { |
| 2211 | assert(false, |
| 2212 | "ICU alternative is not implemented for platform: " + target_os) |
| 2213 | } |
| 2214 | } else { |
| 2215 | # Use ICU. |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2216 | sources += [ |
| 2217 | "base/filename_util_icu.cc", |
| 2218 | "base/net_string_util_icu.cc", |
| 2219 | ] |
| 2220 | } |
eustas | fbec913 | 2015-12-30 14:56:51 | [diff] [blame] | 2221 | |
| 2222 | # Brotli support. |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2223 | if (!disable_brotli_filter) { |
thakis | b8590c9 | 2017-03-23 18:14:53 | [diff] [blame] | 2224 | sources += [ |
| 2225 | "filter/brotli_source_stream.cc", |
| 2226 | "filter/brotli_source_stream.h", |
| 2227 | ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2228 | } else { |
xunjieli | 084a929 | 2016-09-23 18:15:04 | [diff] [blame] | 2229 | sources += [ "filter/brotli_source_stream_disabled.cc" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2230 | } |
[email protected] | 85191ed | 2014-05-15 00:41:49 | [diff] [blame] | 2231 | } |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2232 | } |
| 2233 | |
Daniel Bratell | c36e87a | 2019-03-26 16:31:46 | [diff] [blame] | 2234 | # net_export.h has its own build target so that code (eg |
| 2235 | # net_nqe_proto) can use it without depending on the whole of //net. |
| 2236 | source_set("net_export_header") { |
| 2237 | sources = [ |
| 2238 | "base/net_export.h", |
| 2239 | ] |
| 2240 | } |
| 2241 | |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 2242 | # Private dependencies for the //net component and for any build targets (e.g. |
| 2243 | # source sets with circular dependencies with //net) that need to share the same |
| 2244 | # dependencies. |
| 2245 | source_set("net_deps") { |
| 2246 | visibility = [ |
| 2247 | ":net", |
| 2248 | "//net/dns", |
| 2249 | "//net/dns:dns_client", |
Eric Orth | 168a7e5 | 2018-08-27 19:11:32 | [diff] [blame] | 2250 | "//net/dns:host_resolver", |
Eric Orth | 0bea166 | 2019-03-20 19:11:22 | [diff] [blame] | 2251 | "//net/dns:host_resolver_manager", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 2252 | "//net/dns:mdns_client", |
Eric Orth | 8afaf15 | 2018-11-07 21:01:26 | [diff] [blame] | 2253 | "//net/dns/public", |
Takuto Ikuta | 94330d9b | 2019-03-09 11:03:14 | [diff] [blame] | 2254 | "//net/http:transport_security_state_generated_files", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 2255 | ] |
| 2256 | |
| 2257 | public_deps = [ |
| 2258 | ":constants", |
Daniel Bratell | c36e87a | 2019-03-26 16:31:46 | [diff] [blame] | 2259 | ":net_export_header", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 2260 | ":net_resources", |
git-meacer.google.com | 9e93f982 | 2018-07-03 00:33:05 | [diff] [blame] | 2261 | ":preload_decoder", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 2262 | "//base", |
| 2263 | "//net/base/registry_controlled_domains", |
| 2264 | "//third_party/protobuf:protobuf_lite", |
Scott Violet | fd6ee11 | 2019-01-10 19:05:32 | [diff] [blame] | 2265 | "//url:buildflags", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 2266 | ] |
| 2267 | |
| 2268 | public_configs = net_configs |
| 2269 | |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 2270 | if (!is_nacl) { |
| 2271 | public_deps += [ |
| 2272 | "//base/third_party/dynamic_annotations", |
| 2273 | "//third_party/zlib", |
| 2274 | ] |
| 2275 | |
| 2276 | if (use_gio) { |
| 2277 | public_configs += [ "//build/linux:gio_config" ] |
| 2278 | } |
| 2279 | |
| 2280 | if (is_android) { |
| 2281 | public_deps += [ ":net_jni_headers" ] |
| 2282 | } |
| 2283 | |
| 2284 | if (is_fuchsia) { |
chromium-autoroll | fb42c705 | 2018-10-26 21:34:45 | [diff] [blame] | 2285 | public_deps += [ |
Sergey Ulanov | e2a34e4b | 2018-12-28 23:40:16 | [diff] [blame] | 2286 | "//third_party/fuchsia-sdk/sdk:hardware_ethernet", |
chromium-autoroll | fb42c705 | 2018-10-26 21:34:45 | [diff] [blame] | 2287 | "//third_party/fuchsia-sdk/sdk:netstack", |
| 2288 | ] |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 2289 | } |
| 2290 | |
| 2291 | if (use_platform_icu_alternatives) { |
| 2292 | if (is_android) { |
| 2293 | public_deps += [ ":net_jni_headers" ] |
| 2294 | } |
| 2295 | } else { |
| 2296 | public_deps += [ |
| 2297 | "//base:i18n", |
| 2298 | "//third_party/icu", |
| 2299 | ] |
| 2300 | } |
| 2301 | |
| 2302 | if (!disable_brotli_filter) { |
| 2303 | public_deps += [ "//third_party/brotli:dec" ] |
Maksym Onufriienko | 7c9ef91a | 2019-03-18 19:27:32 | [diff] [blame] | 2304 | } else { |
| 2305 | public_deps += [ "//third_party/brotli:headers" ] |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 2306 | } |
| 2307 | } |
| 2308 | } |
| 2309 | |
| 2310 | # Public dependencies for the //net component and for any build targets (e.g. |
| 2311 | # source sets with circular dependencies with //net) that need to share the same |
| 2312 | # dependencies. |
| 2313 | source_set("net_public_deps") { |
| 2314 | visibility = [ |
| 2315 | ":net", |
| 2316 | "//net/dns", |
| 2317 | "//net/dns:dns_client", |
Eric Orth | 168a7e5 | 2018-08-27 19:11:32 | [diff] [blame] | 2318 | "//net/dns:host_resolver", |
Eric Orth | 0bea166 | 2019-03-20 19:11:22 | [diff] [blame] | 2319 | "//net/dns:host_resolver_manager", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 2320 | "//net/dns:mdns_client", |
Eric Orth | 8afaf15 | 2018-11-07 21:01:26 | [diff] [blame] | 2321 | "//net/dns/public", |
Takuto Ikuta | 94330d9b | 2019-03-09 11:03:14 | [diff] [blame] | 2322 | "//net/http:transport_security_state_generated_files", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 2323 | ] |
| 2324 | |
| 2325 | public_deps = [ |
| 2326 | ":buildflags", |
| 2327 | ":net_nqe_proto", |
| 2328 | ":net_quic_proto", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 2329 | "//crypto", |
| 2330 | "//crypto:platform", |
Veranika Liaukevich | 8a68644 | 2018-05-29 18:55:12 | [diff] [blame] | 2331 | "//net/traffic_annotation", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 2332 | "//third_party/boringssl", |
| 2333 | "//url", |
| 2334 | ] |
| 2335 | |
| 2336 | if (is_nacl) { |
| 2337 | public_deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
| 2338 | } |
| 2339 | } |
| 2340 | |
Michael Thiessen | 454d0c3 | 2019-04-08 13:58:54 | [diff] [blame] | 2341 | if (is_android) { |
| 2342 | java_cpp_enum("effective_connection_type_java") { |
| 2343 | sources = [ |
| 2344 | "//net/nqe/effective_connection_type.h", |
| 2345 | ] |
| 2346 | } |
| 2347 | } |
| 2348 | |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2349 | grit("net_resources") { |
| 2350 | source = "base/net_resources.grd" |
[email protected] | b89c5384 | 2014-07-23 16:32:32 | [diff] [blame] | 2351 | outputs = [ |
| 2352 | "grit/net_resources.h", |
| 2353 | "net_resources.pak", |
[email protected] | b89c5384 | 2014-07-23 16:32:32 | [diff] [blame] | 2354 | ] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2355 | } |
| 2356 | |
Tarun Bansal | cdfa34b | 2017-11-23 05:11:17 | [diff] [blame] | 2357 | proto_library("net_nqe_proto") { |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 2358 | visibility = [ ":net_public_deps" ] |
Tarun Bansal | cdfa34b | 2017-11-23 05:11:17 | [diff] [blame] | 2359 | |
| 2360 | sources = [ |
| 2361 | "nqe/proto/network_id_proto.proto", |
| 2362 | ] |
| 2363 | cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:" |
| 2364 | cc_include = "net/base/net_export.h" |
| 2365 | component_build_force_source_set = true |
| 2366 | |
Daniel Bratell | c36e87a | 2019-03-26 16:31:46 | [diff] [blame] | 2367 | deps = [ |
| 2368 | ":net_export_header", |
| 2369 | ] |
| 2370 | |
Tarun Bansal | cdfa34b | 2017-11-23 05:11:17 | [diff] [blame] | 2371 | defines = [ "NET_IMPLEMENTATION" ] |
| 2372 | |
| 2373 | extra_configs = [ "//build/config/compiler:wexit_time_destructors" ] |
| 2374 | } |
| 2375 | |
rtenneti | b6f1c0d | 2015-04-03 17:52:06 | [diff] [blame] | 2376 | proto_library("net_quic_proto") { |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 2377 | visibility = [ ":net_public_deps" ] |
brettw | 2e7db0a | 2015-04-24 22:59:17 | [diff] [blame] | 2378 | |
rtenneti | b6f1c0d | 2015-04-03 17:52:06 | [diff] [blame] | 2379 | sources = [ |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 2380 | "third_party/quiche/src/quic/core/proto/cached_network_parameters.proto", |
| 2381 | "third_party/quiche/src/quic/core/proto/crypto_server_config.proto", |
| 2382 | "third_party/quiche/src/quic/core/proto/source_address_token.proto", |
rtenneti | b6f1c0d | 2015-04-03 17:52:06 | [diff] [blame] | 2383 | ] |
| 2384 | cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:" |
| 2385 | cc_include = "net/base/net_export.h" |
brettw | 7ef8045 | 2016-06-30 00:43:18 | [diff] [blame] | 2386 | component_build_force_source_set = true |
rtenneti | b6f1c0d | 2015-04-03 17:52:06 | [diff] [blame] | 2387 | |
Daniel Bratell | c36e87a | 2019-03-26 16:31:46 | [diff] [blame] | 2388 | deps = [ |
| 2389 | ":net_export_header", |
| 2390 | ] |
| 2391 | |
rtenneti | b6f1c0d | 2015-04-03 17:52:06 | [diff] [blame] | 2392 | defines = [ "NET_IMPLEMENTATION" ] |
| 2393 | |
| 2394 | extra_configs = [ "//build/config/compiler:wexit_time_destructors" ] |
| 2395 | } |
| 2396 | |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2397 | if (!is_proto_quic) { |
Francois Doray | 45bdc4c3 | 2018-09-17 19:35:00 | [diff] [blame] | 2398 | component("extras") { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2399 | sources = [ |
| 2400 | "extras/sqlite/cookie_crypto_delegate.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2401 | "extras/sqlite/sqlite_persistent_cookie_store.cc", |
| 2402 | "extras/sqlite/sqlite_persistent_cookie_store.h", |
Lily Chen | ad3a589 | 2019-03-13 17:36:11 | [diff] [blame] | 2403 | "extras/sqlite/sqlite_persistent_store_backend_base.cc", |
| 2404 | "extras/sqlite/sqlite_persistent_store_backend_base.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2405 | ] |
Francois Doray | 45bdc4c3 | 2018-09-17 19:35:00 | [diff] [blame] | 2406 | defines = [ "IS_NET_EXTRAS_IMPL" ] |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2407 | configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 2408 | deps = [ |
| 2409 | ":net", |
| 2410 | "//base", |
| 2411 | "//sql:sql", |
| 2412 | ] |
Lily Chen | db14198 | 2019-03-18 17:18:49 | [diff] [blame] | 2413 | |
| 2414 | if (enable_reporting) { |
| 2415 | sources += [ |
| 2416 | "extras/sqlite/sqlite_persistent_reporting_and_nel_store.cc", |
| 2417 | "extras/sqlite/sqlite_persistent_reporting_and_nel_store.h", |
| 2418 | ] |
| 2419 | } |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2420 | } |
mef | 327a8e4 | 2014-08-29 17:10:03 | [diff] [blame] | 2421 | } |
| 2422 | |
git-meacer.google.com | 9e93f982 | 2018-07-03 00:33:05 | [diff] [blame] | 2423 | static_library("preload_decoder") { |
| 2424 | sources = [ |
| 2425 | "extras/preload_data/decoder.cc", |
| 2426 | "extras/preload_data/decoder.h", |
| 2427 | ] |
| 2428 | deps = [ |
| 2429 | "//base", |
| 2430 | ] |
| 2431 | } |
| 2432 | |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 2433 | if (!is_ios) { |
| 2434 | executable("dump_cache") { |
| 2435 | testonly = true |
| 2436 | sources = [ |
| 2437 | "tools/dump_cache/dump_cache.cc", |
| 2438 | "tools/dump_cache/dump_files.cc", |
| 2439 | "tools/dump_cache/dump_files.h", |
| 2440 | ] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2441 | |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 2442 | deps = [ |
| 2443 | ":net", |
| 2444 | ":test_support", |
| 2445 | "//base", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2446 | "//build/win:default_exe_manifest", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 2447 | ] |
| 2448 | } |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2449 | } |
| 2450 | |
eroman | 1295131 | 2017-05-05 22:55:51 | [diff] [blame] | 2451 | # This section can be updated from globbing rules using: |
| 2452 | # python ./tools/update_ios_bundle_data.py |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 2453 | bundle_data("test_support_bundle_data") { |
sdefresne | 04f9114 | 2016-04-21 08:41:59 | [diff] [blame] | 2454 | visibility = [ ":test_support" ] |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 2455 | testonly = true |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2456 | sources = [ |
zhongyi | d7dd2db1 | 2017-04-14 17:01:25 | [diff] [blame] | 2457 | "data/quic_http_response_cache_data_with_push/test.example.com/favicon.ico", |
| 2458 | "data/quic_http_response_cache_data_with_push/test.example.com/index.html", |
| 2459 | "data/quic_http_response_cache_data_with_push/test.example.com/index2.html", |
| 2460 | "data/quic_http_response_cache_data_with_push/test.example.com/kitten-1.jpg", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2461 | "data/ssl/certificates/1024-rsa-ee-by-1024-rsa-intermediate.pem", |
| 2462 | "data/ssl/certificates/1024-rsa-ee-by-2048-rsa-intermediate.pem", |
| 2463 | "data/ssl/certificates/1024-rsa-ee-by-768-rsa-intermediate.pem", |
| 2464 | "data/ssl/certificates/1024-rsa-ee-by-prime256v1-ecdsa-intermediate.pem", |
| 2465 | "data/ssl/certificates/1024-rsa-intermediate.pem", |
| 2466 | "data/ssl/certificates/10_year_validity.pem", |
| 2467 | "data/ssl/certificates/11_year_validity.pem", |
| 2468 | "data/ssl/certificates/2029_globalsign_com_cert.pem", |
| 2469 | "data/ssl/certificates/2048-rsa-ee-by-1024-rsa-intermediate.pem", |
| 2470 | "data/ssl/certificates/2048-rsa-ee-by-2048-rsa-intermediate.pem", |
| 2471 | "data/ssl/certificates/2048-rsa-ee-by-768-rsa-intermediate.pem", |
| 2472 | "data/ssl/certificates/2048-rsa-ee-by-prime256v1-ecdsa-intermediate.pem", |
| 2473 | "data/ssl/certificates/2048-rsa-intermediate.pem", |
| 2474 | "data/ssl/certificates/2048-rsa-root.pem", |
| 2475 | "data/ssl/certificates/39_months_after_2015_04.pem", |
Ryan Sleevi | fb6f8664 | 2018-04-07 03:55:38 | [diff] [blame] | 2476 | "data/ssl/certificates/39_months_based_on_last_day.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2477 | "data/ssl/certificates/40_months_after_2015_04.pem", |
| 2478 | "data/ssl/certificates/60_months_after_2012_07.pem", |
| 2479 | "data/ssl/certificates/61_months_after_2012_07.pem", |
| 2480 | "data/ssl/certificates/768-rsa-ee-by-1024-rsa-intermediate.pem", |
| 2481 | "data/ssl/certificates/768-rsa-ee-by-2048-rsa-intermediate.pem", |
| 2482 | "data/ssl/certificates/768-rsa-ee-by-768-rsa-intermediate.pem", |
| 2483 | "data/ssl/certificates/768-rsa-ee-by-prime256v1-ecdsa-intermediate.pem", |
| 2484 | "data/ssl/certificates/768-rsa-intermediate.pem", |
Ryan Sleevi | 1f9eb9f | 2018-01-23 21:25:14 | [diff] [blame] | 2485 | "data/ssl/certificates/825_days_1_second_after_2018_03_01.pem", |
| 2486 | "data/ssl/certificates/825_days_after_2018_03_01.pem", |
| 2487 | "data/ssl/certificates/826_days_after_2018_03_01.pem", |
Matt Mueller | c391cdf | 2018-02-08 01:05:57 | [diff] [blame] | 2488 | "data/ssl/certificates/BUILD.gn", |
eroman | 1295131 | 2017-05-05 22:55:51 | [diff] [blame] | 2489 | "data/ssl/certificates/README", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2490 | "data/ssl/certificates/aia-cert.pem", |
| 2491 | "data/ssl/certificates/aia-intermediate.der", |
| 2492 | "data/ssl/certificates/aia-root.pem", |
| 2493 | "data/ssl/certificates/bad_validity.pem", |
Kunihiko Sakamoto | 97cfcf5 | 2018-06-26 03:08:22 | [diff] [blame] | 2494 | "data/ssl/certificates/can_sign_http_exchanges_draft_extension.pem", |
David Benjamin | 933f39b | 2018-08-27 14:59:18 | [diff] [blame] | 2495 | "data/ssl/certificates/can_sign_http_exchanges_draft_extension_invalid.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2496 | "data/ssl/certificates/client-empty-password.p12", |
| 2497 | "data/ssl/certificates/client-nokey.p12", |
| 2498 | "data/ssl/certificates/client-null-password.p12", |
| 2499 | "data/ssl/certificates/client.p12", |
| 2500 | "data/ssl/certificates/client_1.key", |
| 2501 | "data/ssl/certificates/client_1.pem", |
| 2502 | "data/ssl/certificates/client_1.pk8", |
| 2503 | "data/ssl/certificates/client_1_ca.pem", |
| 2504 | "data/ssl/certificates/client_2.key", |
| 2505 | "data/ssl/certificates/client_2.pem", |
| 2506 | "data/ssl/certificates/client_2.pk8", |
| 2507 | "data/ssl/certificates/client_2_ca.pem", |
| 2508 | "data/ssl/certificates/client_3.key", |
| 2509 | "data/ssl/certificates/client_3.pem", |
| 2510 | "data/ssl/certificates/client_3.pk8", |
| 2511 | "data/ssl/certificates/client_3_ca.pem", |
| 2512 | "data/ssl/certificates/client_4.key", |
| 2513 | "data/ssl/certificates/client_4.pem", |
| 2514 | "data/ssl/certificates/client_4.pk8", |
| 2515 | "data/ssl/certificates/client_4_ca.pem", |
| 2516 | "data/ssl/certificates/client_5.key", |
| 2517 | "data/ssl/certificates/client_5.pem", |
| 2518 | "data/ssl/certificates/client_5.pk8", |
| 2519 | "data/ssl/certificates/client_5_ca.pem", |
| 2520 | "data/ssl/certificates/client_6.key", |
| 2521 | "data/ssl/certificates/client_6.pem", |
| 2522 | "data/ssl/certificates/client_6.pk8", |
| 2523 | "data/ssl/certificates/client_6_ca.pem", |
| 2524 | "data/ssl/certificates/client_root_ca.pem", |
Ryan Sleevi | c2fcac6 | 2017-12-21 16:37:04 | [diff] [blame] | 2525 | "data/ssl/certificates/common_name_only.pem", |
Rob Percival | 5c442f8 | 2018-03-28 22:10:57 | [diff] [blame] | 2526 | "data/ssl/certificates/comodo-chain.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2527 | "data/ssl/certificates/crit-codeSigning-chain.pem", |
| 2528 | "data/ssl/certificates/crlset_by_intermediate_serial.raw", |
| 2529 | "data/ssl/certificates/crlset_by_leaf_spki.raw", |
Eric Roman | 3b13fe0a | 2018-01-10 22:54:43 | [diff] [blame] | 2530 | "data/ssl/certificates/crlset_by_leaf_subject_no_spki.raw", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2531 | "data/ssl/certificates/crlset_by_root_serial.raw", |
Eric Roman | 3b13fe0a | 2018-01-10 22:54:43 | [diff] [blame] | 2532 | "data/ssl/certificates/crlset_by_root_subject.raw", |
| 2533 | "data/ssl/certificates/crlset_by_root_subject_no_spki.raw", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2534 | "data/ssl/certificates/cross-signed-leaf.pem", |
| 2535 | "data/ssl/certificates/cross-signed-root-md5.pem", |
| 2536 | "data/ssl/certificates/cross-signed-root-sha256.pem", |
| 2537 | "data/ssl/certificates/ct-test-embedded-cert.pem", |
| 2538 | "data/ssl/certificates/ct-test-embedded-with-intermediate-chain.pem", |
| 2539 | "data/ssl/certificates/ct-test-embedded-with-intermediate-preca-chain.pem", |
| 2540 | "data/ssl/certificates/ct-test-embedded-with-preca-chain.pem", |
Ryan Sleevi | d6c6a40 | 2018-04-14 01:33:04 | [diff] [blame] | 2541 | "data/ssl/certificates/daltonridgeapts.com-chain.pem", |
Ryan Sleevi | bd9ca311 | 2017-12-23 05:22:19 | [diff] [blame] | 2542 | "data/ssl/certificates/dec_2017.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2543 | "data/ssl/certificates/diginotar_cyber_ca.pem", |
| 2544 | "data/ssl/certificates/diginotar_pkioverheid.pem", |
| 2545 | "data/ssl/certificates/diginotar_pkioverheid_g2.pem", |
| 2546 | "data/ssl/certificates/diginotar_public_ca_2025.pem", |
| 2547 | "data/ssl/certificates/diginotar_root_ca.pem", |
| 2548 | "data/ssl/certificates/diginotar_services_1024_ca.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2549 | "data/ssl/certificates/duplicate_cn_1.p12", |
| 2550 | "data/ssl/certificates/duplicate_cn_1.pem", |
| 2551 | "data/ssl/certificates/duplicate_cn_2.p12", |
| 2552 | "data/ssl/certificates/duplicate_cn_2.pem", |
| 2553 | "data/ssl/certificates/eku-test-root.pem", |
| 2554 | "data/ssl/certificates/empty_subject_cert.der", |
| 2555 | "data/ssl/certificates/expired_cert.pem", |
| 2556 | "data/ssl/certificates/explicit-policy-chain.pem", |
| 2557 | "data/ssl/certificates/foaf.me.chromium-test-cert.der", |
Ryan Sleevi | c646e48 | 2018-01-27 18:08:56 | [diff] [blame] | 2558 | "data/ssl/certificates/gms.hongleong.com.my-verisign-chain.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2559 | "data/ssl/certificates/google.binary.p7b", |
| 2560 | "data/ssl/certificates/google.chain.pem", |
| 2561 | "data/ssl/certificates/google.pem_cert.p7b", |
| 2562 | "data/ssl/certificates/google.pem_pkcs7.p7b", |
| 2563 | "data/ssl/certificates/google.single.der", |
| 2564 | "data/ssl/certificates/google.single.pem", |
| 2565 | "data/ssl/certificates/google_diginotar.pem", |
| 2566 | "data/ssl/certificates/googlenew.chain.pem", |
| 2567 | "data/ssl/certificates/intermediate_ca_cert.pem", |
| 2568 | "data/ssl/certificates/invalid_key_usage_cert.der", |
Matt Mueller | dbc0aa7 | 2019-02-04 22:13:18 | [diff] [blame] | 2569 | "data/ssl/certificates/key_usage_p256.key", |
David Benjamin | 03c28a4 | 2018-05-11 23:12:07 | [diff] [blame] | 2570 | "data/ssl/certificates/key_usage_p256_both.pem", |
| 2571 | "data/ssl/certificates/key_usage_p256_digitalsignature.pem", |
| 2572 | "data/ssl/certificates/key_usage_p256_keyagreement.pem", |
| 2573 | "data/ssl/certificates/key_usage_p256_no_extension.pem", |
Matt Mueller | dbc0aa7 | 2019-02-04 22:13:18 | [diff] [blame] | 2574 | "data/ssl/certificates/key_usage_rsa.key", |
David Benjamin | 03c28a4 | 2018-05-11 23:12:07 | [diff] [blame] | 2575 | "data/ssl/certificates/key_usage_rsa_both.pem", |
| 2576 | "data/ssl/certificates/key_usage_rsa_digitalsignature.pem", |
| 2577 | "data/ssl/certificates/key_usage_rsa_keyencipherment.pem", |
| 2578 | "data/ssl/certificates/key_usage_rsa_no_extension.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2579 | "data/ssl/certificates/large_key.pem", |
| 2580 | "data/ssl/certificates/localhost_cert.pem", |
Nick Harper | 4ea2214 | 2018-07-24 09:56:16 | [diff] [blame] | 2581 | "data/ssl/certificates/login.trustwave.com.pem", |
Matt Mueller | dbc0aa7 | 2019-02-04 22:13:18 | [diff] [blame] | 2582 | "data/ssl/certificates/may_2018.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2583 | "data/ssl/certificates/mit.davidben.der", |
| 2584 | "data/ssl/certificates/multi-root-A-by-B.pem", |
| 2585 | "data/ssl/certificates/multi-root-B-by-C.pem", |
| 2586 | "data/ssl/certificates/multi-root-B-by-F.pem", |
| 2587 | "data/ssl/certificates/multi-root-BFE.keychain", |
| 2588 | "data/ssl/certificates/multi-root-C-by-D.pem", |
| 2589 | "data/ssl/certificates/multi-root-C-by-E.pem", |
| 2590 | "data/ssl/certificates/multi-root-D-by-D.pem", |
| 2591 | "data/ssl/certificates/multi-root-E-by-E.pem", |
| 2592 | "data/ssl/certificates/multi-root-F-by-E.pem", |
| 2593 | "data/ssl/certificates/multi-root-chain1.pem", |
| 2594 | "data/ssl/certificates/multi-root-chain2.pem", |
| 2595 | "data/ssl/certificates/multi-root-crlset-C.raw", |
| 2596 | "data/ssl/certificates/multi-root-crlset-CD-and-FE.raw", |
| 2597 | "data/ssl/certificates/multi-root-crlset-D-and-E.raw", |
| 2598 | "data/ssl/certificates/multi-root-crlset-E.raw", |
| 2599 | "data/ssl/certificates/multi-root-crlset-unrelated.raw", |
eroman | 1295131 | 2017-05-05 22:55:51 | [diff] [blame] | 2600 | "data/ssl/certificates/multi-root.keychain", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2601 | "data/ssl/certificates/multivalue_rdn.pem", |
Matt Mueller | 09c8fd9a | 2019-05-04 00:37:24 | [diff] [blame] | 2602 | "data/ssl/certificates/name-normalization-byteequal.pem", |
| 2603 | "data/ssl/certificates/name-normalization-case-folding.pem", |
| 2604 | "data/ssl/certificates/name-normalization-printable-utf8.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2605 | "data/ssl/certificates/name_constraint_bad.pem", |
| 2606 | "data/ssl/certificates/name_constraint_good.pem", |
| 2607 | "data/ssl/certificates/ndn.ca.crt", |
| 2608 | "data/ssl/certificates/nist.der", |
| 2609 | "data/ssl/certificates/no_subject_common_name_cert.pem", |
| 2610 | "data/ssl/certificates/non-crit-codeSigning-chain.pem", |
| 2611 | "data/ssl/certificates/ocsp-test-root.pem", |
| 2612 | "data/ssl/certificates/ok_cert.pem", |
| 2613 | "data/ssl/certificates/ok_cert_by_intermediate.pem", |
| 2614 | "data/ssl/certificates/post_june_2016.pem", |
| 2615 | "data/ssl/certificates/pre_br_validity_bad_121.pem", |
| 2616 | "data/ssl/certificates/pre_br_validity_bad_2020.pem", |
| 2617 | "data/ssl/certificates/pre_br_validity_ok.pem", |
| 2618 | "data/ssl/certificates/pre_june_2016.pem", |
| 2619 | "data/ssl/certificates/prime256v1-ecdsa-ee-by-1024-rsa-intermediate.pem", |
| 2620 | "data/ssl/certificates/prime256v1-ecdsa-ee-by-2048-rsa-intermediate.pem", |
| 2621 | "data/ssl/certificates/prime256v1-ecdsa-ee-by-768-rsa-intermediate.pem", |
| 2622 | "data/ssl/certificates/prime256v1-ecdsa-ee-by-prime256v1-ecdsa-intermediate.pem", |
| 2623 | "data/ssl/certificates/prime256v1-ecdsa-intermediate.pem", |
| 2624 | "data/ssl/certificates/punycodetest.pem", |
John Abd-El-Malek | 1c36bfd | 2017-12-19 19:21:36 | [diff] [blame] | 2625 | "data/ssl/certificates/quic-chain.pem", |
John Abd-El-Malek | ec2f082 | 2017-12-20 21:35:11 | [diff] [blame] | 2626 | "data/ssl/certificates/quic-leaf-cert.key", |
| 2627 | "data/ssl/certificates/quic-leaf-cert.key.pkcs8.pem", |
| 2628 | "data/ssl/certificates/quic-leaf-cert.key.sct", |
John Abd-El-Malek | 1c36bfd | 2017-12-19 19:21:36 | [diff] [blame] | 2629 | "data/ssl/certificates/quic-root.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2630 | "data/ssl/certificates/redundant-server-chain.pem", |
| 2631 | "data/ssl/certificates/redundant-validated-chain-root.pem", |
| 2632 | "data/ssl/certificates/redundant-validated-chain.pem", |
| 2633 | "data/ssl/certificates/reject_intranet_hosts.pem", |
| 2634 | "data/ssl/certificates/root_ca_cert.pem", |
| 2635 | "data/ssl/certificates/salesforce_com_test.pem", |
| 2636 | "data/ssl/certificates/self-signed-invalid-name.pem", |
| 2637 | "data/ssl/certificates/self-signed-invalid-sig.pem", |
| 2638 | "data/ssl/certificates/sha1_2016.pem", |
Ryan Sleevi | c2fcac6 | 2017-12-21 16:37:04 | [diff] [blame] | 2639 | "data/ssl/certificates/sha1_leaf.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2640 | "data/ssl/certificates/spdy_pooling.pem", |
| 2641 | "data/ssl/certificates/start_after_expiry.pem", |
| 2642 | "data/ssl/certificates/subjectAltName_sanity_check.pem", |
elawrence | c7484f5 | 2017-04-05 21:46:42 | [diff] [blame] | 2643 | "data/ssl/certificates/subjectAltName_www_example_com.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2644 | "data/ssl/certificates/thawte.single.pem", |
| 2645 | "data/ssl/certificates/tls_feature_extension.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2646 | "data/ssl/certificates/unescaped.pem", |
| 2647 | "data/ssl/certificates/unittest.key.bin", |
| 2648 | "data/ssl/certificates/unittest.originbound.der", |
| 2649 | "data/ssl/certificates/unittest.originbound.key.der", |
| 2650 | "data/ssl/certificates/unittest.selfsigned.der", |
| 2651 | "data/ssl/certificates/verisign_class3_g5_crosssigned-trusted.keychain", |
| 2652 | "data/ssl/certificates/verisign_class3_g5_crosssigned.pem", |
| 2653 | "data/ssl/certificates/verisign_intermediate_ca_2011.pem", |
| 2654 | "data/ssl/certificates/verisign_intermediate_ca_2016.pem", |
| 2655 | "data/ssl/certificates/weak_digest_md2_ee.pem", |
| 2656 | "data/ssl/certificates/weak_digest_md2_intermediate.pem", |
| 2657 | "data/ssl/certificates/weak_digest_md2_root.pem", |
| 2658 | "data/ssl/certificates/weak_digest_md4_ee.pem", |
| 2659 | "data/ssl/certificates/weak_digest_md4_intermediate.pem", |
| 2660 | "data/ssl/certificates/weak_digest_md4_root.pem", |
| 2661 | "data/ssl/certificates/weak_digest_md5_ee.pem", |
| 2662 | "data/ssl/certificates/weak_digest_md5_intermediate.pem", |
| 2663 | "data/ssl/certificates/weak_digest_md5_root.pem", |
| 2664 | "data/ssl/certificates/weak_digest_sha1_ee.pem", |
| 2665 | "data/ssl/certificates/weak_digest_sha1_intermediate.pem", |
| 2666 | "data/ssl/certificates/weak_digest_sha1_root.pem", |
| 2667 | "data/ssl/certificates/websocket_cacert.pem", |
| 2668 | "data/ssl/certificates/websocket_client_cert.p12", |
| 2669 | "data/ssl/certificates/wildcard.pem", |
Ryan Sleevi | 24fe268 | 2018-08-16 21:33:46 | [diff] [blame] | 2670 | "data/ssl/certificates/www.ahrn.com.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2671 | "data/ssl/certificates/x509_verify_results.chain.pem", |
| 2672 | ] |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 2673 | outputs = [ |
| 2674 | "{{bundle_resources_dir}}/" + |
| 2675 | "{{source_root_relative_dir}}/{{source_file_part}}", |
| 2676 | ] |
| 2677 | } |
| 2678 | |
brettw | 3871f52 | 2016-07-14 22:08:34 | [diff] [blame] | 2679 | static_library("test_support") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2680 | testonly = true |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2681 | sources = [ |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2682 | "base/load_timing_info_test_util.cc", |
| 2683 | "base/load_timing_info_test_util.h", |
| 2684 | "base/mock_file_stream.cc", |
| 2685 | "base/mock_file_stream.h", |
Helen Li | f18af04d | 2017-10-19 17:26:07 | [diff] [blame] | 2686 | "base/mock_network_change_notifier.cc", |
| 2687 | "base/mock_network_change_notifier.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2688 | "base/test_completion_callback.cc", |
| 2689 | "base/test_completion_callback.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2690 | "cert/mock_cert_verifier.cc", |
| 2691 | "cert/mock_cert_verifier.h", |
ryanchung | 987b2ff | 2016-02-19 00:17:12 | [diff] [blame] | 2692 | "cert/mock_client_cert_verifier.cc", |
| 2693 | "cert/mock_client_cert_verifier.h", |
Victor Costan | 8587494 | 2018-02-28 04:11:44 | [diff] [blame] | 2694 | "cookies/canonical_cookie_test_helpers.h", |
Victor Costan | 1dcd675 | 2018-03-16 12:31:36 | [diff] [blame] | 2695 | "cookies/cookie_change_dispatcher_test_helpers.cc", |
| 2696 | "cookies/cookie_change_dispatcher_test_helpers.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2697 | "cookies/cookie_monster_store_test.cc", |
| 2698 | "cookies/cookie_monster_store_test.h", |
Victor Costan | f8cb27d | 2018-02-21 09:16:23 | [diff] [blame] | 2699 | "cookies/cookie_store_change_unittest.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2700 | "cookies/cookie_store_test_callbacks.cc", |
| 2701 | "cookies/cookie_store_test_callbacks.h", |
| 2702 | "cookies/cookie_store_test_helpers.cc", |
| 2703 | "cookies/cookie_store_test_helpers.h", |
droger | fd8b277 | 2015-12-04 14:34:56 | [diff] [blame] | 2704 | "cookies/cookie_store_unittest.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2705 | "disk_cache/disk_cache_test_base.cc", |
| 2706 | "disk_cache/disk_cache_test_base.h", |
| 2707 | "disk_cache/disk_cache_test_util.cc", |
| 2708 | "disk_cache/disk_cache_test_util.h", |
Matt Menke | 1dd3f2f | 2017-08-09 17:10:06 | [diff] [blame] | 2709 | "filter/filter_source_stream_test_util.cc", |
| 2710 | "filter/filter_source_stream_test_util.h", |
xunjieli | 6cc8b84b | 2016-11-08 15:23:39 | [diff] [blame] | 2711 | "filter/mock_source_stream.cc", |
| 2712 | "filter/mock_source_stream.h", |
zhongyi | 3c41298 | 2016-06-18 00:34:30 | [diff] [blame] | 2713 | "http/http_stream_factory_test_util.cc", |
| 2714 | "http/http_stream_factory_test_util.h", |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 2715 | "http/http_transaction_test_util.cc", |
| 2716 | "http/http_transaction_test_util.h", |
Steven Bingler | 674fb082 | 2018-12-12 18:04:52 | [diff] [blame] | 2717 | "http/mock_http_cache.cc", |
| 2718 | "http/mock_http_cache.h", |
Matt Mueller | 230996f1 | 2018-10-22 19:39:44 | [diff] [blame] | 2719 | "http/transport_security_state_test_util.cc", |
| 2720 | "http/transport_security_state_test_util.h", |
vishal.b | 62985ca9 | 2015-04-17 08:45:51 | [diff] [blame] | 2721 | "log/test_net_log.cc", |
| 2722 | "log/test_net_log.h", |
mmenke | 43758e6 | 2015-05-04 21:09:46 | [diff] [blame] | 2723 | "log/test_net_log_entry.cc", |
| 2724 | "log/test_net_log_entry.h", |
mmenke | 0034c54 | 2015-05-05 22:34:59 | [diff] [blame] | 2725 | "log/test_net_log_util.cc", |
mmenke | 43758e6 | 2015-05-04 21:09:46 | [diff] [blame] | 2726 | "log/test_net_log_util.h", |
tbansal | 785a6ab | 2016-10-10 20:19:28 | [diff] [blame] | 2727 | "nqe/network_quality_estimator_test_util.cc", |
| 2728 | "nqe/network_quality_estimator_test_util.h", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 2729 | "proxy_resolution/mock_pac_file_fetcher.cc", |
| 2730 | "proxy_resolution/mock_pac_file_fetcher.h", |
Eric Orth | 3757467 | 2019-01-31 02:58:08 | [diff] [blame] | 2731 | "proxy_resolution/mock_proxy_host_resolver.cc", |
| 2732 | "proxy_resolution/mock_proxy_host_resolver.h", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 2733 | "proxy_resolution/mock_proxy_resolver.cc", |
| 2734 | "proxy_resolution/mock_proxy_resolver.h", |
| 2735 | "proxy_resolution/proxy_config_service_common_unittest.cc", |
| 2736 | "proxy_resolution/proxy_config_service_common_unittest.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2737 | "socket/socket_test_util.cc", |
| 2738 | "socket/socket_test_util.h", |
Bence Béky | 94658bf | 2018-05-11 19:22:58 | [diff] [blame] | 2739 | "spdy/spdy_test_util_common.cc", |
| 2740 | "spdy/spdy_test_util_common.h", |
mattm | 436ccfe | 2017-06-19 20:24:08 | [diff] [blame] | 2741 | "ssl/client_cert_identity_test_util.cc", |
| 2742 | "ssl/client_cert_identity_test_util.h", |
| 2743 | "ssl/ssl_private_key_test_util.cc", |
| 2744 | "ssl/ssl_private_key_test_util.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2745 | "test/cert_test_util.cc", |
| 2746 | "test/cert_test_util.h", |
[email protected] | 83e1ae3 | 2014-07-18 10:57:07 | [diff] [blame] | 2747 | "test/cert_test_util_nss.cc", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2748 | "test/ct_test_util.cc", |
| 2749 | "test/ct_test_util.h", |
John Abd-El-Malek | f071beb | 2018-01-30 18:03:24 | [diff] [blame] | 2750 | "test/embedded_test_server/controllable_http_response.cc", |
| 2751 | "test/embedded_test_server/controllable_http_response.h", |
svaldez | 7d25c56 | 2015-10-30 19:09:45 | [diff] [blame] | 2752 | "test/embedded_test_server/default_handlers.cc", |
| 2753 | "test/embedded_test_server/default_handlers.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2754 | "test/embedded_test_server/embedded_test_server.cc", |
| 2755 | "test/embedded_test_server/embedded_test_server.h", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 2756 | "test/embedded_test_server/embedded_test_server_connection_listener.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2757 | "test/embedded_test_server/http_connection.cc", |
| 2758 | "test/embedded_test_server/http_connection.h", |
| 2759 | "test/embedded_test_server/http_request.cc", |
| 2760 | "test/embedded_test_server/http_request.h", |
| 2761 | "test/embedded_test_server/http_response.cc", |
| 2762 | "test/embedded_test_server/http_response.h", |
svaldez | 6e7e82a2 | 2015-10-28 19:39:53 | [diff] [blame] | 2763 | "test/embedded_test_server/request_handler_util.cc", |
| 2764 | "test/embedded_test_server/request_handler_util.h", |
mmenke | 93be9ca | 2017-05-23 16:29:13 | [diff] [blame] | 2765 | "test/embedded_test_server/simple_connection_listener.cc", |
| 2766 | "test/embedded_test_server/simple_connection_listener.h", |
sammc | 6ac3fe5 | 2015-02-25 06:00:28 | [diff] [blame] | 2767 | "test/event_waiter.h", |
johnme | 36ae580 | 2016-05-10 15:46:24 | [diff] [blame] | 2768 | "test/gtest_util.h", |
Jesse Selover | 1d82faf | 2019-03-20 19:44:35 | [diff] [blame] | 2769 | "test/key_util.cc", |
| 2770 | "test/key_util.h", |
mattm | c1ec9d9 | 2017-05-25 01:40:30 | [diff] [blame] | 2771 | "test/keychain_test_util_mac.cc", |
| 2772 | "test/keychain_test_util_mac.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2773 | "test/net_test_suite.cc", |
| 2774 | "test/net_test_suite.h", |
Misha Efimov | 2f3f8ed | 2018-03-06 13:27:28 | [diff] [blame] | 2775 | "test/quic_simple_test_server.cc", |
| 2776 | "test/quic_simple_test_server.h", |
johnme | 36ae580 | 2016-05-10 15:46:24 | [diff] [blame] | 2777 | "test/scoped_disable_exit_on_dfatal.cc", |
| 2778 | "test/scoped_disable_exit_on_dfatal.h", |
Sergey Ulanov | 7de8580 | 2018-01-19 19:50:34 | [diff] [blame] | 2779 | "test/tcp_socket_proxy.cc", |
| 2780 | "test/tcp_socket_proxy.h", |
brettw | 6315e03 | 2015-11-27 18:38:36 | [diff] [blame] | 2781 | "test/test_certificate_data.h", |
rsleevi | a69c79a | 2016-06-22 03:28:43 | [diff] [blame] | 2782 | "test/test_data_directory.cc", |
| 2783 | "test/test_data_directory.h", |
Bence Béky | 98447b1 | 2018-05-08 03:14:01 | [diff] [blame] | 2784 | "test/test_with_scoped_task_environment.h", |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 2785 | "test/url_request/ssl_certificate_error_job.cc", |
| 2786 | "test/url_request/ssl_certificate_error_job.h", |
Brett Wilson | 32ce17a | 2014-11-10 17:45:30 | [diff] [blame] | 2787 | "test/url_request/url_request_failed_job.cc", |
| 2788 | "test/url_request/url_request_failed_job.h", |
xunjieli | 5d1f989 | 2016-05-18 20:44:34 | [diff] [blame] | 2789 | "test/url_request/url_request_hanging_read_job.cc", |
| 2790 | "test/url_request/url_request_hanging_read_job.h", |
mef | 3e826cf | 2014-12-13 18:40:40 | [diff] [blame] | 2791 | "test/url_request/url_request_mock_data_job.cc", |
| 2792 | "test/url_request/url_request_mock_data_job.h", |
jam | 8e45cd7 | 2015-01-20 16:33:44 | [diff] [blame] | 2793 | "test/url_request/url_request_slow_download_job.cc", |
| 2794 | "test/url_request/url_request_slow_download_job.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2795 | "url_request/test_url_fetcher_factory.cc", |
| 2796 | "url_request/test_url_fetcher_factory.h", |
| 2797 | "url_request/url_request_test_util.cc", |
| 2798 | "url_request/url_request_test_util.h", |
| 2799 | ] |
| 2800 | |
Ryan Sleevi | c2fcac6 | 2017-12-21 16:37:04 | [diff] [blame] | 2801 | configs += [ "//build/config:precompiled_headers" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2802 | |
Brett Wilson | e5389527 | 2014-09-23 23:41:46 | [diff] [blame] | 2803 | public_deps = [ |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2804 | "//base", |
| 2805 | "//base/test:test_support", |
[email protected] | 22fe91d | 2014-08-12 17:07:12 | [diff] [blame] | 2806 | "//crypto", |
[email protected] | 59ff2d4 | 2014-04-22 22:25:23 | [diff] [blame] | 2807 | "//net", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 2808 | "//net/dns:test_support", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2809 | "//net/tools/tld_cleanup", |
Veranika Liaukevich | 8a68644 | 2018-05-29 18:55:12 | [diff] [blame] | 2810 | "//net/traffic_annotation:test_support", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2811 | "//testing/gmock", |
| 2812 | "//testing/gtest", |
| 2813 | "//url", |
| 2814 | ] |
| 2815 | |
Matt Menke | 1dd3f2f | 2017-08-09 17:10:06 | [diff] [blame] | 2816 | deps = [ |
Misha Efimov | 2f3f8ed | 2018-03-06 13:27:28 | [diff] [blame] | 2817 | ":simple_quic_tools", |
Matt Mueller | 230996f1 | 2018-10-22 19:39:44 | [diff] [blame] | 2818 | "//net/http:transport_security_state_unittest_data_default", |
Matt Menke | 1dd3f2f | 2017-08-09 17:10:06 | [diff] [blame] | 2819 | "//third_party/zlib", |
| 2820 | ] |
sdefresne | 04f9114 | 2016-04-21 08:41:59 | [diff] [blame] | 2821 | |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 2822 | allow_circular_includes_from = [ "//net/dns:test_support" ] |
| 2823 | |
jbudorick | 944eb92 | 2016-06-20 15:38:30 | [diff] [blame] | 2824 | data = [ |
| 2825 | "data/", |
| 2826 | ] |
| 2827 | |
Daniel Bratell | f4784d1 | 2018-10-09 17:54:08 | [diff] [blame] | 2828 | if (is_mac) { |
| 2829 | libs = [ "Security.framework" ] |
| 2830 | } |
| 2831 | |
rsesek | 7d4ab4bc | 2016-07-22 17:35:13 | [diff] [blame] | 2832 | if (is_ios) { |
| 2833 | deps += [ ":test_support_bundle_data" ] |
| 2834 | } else { |
Michael Spang | 841c3cde | 2019-03-13 22:53:43 | [diff] [blame] | 2835 | public_deps += [ "//third_party/protobuf:py_proto_runtime" ] |
jam | b533b7e | 2015-03-04 17:12:05 | [diff] [blame] | 2836 | } |
| 2837 | |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 2838 | if (use_nss_certs) { |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2839 | public_deps += [ "//crypto:platform" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2840 | } |
| 2841 | |
Sergey Ulanov | ec1d3de | 2017-09-19 19:27:47 | [diff] [blame] | 2842 | if (!is_ios) { |
sherouk | 3eee4a8 | 2015-09-01 10:42:33 | [diff] [blame] | 2843 | sources += [ |
Sergey Ulanov | ec1d3de | 2017-09-19 19:27:47 | [diff] [blame] | 2844 | "test/spawned_test_server/base_test_server.cc", |
| 2845 | "test/spawned_test_server/base_test_server.h", |
| 2846 | "test/spawned_test_server/spawned_test_server.h", |
| 2847 | ] |
Sergey Ulanov | 7de8580 | 2018-01-19 19:50:34 | [diff] [blame] | 2848 | } |
Sergey Ulanov | ec1d3de | 2017-09-19 19:27:47 | [diff] [blame] | 2849 | |
Sergey Volk | 3ee3537f | 2018-06-12 01:45:48 | [diff] [blame] | 2850 | public_configs = [ ":net_test_config" ] |
| 2851 | |
Sergey Ulanov | 7de8580 | 2018-01-19 19:50:34 | [diff] [blame] | 2852 | if (use_remote_test_server) { |
| 2853 | sources += [ |
| 2854 | "test/spawned_test_server/remote_test_server.cc", |
| 2855 | "test/spawned_test_server/remote_test_server.h", |
| 2856 | "test/spawned_test_server/remote_test_server_config.cc", |
| 2857 | "test/spawned_test_server/remote_test_server_config.h", |
| 2858 | "test/spawned_test_server/remote_test_server_spawner_request.cc", |
| 2859 | "test/spawned_test_server/remote_test_server_spawner_request.h", |
| 2860 | ] |
| 2861 | } else if (!is_ios) { |
| 2862 | sources += [ |
| 2863 | "test/spawned_test_server/local_test_server.cc", |
| 2864 | "test/spawned_test_server/local_test_server.h", |
Sergey Ulanov | 7de8580 | 2018-01-19 19:50:34 | [diff] [blame] | 2865 | ] |
Fabrice de Gans-Riberi | 0ab6b07 | 2018-04-20 21:32:58 | [diff] [blame] | 2866 | if (is_win) { |
| 2867 | sources += [ "test/spawned_test_server/local_test_server_win.cc" ] |
| 2868 | } else if (is_posix || is_fuchsia) { |
| 2869 | sources += [ "test/spawned_test_server/local_test_server_posix.cc" ] |
| 2870 | } |
Sergey Ulanov | ec1d3de | 2017-09-19 19:27:47 | [diff] [blame] | 2871 | } |
| 2872 | |
| 2873 | if (enable_python_utils) { |
| 2874 | sources += [ |
| 2875 | "test/python_utils.cc", |
| 2876 | "test/python_utils.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2877 | ] |
| 2878 | } |
| 2879 | |
| 2880 | if (use_v8_in_net) { |
Brett Wilson | e5389527 | 2014-09-23 23:41:46 | [diff] [blame] | 2881 | public_deps += [ ":net_with_v8" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2882 | } |
| 2883 | |
davidben | 15d69d48 | 2014-09-29 18:24:08 | [diff] [blame] | 2884 | if (!use_nss_certs) { |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2885 | sources -= [ "test/cert_test_util_nss.cc" ] |
[email protected] | 83e1ae3 | 2014-07-18 10:57:07 | [diff] [blame] | 2886 | } |
xunjieli | a688820 | 2015-04-14 21:34:25 | [diff] [blame] | 2887 | |
| 2888 | if (!disable_file_support) { |
| 2889 | sources += [ |
| 2890 | "test/url_request/url_request_mock_http_job.cc", |
| 2891 | "test/url_request/url_request_mock_http_job.h", |
| 2892 | "url_request/test_url_request_interceptor.cc", |
| 2893 | "url_request/test_url_request_interceptor.h", |
| 2894 | ] |
| 2895 | } |
Eric Orth | b812a44 | 2018-05-04 20:26:48 | [diff] [blame] | 2896 | |
| 2897 | if (enable_reporting) { |
| 2898 | sources += [ |
Lily Chen | 6ac29d8 | 2019-04-11 22:26:58 | [diff] [blame] | 2899 | "network_error_logging/mock_persistent_nel_store.cc", |
| 2900 | "network_error_logging/mock_persistent_nel_store.h", |
Douglas Creager | 3cb04205 | 2018-11-06 23:08:52 | [diff] [blame] | 2901 | "network_error_logging/network_error_logging_test_util.cc", |
| 2902 | "network_error_logging/network_error_logging_test_util.h", |
Lily Chen | 0ada609 | 2019-05-08 00:08:48 | [diff] [blame] | 2903 | "reporting/mock_persistent_reporting_store.cc", |
| 2904 | "reporting/mock_persistent_reporting_store.h", |
Eric Orth | b812a44 | 2018-05-04 20:26:48 | [diff] [blame] | 2905 | "reporting/reporting_test_util.cc", |
| 2906 | "reporting/reporting_test_util.h", |
| 2907 | ] |
| 2908 | } |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2909 | } |
| 2910 | |
| 2911 | if (use_v8_in_net) { |
| 2912 | component("net_with_v8") { |
| 2913 | sources = [ |
Eric Orth | 3757467 | 2019-01-31 02:58:08 | [diff] [blame] | 2914 | "proxy_resolution/proxy_host_resolver.h", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 2915 | "proxy_resolution/proxy_resolver_v8.cc", |
| 2916 | "proxy_resolution/proxy_resolver_v8.h", |
| 2917 | "proxy_resolution/proxy_resolver_v8_tracing.cc", |
| 2918 | "proxy_resolution/proxy_resolver_v8_tracing.h", |
| 2919 | "proxy_resolution/proxy_resolver_v8_tracing_wrapper.cc", |
| 2920 | "proxy_resolution/proxy_resolver_v8_tracing_wrapper.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2921 | ] |
| 2922 | |
| 2923 | defines = [ "NET_IMPLEMENTATION" ] |
dpranke | a22b073 | 2015-10-21 21:15:11 | [diff] [blame] | 2924 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2925 | configs += [ |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2926 | "//build/config/compiler:wexit_time_destructors", |
dpranke | a22b073 | 2015-10-21 21:15:11 | [diff] [blame] | 2927 | "//v8:external_startup_data", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2928 | ] |
| 2929 | |
Brett Wilson | e5389527 | 2014-09-23 23:41:46 | [diff] [blame] | 2930 | public_deps = [ |
xunjieli | 0b7f5b6 | 2016-12-06 20:43:48 | [diff] [blame] | 2931 | ":constants", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2932 | ":net", |
Brett Wilson | e5389527 | 2014-09-23 23:41:46 | [diff] [blame] | 2933 | ] |
| 2934 | deps = [ |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2935 | "//base", |
| 2936 | "//gin", |
| 2937 | "//url", |
| 2938 | "//v8", |
| 2939 | ] |
| 2940 | } |
| 2941 | } |
| 2942 | |
| 2943 | if (!is_ios && !is_android) { |
mattm | 36d8968 | 2016-06-08 22:22:40 | [diff] [blame] | 2944 | executable("cert_verify_tool") { |
| 2945 | testonly = true |
| 2946 | sources = [ |
| 2947 | "tools/cert_verify_tool/cert_verify_tool.cc", |
| 2948 | "tools/cert_verify_tool/cert_verify_tool_util.cc", |
| 2949 | "tools/cert_verify_tool/cert_verify_tool_util.h", |
| 2950 | "tools/cert_verify_tool/verify_using_cert_verify_proc.cc", |
| 2951 | "tools/cert_verify_tool/verify_using_cert_verify_proc.h", |
mattm | 3c66edc | 2016-07-13 22:40:42 | [diff] [blame] | 2952 | "tools/cert_verify_tool/verify_using_path_builder.cc", |
| 2953 | "tools/cert_verify_tool/verify_using_path_builder.h", |
mattm | 36d8968 | 2016-06-08 22:22:40 | [diff] [blame] | 2954 | ] |
| 2955 | |
mattm | 36d8968 | 2016-06-08 22:22:40 | [diff] [blame] | 2956 | deps = [ |
| 2957 | ":net", |
| 2958 | ":test_support", |
| 2959 | "//base", |
mattm | 36d8968 | 2016-06-08 22:22:40 | [diff] [blame] | 2960 | "//build/win:default_exe_manifest", |
| 2961 | ] |
mattm | 49957fe | 2017-03-02 01:45:29 | [diff] [blame] | 2962 | |
| 2963 | if (is_mac) { |
| 2964 | libs = [ "Security.framework" ] |
| 2965 | } |
mattm | 36d8968 | 2016-06-08 22:22:40 | [diff] [blame] | 2966 | } |
| 2967 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2968 | executable("crash_cache") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2969 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2970 | sources = [ |
| 2971 | "tools/crash_cache/crash_cache.cc", |
| 2972 | ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 2973 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2974 | deps = [ |
| 2975 | ":net", |
[email protected] | b2b2bf5 | 2014-05-28 20:26:57 | [diff] [blame] | 2976 | ":test_support", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2977 | "//base", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2978 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2979 | ] |
| 2980 | } |
| 2981 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2982 | executable("dns_fuzz_stub") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2983 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2984 | sources = [ |
| 2985 | "tools/dns_fuzz_stub/dns_fuzz_stub.cc", |
| 2986 | ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 2987 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2988 | deps = [ |
| 2989 | ":net", |
| 2990 | "//base", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2991 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2992 | ] |
| 2993 | } |
| 2994 | |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 2995 | executable("hpack_example_generator") { |
| 2996 | testonly = true |
| 2997 | sources = [ |
Victor Vasiliev | 802b8d0 | 2018-10-19 17:48:17 | [diff] [blame] | 2998 | "spdy/fuzzing/hpack_example_generator.cc", |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 2999 | ] |
| 3000 | |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 3001 | deps = [ |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 3002 | ":net", |
Victor Vasiliev | 802b8d0 | 2018-10-19 17:48:17 | [diff] [blame] | 3003 | ":spdy_test_tools", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 3004 | "//base", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 3005 | "//build/win:default_exe_manifest", |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 3006 | ] |
| 3007 | } |
| 3008 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3009 | if (use_v8_in_net) { |
| 3010 | executable("net_watcher") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 3011 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 3012 | sources = [ |
| 3013 | "tools/net_watcher/net_watcher.cc", |
| 3014 | ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3015 | deps = [ |
| 3016 | ":net", |
| 3017 | ":net_with_v8", |
| 3018 | "//base", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 3019 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3020 | ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3021 | } |
| 3022 | } |
| 3023 | |
| 3024 | executable("run_testserver") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 3025 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 3026 | sources = [ |
| 3027 | "tools/testserver/run_testserver.cc", |
| 3028 | ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3029 | deps = [ |
[email protected] | b2b2bf5 | 2014-05-28 20:26:57 | [diff] [blame] | 3030 | ":test_support", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3031 | "//base", |
| 3032 | "//base/test:test_support", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 3033 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3034 | "//testing/gtest", |
| 3035 | ] |
| 3036 | } |
| 3037 | |
| 3038 | executable("stress_cache") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 3039 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 3040 | sources = [ |
rvargas | e23fcf65 | 2015-03-04 19:59:22 | [diff] [blame] | 3041 | "tools/stress_cache/stress_cache.cc", |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 3042 | ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 3043 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3044 | deps = [ |
| 3045 | ":net", |
[email protected] | b2b2bf5 | 2014-05-28 20:26:57 | [diff] [blame] | 3046 | ":test_support", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3047 | "//base", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 3048 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3049 | ] |
| 3050 | } |
| 3051 | |
| 3052 | executable("tld_cleanup") { |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 3053 | sources = [ |
| 3054 | "tools/tld_cleanup/tld_cleanup.cc", |
| 3055 | ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 3056 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3057 | deps = [ |
| 3058 | "//base", |
| 3059 | "//base:i18n", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 3060 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3061 | "//net/tools/tld_cleanup", |
| 3062 | ] |
| 3063 | } |
| 3064 | } |
| 3065 | |
gabadie | 0774bee | 2016-05-12 14:02:58 | [diff] [blame] | 3066 | if (is_linux || is_mac) { |
gabadie | 64af64a | 2016-03-29 16:36:42 | [diff] [blame] | 3067 | executable("cachetool") { |
| 3068 | testonly = true |
| 3069 | sources = [ |
| 3070 | "tools/cachetool/cachetool.cc", |
| 3071 | ] |
| 3072 | deps = [ |
| 3073 | ":net", |
| 3074 | ":test_support", |
| 3075 | "//base", |
| 3076 | ] |
| 3077 | } |
| 3078 | |
| 3079 | executable("content_decoder_tool") { |
| 3080 | testonly = true |
| 3081 | sources = [ |
gabadie | 64af64a | 2016-03-29 16:36:42 | [diff] [blame] | 3082 | "tools/content_decoder_tool/content_decoder_tool.cc", |
xunjieli | bb2d9f20 | 2016-11-01 16:37:27 | [diff] [blame] | 3083 | "tools/content_decoder_tool/content_decoder_tool.h", |
| 3084 | "tools/content_decoder_tool/content_decoder_tool_bin.cc", |
gabadie | 64af64a | 2016-03-29 16:36:42 | [diff] [blame] | 3085 | ] |
| 3086 | deps = [ |
| 3087 | ":net", |
| 3088 | ":test_support", |
| 3089 | "//base", |
| 3090 | "//url", |
| 3091 | ] |
| 3092 | } |
gabadie | 0774bee | 2016-05-12 14:02:58 | [diff] [blame] | 3093 | } |
gabadie | 64af64a | 2016-03-29 16:36:42 | [diff] [blame] | 3094 | |
gabadie | 0774bee | 2016-05-12 14:02:58 | [diff] [blame] | 3095 | if (is_linux) { |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 3096 | static_library("epoll_server") { |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3097 | sources = [ |
Dan Zhang | 4149fc5 | 2019-04-26 14:28:28 | [diff] [blame] | 3098 | "third_party/quiche/src/epoll_server/platform/api/epoll_bug.h", |
| 3099 | "third_party/quiche/src/epoll_server/platform/api/epoll_export.h", |
| 3100 | "third_party/quiche/src/epoll_server/platform/api/epoll_logging.h", |
| 3101 | "third_party/quiche/src/epoll_server/platform/api/epoll_ptr_util.h", |
| 3102 | "third_party/quiche/src/epoll_server/platform/api/epoll_thread.h", |
| 3103 | "third_party/quiche/src/epoll_server/platform/api/epoll_time.h", |
| 3104 | "third_party/quiche/src/epoll_server/simple_epoll_server.cc", |
| 3105 | "third_party/quiche/src/epoll_server/simple_epoll_server.h", |
| 3106 | "tools/epoll_server/platform/impl/epoll_bug_impl.h", |
| 3107 | "tools/epoll_server/platform/impl/epoll_export_impl.h", |
| 3108 | "tools/epoll_server/platform/impl/epoll_logging_impl.h", |
| 3109 | "tools/epoll_server/platform/impl/epoll_ptr_util_impl.h", |
| 3110 | "tools/epoll_server/platform/impl/epoll_thread_impl.h", |
| 3111 | "tools/epoll_server/platform/impl/epoll_time_impl.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3112 | ] |
| 3113 | deps = [ |
| 3114 | ":net", |
| 3115 | "//base", |
| 3116 | ] |
| 3117 | } |
| 3118 | |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 3119 | source_set("epoll_quic_tools") { |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3120 | sources = [ |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 3121 | "quic/platform/impl/quic_default_proof_providers_impl.cc", |
| 3122 | "quic/platform/impl/quic_default_proof_providers_impl.h", |
| 3123 | "quic/platform/impl/quic_epoll_clock.cc", |
| 3124 | "quic/platform/impl/quic_epoll_clock.h", |
| 3125 | "quic/platform/impl/quic_linux_socket_utils.cc", |
| 3126 | "quic/platform/impl/quic_linux_socket_utils.h", |
| 3127 | "quic/platform/impl/quic_socket_utils.cc", |
| 3128 | "quic/platform/impl/quic_socket_utils.h", |
| 3129 | "quic/platform/impl/quic_stream_buffer_allocator_impl.h", |
| 3130 | "quic/platform/impl/quic_system_event_loop_impl.h", |
| 3131 | "third_party/quiche/src/quic/core/quic_default_packet_writer.cc", |
| 3132 | "third_party/quiche/src/quic/core/quic_default_packet_writer.h", |
| 3133 | "third_party/quiche/src/quic/core/quic_epoll_alarm_factory.cc", |
| 3134 | "third_party/quiche/src/quic/core/quic_epoll_alarm_factory.h", |
| 3135 | "third_party/quiche/src/quic/core/quic_epoll_connection_helper.cc", |
| 3136 | "third_party/quiche/src/quic/core/quic_epoll_connection_helper.h", |
| 3137 | "third_party/quiche/src/quic/core/quic_packet_reader.cc", |
| 3138 | "third_party/quiche/src/quic/core/quic_packet_reader.h", |
| 3139 | "third_party/quiche/src/quic/platform/api/quic_default_proof_providers.h", |
Ryan Hamilton | d6cdacef | 2019-05-01 19:19:05 | [diff] [blame] | 3140 | "third_party/quiche/src/quic/platform/api/quic_epoll.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 3141 | "third_party/quiche/src/quic/platform/api/quic_stream_buffer_allocator.h", |
| 3142 | "third_party/quiche/src/quic/platform/api/quic_system_event_loop.h", |
| 3143 | "third_party/quiche/src/quic/tools/quic_client.cc", |
| 3144 | "third_party/quiche/src/quic/tools/quic_client.h", |
| 3145 | "third_party/quiche/src/quic/tools/quic_client_epoll_network_helper.cc", |
| 3146 | "third_party/quiche/src/quic/tools/quic_client_epoll_network_helper.h", |
| 3147 | "third_party/quiche/src/quic/tools/quic_server.cc", |
| 3148 | "third_party/quiche/src/quic/tools/quic_server.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3149 | ] |
| 3150 | deps = [ |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3151 | ":epoll_server", |
| 3152 | ":net", |
tfarina | 8ac4d17f | 2015-12-16 02:11:11 | [diff] [blame] | 3153 | ":simple_quic_tools", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3154 | "//base", |
| 3155 | "//base/third_party/dynamic_annotations", |
| 3156 | "//crypto", |
[email protected] | edfd0f4 | 2014-07-22 18:20:37 | [diff] [blame] | 3157 | "//third_party/boringssl", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3158 | "//url", |
| 3159 | ] |
| 3160 | } |
| 3161 | |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 3162 | executable("epoll_quic_client") { |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 3163 | sources = [ |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 3164 | "third_party/quiche/src/quic/tools/quic_client_bin.cc", |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 3165 | ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3166 | deps = [ |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 3167 | ":epoll_quic_tools", |
agrieve | d7a71c88 | 2015-11-20 19:53:28 | [diff] [blame] | 3168 | ":epoll_server", |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 3169 | ":net", |
| 3170 | ":simple_quic_tools", |
| 3171 | "//base", |
| 3172 | "//third_party/boringssl", |
| 3173 | ] |
| 3174 | } |
| 3175 | |
| 3176 | executable("epoll_quic_server") { |
| 3177 | sources = [ |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 3178 | "third_party/quiche/src/quic/tools/quic_server_bin.cc", |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 3179 | ] |
| 3180 | deps = [ |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 3181 | ":epoll_quic_tools", |
agrieve | d7a71c88 | 2015-11-20 19:53:28 | [diff] [blame] | 3182 | ":epoll_server", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3183 | ":net", |
rch | da78df5a | 2015-03-22 05:16:37 | [diff] [blame] | 3184 | ":simple_quic_tools", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3185 | "//base", |
[email protected] | edfd0f4 | 2014-07-22 18:20:37 | [diff] [blame] | 3186 | "//third_party/boringssl", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3187 | ] |
| 3188 | } |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3189 | } |
| 3190 | |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 3191 | if (is_android) { |
| 3192 | generate_jni("net_jni_headers") { |
| 3193 | sources = [ |
tbansal | c04b7aa | 2016-07-02 06:54:37 | [diff] [blame] | 3194 | "android/java/src/org/chromium/net/AndroidCellularSignalStrength.java", |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 3195 | "android/java/src/org/chromium/net/AndroidCertVerifyResult.java", |
| 3196 | "android/java/src/org/chromium/net/AndroidKeyStore.java", |
| 3197 | "android/java/src/org/chromium/net/AndroidNetworkLibrary.java", |
tbansal | 59a1ddc | 2015-09-14 17:35:01 | [diff] [blame] | 3198 | "android/java/src/org/chromium/net/AndroidTrafficStats.java", |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 3199 | "android/java/src/org/chromium/net/GURLUtils.java", |
aberent | ec894a5 | 2015-07-09 14:45:53 | [diff] [blame] | 3200 | "android/java/src/org/chromium/net/HttpNegotiateAuthenticator.java", |
Peter E Conn | f7d277b | 2018-08-15 16:23:32 | [diff] [blame] | 3201 | "android/java/src/org/chromium/net/HttpUtil.java", |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 3202 | "android/java/src/org/chromium/net/NetStringUtil.java", |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 3203 | "android/java/src/org/chromium/net/NetworkChangeNotifier.java", |
| 3204 | "android/java/src/org/chromium/net/ProxyChangeListener.java", |
| 3205 | "android/java/src/org/chromium/net/X509Util.java", |
| 3206 | ] |
| 3207 | jni_package = "net" |
| 3208 | } |
cjhopman | dad5f427 | 2014-09-05 01:00:55 | [diff] [blame] | 3209 | generate_jni("net_test_jni_headers") { |
| 3210 | sources = [ |
| 3211 | "android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java", |
mgersh | d21d6d14 | 2016-12-14 23:06:36 | [diff] [blame] | 3212 | "android/javatests/src/org/chromium/net/AndroidNetworkLibraryTestUtil.java", |
pauljensen | 6815aef | 2017-05-05 03:00:06 | [diff] [blame] | 3213 | "android/javatests/src/org/chromium/net/AndroidProxyConfigServiceTestUtil.java", |
aberent | ec894a5 | 2015-07-09 14:45:53 | [diff] [blame] | 3214 | "test/android/javatests/src/org/chromium/net/test/DummySpnegoAuthenticator.java", |
jbudorick | ccffb98 | 2015-12-22 01:21:35 | [diff] [blame] | 3215 | "test/android/javatests/src/org/chromium/net/test/EmbeddedTestServerImpl.java", |
cjhopman | dad5f427 | 2014-09-05 01:00:55 | [diff] [blame] | 3216 | ] |
brettw | cdccaf0 | 2015-07-27 16:27:09 | [diff] [blame] | 3217 | jni_package = "net/test" |
cjhopman | dad5f427 | 2014-09-05 01:00:55 | [diff] [blame] | 3218 | } |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 3219 | } |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3220 | |
| 3221 | if (is_android || is_linux) { |
| 3222 | executable("disk_cache_memory_test") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 3223 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 3224 | sources = [ |
| 3225 | "tools/disk_cache_memory_test/disk_cache_memory_test.cc", |
| 3226 | ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3227 | deps = [ |
| 3228 | ":net", |
| 3229 | "//base", |
| 3230 | ] |
| 3231 | } |
| 3232 | } |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 3233 | |
Dan Zhang | 4149fc5 | 2019-04-26 14:28:28 | [diff] [blame] | 3234 | source_set("epoll_server_test_tools") { |
| 3235 | testonly = true |
| 3236 | sources = [ |
| 3237 | "third_party/quiche/src/epoll_server/platform/api/epoll_address_test_utils.h", |
| 3238 | "third_party/quiche/src/epoll_server/platform/api/epoll_expect_bug.h", |
| 3239 | "third_party/quiche/src/epoll_server/platform/api/epoll_test.h", |
| 3240 | "tools/epoll_server/platform/impl/epoll_address_test_utils_impl.h", |
| 3241 | "tools/epoll_server/platform/impl/epoll_expect_bug_impl.h", |
| 3242 | "tools/epoll_server/platform/impl/epoll_test_impl.h", |
| 3243 | ] |
| 3244 | deps = [ |
| 3245 | ":net", |
| 3246 | ":test_support", |
| 3247 | "//base", |
| 3248 | "//testing/gmock", |
| 3249 | "//testing/gtest", |
| 3250 | ] |
| 3251 | } |
| 3252 | |
Victor Vasiliev | 802b8d0 | 2018-10-19 17:48:17 | [diff] [blame] | 3253 | source_set("spdy_test_tools") { |
| 3254 | testonly = true |
| 3255 | sources = [ |
| 3256 | "spdy/fuzzing/hpack_fuzz_util.cc", |
| 3257 | "spdy/fuzzing/hpack_fuzz_util.h", |
| 3258 | ] |
| 3259 | deps = [ |
| 3260 | ":net", |
| 3261 | "//base", |
| 3262 | ] |
| 3263 | } |
| 3264 | |
Dan Zhang | b4d098e3 | 2019-05-03 15:29:48 | [diff] [blame] | 3265 | source_set("quiche_test_tools") { |
| 3266 | testonly = true |
| 3267 | sources = [ |
| 3268 | "quiche/common/platform/impl/quiche_test_impl.h", |
| 3269 | "third_party/quiche/src/common/platform/api/quiche_test.h", |
| 3270 | ] |
| 3271 | deps = [ |
| 3272 | "//testing/gmock", |
| 3273 | "//testing/gtest", |
| 3274 | ] |
| 3275 | } |
| 3276 | |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 3277 | source_set("quic_test_tools") { |
| 3278 | testonly = true |
| 3279 | sources = [ |
Ryan Hamilton | a3ee93a7 | 2018-08-01 22:03:08 | [diff] [blame] | 3280 | "quic/crypto_test_utils_chromium.cc", |
Ryan Hamilton | 7582d265 | 2018-08-01 22:35:32 | [diff] [blame] | 3281 | "quic/mock_crypto_client_stream.cc", |
| 3282 | "quic/mock_crypto_client_stream.h", |
| 3283 | "quic/mock_crypto_client_stream_factory.cc", |
| 3284 | "quic/mock_crypto_client_stream_factory.h", |
| 3285 | "quic/mock_decrypter.cc", |
| 3286 | "quic/mock_decrypter.h", |
| 3287 | "quic/mock_encrypter.cc", |
| 3288 | "quic/mock_encrypter.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 3289 | "quic/platform/impl/quic_epoll_test_tools_impl.h", |
| 3290 | "quic/platform/impl/quic_expect_bug_impl.h", |
| 3291 | "quic/platform/impl/quic_mock_log_impl.h", |
| 3292 | "quic/platform/impl/quic_port_utils_impl.cc", |
| 3293 | "quic/platform/impl/quic_port_utils_impl.h", |
| 3294 | "quic/platform/impl/quic_test_impl.cc", |
| 3295 | "quic/platform/impl/quic_test_impl.h", |
| 3296 | "quic/platform/impl/quic_test_loopback_impl.cc", |
| 3297 | "quic/platform/impl/quic_test_loopback_impl.h", |
| 3298 | "quic/platform/impl/quic_test_mem_slice_vector_impl.cc", |
| 3299 | "quic/platform/impl/quic_test_mem_slice_vector_impl.h", |
| 3300 | "quic/platform/impl/quic_test_output_impl.cc", |
| 3301 | "quic/platform/impl/quic_test_output_impl.h", |
Ryan Hamilton | 7582d265 | 2018-08-01 22:35:32 | [diff] [blame] | 3302 | "quic/test_task_runner.cc", |
| 3303 | "quic/test_task_runner.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 3304 | "third_party/quiche/src/quic/core/qpack/offline/qpack_offline_decoder.cc", |
| 3305 | "third_party/quiche/src/quic/core/qpack/offline/qpack_offline_decoder.h", |
| 3306 | "third_party/quiche/src/quic/core/qpack/qpack_decoder_test_utils.cc", |
| 3307 | "third_party/quiche/src/quic/core/qpack/qpack_decoder_test_utils.h", |
| 3308 | "third_party/quiche/src/quic/core/qpack/qpack_encoder_test_utils.cc", |
| 3309 | "third_party/quiche/src/quic/core/qpack/qpack_encoder_test_utils.h", |
| 3310 | "third_party/quiche/src/quic/core/qpack/qpack_test_utils.cc", |
| 3311 | "third_party/quiche/src/quic/core/qpack/qpack_test_utils.h", |
| 3312 | "third_party/quiche/src/quic/core/quic_trace_visitor.cc", |
| 3313 | "third_party/quiche/src/quic/core/quic_trace_visitor.h", |
| 3314 | "third_party/quiche/src/quic/platform/api/quic_epoll_test_tools.h", |
| 3315 | "third_party/quiche/src/quic/platform/api/quic_expect_bug.h", |
| 3316 | "third_party/quiche/src/quic/platform/api/quic_mock_log.h", |
| 3317 | "third_party/quiche/src/quic/platform/api/quic_port_utils.h", |
| 3318 | "third_party/quiche/src/quic/platform/api/quic_test.h", |
| 3319 | "third_party/quiche/src/quic/platform/api/quic_test_loopback.cc", |
| 3320 | "third_party/quiche/src/quic/platform/api/quic_test_loopback.h", |
| 3321 | "third_party/quiche/src/quic/platform/api/quic_test_mem_slice_vector.h", |
| 3322 | "third_party/quiche/src/quic/platform/api/quic_test_output.h", |
| 3323 | "third_party/quiche/src/quic/test_tools/crypto_test_utils.cc", |
| 3324 | "third_party/quiche/src/quic/test_tools/crypto_test_utils.h", |
| 3325 | "third_party/quiche/src/quic/test_tools/failing_proof_source.cc", |
| 3326 | "third_party/quiche/src/quic/test_tools/failing_proof_source.h", |
| 3327 | "third_party/quiche/src/quic/test_tools/fake_proof_source.cc", |
| 3328 | "third_party/quiche/src/quic/test_tools/fake_proof_source.h", |
| 3329 | "third_party/quiche/src/quic/test_tools/mock_clock.cc", |
| 3330 | "third_party/quiche/src/quic/test_tools/mock_clock.h", |
| 3331 | "third_party/quiche/src/quic/test_tools/mock_quic_client_promised_info.cc", |
| 3332 | "third_party/quiche/src/quic/test_tools/mock_quic_client_promised_info.h", |
| 3333 | "third_party/quiche/src/quic/test_tools/mock_quic_dispatcher.cc", |
| 3334 | "third_party/quiche/src/quic/test_tools/mock_quic_dispatcher.h", |
| 3335 | "third_party/quiche/src/quic/test_tools/mock_quic_session_visitor.cc", |
| 3336 | "third_party/quiche/src/quic/test_tools/mock_quic_session_visitor.h", |
| 3337 | "third_party/quiche/src/quic/test_tools/mock_quic_spdy_client_stream.cc", |
| 3338 | "third_party/quiche/src/quic/test_tools/mock_quic_spdy_client_stream.h", |
| 3339 | "third_party/quiche/src/quic/test_tools/mock_random.cc", |
| 3340 | "third_party/quiche/src/quic/test_tools/mock_random.h", |
| 3341 | "third_party/quiche/src/quic/test_tools/quic_buffered_packet_store_peer.cc", |
| 3342 | "third_party/quiche/src/quic/test_tools/quic_buffered_packet_store_peer.h", |
| 3343 | "third_party/quiche/src/quic/test_tools/quic_client_promised_info_peer.cc", |
| 3344 | "third_party/quiche/src/quic/test_tools/quic_client_promised_info_peer.h", |
| 3345 | "third_party/quiche/src/quic/test_tools/quic_config_peer.cc", |
| 3346 | "third_party/quiche/src/quic/test_tools/quic_config_peer.h", |
| 3347 | "third_party/quiche/src/quic/test_tools/quic_connection_peer.cc", |
| 3348 | "third_party/quiche/src/quic/test_tools/quic_connection_peer.h", |
| 3349 | "third_party/quiche/src/quic/test_tools/quic_crypto_server_config_peer.cc", |
| 3350 | "third_party/quiche/src/quic/test_tools/quic_crypto_server_config_peer.h", |
| 3351 | "third_party/quiche/src/quic/test_tools/quic_dispatcher_peer.cc", |
| 3352 | "third_party/quiche/src/quic/test_tools/quic_dispatcher_peer.h", |
| 3353 | "third_party/quiche/src/quic/test_tools/quic_flow_controller_peer.cc", |
| 3354 | "third_party/quiche/src/quic/test_tools/quic_flow_controller_peer.h", |
| 3355 | "third_party/quiche/src/quic/test_tools/quic_framer_peer.cc", |
| 3356 | "third_party/quiche/src/quic/test_tools/quic_framer_peer.h", |
| 3357 | "third_party/quiche/src/quic/test_tools/quic_packet_creator_peer.cc", |
| 3358 | "third_party/quiche/src/quic/test_tools/quic_packet_creator_peer.h", |
| 3359 | "third_party/quiche/src/quic/test_tools/quic_packet_generator_peer.cc", |
| 3360 | "third_party/quiche/src/quic/test_tools/quic_packet_generator_peer.h", |
| 3361 | "third_party/quiche/src/quic/test_tools/quic_sent_packet_manager_peer.cc", |
| 3362 | "third_party/quiche/src/quic/test_tools/quic_sent_packet_manager_peer.h", |
| 3363 | "third_party/quiche/src/quic/test_tools/quic_server_session_base_peer.h", |
| 3364 | "third_party/quiche/src/quic/test_tools/quic_session_peer.cc", |
| 3365 | "third_party/quiche/src/quic/test_tools/quic_session_peer.h", |
| 3366 | "third_party/quiche/src/quic/test_tools/quic_spdy_session_peer.cc", |
| 3367 | "third_party/quiche/src/quic/test_tools/quic_spdy_session_peer.h", |
| 3368 | "third_party/quiche/src/quic/test_tools/quic_spdy_stream_peer.cc", |
| 3369 | "third_party/quiche/src/quic/test_tools/quic_spdy_stream_peer.h", |
| 3370 | "third_party/quiche/src/quic/test_tools/quic_stream_id_manager_peer.cc", |
| 3371 | "third_party/quiche/src/quic/test_tools/quic_stream_id_manager_peer.h", |
| 3372 | "third_party/quiche/src/quic/test_tools/quic_stream_peer.cc", |
| 3373 | "third_party/quiche/src/quic/test_tools/quic_stream_peer.h", |
| 3374 | "third_party/quiche/src/quic/test_tools/quic_stream_send_buffer_peer.cc", |
| 3375 | "third_party/quiche/src/quic/test_tools/quic_stream_send_buffer_peer.h", |
| 3376 | "third_party/quiche/src/quic/test_tools/quic_stream_sequencer_buffer_peer.cc", |
| 3377 | "third_party/quiche/src/quic/test_tools/quic_stream_sequencer_buffer_peer.h", |
| 3378 | "third_party/quiche/src/quic/test_tools/quic_stream_sequencer_peer.cc", |
| 3379 | "third_party/quiche/src/quic/test_tools/quic_stream_sequencer_peer.h", |
| 3380 | "third_party/quiche/src/quic/test_tools/quic_sustained_bandwidth_recorder_peer.cc", |
| 3381 | "third_party/quiche/src/quic/test_tools/quic_sustained_bandwidth_recorder_peer.h", |
| 3382 | "third_party/quiche/src/quic/test_tools/quic_test_utils.cc", |
| 3383 | "third_party/quiche/src/quic/test_tools/quic_test_utils.h", |
| 3384 | "third_party/quiche/src/quic/test_tools/quic_time_wait_list_manager_peer.cc", |
| 3385 | "third_party/quiche/src/quic/test_tools/quic_time_wait_list_manager_peer.h", |
| 3386 | "third_party/quiche/src/quic/test_tools/quic_unacked_packet_map_peer.cc", |
| 3387 | "third_party/quiche/src/quic/test_tools/quic_unacked_packet_map_peer.h", |
| 3388 | "third_party/quiche/src/quic/test_tools/rtt_stats_peer.cc", |
| 3389 | "third_party/quiche/src/quic/test_tools/rtt_stats_peer.h", |
| 3390 | "third_party/quiche/src/quic/test_tools/simple_data_producer.cc", |
| 3391 | "third_party/quiche/src/quic/test_tools/simple_data_producer.h", |
| 3392 | "third_party/quiche/src/quic/test_tools/simple_quic_framer.cc", |
| 3393 | "third_party/quiche/src/quic/test_tools/simple_quic_framer.h", |
| 3394 | "third_party/quiche/src/quic/test_tools/simple_session_notifier.cc", |
| 3395 | "third_party/quiche/src/quic/test_tools/simple_session_notifier.h", |
| 3396 | "third_party/quiche/src/quic/test_tools/simulator/actor.cc", |
| 3397 | "third_party/quiche/src/quic/test_tools/simulator/actor.h", |
| 3398 | "third_party/quiche/src/quic/test_tools/simulator/alarm_factory.cc", |
| 3399 | "third_party/quiche/src/quic/test_tools/simulator/alarm_factory.h", |
| 3400 | "third_party/quiche/src/quic/test_tools/simulator/link.cc", |
| 3401 | "third_party/quiche/src/quic/test_tools/simulator/link.h", |
| 3402 | "third_party/quiche/src/quic/test_tools/simulator/packet_filter.cc", |
| 3403 | "third_party/quiche/src/quic/test_tools/simulator/packet_filter.h", |
| 3404 | "third_party/quiche/src/quic/test_tools/simulator/port.cc", |
| 3405 | "third_party/quiche/src/quic/test_tools/simulator/port.h", |
| 3406 | "third_party/quiche/src/quic/test_tools/simulator/queue.cc", |
| 3407 | "third_party/quiche/src/quic/test_tools/simulator/queue.h", |
| 3408 | "third_party/quiche/src/quic/test_tools/simulator/quic_endpoint.cc", |
| 3409 | "third_party/quiche/src/quic/test_tools/simulator/quic_endpoint.h", |
| 3410 | "third_party/quiche/src/quic/test_tools/simulator/simulator.cc", |
| 3411 | "third_party/quiche/src/quic/test_tools/simulator/simulator.h", |
| 3412 | "third_party/quiche/src/quic/test_tools/simulator/switch.cc", |
| 3413 | "third_party/quiche/src/quic/test_tools/simulator/switch.h", |
| 3414 | "third_party/quiche/src/quic/test_tools/simulator/traffic_policer.cc", |
| 3415 | "third_party/quiche/src/quic/test_tools/simulator/traffic_policer.h", |
| 3416 | "third_party/quiche/src/quic/tools/quic_tcp_like_trace_converter.cc", |
| 3417 | "third_party/quiche/src/quic/tools/quic_tcp_like_trace_converter.h", |
| 3418 | "third_party/quiche/src/quic/tools/quic_tcp_like_trace_converter_test.cc", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 3419 | ] |
| 3420 | deps = [ |
| 3421 | ":net", |
| 3422 | ":simple_quic_tools", |
| 3423 | ":test_support", |
| 3424 | "//base", |
| 3425 | "//crypto:test_support", |
| 3426 | "//testing/gmock", |
| 3427 | "//testing/gtest", |
| 3428 | "//third_party/boringssl", |
| 3429 | "//third_party/protobuf:protobuf_lite", |
Victor Vasiliev | 3b5cf15 | 2018-07-02 18:47:41 | [diff] [blame] | 3430 | "//third_party/quic_trace:quic_trace_proto", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 3431 | ] |
| 3432 | |
| 3433 | if (is_linux) { |
| 3434 | sources += [ |
Dan Zhang | 4149fc5 | 2019-04-26 14:28:28 | [diff] [blame] | 3435 | "third_party/quiche/src/epoll_server/fake_simple_epoll_server.cc", |
| 3436 | "third_party/quiche/src/epoll_server/fake_simple_epoll_server.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 3437 | "third_party/quiche/src/quic/test_tools/bad_packet_writer.cc", |
| 3438 | "third_party/quiche/src/quic/test_tools/bad_packet_writer.h", |
| 3439 | "third_party/quiche/src/quic/test_tools/limited_mtu_test_writer.cc", |
| 3440 | "third_party/quiche/src/quic/test_tools/limited_mtu_test_writer.h", |
| 3441 | "third_party/quiche/src/quic/test_tools/packet_dropping_test_writer.cc", |
| 3442 | "third_party/quiche/src/quic/test_tools/packet_dropping_test_writer.h", |
| 3443 | "third_party/quiche/src/quic/test_tools/packet_reordering_writer.cc", |
| 3444 | "third_party/quiche/src/quic/test_tools/packet_reordering_writer.h", |
| 3445 | "third_party/quiche/src/quic/test_tools/quic_client_peer.cc", |
| 3446 | "third_party/quiche/src/quic/test_tools/quic_client_peer.h", |
| 3447 | "third_party/quiche/src/quic/test_tools/quic_server_peer.cc", |
| 3448 | "third_party/quiche/src/quic/test_tools/quic_server_peer.h", |
| 3449 | "third_party/quiche/src/quic/test_tools/quic_test_client.cc", |
| 3450 | "third_party/quiche/src/quic/test_tools/quic_test_client.h", |
| 3451 | "third_party/quiche/src/quic/test_tools/quic_test_server.cc", |
| 3452 | "third_party/quiche/src/quic/test_tools/quic_test_server.h", |
| 3453 | "third_party/quiche/src/quic/test_tools/server_thread.cc", |
| 3454 | "third_party/quiche/src/quic/test_tools/server_thread.h", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 3455 | ] |
| 3456 | deps += [ |
| 3457 | ":epoll_quic_tools", |
| 3458 | ":epoll_server", |
| 3459 | ] |
| 3460 | } |
| 3461 | } |
| 3462 | |
rch | 47ad01f | 2015-03-20 21:17:23 | [diff] [blame] | 3463 | source_set("simple_quic_tools") { |
rch | a9d12ce1 | 2015-03-19 23:06:49 | [diff] [blame] | 3464 | sources = [ |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 3465 | "third_party/quiche/src/quic/core/chlo_extractor.cc", |
| 3466 | "third_party/quiche/src/quic/core/chlo_extractor.h", |
| 3467 | "third_party/quiche/src/quic/core/http/quic_spdy_client_session.cc", |
| 3468 | "third_party/quiche/src/quic/core/http/quic_spdy_client_session.h", |
| 3469 | "third_party/quiche/src/quic/core/http/quic_spdy_client_stream.cc", |
| 3470 | "third_party/quiche/src/quic/core/http/quic_spdy_client_stream.h", |
| 3471 | "third_party/quiche/src/quic/core/http/quic_spdy_server_stream_base.cc", |
| 3472 | "third_party/quiche/src/quic/core/http/quic_spdy_server_stream_base.h", |
| 3473 | "third_party/quiche/src/quic/core/quic_dispatcher.cc", |
| 3474 | "third_party/quiche/src/quic/core/quic_dispatcher.h", |
| 3475 | "third_party/quiche/src/quic/core/quic_packet_writer_wrapper.cc", |
| 3476 | "third_party/quiche/src/quic/core/quic_packet_writer_wrapper.h", |
| 3477 | "third_party/quiche/src/quic/core/quic_process_packet_interface.h", |
| 3478 | "third_party/quiche/src/quic/core/quic_time_wait_list_manager.cc", |
| 3479 | "third_party/quiche/src/quic/core/quic_time_wait_list_manager.h", |
| 3480 | "third_party/quiche/src/quic/core/stateless_rejector.cc", |
| 3481 | "third_party/quiche/src/quic/core/stateless_rejector.h", |
| 3482 | "third_party/quiche/src/quic/tools/quic_backend_response.cc", |
| 3483 | "third_party/quiche/src/quic/tools/quic_backend_response.h", |
| 3484 | "third_party/quiche/src/quic/tools/quic_client_base.cc", |
| 3485 | "third_party/quiche/src/quic/tools/quic_client_base.h", |
| 3486 | "third_party/quiche/src/quic/tools/quic_memory_cache_backend.cc", |
| 3487 | "third_party/quiche/src/quic/tools/quic_memory_cache_backend.h", |
| 3488 | "third_party/quiche/src/quic/tools/quic_simple_client_session.cc", |
| 3489 | "third_party/quiche/src/quic/tools/quic_simple_client_session.h", |
| 3490 | "third_party/quiche/src/quic/tools/quic_simple_client_stream.cc", |
| 3491 | "third_party/quiche/src/quic/tools/quic_simple_client_stream.h", |
| 3492 | "third_party/quiche/src/quic/tools/quic_simple_crypto_server_stream_helper.cc", |
| 3493 | "third_party/quiche/src/quic/tools/quic_simple_crypto_server_stream_helper.h", |
| 3494 | "third_party/quiche/src/quic/tools/quic_simple_dispatcher.cc", |
| 3495 | "third_party/quiche/src/quic/tools/quic_simple_dispatcher.h", |
Ryan Hamilton | d6cdacef | 2019-05-01 19:19:05 | [diff] [blame] | 3496 | "third_party/quiche/src/quic/tools/quic_simple_server_backend.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 3497 | "third_party/quiche/src/quic/tools/quic_simple_server_session.cc", |
| 3498 | "third_party/quiche/src/quic/tools/quic_simple_server_session.h", |
| 3499 | "third_party/quiche/src/quic/tools/quic_simple_server_stream.cc", |
| 3500 | "third_party/quiche/src/quic/tools/quic_simple_server_stream.h", |
| 3501 | "third_party/quiche/src/quic/tools/quic_spdy_client_base.cc", |
| 3502 | "third_party/quiche/src/quic/tools/quic_spdy_client_base.h", |
| 3503 | "third_party/quiche/src/quic/tools/quic_url.cc", |
| 3504 | "third_party/quiche/src/quic/tools/quic_url.h", |
Ryan Hamilton | c440230 | 2017-08-10 01:55:46 | [diff] [blame] | 3505 | "tools/quic/quic_client_message_loop_network_helper.cc", |
| 3506 | "tools/quic/quic_client_message_loop_network_helper.h", |
Rajesh Mahindra | 4380217 | 2018-07-24 20:00:14 | [diff] [blame] | 3507 | "tools/quic/quic_http_proxy_backend.cc", |
| 3508 | "tools/quic/quic_http_proxy_backend.h", |
| 3509 | "tools/quic/quic_http_proxy_backend_stream.cc", |
| 3510 | "tools/quic/quic_http_proxy_backend_stream.h", |
rch | a9d12ce1 | 2015-03-19 23:06:49 | [diff] [blame] | 3511 | "tools/quic/quic_simple_client.cc", |
| 3512 | "tools/quic/quic_simple_client.h", |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 3513 | "tools/quic/quic_simple_server.cc", |
| 3514 | "tools/quic/quic_simple_server.h", |
| 3515 | "tools/quic/quic_simple_server_packet_writer.cc", |
| 3516 | "tools/quic/quic_simple_server_packet_writer.h", |
mpw | b5c8da9 | 2016-06-05 20:07:31 | [diff] [blame] | 3517 | "tools/quic/quic_simple_server_session_helper.cc", |
| 3518 | "tools/quic/quic_simple_server_session_helper.h", |
rch | da78df5a | 2015-03-22 05:16:37 | [diff] [blame] | 3519 | "tools/quic/synchronous_host_resolver.cc", |
| 3520 | "tools/quic/synchronous_host_resolver.h", |
rch | a9d12ce1 | 2015-03-19 23:06:49 | [diff] [blame] | 3521 | ] |
| 3522 | deps = [ |
| 3523 | ":net", |
| 3524 | "//base", |
rch | 47ad01f | 2015-03-20 21:17:23 | [diff] [blame] | 3525 | "//base/third_party/dynamic_annotations", |
Victor Vasiliev | 44700b6e | 2018-05-06 23:23:22 | [diff] [blame] | 3526 | "//third_party/protobuf:protobuf_lite", |
rch | 47ad01f | 2015-03-20 21:17:23 | [diff] [blame] | 3527 | "//url", |
| 3528 | ] |
| 3529 | } |
| 3530 | |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 3531 | if (!is_ios) { |
| 3532 | executable("quic_client") { |
| 3533 | sources = [ |
| 3534 | "tools/quic/quic_simple_client_bin.cc", |
| 3535 | ] |
| 3536 | deps = [ |
| 3537 | ":net", |
| 3538 | ":simple_quic_tools", |
| 3539 | "//base", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 3540 | "//build/win:default_exe_manifest", |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 3541 | "//url", |
| 3542 | ] |
| 3543 | } |
| 3544 | executable("quic_server") { |
| 3545 | sources = [ |
| 3546 | "tools/quic/quic_simple_server_bin.cc", |
| 3547 | ] |
| 3548 | deps = [ |
| 3549 | ":net", |
| 3550 | ":simple_quic_tools", |
| 3551 | "//base", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 3552 | "//build/win:default_exe_manifest", |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 3553 | "//third_party/boringssl", |
| 3554 | "//third_party/protobuf:protobuf_lite", |
| 3555 | ] |
| 3556 | } |
rch | f80f62d1 | 2016-05-11 00:47:31 | [diff] [blame] | 3557 | executable("quic_packet_printer") { |
| 3558 | sources = [ |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 3559 | "third_party/quiche/src/quic/tools/quic_packet_printer_bin.cc", |
rch | f80f62d1 | 2016-05-11 00:47:31 | [diff] [blame] | 3560 | ] |
| 3561 | deps = [ |
| 3562 | ":net", |
| 3563 | ":simple_quic_tools", |
| 3564 | "//base", |
rch | f80f62d1 | 2016-05-11 00:47:31 | [diff] [blame] | 3565 | "//build/win:default_exe_manifest", |
| 3566 | "//third_party/boringssl", |
| 3567 | "//third_party/protobuf:protobuf_lite", |
| 3568 | ] |
| 3569 | } |
Ryan Hamilton | d6cdacef | 2019-05-01 19:19:05 | [diff] [blame] | 3570 | executable("quic_crypto_message_printer") { |
| 3571 | sources = [ |
| 3572 | "third_party/quiche/src/quic/core/crypto/crypto_message_printer_bin.cc", |
| 3573 | ] |
| 3574 | deps = [ |
| 3575 | ":net", |
| 3576 | ":simple_quic_tools", |
| 3577 | "//base", |
| 3578 | "//build/win:default_exe_manifest", |
| 3579 | "//third_party/boringssl", |
| 3580 | "//third_party/protobuf:protobuf_lite", |
| 3581 | ] |
| 3582 | } |
mpw | bbea85d | 2016-08-27 14:39:21 | [diff] [blame] | 3583 | executable("quic_reject_reason_decoder") { |
| 3584 | sources = [ |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 3585 | "third_party/quiche/src/quic/tools/quic_reject_reason_decoder_bin.cc", |
mpw | bbea85d | 2016-08-27 14:39:21 | [diff] [blame] | 3586 | ] |
| 3587 | deps = [ |
| 3588 | ":net", |
| 3589 | ":simple_quic_tools", |
| 3590 | "//base", |
mpw | bbea85d | 2016-08-27 14:39:21 | [diff] [blame] | 3591 | "//build/win:default_exe_manifest", |
| 3592 | "//third_party/boringssl", |
| 3593 | "//third_party/protobuf:protobuf_lite", |
| 3594 | ] |
| 3595 | } |
Zhongyi Shi | 2be05120 | 2019-01-07 22:57:19 | [diff] [blame] | 3596 | |
| 3597 | executable("qpack_offline_decoder") { |
| 3598 | testonly = true |
| 3599 | sources = [ |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 3600 | "third_party/quiche/src/quic/core/qpack/offline/qpack_offline_decoder_bin.cc", |
Zhongyi Shi | 2be05120 | 2019-01-07 22:57:19 | [diff] [blame] | 3601 | ] |
| 3602 | deps = [ |
| 3603 | ":net", |
| 3604 | ":quic_test_tools", |
| 3605 | ":simple_quic_tools", |
| 3606 | "//base", |
| 3607 | "//testing/gmock", |
| 3608 | ] |
| 3609 | } |
| 3610 | |
danzh | 1401f0a | 2016-05-19 13:41:10 | [diff] [blame] | 3611 | executable("crypto_message_printer") { |
| 3612 | sources = [ |
| 3613 | "tools/quic/crypto_message_printer_bin.cc", |
| 3614 | ] |
| 3615 | deps = [ |
| 3616 | ":net", |
| 3617 | "//base", |
danzh | 1401f0a | 2016-05-19 13:41:10 | [diff] [blame] | 3618 | "//build/win:default_exe_manifest", |
| 3619 | ] |
| 3620 | } |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 3621 | } |
| 3622 | |
eroman | d5207a9 | 2017-05-05 17:49:36 | [diff] [blame] | 3623 | # This section can be updated from globbing rules using: |
| 3624 | # python ./tools/update_ios_bundle_data.py |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 3625 | bundle_data("net_unittests_bundle_data") { |
| 3626 | testonly = true |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3627 | sources = [ |
| 3628 | "data/cert_issuer_source_aia_unittest/i.pem", |
| 3629 | "data/cert_issuer_source_aia_unittest/i2.pem", |
| 3630 | "data/cert_issuer_source_aia_unittest/i3.pem", |
eroman | d5207a9 | 2017-05-05 17:49:36 | [diff] [blame] | 3631 | "data/cert_issuer_source_aia_unittest/root.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3632 | "data/cert_issuer_source_aia_unittest/target_file_aia.pem", |
| 3633 | "data/cert_issuer_source_aia_unittest/target_file_and_http_aia.pem", |
| 3634 | "data/cert_issuer_source_aia_unittest/target_invalid_and_http_aia.pem", |
| 3635 | "data/cert_issuer_source_aia_unittest/target_invalid_url_aia.pem", |
| 3636 | "data/cert_issuer_source_aia_unittest/target_no_aia.pem", |
| 3637 | "data/cert_issuer_source_aia_unittest/target_one_aia.pem", |
| 3638 | "data/cert_issuer_source_aia_unittest/target_six_aia.pem", |
| 3639 | "data/cert_issuer_source_aia_unittest/target_three_aia.pem", |
| 3640 | "data/cert_issuer_source_aia_unittest/target_two_aia.pem", |
| 3641 | "data/cert_issuer_source_static_unittest/c1.pem", |
| 3642 | "data/cert_issuer_source_static_unittest/c2.pem", |
| 3643 | "data/cert_issuer_source_static_unittest/d.pem", |
| 3644 | "data/cert_issuer_source_static_unittest/e1.pem", |
| 3645 | "data/cert_issuer_source_static_unittest/e2.pem", |
| 3646 | "data/cert_issuer_source_static_unittest/i1_1.pem", |
| 3647 | "data/cert_issuer_source_static_unittest/i1_2.pem", |
| 3648 | "data/cert_issuer_source_static_unittest/i2.pem", |
| 3649 | "data/cert_issuer_source_static_unittest/i3_1.pem", |
| 3650 | "data/cert_issuer_source_static_unittest/i3_2.pem", |
| 3651 | "data/cert_issuer_source_static_unittest/root.pem", |
| 3652 | "data/certificate_policies_unittest/anypolicy.pem", |
| 3653 | "data/certificate_policies_unittest/anypolicy_with_qualifier.pem", |
| 3654 | "data/certificate_policies_unittest/invalid-anypolicy_with_custom_qualifier.pem", |
| 3655 | "data/certificate_policies_unittest/invalid-empty.pem", |
| 3656 | "data/certificate_policies_unittest/invalid-policy_1_2_3_dupe.pem", |
| 3657 | "data/certificate_policies_unittest/invalid-policy_1_2_3_policyinformation_unconsumed_data.pem", |
| 3658 | "data/certificate_policies_unittest/invalid-policy_1_2_3_policyqualifierinfo_unconsumed_data.pem", |
| 3659 | "data/certificate_policies_unittest/invalid-policy_1_2_3_with_empty_qualifiers_sequence.pem", |
| 3660 | "data/certificate_policies_unittest/invalid-policy_identifier_not_oid.pem", |
| 3661 | "data/certificate_policies_unittest/policy_1_2_3.pem", |
| 3662 | "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4.pem", |
| 3663 | "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4_with_qualifiers.pem", |
| 3664 | "data/certificate_policies_unittest/policy_1_2_3_with_custom_qualifier.pem", |
| 3665 | "data/certificate_policies_unittest/policy_1_2_3_with_qualifier.pem", |
jam | 29f1aed4 | 2017-06-06 21:37:43 | [diff] [blame] | 3666 | "data/embedded_test_server/mock-headers-without-crlf.html", |
| 3667 | "data/embedded_test_server/mock-headers-without-crlf.html.mock-http-headers", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3668 | "data/filter_unittests/google.br", |
| 3669 | "data/filter_unittests/google.txt", |
| 3670 | "data/name_constraints_unittest/directoryname-excludeall.pem", |
| 3671 | "data/name_constraints_unittest/directoryname-excluded.pem", |
| 3672 | "data/name_constraints_unittest/directoryname.pem", |
| 3673 | "data/name_constraints_unittest/directoryname_and_dnsname.pem", |
| 3674 | "data/name_constraints_unittest/directoryname_and_dnsname_and_ipaddress.pem", |
| 3675 | "data/name_constraints_unittest/dnsname-exclude_dot.pem", |
| 3676 | "data/name_constraints_unittest/dnsname-excludeall.pem", |
| 3677 | "data/name_constraints_unittest/dnsname-excluded.pem", |
| 3678 | "data/name_constraints_unittest/dnsname-excluded_with_leading_dot.pem", |
| 3679 | "data/name_constraints_unittest/dnsname-permitted_two_dot.pem", |
| 3680 | "data/name_constraints_unittest/dnsname-permitted_with_leading_dot.pem", |
| 3681 | "data/name_constraints_unittest/dnsname-with_max.pem", |
| 3682 | "data/name_constraints_unittest/dnsname-with_min_0.pem", |
| 3683 | "data/name_constraints_unittest/dnsname-with_min_0_and_max.pem", |
| 3684 | "data/name_constraints_unittest/dnsname-with_min_1.pem", |
| 3685 | "data/name_constraints_unittest/dnsname-with_min_1_and_max.pem", |
| 3686 | "data/name_constraints_unittest/dnsname.pem", |
| 3687 | "data/name_constraints_unittest/dnsname2.pem", |
| 3688 | "data/name_constraints_unittest/edipartyname-excluded.pem", |
| 3689 | "data/name_constraints_unittest/edipartyname-permitted.pem", |
| 3690 | "data/name_constraints_unittest/invalid-empty_excluded_subtree.pem", |
| 3691 | "data/name_constraints_unittest/invalid-empty_permitted_subtree.pem", |
| 3692 | "data/name_constraints_unittest/invalid-no_subtrees.pem", |
| 3693 | "data/name_constraints_unittest/ipaddress-excludeall.pem", |
| 3694 | "data/name_constraints_unittest/ipaddress-excluded.pem", |
| 3695 | "data/name_constraints_unittest/ipaddress-invalid_addr.pem", |
| 3696 | "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_1.pem", |
| 3697 | "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_2.pem", |
| 3698 | "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_3.pem", |
| 3699 | "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_4.pem", |
| 3700 | "data/name_constraints_unittest/ipaddress-permit_all.pem", |
| 3701 | "data/name_constraints_unittest/ipaddress-permit_prefix1.pem", |
| 3702 | "data/name_constraints_unittest/ipaddress-permit_prefix31.pem", |
| 3703 | "data/name_constraints_unittest/ipaddress-permit_singlehost.pem", |
| 3704 | "data/name_constraints_unittest/ipaddress.pem", |
| 3705 | "data/name_constraints_unittest/name-ca.pem", |
| 3706 | "data/name_constraints_unittest/name-de.pem", |
| 3707 | "data/name_constraints_unittest/name-empty.pem", |
| 3708 | "data/name_constraints_unittest/name-jp-tokyo.pem", |
| 3709 | "data/name_constraints_unittest/name-jp.pem", |
| 3710 | "data/name_constraints_unittest/name-us-arizona-1.1.1.1.pem", |
| 3711 | "data/name_constraints_unittest/name-us-arizona-192.168.1.1.pem", |
| 3712 | "data/name_constraints_unittest/name-us-arizona-email.pem", |
| 3713 | "data/name_constraints_unittest/name-us-arizona-foo.com.pem", |
| 3714 | "data/name_constraints_unittest/name-us-arizona-ipv6.pem", |
| 3715 | "data/name_constraints_unittest/name-us-arizona-permitted.example.com.pem", |
| 3716 | "data/name_constraints_unittest/name-us-arizona.pem", |
| 3717 | "data/name_constraints_unittest/name-us-california-192.168.1.1.pem", |
| 3718 | "data/name_constraints_unittest/name-us-california-mountain_view.pem", |
| 3719 | "data/name_constraints_unittest/name-us-california-permitted.example.com.pem", |
| 3720 | "data/name_constraints_unittest/name-us-california.pem", |
| 3721 | "data/name_constraints_unittest/name-us.pem", |
| 3722 | "data/name_constraints_unittest/othername-excluded.pem", |
| 3723 | "data/name_constraints_unittest/othername-permitted.pem", |
| 3724 | "data/name_constraints_unittest/registeredid-excluded.pem", |
| 3725 | "data/name_constraints_unittest/registeredid-permitted.pem", |
| 3726 | "data/name_constraints_unittest/rfc822name-excluded.pem", |
| 3727 | "data/name_constraints_unittest/rfc822name-permitted.pem", |
Matt Mueller | 766bedc9 | 2017-09-14 23:30:41 | [diff] [blame] | 3728 | "data/name_constraints_unittest/san-directoryname.pem", |
| 3729 | "data/name_constraints_unittest/san-dnsname.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3730 | "data/name_constraints_unittest/san-edipartyname.pem", |
| 3731 | "data/name_constraints_unittest/san-excluded-directoryname.pem", |
| 3732 | "data/name_constraints_unittest/san-excluded-dnsname.pem", |
| 3733 | "data/name_constraints_unittest/san-excluded-ipaddress.pem", |
| 3734 | "data/name_constraints_unittest/san-invalid-empty.pem", |
| 3735 | "data/name_constraints_unittest/san-invalid-ipaddress.pem", |
Matt Mueller | 766bedc9 | 2017-09-14 23:30:41 | [diff] [blame] | 3736 | "data/name_constraints_unittest/san-ipaddress4.pem", |
| 3737 | "data/name_constraints_unittest/san-ipaddress6.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3738 | "data/name_constraints_unittest/san-othername.pem", |
| 3739 | "data/name_constraints_unittest/san-permitted.pem", |
| 3740 | "data/name_constraints_unittest/san-registeredid.pem", |
| 3741 | "data/name_constraints_unittest/san-rfc822name.pem", |
| 3742 | "data/name_constraints_unittest/san-uri.pem", |
| 3743 | "data/name_constraints_unittest/san-x400address.pem", |
| 3744 | "data/name_constraints_unittest/uri-excluded.pem", |
| 3745 | "data/name_constraints_unittest/uri-permitted.pem", |
| 3746 | "data/name_constraints_unittest/x400address-excluded.pem", |
| 3747 | "data/name_constraints_unittest/x400address-permitted.pem", |
Eric Roman | a2f6f55d | 2017-09-07 23:34:57 | [diff] [blame] | 3748 | "data/ocsp_unittest/bad_ocsp_type.pem", |
| 3749 | "data/ocsp_unittest/bad_signature.pem", |
| 3750 | "data/ocsp_unittest/bad_status.pem", |
| 3751 | "data/ocsp_unittest/good_response.pem", |
| 3752 | "data/ocsp_unittest/good_response_next_update.pem", |
Steven Valdez | 060eac4 | 2017-09-21 22:31:57 | [diff] [blame] | 3753 | "data/ocsp_unittest/good_response_sha256.pem", |
Eric Roman | a2f6f55d | 2017-09-07 23:34:57 | [diff] [blame] | 3754 | "data/ocsp_unittest/has_extension.pem", |
| 3755 | "data/ocsp_unittest/has_single_extension.pem", |
| 3756 | "data/ocsp_unittest/has_version.pem", |
Eric Roman | ff24262 | 2017-09-25 21:49:44 | [diff] [blame] | 3757 | "data/ocsp_unittest/malformed_request.pem", |
Eric Roman | a2f6f55d | 2017-09-07 23:34:57 | [diff] [blame] | 3758 | "data/ocsp_unittest/missing_response.pem", |
| 3759 | "data/ocsp_unittest/multiple_response.pem", |
| 3760 | "data/ocsp_unittest/no_response.pem", |
| 3761 | "data/ocsp_unittest/ocsp_extra_certs.pem", |
| 3762 | "data/ocsp_unittest/ocsp_sign_bad_indirect.pem", |
| 3763 | "data/ocsp_unittest/ocsp_sign_direct.pem", |
| 3764 | "data/ocsp_unittest/ocsp_sign_indirect.pem", |
| 3765 | "data/ocsp_unittest/ocsp_sign_indirect_missing.pem", |
| 3766 | "data/ocsp_unittest/other_response.pem", |
| 3767 | "data/ocsp_unittest/responder_id.pem", |
| 3768 | "data/ocsp_unittest/responder_name.pem", |
| 3769 | "data/ocsp_unittest/revoke_response.pem", |
| 3770 | "data/ocsp_unittest/revoke_response_reason.pem", |
| 3771 | "data/ocsp_unittest/unknown_response.pem", |
Ryan Sleevi | 3dabe0b | 2018-04-05 03:59:01 | [diff] [blame] | 3772 | "data/ov_name_constraints/int-bmp-o1.pem", |
| 3773 | "data/ov_name_constraints/int-cn.pem", |
| 3774 | "data/ov_name_constraints/int-o1-o2.pem", |
| 3775 | "data/ov_name_constraints/int-o1-plus-o2.pem", |
| 3776 | "data/ov_name_constraints/int-o2-o1.pem", |
| 3777 | "data/ov_name_constraints/int-o3.pem", |
| 3778 | "data/ov_name_constraints/leaf-no-o.pem", |
| 3779 | "data/ov_name_constraints/leaf-o1-o2.pem", |
| 3780 | "data/ov_name_constraints/leaf-o1.pem", |
| 3781 | "data/ov_name_constraints/nc-int-exclude-o1.pem", |
| 3782 | "data/ov_name_constraints/nc-int-permit-bmp-o1.pem", |
| 3783 | "data/ov_name_constraints/nc-int-permit-cn.pem", |
| 3784 | "data/ov_name_constraints/nc-int-permit-dns.pem", |
| 3785 | "data/ov_name_constraints/nc-int-permit-o1.pem", |
| 3786 | "data/ov_name_constraints/nc-int-permit-o2-o1-o3.pem", |
| 3787 | "data/ov_name_constraints/root.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3788 | "data/parse_certificate_unittest/bad_key_usage.pem", |
| 3789 | "data/parse_certificate_unittest/bad_policy_qualifiers.pem", |
| 3790 | "data/parse_certificate_unittest/bad_signature_algorithm_oid.pem", |
| 3791 | "data/parse_certificate_unittest/bad_validity.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3792 | "data/parse_certificate_unittest/basic_constraints_ca_false.pem", |
| 3793 | "data/parse_certificate_unittest/basic_constraints_ca_no_path.pem", |
| 3794 | "data/parse_certificate_unittest/basic_constraints_ca_path_9.pem", |
| 3795 | "data/parse_certificate_unittest/basic_constraints_negative_path.pem", |
| 3796 | "data/parse_certificate_unittest/basic_constraints_not_ca.pem", |
| 3797 | "data/parse_certificate_unittest/basic_constraints_path_too_large.pem", |
| 3798 | "data/parse_certificate_unittest/basic_constraints_pathlen_255.pem", |
| 3799 | "data/parse_certificate_unittest/basic_constraints_pathlen_256.pem", |
| 3800 | "data/parse_certificate_unittest/basic_constraints_pathlen_not_ca.pem", |
| 3801 | "data/parse_certificate_unittest/basic_constraints_unconsumed_data.pem", |
| 3802 | "data/parse_certificate_unittest/cert_algorithm_not_sequence.pem", |
| 3803 | "data/parse_certificate_unittest/cert_data_after_signature.pem", |
| 3804 | "data/parse_certificate_unittest/cert_empty_sequence.pem", |
| 3805 | "data/parse_certificate_unittest/cert_missing_signature.pem", |
| 3806 | "data/parse_certificate_unittest/cert_not_sequence.pem", |
| 3807 | "data/parse_certificate_unittest/cert_signature_not_bit_string.pem", |
| 3808 | "data/parse_certificate_unittest/cert_skeleton.pem", |
| 3809 | "data/parse_certificate_unittest/cert_version3.pem", |
Eric Roman | db460e9 | 2017-08-01 17:17:34 | [diff] [blame] | 3810 | "data/parse_certificate_unittest/crldp_1uri_noissuer.pem", |
| 3811 | "data/parse_certificate_unittest/crldp_3uri_noissuer.pem", |
| 3812 | "data/parse_certificate_unittest/crldp_full_name_as_dirname.pem", |
| 3813 | "data/parse_certificate_unittest/crldp_issuer_as_dirname.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3814 | "data/parse_certificate_unittest/extended_key_usage.pem", |
| 3815 | "data/parse_certificate_unittest/extension_critical.pem", |
| 3816 | "data/parse_certificate_unittest/extension_critical_0.pem", |
| 3817 | "data/parse_certificate_unittest/extension_critical_3.pem", |
| 3818 | "data/parse_certificate_unittest/extension_not_critical.pem", |
| 3819 | "data/parse_certificate_unittest/extensions_data_after_sequence.pem", |
| 3820 | "data/parse_certificate_unittest/extensions_duplicate_key_usage.pem", |
| 3821 | "data/parse_certificate_unittest/extensions_empty_sequence.pem", |
| 3822 | "data/parse_certificate_unittest/extensions_not_sequence.pem", |
| 3823 | "data/parse_certificate_unittest/extensions_real.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3824 | "data/parse_certificate_unittest/failed_signature_algorithm.pem", |
eroman | d312c06 | 2017-05-19 03:06:29 | [diff] [blame] | 3825 | "data/parse_certificate_unittest/inhibit_any_policy.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3826 | "data/parse_certificate_unittest/issuer_bad_printable_string.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3827 | "data/parse_certificate_unittest/key_usage.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3828 | "data/parse_certificate_unittest/name_constraints_bad_ip.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3829 | "data/parse_certificate_unittest/policies.pem", |
eroman | 25ead1bcf8 | 2017-05-13 06:44:58 | [diff] [blame] | 3830 | "data/parse_certificate_unittest/policy_constraints_empty.pem", |
| 3831 | "data/parse_certificate_unittest/policy_constraints_inhibit.pem", |
| 3832 | "data/parse_certificate_unittest/policy_constraints_inhibit_require.pem", |
| 3833 | "data/parse_certificate_unittest/policy_constraints_require.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3834 | "data/parse_certificate_unittest/policy_qualifiers_empty_sequence.pem", |
mattm | 312644de | 2017-05-16 08:13:18 | [diff] [blame] | 3835 | "data/parse_certificate_unittest/serial_37_bytes.pem", |
| 3836 | "data/parse_certificate_unittest/serial_negative.pem", |
Eric Roman | 5d193462 | 2017-08-03 03:57:09 | [diff] [blame] | 3837 | "data/parse_certificate_unittest/serial_not_minimal.pem", |
| 3838 | "data/parse_certificate_unittest/serial_not_number.pem", |
| 3839 | "data/parse_certificate_unittest/serial_zero.pem", |
mattm | 312644de | 2017-05-16 08:13:18 | [diff] [blame] | 3840 | "data/parse_certificate_unittest/serial_zero_padded.pem", |
| 3841 | "data/parse_certificate_unittest/serial_zero_padded_21_bytes.pem", |
mattm | 2fe429a | 2017-06-20 01:53:44 | [diff] [blame] | 3842 | "data/parse_certificate_unittest/signature_algorithm_null.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3843 | "data/parse_certificate_unittest/subject_alt_name.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3844 | "data/parse_certificate_unittest/subject_blank_subjectaltname_not_critical.pem", |
| 3845 | "data/parse_certificate_unittest/subject_not_ascii.pem", |
| 3846 | "data/parse_certificate_unittest/subject_not_printable_string.pem", |
Matt Mueller | 6c8b07c6 | 2017-10-09 21:02:25 | [diff] [blame] | 3847 | "data/parse_certificate_unittest/subject_printable_string_containing_utf8_client_cert.pem", |
mattm | 788812f | 2017-05-05 23:49:09 | [diff] [blame] | 3848 | "data/parse_certificate_unittest/subject_t61string.pem", |
| 3849 | "data/parse_certificate_unittest/subject_t61string_1-32.pem", |
| 3850 | "data/parse_certificate_unittest/subject_t61string_126-160.pem", |
| 3851 | "data/parse_certificate_unittest/subject_t61string_actual.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3852 | "data/parse_certificate_unittest/subjectaltname_bad_ip.pem", |
| 3853 | "data/parse_certificate_unittest/subjectaltname_dns_not_ascii.pem", |
| 3854 | "data/parse_certificate_unittest/subjectaltname_general_names_empty_sequence.pem", |
| 3855 | "data/parse_certificate_unittest/subjectaltname_trailing_data.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3856 | "data/parse_certificate_unittest/tbs_explicit_v1.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3857 | "data/parse_certificate_unittest/tbs_v1.pem", |
| 3858 | "data/parse_certificate_unittest/tbs_v1_extensions.pem", |
| 3859 | "data/parse_certificate_unittest/tbs_v2_extensions.pem", |
| 3860 | "data/parse_certificate_unittest/tbs_v2_issuer_and_subject_unique_id.pem", |
| 3861 | "data/parse_certificate_unittest/tbs_v2_issuer_unique_id.pem", |
| 3862 | "data/parse_certificate_unittest/tbs_v2_no_optionals.pem", |
| 3863 | "data/parse_certificate_unittest/tbs_v3_all_optionals.pem", |
| 3864 | "data/parse_certificate_unittest/tbs_v3_data_after_extensions.pem", |
| 3865 | "data/parse_certificate_unittest/tbs_v3_extensions.pem", |
| 3866 | "data/parse_certificate_unittest/tbs_v3_extensions_not_sequence.pem", |
| 3867 | "data/parse_certificate_unittest/tbs_v3_no_optionals.pem", |
| 3868 | "data/parse_certificate_unittest/tbs_v3_real.pem", |
| 3869 | "data/parse_certificate_unittest/tbs_v4.pem", |
| 3870 | "data/parse_certificate_unittest/tbs_validity_both_generalized_time.pem", |
| 3871 | "data/parse_certificate_unittest/tbs_validity_both_utc_time.pem", |
| 3872 | "data/parse_certificate_unittest/tbs_validity_generalized_time_and_utc_time.pem", |
| 3873 | "data/parse_certificate_unittest/tbs_validity_relaxed.pem", |
| 3874 | "data/parse_certificate_unittest/tbs_validity_utc_time_and_generalized_time.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3875 | "data/parse_certificate_unittest/v1_explicit_version.pem", |
Matt Mueller | 6c8b07c6 | 2017-10-09 21:02:25 | [diff] [blame] | 3876 | "data/parse_certificate_unittest/v3_certificate_template.pk8", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3877 | "data/test.html", |
Matt Mueller | dbc0aa7 | 2019-02-04 22:13:18 | [diff] [blame] | 3878 | "data/trial_comparison_cert_verifier_unittest/target-multiple-policies/chain.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3879 | "data/url_request_unittest/308-without-location-header", |
| 3880 | "data/url_request_unittest/308-without-location-header.mock-http-headers", |
| 3881 | "data/url_request_unittest/BullRunSpeech.txt", |
| 3882 | "data/url_request_unittest/content-type-normalization.html", |
| 3883 | "data/url_request_unittest/content-type-normalization.html.mock-http-headers", |
Emily Stark | 4cfecf07 | 2017-08-08 01:05:51 | [diff] [blame] | 3884 | "data/url_request_unittest/expect-ct-header-multiple.html", |
| 3885 | "data/url_request_unittest/expect-ct-header-multiple.html.mock-http-headers", |
| 3886 | "data/url_request_unittest/expect-ct-header-preload.html", |
| 3887 | "data/url_request_unittest/expect-ct-header-preload.html.mock-http-headers", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3888 | "data/url_request_unittest/expect-ct-header.html", |
| 3889 | "data/url_request_unittest/expect-ct-header.html.mock-http-headers", |
| 3890 | "data/url_request_unittest/filedir-sentinel", |
| 3891 | "data/url_request_unittest/gzip-encoded", |
| 3892 | "data/url_request_unittest/gzip-encoded.mock-http-headers", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3893 | "data/url_request_unittest/hsts-headers.html", |
| 3894 | "data/url_request_unittest/hsts-headers.html.mock-http-headers", |
| 3895 | "data/url_request_unittest/hsts-multiple-headers.html", |
| 3896 | "data/url_request_unittest/hsts-multiple-headers.html.mock-http-headers", |
| 3897 | "data/url_request_unittest/redirect-test.html", |
| 3898 | "data/url_request_unittest/redirect-test.html.mock-http-headers", |
| 3899 | "data/url_request_unittest/redirect-to-data.html", |
| 3900 | "data/url_request_unittest/redirect-to-data.html.mock-http-headers", |
| 3901 | "data/url_request_unittest/redirect-to-echoall", |
| 3902 | "data/url_request_unittest/redirect-to-echoall.mock-http-headers", |
| 3903 | "data/url_request_unittest/redirect-to-file.html", |
| 3904 | "data/url_request_unittest/redirect-to-file.html.mock-http-headers", |
| 3905 | "data/url_request_unittest/redirect-to-invalid-url.html", |
| 3906 | "data/url_request_unittest/redirect-to-invalid-url.html.mock-http-headers", |
| 3907 | "data/url_request_unittest/redirect301-to-echo", |
| 3908 | "data/url_request_unittest/redirect301-to-echo.mock-http-headers", |
| 3909 | "data/url_request_unittest/redirect301-to-https", |
| 3910 | "data/url_request_unittest/redirect301-to-https.mock-http-headers", |
| 3911 | "data/url_request_unittest/redirect302-to-echo", |
| 3912 | "data/url_request_unittest/redirect302-to-echo-cacheable", |
| 3913 | "data/url_request_unittest/redirect302-to-echo-cacheable.mock-http-headers", |
| 3914 | "data/url_request_unittest/redirect302-to-echo.mock-http-headers", |
| 3915 | "data/url_request_unittest/redirect302-to-https", |
| 3916 | "data/url_request_unittest/redirect302-to-https.mock-http-headers", |
| 3917 | "data/url_request_unittest/redirect303-to-echo", |
| 3918 | "data/url_request_unittest/redirect303-to-echo.mock-http-headers", |
| 3919 | "data/url_request_unittest/redirect303-to-https", |
| 3920 | "data/url_request_unittest/redirect303-to-https.mock-http-headers", |
| 3921 | "data/url_request_unittest/redirect307-to-echo", |
| 3922 | "data/url_request_unittest/redirect307-to-echo.mock-http-headers", |
| 3923 | "data/url_request_unittest/redirect307-to-https", |
| 3924 | "data/url_request_unittest/redirect307-to-https.mock-http-headers", |
| 3925 | "data/url_request_unittest/redirect308-to-echo", |
| 3926 | "data/url_request_unittest/redirect308-to-echo.mock-http-headers", |
| 3927 | "data/url_request_unittest/redirect308-to-https", |
| 3928 | "data/url_request_unittest/redirect308-to-https.mock-http-headers", |
| 3929 | "data/url_request_unittest/simple.html", |
| 3930 | "data/url_request_unittest/simple.html.mock-http-headers", |
| 3931 | "data/url_request_unittest/two-content-lengths.html", |
| 3932 | "data/url_request_unittest/two-content-lengths.html.mock-http-headers", |
| 3933 | "data/url_request_unittest/with-headers.html", |
| 3934 | "data/url_request_unittest/with-headers.html.mock-http-headers", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3935 | "data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/chain.pem", |
| 3936 | "data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/main.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3937 | "data/verify_certificate_chain_unittest/expired-intermediate/chain.pem", |
eroman | e7af900 | 2017-05-13 05:04:01 | [diff] [blame] | 3938 | "data/verify_certificate_chain_unittest/expired-intermediate/not-after.test", |
| 3939 | "data/verify_certificate_chain_unittest/expired-intermediate/not-before.test", |
eroman | c1a8b5d0 | 2017-05-03 21:52:10 | [diff] [blame] | 3940 | "data/verify_certificate_chain_unittest/expired-root/chain.pem", |
eroman | e7af900 | 2017-05-13 05:04:01 | [diff] [blame] | 3941 | "data/verify_certificate_chain_unittest/expired-root/not-after-ta-with-constraints.test", |
| 3942 | "data/verify_certificate_chain_unittest/expired-root/not-after.test", |
| 3943 | "data/verify_certificate_chain_unittest/expired-root/not-before.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3944 | "data/verify_certificate_chain_unittest/expired-target/chain.pem", |
eroman | e7af900 | 2017-05-13 05:04:01 | [diff] [blame] | 3945 | "data/verify_certificate_chain_unittest/expired-target/not-after.test", |
| 3946 | "data/verify_certificate_chain_unittest/expired-target/not-before.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3947 | "data/verify_certificate_chain_unittest/incorrect-trust-anchor/chain.pem", |
| 3948 | "data/verify_certificate_chain_unittest/incorrect-trust-anchor/main.test", |
Matt Mueller | 905e4e3d | 2018-02-14 02:11:17 | [diff] [blame] | 3949 | "data/verify_certificate_chain_unittest/intermediate-and-target-wrong-signature/chain.pem", |
| 3950 | "data/verify_certificate_chain_unittest/intermediate-and-target-wrong-signature/main.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3951 | "data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/chain.pem", |
| 3952 | "data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/main.test", |
| 3953 | "data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/chain.pem", |
| 3954 | "data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/main.test", |
eroman | 7333d9b | 2017-06-23 01:50:25 | [diff] [blame] | 3955 | "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/any.test", |
| 3956 | "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/chain.pem", |
| 3957 | "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/clientauth.test", |
| 3958 | "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/serverauth.test", |
| 3959 | "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/any.test", |
| 3960 | "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/chain.pem", |
| 3961 | "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/clientauth.test", |
| 3962 | "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/serverauth.test", |
Eric Roman | c8c2d6a | 2017-08-01 22:55:30 | [diff] [blame] | 3963 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-chain.pem", |
| 3964 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-any.test", |
| 3965 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-clientAuth.test", |
| 3966 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-serverAuth.test", |
| 3967 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-chain.pem", |
| 3968 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-any.test", |
| 3969 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-clientAuth.test", |
| 3970 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-serverAuth.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3971 | "data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/chain.pem", |
| 3972 | "data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/main.test", |
| 3973 | "data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/chain.pem", |
| 3974 | "data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/main.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3975 | "data/verify_certificate_chain_unittest/intermediate-signed-with-md5/chain.pem", |
| 3976 | "data/verify_certificate_chain_unittest/intermediate-signed-with-md5/main.test", |
| 3977 | "data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/chain.pem", |
| 3978 | "data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/main.test", |
| 3979 | "data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/chain.pem", |
| 3980 | "data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/main.test", |
| 3981 | "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.pem", |
| 3982 | "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.test", |
| 3983 | "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.pem", |
| 3984 | "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.test", |
| 3985 | "data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.pem", |
| 3986 | "data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.test", |
| 3987 | "data/verify_certificate_chain_unittest/key-rollover/newchain.pem", |
| 3988 | "data/verify_certificate_chain_unittest/key-rollover/newchain.test", |
| 3989 | "data/verify_certificate_chain_unittest/key-rollover/oldchain.pem", |
| 3990 | "data/verify_certificate_chain_unittest/key-rollover/oldchain.test", |
| 3991 | "data/verify_certificate_chain_unittest/key-rollover/rolloverchain.pem", |
| 3992 | "data/verify_certificate_chain_unittest/key-rollover/rolloverchain.test", |
Matt Mueller | c391cdf | 2018-02-08 01:05:57 | [diff] [blame] | 3993 | "data/verify_certificate_chain_unittest/many-names/ok-all-types.pem", |
| 3994 | "data/verify_certificate_chain_unittest/many-names/ok-all-types.test", |
| 3995 | "data/verify_certificate_chain_unittest/many-names/ok-different-types-dirnames.pem", |
| 3996 | "data/verify_certificate_chain_unittest/many-names/ok-different-types-dirnames.test", |
| 3997 | "data/verify_certificate_chain_unittest/many-names/ok-different-types-dns.pem", |
| 3998 | "data/verify_certificate_chain_unittest/many-names/ok-different-types-dns.test", |
| 3999 | "data/verify_certificate_chain_unittest/many-names/ok-different-types-ips.pem", |
| 4000 | "data/verify_certificate_chain_unittest/many-names/ok-different-types-ips.test", |
| 4001 | "data/verify_certificate_chain_unittest/many-names/toomany-all-types.pem", |
| 4002 | "data/verify_certificate_chain_unittest/many-names/toomany-all-types.test", |
| 4003 | "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-excluded.pem", |
| 4004 | "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-excluded.test", |
| 4005 | "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-permitted.pem", |
| 4006 | "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-permitted.test", |
| 4007 | "data/verify_certificate_chain_unittest/many-names/toomany-dns-excluded.pem", |
| 4008 | "data/verify_certificate_chain_unittest/many-names/toomany-dns-excluded.test", |
| 4009 | "data/verify_certificate_chain_unittest/many-names/toomany-dns-permitted.pem", |
| 4010 | "data/verify_certificate_chain_unittest/many-names/toomany-dns-permitted.test", |
| 4011 | "data/verify_certificate_chain_unittest/many-names/toomany-ips-excluded.pem", |
| 4012 | "data/verify_certificate_chain_unittest/many-names/toomany-ips-excluded.test", |
| 4013 | "data/verify_certificate_chain_unittest/many-names/toomany-ips-permitted.pem", |
| 4014 | "data/verify_certificate_chain_unittest/many-names/toomany-ips-permitted.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 4015 | "data/verify_certificate_chain_unittest/non-self-signed-root/chain.pem", |
| 4016 | "data/verify_certificate_chain_unittest/non-self-signed-root/main.test", |
eroman | c1a8b5d0 | 2017-05-03 21:52:10 | [diff] [blame] | 4017 | "data/verify_certificate_chain_unittest/non-self-signed-root/ta-with-constraints.test", |
eroman | 605a5cc | 2017-06-03 02:45:24 | [diff] [blame] | 4018 | "data/verify_certificate_chain_unittest/pkits_errors/4.1.2.txt", |
| 4019 | "data/verify_certificate_chain_unittest/pkits_errors/4.1.3.txt", |
| 4020 | "data/verify_certificate_chain_unittest/pkits_errors/4.1.4.txt", |
| 4021 | "data/verify_certificate_chain_unittest/pkits_errors/4.1.5.txt", |
| 4022 | "data/verify_certificate_chain_unittest/pkits_errors/4.1.6.txt", |
| 4023 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.1.txt", |
| 4024 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.10.txt", |
| 4025 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.2.txt", |
| 4026 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.3.txt", |
| 4027 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.4.txt", |
| 4028 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.5.txt", |
| 4029 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.6.txt", |
| 4030 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.7.txt", |
| 4031 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.8.txt", |
| 4032 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.1.txt", |
| 4033 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.10.txt", |
| 4034 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.11.txt", |
| 4035 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.3.txt", |
| 4036 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.5.txt", |
| 4037 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.6.txt", |
| 4038 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.8.txt", |
| 4039 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.9.txt", |
| 4040 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.1.txt", |
| 4041 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.10.txt", |
| 4042 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.3.txt", |
| 4043 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.4.txt", |
| 4044 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.5.txt", |
| 4045 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.6.txt", |
| 4046 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.8.txt", |
| 4047 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.10.txt", |
| 4048 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.12.txt", |
| 4049 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.13.txt", |
| 4050 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.15.txt", |
| 4051 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.16.txt", |
| 4052 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.17.txt", |
| 4053 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.2.txt", |
| 4054 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.20.txt", |
| 4055 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.21.txt", |
| 4056 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.22.txt", |
| 4057 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.23.txt", |
| 4058 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.24.txt", |
| 4059 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.25.txt", |
| 4060 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.26.txt", |
| 4061 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.27.txt", |
| 4062 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.28.txt", |
| 4063 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.29.txt", |
| 4064 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.3.txt", |
| 4065 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.31.txt", |
| 4066 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.33.txt", |
| 4067 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.34.txt", |
| 4068 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.35.txt", |
| 4069 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.36.txt", |
| 4070 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.37.txt", |
| 4071 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.38.txt", |
| 4072 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.7.txt", |
| 4073 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.8.txt", |
| 4074 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.9.txt", |
| 4075 | "data/verify_certificate_chain_unittest/pkits_errors/4.16.2.txt", |
| 4076 | "data/verify_certificate_chain_unittest/pkits_errors/4.2.1.txt", |
| 4077 | "data/verify_certificate_chain_unittest/pkits_errors/4.2.2.txt", |
| 4078 | "data/verify_certificate_chain_unittest/pkits_errors/4.2.5.txt", |
| 4079 | "data/verify_certificate_chain_unittest/pkits_errors/4.2.6.txt", |
| 4080 | "data/verify_certificate_chain_unittest/pkits_errors/4.2.7.txt", |
| 4081 | "data/verify_certificate_chain_unittest/pkits_errors/4.3.1.txt", |
| 4082 | "data/verify_certificate_chain_unittest/pkits_errors/4.3.2.txt", |
| 4083 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.1.txt", |
| 4084 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.10.txt", |
| 4085 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.11.txt", |
| 4086 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.12.txt", |
| 4087 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.16.txt", |
| 4088 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.2.txt", |
| 4089 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.3.txt", |
| 4090 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.5.txt", |
| 4091 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.6.txt", |
| 4092 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.9.txt", |
| 4093 | "data/verify_certificate_chain_unittest/pkits_errors/4.7.1.txt", |
| 4094 | "data/verify_certificate_chain_unittest/pkits_errors/4.7.2.txt", |
| 4095 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.1.txt", |
| 4096 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.12.txt", |
| 4097 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.14.txt", |
| 4098 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.2.txt", |
| 4099 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.3.txt", |
| 4100 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.4.txt", |
| 4101 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.5.txt", |
| 4102 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.6.txt", |
| 4103 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.7.txt", |
| 4104 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.8.txt", |
| 4105 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.9.txt", |
| 4106 | "data/verify_certificate_chain_unittest/pkits_errors/4.9.3.txt", |
| 4107 | "data/verify_certificate_chain_unittest/pkits_errors/4.9.5.txt", |
| 4108 | "data/verify_certificate_chain_unittest/pkits_errors/4.9.7.txt", |
| 4109 | "data/verify_certificate_chain_unittest/pkits_errors/4.9.8.txt", |
eroman | c1a8b5d0 | 2017-05-03 21:52:10 | [diff] [blame] | 4110 | "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/chain.pem", |
| 4111 | "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/main.test", |
| 4112 | "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/ta-with-constraints.test", |
eroman | 7333d9b | 2017-06-23 01:50:25 | [diff] [blame] | 4113 | "data/verify_certificate_chain_unittest/root-eku-clientauth/chain.pem", |
| 4114 | "data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth-ta-with-constraints.test", |
| 4115 | "data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth.test", |
eroman | c1a8b5d0 | 2017-05-03 21:52:10 | [diff] [blame] | 4116 | "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/chain.pem", |
| 4117 | "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/main.test", |
| 4118 | "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/ta-with-constraints.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 4119 | "data/verify_certificate_chain_unittest/target-and-intermediate/chain.pem", |
Matt Mueller | 905e4e3d | 2018-02-14 02:11:17 | [diff] [blame] | 4120 | "data/verify_certificate_chain_unittest/target-and-intermediate/distrusted-root-expired.test", |
eroman | d1c9c9b | 2017-05-04 19:23:45 | [diff] [blame] | 4121 | "data/verify_certificate_chain_unittest/target-and-intermediate/distrusted-root.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 4122 | "data/verify_certificate_chain_unittest/target-and-intermediate/main.test", |
eroman | d1c9c9b | 2017-05-04 19:23:45 | [diff] [blame] | 4123 | "data/verify_certificate_chain_unittest/target-and-intermediate/unspecified-trust-root.test", |
eroman | 7333d9b | 2017-06-23 01:50:25 | [diff] [blame] | 4124 | "data/verify_certificate_chain_unittest/target-eku-clientauth/any.test", |
| 4125 | "data/verify_certificate_chain_unittest/target-eku-clientauth/chain.pem", |
| 4126 | "data/verify_certificate_chain_unittest/target-eku-clientauth/clientauth.test", |
| 4127 | "data/verify_certificate_chain_unittest/target-eku-clientauth/serverauth.test", |
| 4128 | "data/verify_certificate_chain_unittest/target-eku-none/any.test", |
| 4129 | "data/verify_certificate_chain_unittest/target-eku-none/chain.pem", |
| 4130 | "data/verify_certificate_chain_unittest/target-eku-none/clientauth.test", |
| 4131 | "data/verify_certificate_chain_unittest/target-eku-none/serverauth.test", |
Eric Roman | 5431d70 | 2017-07-26 01:58:18 | [diff] [blame] | 4132 | "data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/chain.pem", |
| 4133 | "data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/main.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 4134 | "data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/chain.pem", |
| 4135 | "data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/main.test", |
| 4136 | "data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/chain.pem", |
| 4137 | "data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/main.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 4138 | "data/verify_certificate_chain_unittest/target-not-end-entity/chain.pem", |
| 4139 | "data/verify_certificate_chain_unittest/target-not-end-entity/main.test", |
eroman | e789943 | 2017-05-04 16:40:48 | [diff] [blame] | 4140 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.pem", |
| 4141 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.test", |
| 4142 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.pem", |
| 4143 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.test", |
| 4144 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.pem", |
| 4145 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.test", |
| 4146 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.pem", |
| 4147 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.test", |
| 4148 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.pem", |
| 4149 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.test", |
| 4150 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.pem", |
| 4151 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.test", |
| 4152 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.pem", |
| 4153 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.test", |
| 4154 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.pem", |
| 4155 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 4156 | "data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/chain.pem", |
| 4157 | "data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/main.test", |
| 4158 | "data/verify_certificate_chain_unittest/target-signed-using-ecdsa/chain.pem", |
| 4159 | "data/verify_certificate_chain_unittest/target-signed-using-ecdsa/main.test", |
| 4160 | "data/verify_certificate_chain_unittest/target-signed-with-md5/chain.pem", |
| 4161 | "data/verify_certificate_chain_unittest/target-signed-with-md5/main.test", |
| 4162 | "data/verify_certificate_chain_unittest/target-unknown-critical-extension/chain.pem", |
| 4163 | "data/verify_certificate_chain_unittest/target-unknown-critical-extension/main.test", |
| 4164 | "data/verify_certificate_chain_unittest/target-wrong-signature/chain.pem", |
| 4165 | "data/verify_certificate_chain_unittest/target-wrong-signature/main.test", |
eroman | 178f2c6 | 2017-06-07 01:03:44 | [diff] [blame] | 4166 | "data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/chain.pem", |
| 4167 | "data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/main.test", |
| 4168 | "data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/chain.pem", |
| 4169 | "data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/main.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 4170 | "data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/chain.pem", |
| 4171 | "data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/main.test", |
eroman | c1a8b5d0 | 2017-05-03 21:52:10 | [diff] [blame] | 4172 | "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/chain.pem", |
| 4173 | "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/main.test", |
| 4174 | "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/ta-with-constraints.test", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4175 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-dupe_attr.pem", |
| 4176 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_attr.pem", |
| 4177 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_rdn.pem", |
| 4178 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap.pem", |
| 4179 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-dupe_attr.pem", |
| 4180 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_attr.pem", |
| 4181 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_rdn.pem", |
| 4182 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace.pem", |
| 4183 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-dupe_attr.pem", |
| 4184 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_attr.pem", |
| 4185 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_rdn.pem", |
| 4186 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled.pem", |
| 4187 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-dupe_attr.pem", |
| 4188 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_attr.pem", |
| 4189 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_rdn.pem", |
| 4190 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap.pem", |
| 4191 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-dupe_attr.pem", |
| 4192 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_attr.pem", |
| 4193 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_rdn.pem", |
| 4194 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace.pem", |
| 4195 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_1.pem", |
| 4196 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_2.pem", |
| 4197 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-dupe_attr.pem", |
| 4198 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_attr.pem", |
| 4199 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_rdn.pem", |
| 4200 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled.pem", |
| 4201 | "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-dupe_attr.pem", |
| 4202 | "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_attr.pem", |
| 4203 | "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_rdn.pem", |
| 4204 | "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap.pem", |
| 4205 | "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-dupe_attr.pem", |
| 4206 | "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_attr.pem", |
| 4207 | "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_rdn.pem", |
| 4208 | "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace.pem", |
| 4209 | "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-dupe_attr.pem", |
| 4210 | "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_attr.pem", |
| 4211 | "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_rdn.pem", |
| 4212 | "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled.pem", |
| 4213 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-dupe_attr.pem", |
| 4214 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_attr.pem", |
| 4215 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_rdn.pem", |
| 4216 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap.pem", |
| 4217 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-dupe_attr.pem", |
| 4218 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_attr.pem", |
| 4219 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_rdn.pem", |
| 4220 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace.pem", |
| 4221 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-dupe_attr.pem", |
| 4222 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_attr.pem", |
| 4223 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_rdn.pem", |
| 4224 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled.pem", |
| 4225 | "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-dupe_attr.pem", |
| 4226 | "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_attr.pem", |
| 4227 | "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_rdn.pem", |
| 4228 | "data/verify_name_match_unittest/names/ascii-UTF8-case_swap.pem", |
| 4229 | "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-dupe_attr.pem", |
| 4230 | "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_attr.pem", |
| 4231 | "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_rdn.pem", |
| 4232 | "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace.pem", |
| 4233 | "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-dupe_attr.pem", |
| 4234 | "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_attr.pem", |
| 4235 | "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_rdn.pem", |
| 4236 | "data/verify_name_match_unittest/names/ascii-UTF8-unmangled.pem", |
| 4237 | "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_1.pem", |
| 4238 | "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_2.pem", |
David Benjamin | c4dd105 | 2017-12-15 21:23:17 | [diff] [blame] | 4239 | "data/verify_name_match_unittest/names/custom-custom-normalized.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4240 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-badAttributeType.pem", |
| 4241 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-empty.pem", |
| 4242 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-extradata.pem", |
| 4243 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-onlyOneElement.pem", |
| 4244 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-setNotSequence.pem", |
| 4245 | "data/verify_name_match_unittest/names/invalid-Name-setInsteadOfSequence.pem", |
| 4246 | "data/verify_name_match_unittest/names/invalid-RDN-empty.pem", |
| 4247 | "data/verify_name_match_unittest/names/invalid-RDN-sequenceInsteadOfSet.pem", |
| 4248 | "data/verify_name_match_unittest/names/unicode-mixed-normalized.pem", |
| 4249 | "data/verify_name_match_unittest/names/unicode-mixed-unnormalized.pem", |
| 4250 | "data/verify_name_match_unittest/names/unicode_bmp-BMPSTRING-unmangled.pem", |
| 4251 | "data/verify_name_match_unittest/names/unicode_bmp-UNIVERSALSTRING-unmangled.pem", |
| 4252 | "data/verify_name_match_unittest/names/unicode_bmp-UTF8-unmangled.pem", |
| 4253 | "data/verify_name_match_unittest/names/unicode_supplementary-UNIVERSALSTRING-unmangled.pem", |
| 4254 | "data/verify_name_match_unittest/names/unicode_supplementary-UTF8-unmangled.pem", |
| 4255 | "data/verify_name_match_unittest/names/valid-Name-empty.pem", |
| 4256 | "data/verify_name_match_unittest/names/valid-minimal.pem", |
| 4257 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-spki-params-null.pem", |
| 4258 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-unused-bits-signature.pem", |
| 4259 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecdh-key.pem", |
| 4260 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecmqv-key.pem", |
| 4261 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-rsa-algorithm.pem", |
| 4262 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-wrong-signature-format.pem", |
| 4263 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512.pem", |
| 4264 | "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256-corrupted-data.pem", |
| 4265 | "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256.pem", |
| 4266 | "data/verify_signed_data_unittest/ecdsa-using-rsa-key.pem", |
| 4267 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-length.pem", |
| 4268 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-null.pem", |
| 4269 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-key-params-absent.pem", |
| 4270 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-using-pss-key-no-params.pem", |
| 4271 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-wrong-algorithm.pem", |
| 4272 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1.pem", |
| 4273 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256-key-encoded-ber.pem", |
| 4274 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256-spki-non-null-params.pem", |
| 4275 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-ecdsa-algorithm.pem", |
| 4276 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-id-ea-rsa.pem", |
| 4277 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256.pem", |
| 4278 | "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-no-params.pem", |
| 4279 | "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-with-null-params.pem", |
| 4280 | "data/verify_signed_data_unittest/rsa-pss-sha1-salt20.pem", |
| 4281 | "data/verify_signed_data_unittest/rsa-pss-sha1-wrong-salt.pem", |
| 4282 | "data/verify_signed_data_unittest/rsa-pss-sha256-mgf1-sha512-salt33.pem", |
| 4283 | "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-params.pem", |
| 4284 | "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-wrong-params.pem", |
| 4285 | "data/verify_signed_data_unittest/rsa-pss-sha256-salt10.pem", |
| 4286 | "data/verify_signed_data_unittest/rsa-using-ec-key.pem", |
| 4287 | "data/verify_signed_data_unittest/rsa2048-pkcs1-sha512.pem", |
| 4288 | "third_party/nist-pkits/certs/AllCertificatesNoPoliciesTest2EE.crt", |
| 4289 | "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest10EE.crt", |
| 4290 | "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest13EE.crt", |
| 4291 | "third_party/nist-pkits/certs/AllCertificatesanyPolicyTest11EE.crt", |
| 4292 | "third_party/nist-pkits/certs/AnyPolicyTest14EE.crt", |
| 4293 | "third_party/nist-pkits/certs/BadCRLIssuerNameCACert.crt", |
| 4294 | "third_party/nist-pkits/certs/BadCRLSignatureCACert.crt", |
| 4295 | "third_party/nist-pkits/certs/BadSignedCACert.crt", |
| 4296 | "third_party/nist-pkits/certs/BadnotAfterDateCACert.crt", |
| 4297 | "third_party/nist-pkits/certs/BadnotBeforeDateCACert.crt", |
| 4298 | "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCACert.crt", |
| 4299 | "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCRLCert.crt", |
| 4300 | "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyCACert.crt", |
| 4301 | "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyOldWithNewCACert.crt", |
| 4302 | "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyCACert.crt", |
| 4303 | "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyNewWithOldCACert.crt", |
| 4304 | "third_party/nist-pkits/certs/CPSPointerQualifierTest20EE.crt", |
| 4305 | "third_party/nist-pkits/certs/DSACACert.crt", |
| 4306 | "third_party/nist-pkits/certs/DSAParametersInheritedCACert.crt", |
| 4307 | "third_party/nist-pkits/certs/DifferentPoliciesTest12EE.crt", |
| 4308 | "third_party/nist-pkits/certs/DifferentPoliciesTest3EE.crt", |
| 4309 | "third_party/nist-pkits/certs/DifferentPoliciesTest4EE.crt", |
| 4310 | "third_party/nist-pkits/certs/DifferentPoliciesTest5EE.crt", |
| 4311 | "third_party/nist-pkits/certs/DifferentPoliciesTest7EE.crt", |
| 4312 | "third_party/nist-pkits/certs/DifferentPoliciesTest8EE.crt", |
| 4313 | "third_party/nist-pkits/certs/DifferentPoliciesTest9EE.crt", |
| 4314 | "third_party/nist-pkits/certs/GeneralizedTimeCRLnextUpdateCACert.crt", |
| 4315 | "third_party/nist-pkits/certs/GoodCACert.crt", |
| 4316 | "third_party/nist-pkits/certs/GoodsubCACert.crt", |
| 4317 | "third_party/nist-pkits/certs/GoodsubCAPanyPolicyMapping1to2CACert.crt", |
| 4318 | "third_party/nist-pkits/certs/InvalidBadCRLIssuerNameTest5EE.crt", |
| 4319 | "third_party/nist-pkits/certs/InvalidBadCRLSignatureTest4EE.crt", |
| 4320 | "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest7EE.crt", |
| 4321 | "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest8EE.crt", |
| 4322 | "third_party/nist-pkits/certs/InvalidBasicSelfIssuedNewWithOldTest5EE.crt", |
| 4323 | "third_party/nist-pkits/certs/InvalidBasicSelfIssuedOldWithNewTest2EE.crt", |
| 4324 | "third_party/nist-pkits/certs/InvalidCASignatureTest2EE.crt", |
| 4325 | "third_party/nist-pkits/certs/InvalidCAnotAfterDateTest5EE.crt", |
| 4326 | "third_party/nist-pkits/certs/InvalidCAnotBeforeDateTest1EE.crt", |
| 4327 | "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest31EE.crt", |
| 4328 | "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest33EE.crt", |
| 4329 | "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest38EE.crt", |
| 4330 | "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest28EE.crt", |
| 4331 | "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest29EE.crt", |
| 4332 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest10EE.crt", |
| 4333 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest12EE.crt", |
| 4334 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest13EE.crt", |
| 4335 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest15EE.crt", |
| 4336 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest16EE.crt", |
| 4337 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest17EE.crt", |
| 4338 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest20EE.crt", |
| 4339 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest2EE.crt", |
| 4340 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest3EE.crt", |
| 4341 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest7EE.crt", |
| 4342 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest8EE.crt", |
| 4343 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest9EE.crt", |
| 4344 | "third_party/nist-pkits/certs/InvalidDSASignatureTest6EE.crt", |
| 4345 | "third_party/nist-pkits/certs/InvalidEESignatureTest3EE.crt", |
| 4346 | "third_party/nist-pkits/certs/InvalidEEnotAfterDateTest6EE.crt", |
| 4347 | "third_party/nist-pkits/certs/InvalidEEnotBeforeDateTest2EE.crt", |
| 4348 | "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest23EE.crt", |
| 4349 | "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest26EE.crt", |
| 4350 | "third_party/nist-pkits/certs/InvalidLongSerialNumberTest18EE.crt", |
| 4351 | "third_party/nist-pkits/certs/InvalidMappingFromanyPolicyTest7EE.crt", |
| 4352 | "third_party/nist-pkits/certs/InvalidMappingToanyPolicyTest8EE.crt", |
| 4353 | "third_party/nist-pkits/certs/InvalidMissingCRLTest1EE.crt", |
| 4354 | "third_party/nist-pkits/certs/InvalidMissingbasicConstraintsTest1EE.crt", |
| 4355 | "third_party/nist-pkits/certs/InvalidNameChainingOrderTest2EE.crt", |
| 4356 | "third_party/nist-pkits/certs/InvalidNameChainingTest1EE.crt", |
| 4357 | "third_party/nist-pkits/certs/InvalidNegativeSerialNumberTest15EE.crt", |
| 4358 | "third_party/nist-pkits/certs/InvalidOldCRLnextUpdateTest11EE.crt", |
| 4359 | "third_party/nist-pkits/certs/InvalidPolicyMappingTest10EE.crt", |
| 4360 | "third_party/nist-pkits/certs/InvalidPolicyMappingTest2EE.crt", |
| 4361 | "third_party/nist-pkits/certs/InvalidPolicyMappingTest4EE.crt", |
| 4362 | "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest22EE.crt", |
| 4363 | "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest24EE.crt", |
| 4364 | "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest26EE.crt", |
| 4365 | "third_party/nist-pkits/certs/InvalidRevokedCATest2EE.crt", |
| 4366 | "third_party/nist-pkits/certs/InvalidRevokedEETest3EE.crt", |
| 4367 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest10EE.crt", |
| 4368 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest8EE.crt", |
| 4369 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest10EE.crt", |
| 4370 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest11EE.crt", |
| 4371 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest8EE.crt", |
| 4372 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest9EE.crt", |
| 4373 | "third_party/nist-pkits/certs/InvalidSelfIssuedpathLenConstraintTest16EE.crt", |
| 4374 | "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest7EE.crt", |
| 4375 | "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest8EE.crt", |
| 4376 | "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest20EE.crt", |
| 4377 | "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest21EE.crt", |
| 4378 | "third_party/nist-pkits/certs/InvalidURInameConstraintsTest35EE.crt", |
| 4379 | "third_party/nist-pkits/certs/InvalidURInameConstraintsTest37EE.crt", |
| 4380 | "third_party/nist-pkits/certs/InvalidUnknownCRLEntryExtensionTest8EE.crt", |
| 4381 | "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest10EE.crt", |
| 4382 | "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest9EE.crt", |
| 4383 | "third_party/nist-pkits/certs/InvalidUnknownCriticalCertificateExtensionTest2EE.crt", |
| 4384 | "third_party/nist-pkits/certs/InvalidWrongCRLTest6EE.crt", |
| 4385 | "third_party/nist-pkits/certs/InvalidcAFalseTest2EE.crt", |
| 4386 | "third_party/nist-pkits/certs/InvalidcAFalseTest3EE.crt", |
| 4387 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest27EE.crt", |
| 4388 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest31EE.crt", |
| 4389 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest32EE.crt", |
| 4390 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest34EE.crt", |
| 4391 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest35EE.crt", |
| 4392 | "third_party/nist-pkits/certs/InvaliddeltaCRLIndicatorNoBaseTest1EE.crt", |
| 4393 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest10EE.crt", |
| 4394 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest3EE.crt", |
| 4395 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest4EE.crt", |
| 4396 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest6EE.crt", |
| 4397 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest9EE.crt", |
| 4398 | "third_party/nist-pkits/certs/InvaliddistributionPointTest2EE.crt", |
| 4399 | "third_party/nist-pkits/certs/InvaliddistributionPointTest3EE.crt", |
| 4400 | "third_party/nist-pkits/certs/InvaliddistributionPointTest6EE.crt", |
| 4401 | "third_party/nist-pkits/certs/InvaliddistributionPointTest8EE.crt", |
| 4402 | "third_party/nist-pkits/certs/InvaliddistributionPointTest9EE.crt", |
| 4403 | "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest1EE.crt", |
| 4404 | "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest4EE.crt", |
| 4405 | "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest5EE.crt", |
| 4406 | "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest6EE.crt", |
| 4407 | "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest1EE.crt", |
| 4408 | "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest3EE.crt", |
| 4409 | "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest5EE.crt", |
| 4410 | "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest6EE.crt", |
| 4411 | "third_party/nist-pkits/certs/InvalidkeyUsageCriticalcRLSignFalseTest4EE.crt", |
| 4412 | "third_party/nist-pkits/certs/InvalidkeyUsageCriticalkeyCertSignFalseTest1EE.crt", |
| 4413 | "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalcRLSignFalseTest5EE.crt", |
| 4414 | "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalkeyCertSignFalseTest2EE.crt", |
| 4415 | "third_party/nist-pkits/certs/InvalidonlyContainsAttributeCertsTest14EE.crt", |
| 4416 | "third_party/nist-pkits/certs/InvalidonlyContainsCACertsTest12EE.crt", |
| 4417 | "third_party/nist-pkits/certs/InvalidonlyContainsUserCertsTest11EE.crt", |
| 4418 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest15EE.crt", |
| 4419 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest16EE.crt", |
| 4420 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest17EE.crt", |
| 4421 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest20EE.crt", |
| 4422 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest21EE.crt", |
| 4423 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest10EE.crt", |
| 4424 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest11EE.crt", |
| 4425 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest12EE.crt", |
| 4426 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest5EE.crt", |
| 4427 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest6EE.crt", |
| 4428 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest9EE.crt", |
| 4429 | "third_party/nist-pkits/certs/Invalidpre2000CRLnextUpdateTest12EE.crt", |
| 4430 | "third_party/nist-pkits/certs/Invalidpre2000UTCEEnotAfterDateTest7EE.crt", |
| 4431 | "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest3EE.crt", |
| 4432 | "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest5EE.crt", |
| 4433 | "third_party/nist-pkits/certs/LongSerialNumberCACert.crt", |
| 4434 | "third_party/nist-pkits/certs/Mapping1to2CACert.crt", |
| 4435 | "third_party/nist-pkits/certs/MappingFromanyPolicyCACert.crt", |
| 4436 | "third_party/nist-pkits/certs/MappingToanyPolicyCACert.crt", |
| 4437 | "third_party/nist-pkits/certs/MissingbasicConstraintsCACert.crt", |
| 4438 | "third_party/nist-pkits/certs/NameOrderingCACert.crt", |
| 4439 | "third_party/nist-pkits/certs/NegativeSerialNumberCACert.crt", |
| 4440 | "third_party/nist-pkits/certs/NoCRLCACert.crt", |
| 4441 | "third_party/nist-pkits/certs/NoPoliciesCACert.crt", |
| 4442 | "third_party/nist-pkits/certs/NoissuingDistributionPointCACert.crt", |
| 4443 | "third_party/nist-pkits/certs/OldCRLnextUpdateCACert.crt", |
| 4444 | "third_party/nist-pkits/certs/OverlappingPoliciesTest6EE.crt", |
| 4445 | "third_party/nist-pkits/certs/P12Mapping1to3CACert.crt", |
| 4446 | "third_party/nist-pkits/certs/P12Mapping1to3subCACert.crt", |
| 4447 | "third_party/nist-pkits/certs/P12Mapping1to3subsubCACert.crt", |
| 4448 | "third_party/nist-pkits/certs/P1Mapping1to234CACert.crt", |
| 4449 | "third_party/nist-pkits/certs/P1Mapping1to234subCACert.crt", |
| 4450 | "third_party/nist-pkits/certs/P1anyPolicyMapping1to2CACert.crt", |
| 4451 | "third_party/nist-pkits/certs/PanyPolicyMapping1to2CACert.crt", |
| 4452 | "third_party/nist-pkits/certs/PoliciesP1234CACert.crt", |
| 4453 | "third_party/nist-pkits/certs/PoliciesP1234subCAP123Cert.crt", |
| 4454 | "third_party/nist-pkits/certs/PoliciesP1234subsubCAP123P12Cert.crt", |
| 4455 | "third_party/nist-pkits/certs/PoliciesP123CACert.crt", |
| 4456 | "third_party/nist-pkits/certs/PoliciesP123subCAP12Cert.crt", |
| 4457 | "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P1Cert.crt", |
| 4458 | "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P2Cert.crt", |
| 4459 | "third_party/nist-pkits/certs/PoliciesP123subsubsubCAP12P2P1Cert.crt", |
| 4460 | "third_party/nist-pkits/certs/PoliciesP12CACert.crt", |
| 4461 | "third_party/nist-pkits/certs/PoliciesP12subCAP1Cert.crt", |
| 4462 | "third_party/nist-pkits/certs/PoliciesP12subsubCAP1P2Cert.crt", |
| 4463 | "third_party/nist-pkits/certs/PoliciesP2subCA2Cert.crt", |
| 4464 | "third_party/nist-pkits/certs/PoliciesP2subCACert.crt", |
| 4465 | "third_party/nist-pkits/certs/PoliciesP3CACert.crt", |
| 4466 | "third_party/nist-pkits/certs/RFC3280MandatoryAttributeTypesCACert.crt", |
| 4467 | "third_party/nist-pkits/certs/RFC3280OptionalAttributeTypesCACert.crt", |
| 4468 | "third_party/nist-pkits/certs/RevokedsubCACert.crt", |
| 4469 | "third_party/nist-pkits/certs/RolloverfromPrintableStringtoUTF8StringCACert.crt", |
| 4470 | "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CRLSigningCert.crt", |
| 4471 | "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CertificateSigningCACert.crt", |
| 4472 | "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCRLSigningCert.crt", |
| 4473 | "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCertificateSigningCACert.crt", |
| 4474 | "third_party/nist-pkits/certs/TrustAnchorRootCertificate.crt", |
| 4475 | "third_party/nist-pkits/certs/TwoCRLsCACert.crt", |
| 4476 | "third_party/nist-pkits/certs/UIDCACert.crt", |
| 4477 | "third_party/nist-pkits/certs/UTF8StringCaseInsensitiveMatchCACert.crt", |
| 4478 | "third_party/nist-pkits/certs/UTF8StringEncodedNamesCACert.crt", |
| 4479 | "third_party/nist-pkits/certs/UnknownCRLEntryExtensionCACert.crt", |
| 4480 | "third_party/nist-pkits/certs/UnknownCRLExtensionCACert.crt", |
| 4481 | "third_party/nist-pkits/certs/UserNoticeQualifierTest15EE.crt", |
| 4482 | "third_party/nist-pkits/certs/UserNoticeQualifierTest16EE.crt", |
| 4483 | "third_party/nist-pkits/certs/UserNoticeQualifierTest17EE.crt", |
| 4484 | "third_party/nist-pkits/certs/UserNoticeQualifierTest18EE.crt", |
| 4485 | "third_party/nist-pkits/certs/UserNoticeQualifierTest19EE.crt", |
| 4486 | "third_party/nist-pkits/certs/ValidBasicSelfIssuedCRLSigningKeyTest6EE.crt", |
| 4487 | "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest3EE.crt", |
| 4488 | "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest4EE.crt", |
| 4489 | "third_party/nist-pkits/certs/ValidBasicSelfIssuedOldWithNewTest1EE.crt", |
| 4490 | "third_party/nist-pkits/certs/ValidCertificatePathTest1EE.crt", |
| 4491 | "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest30EE.crt", |
| 4492 | "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest32EE.crt", |
| 4493 | "third_party/nist-pkits/certs/ValidDNandRFC822nameConstraintsTest27EE.crt", |
| 4494 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest11EE.crt", |
| 4495 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest14EE.crt", |
| 4496 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest18EE.crt", |
| 4497 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest19EE.crt", |
| 4498 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest1EE.crt", |
| 4499 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest4EE.crt", |
| 4500 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest5EE.crt", |
| 4501 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest6EE.crt", |
| 4502 | "third_party/nist-pkits/certs/ValidDSAParameterInheritanceTest5EE.crt", |
| 4503 | "third_party/nist-pkits/certs/ValidDSASignaturesTest4EE.crt", |
| 4504 | "third_party/nist-pkits/certs/ValidGeneralizedTimeCRLnextUpdateTest13EE.crt", |
| 4505 | "third_party/nist-pkits/certs/ValidGeneralizedTimenotAfterDateTest8EE.crt", |
| 4506 | "third_party/nist-pkits/certs/ValidGeneralizedTimenotBeforeDateTest4EE.crt", |
| 4507 | "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest22EE.crt", |
| 4508 | "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest24EE.crt", |
| 4509 | "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest25EE.crt", |
| 4510 | "third_party/nist-pkits/certs/ValidLongSerialNumberTest16EE.crt", |
| 4511 | "third_party/nist-pkits/certs/ValidLongSerialNumberTest17EE.crt", |
| 4512 | "third_party/nist-pkits/certs/ValidNameChainingCapitalizationTest5EE.crt", |
| 4513 | "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest3EE.crt", |
| 4514 | "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest4EE.crt", |
| 4515 | "third_party/nist-pkits/certs/ValidNameUIDsTest6EE.crt", |
| 4516 | "third_party/nist-pkits/certs/ValidNegativeSerialNumberTest14EE.crt", |
| 4517 | "third_party/nist-pkits/certs/ValidNoissuingDistributionPointTest10EE.crt", |
| 4518 | "third_party/nist-pkits/certs/ValidPolicyMappingTest11EE.crt", |
| 4519 | "third_party/nist-pkits/certs/ValidPolicyMappingTest12EE.crt", |
| 4520 | "third_party/nist-pkits/certs/ValidPolicyMappingTest13EE.crt", |
| 4521 | "third_party/nist-pkits/certs/ValidPolicyMappingTest14EE.crt", |
| 4522 | "third_party/nist-pkits/certs/ValidPolicyMappingTest1EE.crt", |
| 4523 | "third_party/nist-pkits/certs/ValidPolicyMappingTest3EE.crt", |
| 4524 | "third_party/nist-pkits/certs/ValidPolicyMappingTest5EE.crt", |
| 4525 | "third_party/nist-pkits/certs/ValidPolicyMappingTest6EE.crt", |
| 4526 | "third_party/nist-pkits/certs/ValidPolicyMappingTest9EE.crt", |
| 4527 | "third_party/nist-pkits/certs/ValidRFC3280MandatoryAttributeTypesTest7EE.crt", |
| 4528 | "third_party/nist-pkits/certs/ValidRFC3280OptionalAttributeTypesTest8EE.crt", |
| 4529 | "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest21EE.crt", |
| 4530 | "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest23EE.crt", |
| 4531 | "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest25EE.crt", |
| 4532 | "third_party/nist-pkits/certs/ValidRolloverfromPrintableStringtoUTF8StringTest10EE.crt", |
| 4533 | "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest7EE.crt", |
| 4534 | "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest9EE.crt", |
| 4535 | "third_party/nist-pkits/certs/ValidSelfIssuedinhibitPolicyMappingTest7EE.crt", |
| 4536 | "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest15EE.crt", |
| 4537 | "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest17EE.crt", |
| 4538 | "third_party/nist-pkits/certs/ValidSelfIssuedrequireExplicitPolicyTest6EE.crt", |
| 4539 | "third_party/nist-pkits/certs/ValidSeparateCertificateandCRLKeysTest19EE.crt", |
| 4540 | "third_party/nist-pkits/certs/ValidTwoCRLsTest7EE.crt", |
| 4541 | "third_party/nist-pkits/certs/ValidURInameConstraintsTest34EE.crt", |
| 4542 | "third_party/nist-pkits/certs/ValidURInameConstraintsTest36EE.crt", |
| 4543 | "third_party/nist-pkits/certs/ValidUTF8StringCaseInsensitiveMatchTest11EE.crt", |
| 4544 | "third_party/nist-pkits/certs/ValidUTF8StringEncodedNamesTest9EE.crt", |
| 4545 | "third_party/nist-pkits/certs/ValidUnknownNotCriticalCertificateExtensionTest1EE.crt", |
| 4546 | "third_party/nist-pkits/certs/ValidbasicConstraintsNotCriticalTest4EE.crt", |
| 4547 | "third_party/nist-pkits/certs/ValidcRLIssuerTest28EE.crt", |
| 4548 | "third_party/nist-pkits/certs/ValidcRLIssuerTest29EE.crt", |
| 4549 | "third_party/nist-pkits/certs/ValidcRLIssuerTest30EE.crt", |
| 4550 | "third_party/nist-pkits/certs/ValidcRLIssuerTest33EE.crt", |
| 4551 | "third_party/nist-pkits/certs/ValiddeltaCRLTest2EE.crt", |
| 4552 | "third_party/nist-pkits/certs/ValiddeltaCRLTest5EE.crt", |
| 4553 | "third_party/nist-pkits/certs/ValiddeltaCRLTest7EE.crt", |
| 4554 | "third_party/nist-pkits/certs/ValiddeltaCRLTest8EE.crt", |
| 4555 | "third_party/nist-pkits/certs/ValiddistributionPointTest1EE.crt", |
| 4556 | "third_party/nist-pkits/certs/ValiddistributionPointTest4EE.crt", |
| 4557 | "third_party/nist-pkits/certs/ValiddistributionPointTest5EE.crt", |
| 4558 | "third_party/nist-pkits/certs/ValiddistributionPointTest7EE.crt", |
| 4559 | "third_party/nist-pkits/certs/ValidinhibitAnyPolicyTest2EE.crt", |
| 4560 | "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest2EE.crt", |
| 4561 | "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest4EE.crt", |
| 4562 | "third_party/nist-pkits/certs/ValidkeyUsageNotCriticalTest3EE.crt", |
| 4563 | "third_party/nist-pkits/certs/ValidonlyContainsCACertsTest13EE.crt", |
| 4564 | "third_party/nist-pkits/certs/ValidonlySomeReasonsTest18EE.crt", |
| 4565 | "third_party/nist-pkits/certs/ValidonlySomeReasonsTest19EE.crt", |
| 4566 | "third_party/nist-pkits/certs/ValidpathLenConstraintTest13EE.crt", |
| 4567 | "third_party/nist-pkits/certs/ValidpathLenConstraintTest14EE.crt", |
| 4568 | "third_party/nist-pkits/certs/ValidpathLenConstraintTest7EE.crt", |
| 4569 | "third_party/nist-pkits/certs/ValidpathLenConstraintTest8EE.crt", |
| 4570 | "third_party/nist-pkits/certs/Validpre2000UTCnotBeforeDateTest3EE.crt", |
| 4571 | "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest1EE.crt", |
| 4572 | "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest2EE.crt", |
| 4573 | "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest4EE.crt", |
| 4574 | "third_party/nist-pkits/certs/WrongCRLCACert.crt", |
| 4575 | "third_party/nist-pkits/certs/anyPolicyCACert.crt", |
| 4576 | "third_party/nist-pkits/certs/basicConstraintsCriticalcAFalseCACert.crt", |
| 4577 | "third_party/nist-pkits/certs/basicConstraintsNotCriticalCACert.crt", |
| 4578 | "third_party/nist-pkits/certs/basicConstraintsNotCriticalcAFalseCACert.crt", |
| 4579 | "third_party/nist-pkits/certs/deltaCRLCA1Cert.crt", |
| 4580 | "third_party/nist-pkits/certs/deltaCRLCA2Cert.crt", |
| 4581 | "third_party/nist-pkits/certs/deltaCRLCA3Cert.crt", |
| 4582 | "third_party/nist-pkits/certs/deltaCRLIndicatorNoBaseCACert.crt", |
| 4583 | "third_party/nist-pkits/certs/distributionPoint1CACert.crt", |
| 4584 | "third_party/nist-pkits/certs/distributionPoint2CACert.crt", |
| 4585 | "third_party/nist-pkits/certs/indirectCRLCA1Cert.crt", |
| 4586 | "third_party/nist-pkits/certs/indirectCRLCA2Cert.crt", |
| 4587 | "third_party/nist-pkits/certs/indirectCRLCA3Cert.crt", |
| 4588 | "third_party/nist-pkits/certs/indirectCRLCA3cRLIssuerCert.crt", |
| 4589 | "third_party/nist-pkits/certs/indirectCRLCA4Cert.crt", |
| 4590 | "third_party/nist-pkits/certs/indirectCRLCA4cRLIssuerCert.crt", |
| 4591 | "third_party/nist-pkits/certs/indirectCRLCA5Cert.crt", |
| 4592 | "third_party/nist-pkits/certs/indirectCRLCA6Cert.crt", |
| 4593 | "third_party/nist-pkits/certs/inhibitAnyPolicy0CACert.crt", |
| 4594 | "third_party/nist-pkits/certs/inhibitAnyPolicy1CACert.crt", |
| 4595 | "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedCACert.crt", |
| 4596 | "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedsubCA2Cert.crt", |
| 4597 | "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA1Cert.crt", |
| 4598 | "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA2Cert.crt", |
| 4599 | "third_party/nist-pkits/certs/inhibitAnyPolicy1subCAIAP5Cert.crt", |
| 4600 | "third_party/nist-pkits/certs/inhibitAnyPolicy1subsubCA2Cert.crt", |
| 4601 | "third_party/nist-pkits/certs/inhibitAnyPolicy5CACert.crt", |
| 4602 | "third_party/nist-pkits/certs/inhibitAnyPolicy5subCACert.crt", |
| 4603 | "third_party/nist-pkits/certs/inhibitAnyPolicy5subsubCACert.crt", |
| 4604 | "third_party/nist-pkits/certs/inhibitAnyPolicyTest3EE.crt", |
| 4605 | "third_party/nist-pkits/certs/inhibitPolicyMapping0CACert.crt", |
| 4606 | "third_party/nist-pkits/certs/inhibitPolicyMapping0subCACert.crt", |
| 4607 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12CACert.crt", |
| 4608 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCACert.crt", |
| 4609 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCAIPM5Cert.crt", |
| 4610 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCACert.crt", |
| 4611 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCAIPM5Cert.crt", |
| 4612 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1CACert.crt", |
| 4613 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedCACert.crt", |
| 4614 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedsubCACert.crt", |
| 4615 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subCACert.crt", |
| 4616 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subsubCACert.crt", |
| 4617 | "third_party/nist-pkits/certs/inhibitPolicyMapping5CACert.crt", |
| 4618 | "third_party/nist-pkits/certs/inhibitPolicyMapping5subCACert.crt", |
| 4619 | "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubCACert.crt", |
| 4620 | "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubsubCACert.crt", |
| 4621 | "third_party/nist-pkits/certs/keyUsageCriticalcRLSignFalseCACert.crt", |
| 4622 | "third_party/nist-pkits/certs/keyUsageCriticalkeyCertSignFalseCACert.crt", |
| 4623 | "third_party/nist-pkits/certs/keyUsageNotCriticalCACert.crt", |
| 4624 | "third_party/nist-pkits/certs/keyUsageNotCriticalcRLSignFalseCACert.crt", |
| 4625 | "third_party/nist-pkits/certs/keyUsageNotCriticalkeyCertSignFalseCACert.crt", |
| 4626 | "third_party/nist-pkits/certs/nameConstraintsDN1CACert.crt", |
| 4627 | "third_party/nist-pkits/certs/nameConstraintsDN1SelfIssuedCACert.crt", |
| 4628 | "third_party/nist-pkits/certs/nameConstraintsDN1subCA1Cert.crt", |
| 4629 | "third_party/nist-pkits/certs/nameConstraintsDN1subCA2Cert.crt", |
| 4630 | "third_party/nist-pkits/certs/nameConstraintsDN1subCA3Cert.crt", |
| 4631 | "third_party/nist-pkits/certs/nameConstraintsDN2CACert.crt", |
| 4632 | "third_party/nist-pkits/certs/nameConstraintsDN3CACert.crt", |
| 4633 | "third_party/nist-pkits/certs/nameConstraintsDN3subCA1Cert.crt", |
| 4634 | "third_party/nist-pkits/certs/nameConstraintsDN3subCA2Cert.crt", |
| 4635 | "third_party/nist-pkits/certs/nameConstraintsDN4CACert.crt", |
| 4636 | "third_party/nist-pkits/certs/nameConstraintsDN5CACert.crt", |
| 4637 | "third_party/nist-pkits/certs/nameConstraintsDNS1CACert.crt", |
| 4638 | "third_party/nist-pkits/certs/nameConstraintsDNS2CACert.crt", |
| 4639 | "third_party/nist-pkits/certs/nameConstraintsRFC822CA1Cert.crt", |
| 4640 | "third_party/nist-pkits/certs/nameConstraintsRFC822CA2Cert.crt", |
| 4641 | "third_party/nist-pkits/certs/nameConstraintsRFC822CA3Cert.crt", |
| 4642 | "third_party/nist-pkits/certs/nameConstraintsURI1CACert.crt", |
| 4643 | "third_party/nist-pkits/certs/nameConstraintsURI2CACert.crt", |
| 4644 | "third_party/nist-pkits/certs/onlyContainsAttributeCertsCACert.crt", |
| 4645 | "third_party/nist-pkits/certs/onlyContainsCACertsCACert.crt", |
| 4646 | "third_party/nist-pkits/certs/onlyContainsUserCertsCACert.crt", |
| 4647 | "third_party/nist-pkits/certs/onlySomeReasonsCA1Cert.crt", |
| 4648 | "third_party/nist-pkits/certs/onlySomeReasonsCA2Cert.crt", |
| 4649 | "third_party/nist-pkits/certs/onlySomeReasonsCA3Cert.crt", |
| 4650 | "third_party/nist-pkits/certs/onlySomeReasonsCA4Cert.crt", |
| 4651 | "third_party/nist-pkits/certs/pathLenConstraint0CACert.crt", |
| 4652 | "third_party/nist-pkits/certs/pathLenConstraint0SelfIssuedCACert.crt", |
| 4653 | "third_party/nist-pkits/certs/pathLenConstraint0subCA2Cert.crt", |
| 4654 | "third_party/nist-pkits/certs/pathLenConstraint0subCACert.crt", |
| 4655 | "third_party/nist-pkits/certs/pathLenConstraint1CACert.crt", |
| 4656 | "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedCACert.crt", |
| 4657 | "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedsubCACert.crt", |
| 4658 | "third_party/nist-pkits/certs/pathLenConstraint1subCACert.crt", |
| 4659 | "third_party/nist-pkits/certs/pathLenConstraint6CACert.crt", |
| 4660 | "third_party/nist-pkits/certs/pathLenConstraint6subCA0Cert.crt", |
| 4661 | "third_party/nist-pkits/certs/pathLenConstraint6subCA1Cert.crt", |
| 4662 | "third_party/nist-pkits/certs/pathLenConstraint6subCA4Cert.crt", |
| 4663 | "third_party/nist-pkits/certs/pathLenConstraint6subsubCA00Cert.crt", |
| 4664 | "third_party/nist-pkits/certs/pathLenConstraint6subsubCA11Cert.crt", |
| 4665 | "third_party/nist-pkits/certs/pathLenConstraint6subsubCA41Cert.crt", |
| 4666 | "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA11XCert.crt", |
| 4667 | "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA41XCert.crt", |
| 4668 | "third_party/nist-pkits/certs/pre2000CRLnextUpdateCACert.crt", |
| 4669 | "third_party/nist-pkits/certs/requireExplicitPolicy0CACert.crt", |
| 4670 | "third_party/nist-pkits/certs/requireExplicitPolicy0subCACert.crt", |
| 4671 | "third_party/nist-pkits/certs/requireExplicitPolicy0subsubCACert.crt", |
| 4672 | "third_party/nist-pkits/certs/requireExplicitPolicy0subsubsubCACert.crt", |
| 4673 | "third_party/nist-pkits/certs/requireExplicitPolicy10CACert.crt", |
| 4674 | "third_party/nist-pkits/certs/requireExplicitPolicy10subCACert.crt", |
| 4675 | "third_party/nist-pkits/certs/requireExplicitPolicy10subsubCACert.crt", |
| 4676 | "third_party/nist-pkits/certs/requireExplicitPolicy10subsubsubCACert.crt", |
| 4677 | "third_party/nist-pkits/certs/requireExplicitPolicy2CACert.crt", |
| 4678 | "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedCACert.crt", |
| 4679 | "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedsubCACert.crt", |
| 4680 | "third_party/nist-pkits/certs/requireExplicitPolicy2subCACert.crt", |
| 4681 | "third_party/nist-pkits/certs/requireExplicitPolicy4CACert.crt", |
| 4682 | "third_party/nist-pkits/certs/requireExplicitPolicy4subCACert.crt", |
| 4683 | "third_party/nist-pkits/certs/requireExplicitPolicy4subsubCACert.crt", |
| 4684 | "third_party/nist-pkits/certs/requireExplicitPolicy4subsubsubCACert.crt", |
| 4685 | "third_party/nist-pkits/certs/requireExplicitPolicy5CACert.crt", |
| 4686 | "third_party/nist-pkits/certs/requireExplicitPolicy5subCACert.crt", |
| 4687 | "third_party/nist-pkits/certs/requireExplicitPolicy5subsubCACert.crt", |
| 4688 | "third_party/nist-pkits/certs/requireExplicitPolicy5subsubsubCACert.crt", |
| 4689 | "third_party/nist-pkits/certs/requireExplicitPolicy7CACert.crt", |
| 4690 | "third_party/nist-pkits/certs/requireExplicitPolicy7subCARE2Cert.crt", |
| 4691 | "third_party/nist-pkits/certs/requireExplicitPolicy7subsubCARE2RE4Cert.crt", |
| 4692 | "third_party/nist-pkits/certs/requireExplicitPolicy7subsubsubCARE2RE4Cert.crt", |
| 4693 | "third_party/nist-pkits/crls/BadCRLIssuerNameCACRL.crl", |
| 4694 | "third_party/nist-pkits/crls/BadCRLSignatureCACRL.crl", |
| 4695 | "third_party/nist-pkits/crls/BadSignedCACRL.crl", |
| 4696 | "third_party/nist-pkits/crls/BadnotAfterDateCACRL.crl", |
| 4697 | "third_party/nist-pkits/crls/BadnotBeforeDateCACRL.crl", |
| 4698 | "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCACRL.crl", |
| 4699 | "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCRLCertCRL.crl", |
| 4700 | "third_party/nist-pkits/crls/BasicSelfIssuedNewKeyCACRL.crl", |
| 4701 | "third_party/nist-pkits/crls/BasicSelfIssuedOldKeyCACRL.crl", |
| 4702 | "third_party/nist-pkits/crls/BasicSelfIssuedOldKeySelfIssuedCertCRL.crl", |
| 4703 | "third_party/nist-pkits/crls/DSACACRL.crl", |
| 4704 | "third_party/nist-pkits/crls/DSAParametersInheritedCACRL.crl", |
| 4705 | "third_party/nist-pkits/crls/GeneralizedTimeCRLnextUpdateCACRL.crl", |
| 4706 | "third_party/nist-pkits/crls/GoodCACRL.crl", |
| 4707 | "third_party/nist-pkits/crls/GoodsubCACRL.crl", |
| 4708 | "third_party/nist-pkits/crls/GoodsubCAPanyPolicyMapping1to2CACRL.crl", |
| 4709 | "third_party/nist-pkits/crls/LongSerialNumberCACRL.crl", |
| 4710 | "third_party/nist-pkits/crls/Mapping1to2CACRL.crl", |
| 4711 | "third_party/nist-pkits/crls/MappingFromanyPolicyCACRL.crl", |
| 4712 | "third_party/nist-pkits/crls/MappingToanyPolicyCACRL.crl", |
| 4713 | "third_party/nist-pkits/crls/MissingbasicConstraintsCACRL.crl", |
| 4714 | "third_party/nist-pkits/crls/NameOrderCACRL.crl", |
| 4715 | "third_party/nist-pkits/crls/NegativeSerialNumberCACRL.crl", |
| 4716 | "third_party/nist-pkits/crls/NoPoliciesCACRL.crl", |
| 4717 | "third_party/nist-pkits/crls/NoissuingDistributionPointCACRL.crl", |
| 4718 | "third_party/nist-pkits/crls/OldCRLnextUpdateCACRL.crl", |
| 4719 | "third_party/nist-pkits/crls/P12Mapping1to3CACRL.crl", |
| 4720 | "third_party/nist-pkits/crls/P12Mapping1to3subCACRL.crl", |
| 4721 | "third_party/nist-pkits/crls/P12Mapping1to3subsubCACRL.crl", |
| 4722 | "third_party/nist-pkits/crls/P1Mapping1to234CACRL.crl", |
| 4723 | "third_party/nist-pkits/crls/P1Mapping1to234subCACRL.crl", |
| 4724 | "third_party/nist-pkits/crls/P1anyPolicyMapping1to2CACRL.crl", |
| 4725 | "third_party/nist-pkits/crls/PanyPolicyMapping1to2CACRL.crl", |
| 4726 | "third_party/nist-pkits/crls/PoliciesP1234CACRL.crl", |
| 4727 | "third_party/nist-pkits/crls/PoliciesP1234subCAP123CRL.crl", |
| 4728 | "third_party/nist-pkits/crls/PoliciesP1234subsubCAP123P12CRL.crl", |
| 4729 | "third_party/nist-pkits/crls/PoliciesP123CACRL.crl", |
| 4730 | "third_party/nist-pkits/crls/PoliciesP123subCAP12CRL.crl", |
| 4731 | "third_party/nist-pkits/crls/PoliciesP123subsubCAP12P1CRL.crl", |
| 4732 | "third_party/nist-pkits/crls/PoliciesP123subsubCAP2P2CRL.crl", |
| 4733 | "third_party/nist-pkits/crls/PoliciesP123subsubsubCAP12P2P1CRL.crl", |
| 4734 | "third_party/nist-pkits/crls/PoliciesP12CACRL.crl", |
| 4735 | "third_party/nist-pkits/crls/PoliciesP12subCAP1CRL.crl", |
| 4736 | "third_party/nist-pkits/crls/PoliciesP12subsubCAP1P2CRL.crl", |
| 4737 | "third_party/nist-pkits/crls/PoliciesP2subCA2CRL.crl", |
| 4738 | "third_party/nist-pkits/crls/PoliciesP2subCACRL.crl", |
| 4739 | "third_party/nist-pkits/crls/PoliciesP3CACRL.crl", |
| 4740 | "third_party/nist-pkits/crls/RFC3280MandatoryAttributeTypesCACRL.crl", |
| 4741 | "third_party/nist-pkits/crls/RFC3280OptionalAttributeTypesCACRL.crl", |
| 4742 | "third_party/nist-pkits/crls/RevokedsubCACRL.crl", |
| 4743 | "third_party/nist-pkits/crls/RolloverfromPrintableStringtoUTF8StringCACRL.crl", |
| 4744 | "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCA2CRL.crl", |
| 4745 | "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCRL.crl", |
| 4746 | "third_party/nist-pkits/crls/TrustAnchorRootCRL.crl", |
| 4747 | "third_party/nist-pkits/crls/TwoCRLsCABadCRL.crl", |
| 4748 | "third_party/nist-pkits/crls/TwoCRLsCAGoodCRL.crl", |
| 4749 | "third_party/nist-pkits/crls/UIDCACRL.crl", |
| 4750 | "third_party/nist-pkits/crls/UTF8StringCaseInsensitiveMatchCACRL.crl", |
| 4751 | "third_party/nist-pkits/crls/UTF8StringEncodedNamesCACRL.crl", |
| 4752 | "third_party/nist-pkits/crls/UnknownCRLEntryExtensionCACRL.crl", |
| 4753 | "third_party/nist-pkits/crls/UnknownCRLExtensionCACRL.crl", |
| 4754 | "third_party/nist-pkits/crls/WrongCRLCACRL.crl", |
| 4755 | "third_party/nist-pkits/crls/anyPolicyCACRL.crl", |
| 4756 | "third_party/nist-pkits/crls/basicConstraintsCriticalcAFalseCACRL.crl", |
| 4757 | "third_party/nist-pkits/crls/basicConstraintsNotCriticalCACRL.crl", |
| 4758 | "third_party/nist-pkits/crls/basicConstraintsNotCriticalcAFalseCACRL.crl", |
| 4759 | "third_party/nist-pkits/crls/deltaCRLCA1CRL.crl", |
| 4760 | "third_party/nist-pkits/crls/deltaCRLCA1deltaCRL.crl", |
| 4761 | "third_party/nist-pkits/crls/deltaCRLCA2CRL.crl", |
| 4762 | "third_party/nist-pkits/crls/deltaCRLCA2deltaCRL.crl", |
| 4763 | "third_party/nist-pkits/crls/deltaCRLCA3CRL.crl", |
| 4764 | "third_party/nist-pkits/crls/deltaCRLCA3deltaCRL.crl", |
| 4765 | "third_party/nist-pkits/crls/deltaCRLIndicatorNoBaseCACRL.crl", |
| 4766 | "third_party/nist-pkits/crls/distributionPoint1CACRL.crl", |
| 4767 | "third_party/nist-pkits/crls/distributionPoint2CACRL.crl", |
| 4768 | "third_party/nist-pkits/crls/indirectCRLCA1CRL.crl", |
| 4769 | "third_party/nist-pkits/crls/indirectCRLCA3CRL.crl", |
| 4770 | "third_party/nist-pkits/crls/indirectCRLCA3cRLIssuerCRL.crl", |
| 4771 | "third_party/nist-pkits/crls/indirectCRLCA4cRLIssuerCRL.crl", |
| 4772 | "third_party/nist-pkits/crls/indirectCRLCA5CRL.crl", |
| 4773 | "third_party/nist-pkits/crls/inhibitAnyPolicy0CACRL.crl", |
| 4774 | "third_party/nist-pkits/crls/inhibitAnyPolicy1CACRL.crl", |
| 4775 | "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA1CRL.crl", |
| 4776 | "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA2CRL.crl", |
| 4777 | "third_party/nist-pkits/crls/inhibitAnyPolicy1subCAIAP5CRL.crl", |
| 4778 | "third_party/nist-pkits/crls/inhibitAnyPolicy1subsubCA2CRL.crl", |
| 4779 | "third_party/nist-pkits/crls/inhibitAnyPolicy5CACRL.crl", |
| 4780 | "third_party/nist-pkits/crls/inhibitAnyPolicy5subCACRL.crl", |
| 4781 | "third_party/nist-pkits/crls/inhibitAnyPolicy5subsubCACRL.crl", |
| 4782 | "third_party/nist-pkits/crls/inhibitPolicyMapping0CACRL.crl", |
| 4783 | "third_party/nist-pkits/crls/inhibitPolicyMapping0subCACRL.crl", |
| 4784 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12CACRL.crl", |
| 4785 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCACRL.crl", |
| 4786 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCAIPM5CRL.crl", |
| 4787 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCACRL.crl", |
| 4788 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCAIPM5CRL.crl", |
| 4789 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P1CACRL.crl", |
| 4790 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subCACRL.crl", |
| 4791 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subsubCACRL.crl", |
| 4792 | "third_party/nist-pkits/crls/inhibitPolicyMapping5CACRL.crl", |
| 4793 | "third_party/nist-pkits/crls/inhibitPolicyMapping5subCACRL.crl", |
| 4794 | "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubCACRL.crl", |
| 4795 | "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubsubCACRL.crl", |
| 4796 | "third_party/nist-pkits/crls/keyUsageCriticalcRLSignFalseCACRL.crl", |
| 4797 | "third_party/nist-pkits/crls/keyUsageCriticalkeyCertSignFalseCACRL.crl", |
| 4798 | "third_party/nist-pkits/crls/keyUsageNotCriticalCACRL.crl", |
| 4799 | "third_party/nist-pkits/crls/keyUsageNotCriticalcRLSignFalseCACRL.crl", |
| 4800 | "third_party/nist-pkits/crls/keyUsageNotCriticalkeyCertSignFalseCACRL.crl", |
| 4801 | "third_party/nist-pkits/crls/nameConstraintsDN1CACRL.crl", |
| 4802 | "third_party/nist-pkits/crls/nameConstraintsDN1subCA1CRL.crl", |
| 4803 | "third_party/nist-pkits/crls/nameConstraintsDN1subCA2CRL.crl", |
| 4804 | "third_party/nist-pkits/crls/nameConstraintsDN1subCA3CRL.crl", |
| 4805 | "third_party/nist-pkits/crls/nameConstraintsDN2CACRL.crl", |
| 4806 | "third_party/nist-pkits/crls/nameConstraintsDN3CACRL.crl", |
| 4807 | "third_party/nist-pkits/crls/nameConstraintsDN3subCA1CRL.crl", |
| 4808 | "third_party/nist-pkits/crls/nameConstraintsDN3subCA2CRL.crl", |
| 4809 | "third_party/nist-pkits/crls/nameConstraintsDN4CACRL.crl", |
| 4810 | "third_party/nist-pkits/crls/nameConstraintsDN5CACRL.crl", |
| 4811 | "third_party/nist-pkits/crls/nameConstraintsDNS1CACRL.crl", |
| 4812 | "third_party/nist-pkits/crls/nameConstraintsDNS2CACRL.crl", |
| 4813 | "third_party/nist-pkits/crls/nameConstraintsRFC822CA1CRL.crl", |
| 4814 | "third_party/nist-pkits/crls/nameConstraintsRFC822CA2CRL.crl", |
| 4815 | "third_party/nist-pkits/crls/nameConstraintsRFC822CA3CRL.crl", |
| 4816 | "third_party/nist-pkits/crls/nameConstraintsURI1CACRL.crl", |
| 4817 | "third_party/nist-pkits/crls/nameConstraintsURI2CACRL.crl", |
| 4818 | "third_party/nist-pkits/crls/onlyContainsAttributeCertsCACRL.crl", |
| 4819 | "third_party/nist-pkits/crls/onlyContainsCACertsCACRL.crl", |
| 4820 | "third_party/nist-pkits/crls/onlyContainsUserCertsCACRL.crl", |
| 4821 | "third_party/nist-pkits/crls/onlySomeReasonsCA1compromiseCRL.crl", |
| 4822 | "third_party/nist-pkits/crls/onlySomeReasonsCA1otherreasonsCRL.crl", |
| 4823 | "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL1.crl", |
| 4824 | "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL2.crl", |
| 4825 | "third_party/nist-pkits/crls/onlySomeReasonsCA3compromiseCRL.crl", |
| 4826 | "third_party/nist-pkits/crls/onlySomeReasonsCA3otherreasonsCRL.crl", |
| 4827 | "third_party/nist-pkits/crls/onlySomeReasonsCA4compromiseCRL.crl", |
| 4828 | "third_party/nist-pkits/crls/onlySomeReasonsCA4otherreasonsCRL.crl", |
| 4829 | "third_party/nist-pkits/crls/pathLenConstraint0CACRL.crl", |
| 4830 | "third_party/nist-pkits/crls/pathLenConstraint0subCA2CRL.crl", |
| 4831 | "third_party/nist-pkits/crls/pathLenConstraint0subCACRL.crl", |
| 4832 | "third_party/nist-pkits/crls/pathLenConstraint1CACRL.crl", |
| 4833 | "third_party/nist-pkits/crls/pathLenConstraint1subCACRL.crl", |
| 4834 | "third_party/nist-pkits/crls/pathLenConstraint6CACRL.crl", |
| 4835 | "third_party/nist-pkits/crls/pathLenConstraint6subCA0CRL.crl", |
| 4836 | "third_party/nist-pkits/crls/pathLenConstraint6subCA1CRL.crl", |
| 4837 | "third_party/nist-pkits/crls/pathLenConstraint6subCA4CRL.crl", |
| 4838 | "third_party/nist-pkits/crls/pathLenConstraint6subsubCA00CRL.crl", |
| 4839 | "third_party/nist-pkits/crls/pathLenConstraint6subsubCA11CRL.crl", |
| 4840 | "third_party/nist-pkits/crls/pathLenConstraint6subsubCA41CRL.crl", |
| 4841 | "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA11XCRL.crl", |
| 4842 | "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA41XCRL.crl", |
| 4843 | "third_party/nist-pkits/crls/pre2000CRLnextUpdateCACRL.crl", |
| 4844 | "third_party/nist-pkits/crls/requireExplicitPolicy0CACRL.crl", |
| 4845 | "third_party/nist-pkits/crls/requireExplicitPolicy0subCACRL.crl", |
| 4846 | "third_party/nist-pkits/crls/requireExplicitPolicy0subsubCACRL.crl", |
| 4847 | "third_party/nist-pkits/crls/requireExplicitPolicy0subsubsubCACRL.crl", |
| 4848 | "third_party/nist-pkits/crls/requireExplicitPolicy10CACRL.crl", |
| 4849 | "third_party/nist-pkits/crls/requireExplicitPolicy10subCACRL.crl", |
| 4850 | "third_party/nist-pkits/crls/requireExplicitPolicy10subsubCACRL.crl", |
| 4851 | "third_party/nist-pkits/crls/requireExplicitPolicy10subsubsubCACRL.crl", |
| 4852 | "third_party/nist-pkits/crls/requireExplicitPolicy2CACRL.crl", |
| 4853 | "third_party/nist-pkits/crls/requireExplicitPolicy2subCACRL.crl", |
| 4854 | "third_party/nist-pkits/crls/requireExplicitPolicy4CACRL.crl", |
| 4855 | "third_party/nist-pkits/crls/requireExplicitPolicy4subCACRL.crl", |
| 4856 | "third_party/nist-pkits/crls/requireExplicitPolicy4subsubCACRL.crl", |
| 4857 | "third_party/nist-pkits/crls/requireExplicitPolicy4subsubsubCACRL.crl", |
| 4858 | "third_party/nist-pkits/crls/requireExplicitPolicy5CACRL.crl", |
| 4859 | "third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl", |
| 4860 | "third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl", |
| 4861 | "third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl", |
| 4862 | "third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl", |
| 4863 | "third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl", |
| 4864 | "third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl", |
| 4865 | "third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.crl", |
| 4866 | ] |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 4867 | outputs = [ |
| 4868 | "{{bundle_resources_dir}}/" + |
| 4869 | "{{source_root_relative_dir}}/{{source_file_part}}", |
| 4870 | ] |
| 4871 | } |
| 4872 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4873 | test("net_unittests") { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4874 | sources = [ |
| 4875 | "android/cellular_signal_strength_unittest.cc", |
| 4876 | "android/dummy_spnego_authenticator.cc", |
| 4877 | "android/dummy_spnego_authenticator.h", |
| 4878 | "android/http_auth_negotiate_android_unittest.cc", |
| 4879 | "android/network_change_notifier_android_unittest.cc", |
| 4880 | "android/network_library_unittest.cc", |
| 4881 | "android/traffic_stats_unittest.cc", |
| 4882 | "base/address_family_unittest.cc", |
| 4883 | "base/address_list_unittest.cc", |
| 4884 | "base/address_tracker_linux_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4885 | "base/backoff_entry_serializer_unittest.cc", |
| 4886 | "base/backoff_entry_unittest.cc", |
| 4887 | "base/chunked_upload_data_stream_unittest.cc", |
| 4888 | "base/data_url_unittest.cc", |
Charles 'Buck' Krasic | ed43ded | 2018-03-23 18:48:12 | [diff] [blame] | 4889 | "base/datagram_buffer_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4890 | "base/directory_lister_unittest.cc", |
| 4891 | "base/directory_listing_unittest.cc", |
| 4892 | "base/elements_upload_data_stream_unittest.cc", |
| 4893 | "base/escape_unittest.cc", |
| 4894 | "base/expiring_cache_unittest.cc", |
| 4895 | "base/file_stream_unittest.cc", |
| 4896 | "base/filename_util_unittest.cc", |
Bence Béky | d5c16edf | 2017-08-04 17:32:30 | [diff] [blame] | 4897 | "base/hex_utils_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4898 | "base/host_mapping_rules_unittest.cc", |
| 4899 | "base/host_port_pair_unittest.cc", |
fayang | baec8ff5 | 2017-01-28 03:26:12 | [diff] [blame] | 4900 | "base/interval_set_test.cc", |
| 4901 | "base/interval_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4902 | "base/ip_address_unittest.cc", |
| 4903 | "base/ip_endpoint_unittest.cc", |
| 4904 | "base/ip_pattern_unittest.cc", |
| 4905 | "base/layered_network_delegate_unittest.cc", |
| 4906 | "base/lookup_string_in_fixed_set_unittest.cc", |
| 4907 | "base/mime_sniffer_unittest.cc", |
| 4908 | "base/mime_util_unittest.cc", |
Zentaro Kavanagh | a02f1da | 2017-09-26 23:56:06 | [diff] [blame] | 4909 | "base/net_string_util_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4910 | "base/network_activity_monitor_unittest.cc", |
| 4911 | "base/network_change_notifier_unittest.cc", |
| 4912 | "base/network_change_notifier_win_unittest.cc", |
Sergey Ulanov | 5bb07d3 | 2017-07-12 04:14:54 | [diff] [blame] | 4913 | "base/network_interfaces_linux_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4914 | "base/network_interfaces_unittest.cc", |
Sergey Ulanov | 5bb07d3 | 2017-07-12 04:14:54 | [diff] [blame] | 4915 | "base/network_interfaces_win_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4916 | "base/parse_number_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4917 | "base/port_util_unittest.cc", |
| 4918 | "base/prioritized_dispatcher_unittest.cc", |
Josh Karlin | dd9a5d14 | 2018-06-06 00:35:48 | [diff] [blame] | 4919 | "base/prioritized_task_runner_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4920 | "base/priority_queue_unittest.cc", |
| 4921 | "base/registry_controlled_domains/registry_controlled_domain_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4922 | "base/static_cookie_policy_unittest.cc", |
| 4923 | "base/test_completion_callback_unittest.cc", |
| 4924 | "base/test_proxy_delegate.cc", |
| 4925 | "base/test_proxy_delegate.h", |
| 4926 | "base/upload_bytes_element_reader_unittest.cc", |
| 4927 | "base/upload_file_element_reader_unittest.cc", |
| 4928 | "base/url_util_unittest.cc", |
| 4929 | "cert/caching_cert_verifier_unittest.cc", |
| 4930 | "cert/cert_verifier_unittest.cc", |
estark | d91e0b2 | 2017-01-31 01:10:28 | [diff] [blame] | 4931 | "cert/cert_verify_proc_android_unittest.cc", |
Eugene But | d4d01fd | 2018-04-14 02:38:29 | [diff] [blame] | 4932 | "cert/cert_verify_proc_ios_unittest.cc", |
eroman | ce65aff | 2017-02-04 00:05:32 | [diff] [blame] | 4933 | "cert/cert_verify_proc_mac_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4934 | "cert/cert_verify_proc_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4935 | "cert/crl_set_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4936 | "cert/ct_log_response_parser_unittest.cc", |
| 4937 | "cert/ct_log_verifier_unittest.cc", |
| 4938 | "cert/ct_objects_extractor_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4939 | "cert/ct_serialization_unittest.cc", |
| 4940 | "cert/ev_root_ca_metadata_unittest.cc", |
| 4941 | "cert/internal/cert_issuer_source_aia_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4942 | "cert/internal/cert_issuer_source_static_unittest.cc", |
| 4943 | "cert/internal/cert_issuer_source_sync_unittest.h", |
| 4944 | "cert/internal/certificate_policies_unittest.cc", |
| 4945 | "cert/internal/extended_key_usage_unittest.cc", |
Matt Mueller | 9e3ad303 | 2017-09-14 19:29:31 | [diff] [blame] | 4946 | "cert/internal/general_names_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4947 | "cert/internal/name_constraints_unittest.cc", |
eroman | c95383ac | 2017-05-26 19:37:30 | [diff] [blame] | 4948 | "cert/internal/nist_pkits_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4949 | "cert/internal/nist_pkits_unittest.h", |
Eric Roman | a2f6f55d | 2017-09-07 23:34:57 | [diff] [blame] | 4950 | "cert/internal/ocsp_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4951 | "cert/internal/parse_certificate_unittest.cc", |
| 4952 | "cert/internal/parse_name_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4953 | "cert/internal/parsed_certificate_unittest.cc", |
| 4954 | "cert/internal/path_builder_pkits_unittest.cc", |
| 4955 | "cert/internal/path_builder_unittest.cc", |
| 4956 | "cert/internal/path_builder_verify_certificate_chain_unittest.cc", |
Eric Roman | cc56d16f | 2017-10-11 23:04:26 | [diff] [blame] | 4957 | "cert/internal/revocation_checker_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4958 | "cert/internal/signature_algorithm_unittest.cc", |
Eric Roman | 5431d70 | 2017-07-26 01:58:18 | [diff] [blame] | 4959 | "cert/internal/simple_path_builder_delegate_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4960 | "cert/internal/test_helpers.cc", |
| 4961 | "cert/internal/test_helpers.h", |
| 4962 | "cert/internal/trust_store_collection_unittest.cc", |
mattm | ea4ed823 | 2017-02-28 23:13:23 | [diff] [blame] | 4963 | "cert/internal/trust_store_mac_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4964 | "cert/internal/trust_store_nss_unittest.cc", |
| 4965 | "cert/internal/verify_certificate_chain_pkits_unittest.cc", |
| 4966 | "cert/internal/verify_certificate_chain_typed_unittest.h", |
| 4967 | "cert/internal/verify_certificate_chain_unittest.cc", |
| 4968 | "cert/internal/verify_name_match_unittest.cc", |
| 4969 | "cert/internal/verify_signed_data_unittest.cc", |
| 4970 | "cert/jwk_serializer_unittest.cc", |
Ryan Sleevi | 19a7bde | 2017-11-22 06:51:39 | [diff] [blame] | 4971 | "cert/known_roots_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4972 | "cert/merkle_audit_proof_unittest.cc", |
| 4973 | "cert/merkle_tree_leaf_unittest.cc", |
| 4974 | "cert/multi_log_ct_verifier_unittest.cc", |
| 4975 | "cert/multi_threaded_cert_verifier_unittest.cc", |
| 4976 | "cert/nss_cert_database_chromeos_unittest.cc", |
| 4977 | "cert/nss_cert_database_unittest.cc", |
| 4978 | "cert/nss_profile_filter_chromeos_unittest.cc", |
| 4979 | "cert/pem_tokenizer_unittest.cc", |
| 4980 | "cert/signed_certificate_timestamp_unittest.cc", |
Emily Stark | d29cdae | 2017-09-16 01:59:34 | [diff] [blame] | 4981 | "cert/symantec_certs_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4982 | "cert/test_root_certs_unittest.cc", |
| 4983 | "cert/x509_cert_types_unittest.cc", |
| 4984 | "cert/x509_certificate_unittest.cc", |
mattm | 1a07e63 | 2017-05-16 05:55:50 | [diff] [blame] | 4985 | "cert/x509_util_ios_and_mac_unittest.cc", |
Matt Mueller | 10684c9 | 2017-08-09 07:24:09 | [diff] [blame] | 4986 | "cert/x509_util_nss_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4987 | "cert/x509_util_unittest.cc", |
| 4988 | "cert_net/cert_net_fetcher_impl_unittest.cc", |
| 4989 | "cert_net/nss_ocsp_unittest.cc", |
| 4990 | "cookies/canonical_cookie_unittest.cc", |
| 4991 | "cookies/cookie_constants_unittest.cc", |
Chris Mumford | d8ed9f8 | 2018-05-01 15:43:13 | [diff] [blame] | 4992 | "cookies/cookie_deletion_info_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4993 | "cookies/cookie_monster_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4994 | "cookies/cookie_util_unittest.cc", |
| 4995 | "cookies/parsed_cookie_unittest.cc", |
| 4996 | "der/encode_values_unittest.cc", |
| 4997 | "der/input_unittest.cc", |
| 4998 | "der/parse_values_unittest.cc", |
| 4999 | "der/parser_unittest.cc", |
Maks Orlovich | 036fd1f | 2017-08-07 17:51:11 | [diff] [blame] | 5000 | "disk_cache/backend_cleanup_tracker_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5001 | "disk_cache/backend_unittest.cc", |
| 5002 | "disk_cache/blockfile/addr_unittest.cc", |
| 5003 | "disk_cache/blockfile/bitmap_unittest.cc", |
| 5004 | "disk_cache/blockfile/block_files_unittest.cc", |
| 5005 | "disk_cache/blockfile/mapped_file_unittest.cc", |
| 5006 | "disk_cache/blockfile/stats_unittest.cc", |
| 5007 | "disk_cache/blockfile/storage_block_unittest.cc", |
| 5008 | "disk_cache/cache_util_unittest.cc", |
| 5009 | "disk_cache/entry_unittest.cc", |
Maks Orlovich | f378b3a | 2017-10-31 16:27:30 | [diff] [blame] | 5010 | "disk_cache/simple/simple_file_tracker_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5011 | "disk_cache/simple/simple_index_file_unittest.cc", |
| 5012 | "disk_cache/simple/simple_index_unittest.cc", |
| 5013 | "disk_cache/simple/simple_test_util.cc", |
| 5014 | "disk_cache/simple/simple_test_util.h", |
| 5015 | "disk_cache/simple/simple_util_unittest.cc", |
| 5016 | "disk_cache/simple/simple_version_upgrade_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5017 | "extras/sqlite/sqlite_persistent_cookie_store_unittest.cc", |
| 5018 | "filter/brotli_source_stream_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5019 | "filter/filter_source_stream_unittest.cc", |
| 5020 | "filter/gzip_source_stream_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5021 | "ftp/ftp_auth_cache_unittest.cc", |
| 5022 | "ftp/ftp_ctrl_response_buffer_unittest.cc", |
| 5023 | "ftp/ftp_directory_listing_parser_ls_unittest.cc", |
| 5024 | "ftp/ftp_directory_listing_parser_unittest.cc", |
| 5025 | "ftp/ftp_directory_listing_parser_unittest.h", |
| 5026 | "ftp/ftp_directory_listing_parser_vms_unittest.cc", |
| 5027 | "ftp/ftp_directory_listing_parser_windows_unittest.cc", |
| 5028 | "ftp/ftp_network_transaction_unittest.cc", |
| 5029 | "ftp/ftp_util_unittest.cc", |
| 5030 | "http/bidirectional_stream_unittest.cc", |
wangyix | 64ccc57c | 2017-06-01 23:14:16 | [diff] [blame] | 5031 | "http/broken_alternative_services_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5032 | "http/http_auth_cache_unittest.cc", |
| 5033 | "http/http_auth_challenge_tokenizer_unittest.cc", |
| 5034 | "http/http_auth_controller_unittest.cc", |
| 5035 | "http/http_auth_filter_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5036 | "http/http_auth_handler_basic_unittest.cc", |
| 5037 | "http/http_auth_handler_digest_unittest.cc", |
| 5038 | "http/http_auth_handler_factory_unittest.cc", |
| 5039 | "http/http_auth_handler_mock.cc", |
| 5040 | "http/http_auth_handler_mock.h", |
| 5041 | "http/http_auth_handler_negotiate_unittest.cc", |
zentaro | b89acda4 | 2017-07-14 01:28:57 | [diff] [blame] | 5042 | "http/http_auth_handler_ntlm_portable_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5043 | "http/http_auth_handler_unittest.cc", |
| 5044 | "http/http_auth_multi_round_parse_unittest.cc", |
| 5045 | "http/http_auth_preferences_unittest.cc", |
| 5046 | "http/http_auth_sspi_win_unittest.cc", |
| 5047 | "http/http_auth_unittest.cc", |
| 5048 | "http/http_basic_state_unittest.cc", |
| 5049 | "http/http_byte_range_unittest.cc", |
| 5050 | "http/http_cache_lookup_manager_unittest.cc", |
| 5051 | "http/http_cache_unittest.cc", |
shivanisha | c6582e1 | 2017-07-14 22:18:19 | [diff] [blame] | 5052 | "http/http_cache_writers_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5053 | "http/http_chunked_decoder_unittest.cc", |
| 5054 | "http/http_content_disposition_unittest.cc", |
| 5055 | "http/http_log_util_unittest.cc", |
| 5056 | "http/http_network_layer_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5057 | "http/http_network_transaction_unittest.cc", |
Paul Jensen | 0f49dec | 2017-12-12 23:39:58 | [diff] [blame] | 5058 | "http/http_proxy_client_socket_unittest.cc", |
Matt Menke | 47a8ec13 | 2019-02-09 00:48:39 | [diff] [blame] | 5059 | "http/http_proxy_connect_job_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5060 | "http/http_request_headers_unittest.cc", |
| 5061 | "http/http_response_body_drainer_unittest.cc", |
| 5062 | "http/http_response_headers_unittest.cc", |
| 5063 | "http/http_response_info_unittest.cc", |
| 5064 | "http/http_security_headers_unittest.cc", |
| 5065 | "http/http_server_properties_impl_unittest.cc", |
| 5066 | "http/http_server_properties_manager_unittest.cc", |
| 5067 | "http/http_status_code_unittest.cc", |
Xida Chen | 9bfe0b6 | 2018-04-24 19:52:21 | [diff] [blame] | 5068 | "http/http_stream_factory_job_controller_unittest.cc", |
| 5069 | "http/http_stream_factory_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5070 | "http/http_stream_parser_unittest.cc", |
Bence Béky | 6b44abf | 2018-04-11 10:32:51 | [diff] [blame] | 5071 | "http/http_stream_request_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5072 | "http/http_util_unittest.cc", |
| 5073 | "http/http_vary_data_unittest.cc", |
| 5074 | "http/mock_allow_http_auth_preferences.cc", |
| 5075 | "http/mock_allow_http_auth_preferences.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5076 | "http/mock_sspi_library_win.cc", |
| 5077 | "http/mock_sspi_library_win.h", |
| 5078 | "http/transport_security_persister_unittest.cc", |
| 5079 | "http/transport_security_state_unittest.cc", |
| 5080 | "http/url_security_manager_unittest.cc", |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 5081 | "http2/platform/impl/http2_test_helpers_impl.cc", |
| 5082 | "http2/platform/impl/http2_test_helpers_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5083 | "log/file_net_log_observer_unittest.cc", |
| 5084 | "log/net_log_capture_mode_unittest.cc", |
| 5085 | "log/net_log_unittest.cc", |
| 5086 | "log/net_log_util_unittest.cc", |
| 5087 | "log/trace_net_log_observer_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5088 | "nqe/effective_connection_type_unittest.cc", |
tbansal | f38471f | 2017-03-04 01:07:04 | [diff] [blame] | 5089 | "nqe/event_creator_unittest.cc", |
Tarun Bansal | cdfa34b | 2017-11-23 05:11:17 | [diff] [blame] | 5090 | "nqe/network_id_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5091 | "nqe/network_qualities_prefs_manager_unittest.cc", |
tbansal | 35bdb0b | 2017-05-04 16:23:33 | [diff] [blame] | 5092 | "nqe/network_quality_estimator_params_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5093 | "nqe/network_quality_estimator_unittest.cc", |
tbansal | 82edab4 | 2017-06-19 05:55:25 | [diff] [blame] | 5094 | "nqe/network_quality_estimator_util_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5095 | "nqe/network_quality_store_unittest.cc", |
| 5096 | "nqe/observation_buffer_unittest.cc", |
tbansal | 180587c | 2017-02-16 15:13:23 | [diff] [blame] | 5097 | "nqe/socket_watcher_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5098 | "nqe/throughput_analyzer_unittest.cc", |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 5099 | "ntlm/ntlm_buffer_reader_unittest.cc", |
| 5100 | "ntlm/ntlm_buffer_writer_unittest.cc", |
Zentaro Kavanagh | dd55661 | 2017-08-03 20:27:04 | [diff] [blame] | 5101 | "ntlm/ntlm_client_unittest.cc", |
zentaro | b89acda4 | 2017-07-14 01:28:57 | [diff] [blame] | 5102 | "ntlm/ntlm_test_data.h", |
| 5103 | "ntlm/ntlm_unittest.cc", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 5104 | "proxy_resolution/dhcp_pac_file_adapter_fetcher_win_unittest.cc", |
| 5105 | "proxy_resolution/dhcp_pac_file_fetcher_factory_unittest.cc", |
| 5106 | "proxy_resolution/dhcp_pac_file_fetcher_win_unittest.cc", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 5107 | "proxy_resolution/multi_threaded_proxy_resolver_unittest.cc", |
| 5108 | "proxy_resolution/network_delegate_error_observer_unittest.cc", |
| 5109 | "proxy_resolution/pac_file_decider_unittest.cc", |
| 5110 | "proxy_resolution/pac_file_fetcher_impl_unittest.cc", |
Eric Roman | 7193c9f | 2018-11-22 01:39:58 | [diff] [blame] | 5111 | "proxy_resolution/pac_library_unittest.cc", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 5112 | "proxy_resolution/proxy_bypass_rules_unittest.cc", |
| 5113 | "proxy_resolution/proxy_config_service_android_unittest.cc", |
| 5114 | "proxy_resolution/proxy_config_service_linux_unittest.cc", |
| 5115 | "proxy_resolution/proxy_config_service_win_unittest.cc", |
| 5116 | "proxy_resolution/proxy_config_unittest.cc", |
| 5117 | "proxy_resolution/proxy_info_unittest.cc", |
| 5118 | "proxy_resolution/proxy_list_unittest.cc", |
Lily Houghton | ffe89daa0 | 2018-03-09 18:30:03 | [diff] [blame] | 5119 | "proxy_resolution/proxy_resolution_service_unittest.cc", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 5120 | "proxy_resolution/proxy_resolver_v8_tracing_unittest.cc", |
| 5121 | "proxy_resolution/proxy_resolver_v8_tracing_wrapper_unittest.cc", |
| 5122 | "proxy_resolution/proxy_resolver_v8_unittest.cc", |
| 5123 | "proxy_resolution/proxy_server_unittest.cc", |
Ryan Hamilton | a3ee93a7 | 2018-08-01 22:03:08 | [diff] [blame] | 5124 | "quic/bidirectional_stream_quic_impl_unittest.cc", |
| 5125 | "quic/crypto/proof_test_chromium.cc", |
| 5126 | "quic/crypto/proof_verifier_chromium_test.cc", |
Ryan Hamilton | a3ee93a7 | 2018-08-01 22:03:08 | [diff] [blame] | 5127 | "quic/mock_quic_data.cc", |
| 5128 | "quic/mock_quic_data.h", |
| 5129 | "quic/network_connection_unittest.cc", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 5130 | "quic/platform/impl/quic_chromium_clock_test.cc", |
| 5131 | "quic/platform/impl/quic_uint128_impl_unittest.cc", |
Ryan Hamilton | a3ee93a7 | 2018-08-01 22:03:08 | [diff] [blame] | 5132 | "quic/properties_based_quic_server_info_test.cc", |
| 5133 | "quic/quic_address_mismatch_test.cc", |
| 5134 | "quic/quic_chromium_alarm_factory_test.cc", |
| 5135 | "quic/quic_chromium_client_session_peer.cc", |
| 5136 | "quic/quic_chromium_client_session_peer.h", |
| 5137 | "quic/quic_chromium_client_session_test.cc", |
| 5138 | "quic/quic_chromium_client_stream_test.cc", |
| 5139 | "quic/quic_chromium_connection_helper_test.cc", |
| 5140 | "quic/quic_clock_skew_detector_test.cc", |
| 5141 | "quic/quic_connectivity_probing_manager_test.cc", |
| 5142 | "quic/quic_end_to_end_unittest.cc", |
| 5143 | "quic/quic_http_stream_test.cc", |
| 5144 | "quic/quic_http_utils_test.cc", |
| 5145 | "quic/quic_network_transaction_unittest.cc", |
| 5146 | "quic/quic_proxy_client_socket_unittest.cc", |
| 5147 | "quic/quic_stream_factory_peer.cc", |
| 5148 | "quic/quic_stream_factory_peer.h", |
| 5149 | "quic/quic_stream_factory_test.cc", |
| 5150 | "quic/quic_test_packet_maker.cc", |
| 5151 | "quic/quic_test_packet_maker.h", |
| 5152 | "quic/quic_utils_chromium_test.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 5153 | "socket/client_socket_pool_base_unittest.cc", |
Matt Menke | 073441659 | 2019-03-19 16:34:00 | [diff] [blame] | 5154 | "socket/client_socket_pool_unittest.cc", |
Matt Menke | 3abc57c | 2019-01-10 21:48:42 | [diff] [blame] | 5155 | "socket/connect_job_test_util.cc", |
| 5156 | "socket/connect_job_test_util.h", |
Matt Menke | 977e61b | 2019-01-10 19:36:02 | [diff] [blame] | 5157 | "socket/connect_job_unittest.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 5158 | "socket/mock_client_socket_pool_manager.cc", |
| 5159 | "socket/mock_client_socket_pool_manager.h", |
| 5160 | "socket/sequenced_socket_data_unittest.cc", |
| 5161 | "socket/socket_bio_adapter_unittest.cc", |
| 5162 | "socket/socket_tag_unittest.cc", |
| 5163 | "socket/socks5_client_socket_unittest.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 5164 | "socket/socks_client_socket_unittest.cc", |
Matt Menke | f368bedf | 2019-01-16 23:08:57 | [diff] [blame] | 5165 | "socket/socks_connect_job_unittest.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 5166 | "socket/ssl_client_socket_unittest.cc", |
Matt Menke | 7b505107 | 2019-01-27 21:22:49 | [diff] [blame] | 5167 | "socket/ssl_connect_job_unittest.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 5168 | "socket/ssl_server_socket_unittest.cc", |
| 5169 | "socket/tcp_client_socket_unittest.cc", |
| 5170 | "socket/tcp_server_socket_unittest.cc", |
| 5171 | "socket/tcp_socket_unittest.cc", |
| 5172 | "socket/transport_client_socket_pool_test_util.cc", |
| 5173 | "socket/transport_client_socket_pool_test_util.h", |
| 5174 | "socket/transport_client_socket_pool_unittest.cc", |
| 5175 | "socket/transport_client_socket_unittest.cc", |
Matt Menke | 3abc57c | 2019-01-10 21:48:42 | [diff] [blame] | 5176 | "socket/transport_connect_job_unittest.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 5177 | "socket/udp_socket_unittest.cc", |
| 5178 | "socket/websocket_endpoint_lock_manager_unittest.cc", |
| 5179 | "socket/websocket_transport_client_socket_pool_unittest.cc", |
| 5180 | "spdy/bidirectional_stream_spdy_impl_unittest.cc", |
| 5181 | "spdy/buffered_spdy_framer_unittest.cc", |
| 5182 | "spdy/fuzzing/hpack_fuzz_util_test.cc", |
| 5183 | "spdy/header_coalescer_test.cc", |
| 5184 | "spdy/http2_priority_dependencies_unittest.cc", |
| 5185 | "spdy/http2_push_promise_index_test.cc", |
Victor Vasiliev | 27cc771 | 2019-01-24 11:50:14 | [diff] [blame] | 5186 | "spdy/platform/impl/spdy_test_helpers_impl.h", |
| 5187 | "spdy/platform/impl/spdy_unsafe_arena_impl_test.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 5188 | "spdy/spdy_buffer_unittest.cc", |
| 5189 | "spdy/spdy_http_stream_unittest.cc", |
| 5190 | "spdy/spdy_http_utils_unittest.cc", |
| 5191 | "spdy/spdy_log_util_unittest.cc", |
| 5192 | "spdy/spdy_network_transaction_unittest.cc", |
| 5193 | "spdy/spdy_proxy_client_socket_unittest.cc", |
| 5194 | "spdy/spdy_read_queue_unittest.cc", |
| 5195 | "spdy/spdy_session_pool_unittest.cc", |
| 5196 | "spdy/spdy_session_test_util.cc", |
| 5197 | "spdy/spdy_session_test_util.h", |
| 5198 | "spdy/spdy_session_unittest.cc", |
| 5199 | "spdy/spdy_stream_test_util.cc", |
| 5200 | "spdy/spdy_stream_test_util.h", |
| 5201 | "spdy/spdy_stream_unittest.cc", |
| 5202 | "spdy/spdy_write_queue_unittest.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 5203 | "ssl/client_cert_identity_unittest.cc", |
| 5204 | "ssl/client_cert_store_mac_unittest.cc", |
| 5205 | "ssl/client_cert_store_nss_unittest.cc", |
| 5206 | "ssl/client_cert_store_unittest-inl.h", |
| 5207 | "ssl/client_cert_store_win_unittest.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 5208 | "ssl/ssl_cipher_suite_names_unittest.cc", |
| 5209 | "ssl/ssl_client_auth_cache_unittest.cc", |
| 5210 | "ssl/ssl_client_session_cache_unittest.cc", |
| 5211 | "ssl/ssl_config_service_unittest.cc", |
| 5212 | "ssl/ssl_config_unittest.cc", |
| 5213 | "ssl/ssl_connection_status_flags_unittest.cc", |
| 5214 | "ssl/ssl_platform_key_android_unittest.cc", |
| 5215 | "ssl/ssl_platform_key_mac_unittest.cc", |
| 5216 | "ssl/ssl_platform_key_nss_unittest.cc", |
| 5217 | "ssl/ssl_platform_key_util_unittest.cc", |
| 5218 | "ssl/ssl_platform_key_win_unittest.cc", |
| 5219 | "test/embedded_test_server/embedded_test_server_unittest.cc", |
| 5220 | "test/embedded_test_server/http_request_unittest.cc", |
| 5221 | "test/embedded_test_server/http_response_unittest.cc", |
| 5222 | "test/run_all_unittests.cc", |
| 5223 | "test/tcp_socket_proxy_unittest.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 5224 | "third_party/nist-pkits/pkits_testcases-inl.h", |
Dan Zhang | b4d098e3 | 2019-05-03 15:29:48 | [diff] [blame] | 5225 | "third_party/quiche/src/common/simple_linked_hash_map_test.cc", |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 5226 | "third_party/quiche/src/http2/decoder/decode_buffer_test.cc", |
| 5227 | "third_party/quiche/src/http2/decoder/decode_http2_structures_test.cc", |
| 5228 | "third_party/quiche/src/http2/decoder/frame_decoder_state_test_util.cc", |
| 5229 | "third_party/quiche/src/http2/decoder/frame_decoder_state_test_util.h", |
| 5230 | "third_party/quiche/src/http2/decoder/http2_frame_decoder_listener_test_util.cc", |
| 5231 | "third_party/quiche/src/http2/decoder/http2_frame_decoder_listener_test_util.h", |
| 5232 | "third_party/quiche/src/http2/decoder/http2_frame_decoder_test.cc", |
| 5233 | "third_party/quiche/src/http2/decoder/http2_structure_decoder_test.cc", |
| 5234 | "third_party/quiche/src/http2/decoder/http2_structure_decoder_test_util.cc", |
| 5235 | "third_party/quiche/src/http2/decoder/http2_structure_decoder_test_util.h", |
| 5236 | "third_party/quiche/src/http2/decoder/payload_decoders/altsvc_payload_decoder_test.cc", |
| 5237 | "third_party/quiche/src/http2/decoder/payload_decoders/continuation_payload_decoder_test.cc", |
| 5238 | "third_party/quiche/src/http2/decoder/payload_decoders/data_payload_decoder_test.cc", |
| 5239 | "third_party/quiche/src/http2/decoder/payload_decoders/goaway_payload_decoder_test.cc", |
| 5240 | "third_party/quiche/src/http2/decoder/payload_decoders/headers_payload_decoder_test.cc", |
| 5241 | "third_party/quiche/src/http2/decoder/payload_decoders/payload_decoder_base_test_util.cc", |
| 5242 | "third_party/quiche/src/http2/decoder/payload_decoders/payload_decoder_base_test_util.h", |
| 5243 | "third_party/quiche/src/http2/decoder/payload_decoders/ping_payload_decoder_test.cc", |
| 5244 | "third_party/quiche/src/http2/decoder/payload_decoders/priority_payload_decoder_test.cc", |
| 5245 | "third_party/quiche/src/http2/decoder/payload_decoders/push_promise_payload_decoder_test.cc", |
| 5246 | "third_party/quiche/src/http2/decoder/payload_decoders/rst_stream_payload_decoder_test.cc", |
| 5247 | "third_party/quiche/src/http2/decoder/payload_decoders/settings_payload_decoder_test.cc", |
| 5248 | "third_party/quiche/src/http2/decoder/payload_decoders/unknown_payload_decoder_test.cc", |
| 5249 | "third_party/quiche/src/http2/decoder/payload_decoders/window_update_payload_decoder_test.cc", |
| 5250 | "third_party/quiche/src/http2/hpack/decoder/hpack_block_collector.cc", |
| 5251 | "third_party/quiche/src/http2/hpack/decoder/hpack_block_collector.h", |
| 5252 | "third_party/quiche/src/http2/hpack/decoder/hpack_block_decoder_test.cc", |
| 5253 | "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_state_test.cc", |
| 5254 | "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_string_buffer_test.cc", |
| 5255 | "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_tables_test.cc", |
| 5256 | "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_test.cc", |
| 5257 | "third_party/quiche/src/http2/hpack/decoder/hpack_entry_collector.cc", |
| 5258 | "third_party/quiche/src/http2/hpack/decoder/hpack_entry_collector.h", |
| 5259 | "third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder_test.cc", |
| 5260 | "third_party/quiche/src/http2/hpack/decoder/hpack_entry_type_decoder_test.cc", |
| 5261 | "third_party/quiche/src/http2/hpack/decoder/hpack_string_collector.cc", |
| 5262 | "third_party/quiche/src/http2/hpack/decoder/hpack_string_collector.h", |
| 5263 | "third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder_test.cc", |
| 5264 | "third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_buffer_test.cc", |
| 5265 | "third_party/quiche/src/http2/hpack/hpack_string_test.cc", |
| 5266 | "third_party/quiche/src/http2/hpack/http2_hpack_constants_test.cc", |
| 5267 | "third_party/quiche/src/http2/hpack/huffman/hpack_huffman_decoder_test.cc", |
| 5268 | "third_party/quiche/src/http2/hpack/huffman/hpack_huffman_encoder_test.cc", |
| 5269 | "third_party/quiche/src/http2/hpack/huffman/hpack_huffman_transcoder_test.cc", |
| 5270 | "third_party/quiche/src/http2/hpack/tools/hpack_block_builder.cc", |
| 5271 | "third_party/quiche/src/http2/hpack/tools/hpack_block_builder.h", |
| 5272 | "third_party/quiche/src/http2/hpack/tools/hpack_block_builder_test.cc", |
| 5273 | "third_party/quiche/src/http2/hpack/tools/hpack_example.cc", |
| 5274 | "third_party/quiche/src/http2/hpack/tools/hpack_example.h", |
| 5275 | "third_party/quiche/src/http2/hpack/varint/hpack_varint_decoder_test.cc", |
| 5276 | "third_party/quiche/src/http2/hpack/varint/hpack_varint_encoder_test.cc", |
| 5277 | "third_party/quiche/src/http2/hpack/varint/hpack_varint_round_trip_test.cc", |
| 5278 | "third_party/quiche/src/http2/http2_constants_test.cc", |
| 5279 | "third_party/quiche/src/http2/http2_constants_test_util.cc", |
| 5280 | "third_party/quiche/src/http2/http2_constants_test_util.h", |
| 5281 | "third_party/quiche/src/http2/http2_structures_test.cc", |
| 5282 | "third_party/quiche/src/http2/http2_structures_test_util.cc", |
| 5283 | "third_party/quiche/src/http2/http2_structures_test_util.h", |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 5284 | "third_party/quiche/src/http2/platform/api/http2_string_utils_test.cc", |
| 5285 | "third_party/quiche/src/http2/platform/api/http2_test_helpers.h", |
| 5286 | "third_party/quiche/src/http2/test_tools/frame_parts.cc", |
| 5287 | "third_party/quiche/src/http2/test_tools/frame_parts.h", |
| 5288 | "third_party/quiche/src/http2/test_tools/frame_parts_collector.cc", |
| 5289 | "third_party/quiche/src/http2/test_tools/frame_parts_collector.h", |
| 5290 | "third_party/quiche/src/http2/test_tools/frame_parts_collector_listener.cc", |
| 5291 | "third_party/quiche/src/http2/test_tools/frame_parts_collector_listener.h", |
| 5292 | "third_party/quiche/src/http2/test_tools/http2_random.cc", |
| 5293 | "third_party/quiche/src/http2/test_tools/http2_random.h", |
| 5294 | "third_party/quiche/src/http2/test_tools/http2_random_test.cc", |
| 5295 | "third_party/quiche/src/http2/tools/http2_frame_builder.cc", |
| 5296 | "third_party/quiche/src/http2/tools/http2_frame_builder.h", |
| 5297 | "third_party/quiche/src/http2/tools/random_decoder_test.cc", |
| 5298 | "third_party/quiche/src/http2/tools/random_decoder_test.h", |
| 5299 | "third_party/quiche/src/http2/tools/random_util.cc", |
| 5300 | "third_party/quiche/src/http2/tools/random_util.h", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 5301 | "third_party/quiche/src/quic/core/congestion_control/bandwidth_sampler_test.cc", |
| 5302 | "third_party/quiche/src/quic/core/congestion_control/bbr_sender_test.cc", |
| 5303 | "third_party/quiche/src/quic/core/congestion_control/cubic_bytes_test.cc", |
| 5304 | "third_party/quiche/src/quic/core/congestion_control/general_loss_algorithm_test.cc", |
| 5305 | "third_party/quiche/src/quic/core/congestion_control/hybrid_slow_start_test.cc", |
| 5306 | "third_party/quiche/src/quic/core/congestion_control/pacing_sender_test.cc", |
| 5307 | "third_party/quiche/src/quic/core/congestion_control/prr_sender_test.cc", |
| 5308 | "third_party/quiche/src/quic/core/congestion_control/rtt_stats_test.cc", |
| 5309 | "third_party/quiche/src/quic/core/congestion_control/send_algorithm_test.cc", |
Ryan Hamilton | d6cdacef | 2019-05-01 19:19:05 | [diff] [blame] | 5310 | "third_party/quiche/src/quic/core/congestion_control/tcp_cubic_sender_bytes_test.cc", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 5311 | "third_party/quiche/src/quic/core/congestion_control/uber_loss_algorithm_test.cc", |
| 5312 | "third_party/quiche/src/quic/core/congestion_control/windowed_filter_test.cc", |
| 5313 | "third_party/quiche/src/quic/core/crypto/aes_128_gcm_12_decrypter_test.cc", |
| 5314 | "third_party/quiche/src/quic/core/crypto/aes_128_gcm_12_encrypter_test.cc", |
| 5315 | "third_party/quiche/src/quic/core/crypto/aes_128_gcm_decrypter_test.cc", |
| 5316 | "third_party/quiche/src/quic/core/crypto/aes_128_gcm_encrypter_test.cc", |
| 5317 | "third_party/quiche/src/quic/core/crypto/aes_256_gcm_decrypter_test.cc", |
| 5318 | "third_party/quiche/src/quic/core/crypto/aes_256_gcm_encrypter_test.cc", |
| 5319 | "third_party/quiche/src/quic/core/crypto/cert_compressor_test.cc", |
| 5320 | "third_party/quiche/src/quic/core/crypto/chacha20_poly1305_decrypter_test.cc", |
| 5321 | "third_party/quiche/src/quic/core/crypto/chacha20_poly1305_encrypter_test.cc", |
| 5322 | "third_party/quiche/src/quic/core/crypto/chacha20_poly1305_tls_decrypter_test.cc", |
| 5323 | "third_party/quiche/src/quic/core/crypto/chacha20_poly1305_tls_encrypter_test.cc", |
| 5324 | "third_party/quiche/src/quic/core/crypto/channel_id_test.cc", |
| 5325 | "third_party/quiche/src/quic/core/crypto/common_cert_set_test.cc", |
| 5326 | "third_party/quiche/src/quic/core/crypto/crypto_framer_test.cc", |
| 5327 | "third_party/quiche/src/quic/core/crypto/crypto_handshake_message_test.cc", |
| 5328 | "third_party/quiche/src/quic/core/crypto/crypto_secret_boxer_test.cc", |
| 5329 | "third_party/quiche/src/quic/core/crypto/crypto_server_test.cc", |
| 5330 | "third_party/quiche/src/quic/core/crypto/crypto_utils_test.cc", |
| 5331 | "third_party/quiche/src/quic/core/crypto/curve25519_key_exchange_test.cc", |
| 5332 | "third_party/quiche/src/quic/core/crypto/null_decrypter_test.cc", |
| 5333 | "third_party/quiche/src/quic/core/crypto/null_encrypter_test.cc", |
| 5334 | "third_party/quiche/src/quic/core/crypto/p256_key_exchange_test.cc", |
| 5335 | "third_party/quiche/src/quic/core/crypto/quic_compressed_certs_cache_test.cc", |
| 5336 | "third_party/quiche/src/quic/core/crypto/quic_crypto_client_config_test.cc", |
| 5337 | "third_party/quiche/src/quic/core/crypto/quic_crypto_server_config_test.cc", |
| 5338 | "third_party/quiche/src/quic/core/crypto/quic_hkdf_test.cc", |
| 5339 | "third_party/quiche/src/quic/core/crypto/quic_random_test.cc", |
| 5340 | "third_party/quiche/src/quic/core/crypto/transport_parameters_test.cc", |
| 5341 | "third_party/quiche/src/quic/core/frames/quic_frames_test.cc", |
| 5342 | "third_party/quiche/src/quic/core/http/http_decoder_test.cc", |
| 5343 | "third_party/quiche/src/quic/core/http/http_encoder_test.cc", |
| 5344 | "third_party/quiche/src/quic/core/http/quic_client_promised_info_test.cc", |
| 5345 | "third_party/quiche/src/quic/core/http/quic_client_push_promise_index_test.cc", |
| 5346 | "third_party/quiche/src/quic/core/http/quic_header_list_test.cc", |
| 5347 | "third_party/quiche/src/quic/core/http/quic_headers_stream_test.cc", |
Ryan Hamilton | d6cdacef | 2019-05-01 19:19:05 | [diff] [blame] | 5348 | "third_party/quiche/src/quic/core/http/quic_receive_control_stream_test.cc", |
| 5349 | "third_party/quiche/src/quic/core/http/quic_send_control_stream_test.cc", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 5350 | "third_party/quiche/src/quic/core/http/quic_server_session_base_test.cc", |
| 5351 | "third_party/quiche/src/quic/core/http/quic_spdy_session_test.cc", |
| 5352 | "third_party/quiche/src/quic/core/http/quic_spdy_stream_body_buffer_test.cc", |
| 5353 | "third_party/quiche/src/quic/core/http/quic_spdy_stream_test.cc", |
| 5354 | "third_party/quiche/src/quic/core/http/spdy_utils_test.cc", |
| 5355 | "third_party/quiche/src/quic/core/legacy_quic_stream_id_manager_test.cc", |
| 5356 | "third_party/quiche/src/quic/core/packet_number_indexed_queue_test.cc", |
| 5357 | "third_party/quiche/src/quic/core/qpack/qpack_decoded_headers_accumulator_test.cc", |
| 5358 | "third_party/quiche/src/quic/core/qpack/qpack_decoder_stream_receiver_test.cc", |
| 5359 | "third_party/quiche/src/quic/core/qpack/qpack_decoder_stream_sender_test.cc", |
| 5360 | "third_party/quiche/src/quic/core/qpack/qpack_decoder_test.cc", |
| 5361 | "third_party/quiche/src/quic/core/qpack/qpack_encoder_stream_receiver_test.cc", |
| 5362 | "third_party/quiche/src/quic/core/qpack/qpack_encoder_stream_sender_test.cc", |
| 5363 | "third_party/quiche/src/quic/core/qpack/qpack_encoder_test.cc", |
| 5364 | "third_party/quiche/src/quic/core/qpack/qpack_header_table_test.cc", |
| 5365 | "third_party/quiche/src/quic/core/qpack/qpack_instruction_decoder_test.cc", |
| 5366 | "third_party/quiche/src/quic/core/qpack/qpack_instruction_encoder_test.cc", |
| 5367 | "third_party/quiche/src/quic/core/qpack/qpack_progressive_decoder_test.cc", |
| 5368 | "third_party/quiche/src/quic/core/qpack/qpack_round_trip_test.cc", |
| 5369 | "third_party/quiche/src/quic/core/qpack/qpack_static_table_test.cc", |
Bence Béky | 3e38655 | 2019-04-29 23:44:46 | [diff] [blame] | 5370 | "third_party/quiche/src/quic/core/qpack/value_splitting_header_list_test.cc", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 5371 | "third_party/quiche/src/quic/core/quic_alarm_test.cc", |
| 5372 | "third_party/quiche/src/quic/core/quic_arena_scoped_ptr_test.cc", |
| 5373 | "third_party/quiche/src/quic/core/quic_bandwidth_test.cc", |
| 5374 | "third_party/quiche/src/quic/core/quic_buffered_packet_store_test.cc", |
| 5375 | "third_party/quiche/src/quic/core/quic_config_test.cc", |
| 5376 | "third_party/quiche/src/quic/core/quic_connection_id_test.cc", |
| 5377 | "third_party/quiche/src/quic/core/quic_connection_test.cc", |
| 5378 | "third_party/quiche/src/quic/core/quic_control_frame_manager_test.cc", |
| 5379 | "third_party/quiche/src/quic/core/quic_crypto_client_handshaker_test.cc", |
| 5380 | "third_party/quiche/src/quic/core/quic_crypto_client_stream_test.cc", |
| 5381 | "third_party/quiche/src/quic/core/quic_crypto_server_stream_test.cc", |
| 5382 | "third_party/quiche/src/quic/core/quic_crypto_stream_test.cc", |
| 5383 | "third_party/quiche/src/quic/core/quic_data_writer_test.cc", |
| 5384 | "third_party/quiche/src/quic/core/quic_dispatcher_test.cc", |
| 5385 | "third_party/quiche/src/quic/core/quic_error_codes_test.cc", |
| 5386 | "third_party/quiche/src/quic/core/quic_flow_controller_test.cc", |
| 5387 | "third_party/quiche/src/quic/core/quic_framer_test.cc", |
| 5388 | "third_party/quiche/src/quic/core/quic_ietf_framer_test.cc", |
| 5389 | "third_party/quiche/src/quic/core/quic_interval_set_test.cc", |
| 5390 | "third_party/quiche/src/quic/core/quic_interval_test.cc", |
| 5391 | "third_party/quiche/src/quic/core/quic_lru_cache_test.cc", |
| 5392 | "third_party/quiche/src/quic/core/quic_one_block_arena_test.cc", |
| 5393 | "third_party/quiche/src/quic/core/quic_packet_creator_test.cc", |
| 5394 | "third_party/quiche/src/quic/core/quic_packet_generator_test.cc", |
| 5395 | "third_party/quiche/src/quic/core/quic_packet_number_test.cc", |
| 5396 | "third_party/quiche/src/quic/core/quic_received_packet_manager_test.cc", |
| 5397 | "third_party/quiche/src/quic/core/quic_sent_packet_manager_test.cc", |
| 5398 | "third_party/quiche/src/quic/core/quic_server_id_test.cc", |
| 5399 | "third_party/quiche/src/quic/core/quic_session_test.cc", |
| 5400 | "third_party/quiche/src/quic/core/quic_simple_buffer_allocator_test.cc", |
| 5401 | "third_party/quiche/src/quic/core/quic_socket_address_coder_test.cc", |
| 5402 | "third_party/quiche/src/quic/core/quic_stream_id_manager_test.cc", |
| 5403 | "third_party/quiche/src/quic/core/quic_stream_send_buffer_test.cc", |
| 5404 | "third_party/quiche/src/quic/core/quic_stream_sequencer_buffer_test.cc", |
| 5405 | "third_party/quiche/src/quic/core/quic_stream_sequencer_test.cc", |
| 5406 | "third_party/quiche/src/quic/core/quic_stream_test.cc", |
| 5407 | "third_party/quiche/src/quic/core/quic_sustained_bandwidth_recorder_test.cc", |
| 5408 | "third_party/quiche/src/quic/core/quic_tag_test.cc", |
| 5409 | "third_party/quiche/src/quic/core/quic_time_test.cc", |
| 5410 | "third_party/quiche/src/quic/core/quic_time_wait_list_manager_test.cc", |
| 5411 | "third_party/quiche/src/quic/core/quic_trace_visitor_test.cc", |
| 5412 | "third_party/quiche/src/quic/core/quic_unacked_packet_map_test.cc", |
| 5413 | "third_party/quiche/src/quic/core/quic_utils_test.cc", |
| 5414 | "third_party/quiche/src/quic/core/quic_version_manager_test.cc", |
| 5415 | "third_party/quiche/src/quic/core/quic_versions_test.cc", |
| 5416 | "third_party/quiche/src/quic/core/quic_write_blocked_list_test.cc", |
| 5417 | "third_party/quiche/src/quic/core/tls_handshaker_test.cc", |
| 5418 | "third_party/quiche/src/quic/core/uber_quic_stream_id_manager_test.cc", |
Ryan Hamilton | d6cdacef | 2019-05-01 19:19:05 | [diff] [blame] | 5419 | "third_party/quiche/src/quic/core/uber_received_packet_manager_test.cc", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 5420 | "third_party/quiche/src/quic/platform/api/quic_containers_test.cc", |
| 5421 | "third_party/quiche/src/quic/platform/api/quic_endian_test.cc", |
| 5422 | "third_party/quiche/src/quic/platform/api/quic_hostname_utils_test.cc", |
Bence Béky | 874a3f7f | 2019-05-01 00:40:19 | [diff] [blame] | 5423 | "third_party/quiche/src/quic/platform/api/quic_ip_address_test.cc", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 5424 | "third_party/quiche/src/quic/platform/api/quic_mem_slice_span_test.cc", |
| 5425 | "third_party/quiche/src/quic/platform/api/quic_mem_slice_storage_test.cc", |
| 5426 | "third_party/quiche/src/quic/platform/api/quic_mem_slice_test.cc", |
| 5427 | "third_party/quiche/src/quic/platform/api/quic_reference_counted_test.cc", |
| 5428 | "third_party/quiche/src/quic/platform/api/quic_str_cat_test.cc", |
Ryan Hamilton | d6cdacef | 2019-05-01 19:19:05 | [diff] [blame] | 5429 | "third_party/quiche/src/quic/platform/api/quic_string_utils_test.cc", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 5430 | "third_party/quiche/src/quic/platform/api/quic_text_utils_test.cc", |
| 5431 | "third_party/quiche/src/quic/test_tools/crypto_test_utils_test.cc", |
| 5432 | "third_party/quiche/src/quic/test_tools/mock_quic_time_wait_list_manager.cc", |
| 5433 | "third_party/quiche/src/quic/test_tools/mock_quic_time_wait_list_manager.h", |
| 5434 | "third_party/quiche/src/quic/test_tools/quic_test_utils_test.cc", |
| 5435 | "third_party/quiche/src/quic/test_tools/simple_session_notifier_test.cc", |
| 5436 | "third_party/quiche/src/quic/test_tools/simulator/quic_endpoint_test.cc", |
| 5437 | "third_party/quiche/src/quic/test_tools/simulator/simulator_test.cc", |
Ryan Hamilton | d6cdacef | 2019-05-01 19:19:05 | [diff] [blame] | 5438 | "third_party/quiche/src/quic/tools/quic_simple_crypto_server_stream_helper_test.cc", |
Victor Vasiliev | 27cc771 | 2019-01-24 11:50:14 | [diff] [blame] | 5439 | "third_party/quiche/src/spdy/core/array_output_buffer.cc", |
| 5440 | "third_party/quiche/src/spdy/core/array_output_buffer.h", |
| 5441 | "third_party/quiche/src/spdy/core/array_output_buffer_test.cc", |
| 5442 | "third_party/quiche/src/spdy/core/hpack/hpack_decoder_adapter_test.cc", |
| 5443 | "third_party/quiche/src/spdy/core/hpack/hpack_encoder_test.cc", |
| 5444 | "third_party/quiche/src/spdy/core/hpack/hpack_entry_test.cc", |
| 5445 | "third_party/quiche/src/spdy/core/hpack/hpack_header_table_test.cc", |
| 5446 | "third_party/quiche/src/spdy/core/hpack/hpack_huffman_table_test.cc", |
| 5447 | "third_party/quiche/src/spdy/core/hpack/hpack_output_stream_test.cc", |
| 5448 | "third_party/quiche/src/spdy/core/hpack/hpack_round_trip_test.cc", |
| 5449 | "third_party/quiche/src/spdy/core/hpack/hpack_static_table_test.cc", |
| 5450 | "third_party/quiche/src/spdy/core/mock_spdy_framer_visitor.cc", |
| 5451 | "third_party/quiche/src/spdy/core/mock_spdy_framer_visitor.h", |
| 5452 | "third_party/quiche/src/spdy/core/priority_write_scheduler_test.cc", |
| 5453 | "third_party/quiche/src/spdy/core/spdy_alt_svc_wire_format_test.cc", |
| 5454 | "third_party/quiche/src/spdy/core/spdy_deframer_visitor.cc", |
| 5455 | "third_party/quiche/src/spdy/core/spdy_deframer_visitor.h", |
| 5456 | "third_party/quiche/src/spdy/core/spdy_deframer_visitor_test.cc", |
| 5457 | "third_party/quiche/src/spdy/core/spdy_frame_builder_test.cc", |
| 5458 | "third_party/quiche/src/spdy/core/spdy_frame_reader_test.cc", |
| 5459 | "third_party/quiche/src/spdy/core/spdy_framer_test.cc", |
| 5460 | "third_party/quiche/src/spdy/core/spdy_header_block_test.cc", |
| 5461 | "third_party/quiche/src/spdy/core/spdy_no_op_visitor.cc", |
| 5462 | "third_party/quiche/src/spdy/core/spdy_no_op_visitor.h", |
| 5463 | "third_party/quiche/src/spdy/core/spdy_pinnable_buffer_piece_test.cc", |
| 5464 | "third_party/quiche/src/spdy/core/spdy_prefixed_buffer_reader_test.cc", |
| 5465 | "third_party/quiche/src/spdy/core/spdy_protocol_test.cc", |
| 5466 | "third_party/quiche/src/spdy/core/spdy_protocol_test_utils.cc", |
| 5467 | "third_party/quiche/src/spdy/core/spdy_protocol_test_utils.h", |
Dan Zhang | 6c64d6fc | 2019-04-30 21:35:16 | [diff] [blame] | 5468 | "third_party/quiche/src/spdy/core/spdy_simple_arena_test.cc", |
Victor Vasiliev | 27cc771 | 2019-01-24 11:50:14 | [diff] [blame] | 5469 | "third_party/quiche/src/spdy/core/spdy_test_utils.cc", |
| 5470 | "third_party/quiche/src/spdy/core/spdy_test_utils.h", |
| 5471 | "third_party/quiche/src/spdy/platform/api/spdy_mem_slice_test.cc", |
| 5472 | "third_party/quiche/src/spdy/platform/api/spdy_string_utils_test.cc", |
| 5473 | "third_party/quiche/src/spdy/platform/api/spdy_test_helpers.h", |
dalyk | 6b82a025 | 2018-08-22 15:22:38 | [diff] [blame] | 5474 | "third_party/uri_template/uri_template_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5475 | "tools/content_decoder_tool/content_decoder_tool.cc", |
| 5476 | "tools/content_decoder_tool/content_decoder_tool.h", |
| 5477 | "tools/content_decoder_tool/content_decoder_tool_unittest.cc", |
| 5478 | "tools/quic/quic_simple_client_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5479 | "tools/tld_cleanup/tld_cleanup_util_unittest.cc", |
Tsuyoshi Horo | ec9880b | 2017-09-28 22:25:21 | [diff] [blame] | 5480 | "url_request/redirect_info_unittest.cc", |
Tsuyoshi Horo | 9e2ec4df | 2017-10-16 15:15:55 | [diff] [blame] | 5481 | "url_request/redirect_util_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5482 | "url_request/report_sender_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5483 | "url_request/url_fetcher_impl_unittest.cc", |
| 5484 | "url_request/url_fetcher_response_writer_unittest.cc", |
| 5485 | "url_request/url_request_context_builder_unittest.cc", |
| 5486 | "url_request/url_request_context_unittest.cc", |
| 5487 | "url_request/url_request_data_job_unittest.cc", |
| 5488 | "url_request/url_request_file_dir_job_unittest.cc", |
| 5489 | "url_request/url_request_file_job_unittest.cc", |
| 5490 | "url_request/url_request_filter_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5491 | "url_request/url_request_http_job_unittest.cc", |
| 5492 | "url_request/url_request_job_factory_impl_unittest.cc", |
| 5493 | "url_request/url_request_job_unittest.cc", |
| 5494 | "url_request/url_request_quic_unittest.cc", |
| 5495 | "url_request/url_request_simple_job_unittest.cc", |
| 5496 | "url_request/url_request_throttler_simulation_unittest.cc", |
| 5497 | "url_request/url_request_throttler_test_support.cc", |
| 5498 | "url_request/url_request_throttler_test_support.h", |
| 5499 | "url_request/url_request_throttler_unittest.cc", |
| 5500 | "url_request/url_request_unittest.cc", |
| 5501 | "url_request/view_cache_helper_unittest.cc", |
| 5502 | ] |
mattm | 1a07e63 | 2017-05-16 05:55:50 | [diff] [blame] | 5503 | net_unfiltered_sources = [] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5504 | |
Victor Vasiliev | 4a6798e | 2019-03-06 02:26:09 | [diff] [blame] | 5505 | # Disable building Quartc tests on iOS as they appear to be flaky there. |
| 5506 | if (!is_ios) { |
| 5507 | sources += [ |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 5508 | "third_party/quiche/src/quic/quartc/counting_packet_filter.h", |
| 5509 | "third_party/quiche/src/quic/quartc/quartc_connection_helper.cc", |
| 5510 | "third_party/quiche/src/quic/quartc/quartc_connection_helper.h", |
| 5511 | "third_party/quiche/src/quic/quartc/quartc_crypto_helpers.cc", |
| 5512 | "third_party/quiche/src/quic/quartc/quartc_crypto_helpers.h", |
| 5513 | "third_party/quiche/src/quic/quartc/quartc_dispatcher.cc", |
| 5514 | "third_party/quiche/src/quic/quartc/quartc_dispatcher.h", |
| 5515 | "third_party/quiche/src/quic/quartc/quartc_endpoint.cc", |
| 5516 | "third_party/quiche/src/quic/quartc/quartc_endpoint.h", |
| 5517 | "third_party/quiche/src/quic/quartc/quartc_endpoint_test.cc", |
| 5518 | "third_party/quiche/src/quic/quartc/quartc_factory.cc", |
| 5519 | "third_party/quiche/src/quic/quartc/quartc_factory.h", |
| 5520 | "third_party/quiche/src/quic/quartc/quartc_fakes.h", |
| 5521 | "third_party/quiche/src/quic/quartc/quartc_interval_counter.h", |
| 5522 | "third_party/quiche/src/quic/quartc/quartc_interval_counter_test.cc", |
| 5523 | "third_party/quiche/src/quic/quartc/quartc_packet_writer.cc", |
| 5524 | "third_party/quiche/src/quic/quartc/quartc_packet_writer.h", |
| 5525 | "third_party/quiche/src/quic/quartc/quartc_session.cc", |
| 5526 | "third_party/quiche/src/quic/quartc/quartc_session.h", |
| 5527 | "third_party/quiche/src/quic/quartc/quartc_session_test.cc", |
| 5528 | "third_party/quiche/src/quic/quartc/quartc_stream.cc", |
| 5529 | "third_party/quiche/src/quic/quartc/quartc_stream.h", |
| 5530 | "third_party/quiche/src/quic/quartc/quartc_stream_test.cc", |
| 5531 | "third_party/quiche/src/quic/quartc/simulated_packet_transport.cc", |
| 5532 | "third_party/quiche/src/quic/quartc/simulated_packet_transport.h", |
| 5533 | "third_party/quiche/src/quic/quartc/simulated_packet_transport_test.cc", |
Ryan Hamilton | d6cdacef | 2019-05-01 19:19:05 | [diff] [blame] | 5534 | "third_party/quiche/src/quic/quartc/test/bidi_test_runner.cc", |
| 5535 | "third_party/quiche/src/quic/quartc/test/bidi_test_runner.h", |
| 5536 | "third_party/quiche/src/quic/quartc/test/quartc_bidi_test.cc", |
Dan Zhang | cda8d79 | 2019-05-08 01:45:29 | [diff] [blame] | 5537 | "third_party/quiche/src/quic/quartc/test/quartc_competing_endpoint.cc", |
| 5538 | "third_party/quiche/src/quic/quartc/test/quartc_competing_endpoint.h", |
Ryan Hamilton | d6cdacef | 2019-05-01 19:19:05 | [diff] [blame] | 5539 | "third_party/quiche/src/quic/quartc/test/quartc_data_source.cc", |
| 5540 | "third_party/quiche/src/quic/quartc/test/quartc_data_source.h", |
| 5541 | "third_party/quiche/src/quic/quartc/test/quartc_data_source_test.cc", |
| 5542 | "third_party/quiche/src/quic/quartc/test/quartc_peer.cc", |
| 5543 | "third_party/quiche/src/quic/quartc/test/quartc_peer.h", |
| 5544 | "third_party/quiche/src/quic/quartc/test/quartc_peer_test.cc", |
Bence Béky | 43c8b56 | 2019-05-03 20:47:30 | [diff] [blame] | 5545 | "third_party/quiche/src/quic/quartc/test/quic_trace_interceptor.cc", |
| 5546 | "third_party/quiche/src/quic/quartc/test/quic_trace_interceptor.h", |
Ryan Hamilton | d6cdacef | 2019-05-01 19:19:05 | [diff] [blame] | 5547 | "third_party/quiche/src/quic/quartc/test/random_delay_link.cc", |
| 5548 | "third_party/quiche/src/quic/quartc/test/random_delay_link.h", |
| 5549 | "third_party/quiche/src/quic/quartc/test/random_packet_filter.cc", |
| 5550 | "third_party/quiche/src/quic/quartc/test/random_packet_filter.h", |
Victor Vasiliev | 4a6798e | 2019-03-06 02:26:09 | [diff] [blame] | 5551 | ] |
| 5552 | } |
| 5553 | |
Ryan Sleevi | c2fcac6 | 2017-12-21 16:37:04 | [diff] [blame] | 5554 | configs += [ "//build/config:precompiled_headers" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5555 | defines = [] |
| 5556 | |
| 5557 | deps = [ |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5558 | ":net", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 5559 | ":quic_test_tools", |
Dan Zhang | b4d098e3 | 2019-05-03 15:29:48 | [diff] [blame] | 5560 | ":quiche_test_tools", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5561 | ":simple_quic_tools", |
Victor Vasiliev | 802b8d0 | 2018-10-19 17:48:17 | [diff] [blame] | 5562 | ":spdy_test_tools", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5563 | ":test_support", |
| 5564 | "//base", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5565 | "//base/third_party/dynamic_annotations", |
| 5566 | "//crypto", |
| 5567 | "//crypto:platform", |
| 5568 | "//crypto:test_support", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5569 | "//net/base/registry_controlled_domains", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 5570 | "//net/dns:tests", |
Eric Orth | 8afaf15 | 2018-11-07 21:01:26 | [diff] [blame] | 5571 | "//net/dns/public:tests", |
martijn | d369e670 | 2017-03-21 18:36:45 | [diff] [blame] | 5572 | "//net/http:transport_security_state_unittest_data", |
Martijn Croonen | b1383da | 2017-10-11 11:56:35 | [diff] [blame] | 5573 | "//net/http:transport_security_state_unittest_data_default", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5574 | "//testing/gmock", |
| 5575 | "//testing/gtest", |
thomasanderson | 77bec4d | 2017-03-20 07:09:25 | [diff] [blame] | 5576 | "//third_party/protobuf:protobuf_lite", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5577 | "//third_party/zlib", |
| 5578 | "//url", |
Scott Violet | fd6ee11 | 2019-01-10 19:05:32 | [diff] [blame] | 5579 | "//url:buildflags", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5580 | ] |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 5581 | |
Helen Li | c51db4c | 2018-06-14 22:05:04 | [diff] [blame] | 5582 | if (enable_websockets) { |
| 5583 | deps += [ "//net/server:tests" ] |
| 5584 | } |
| 5585 | |
Fabrice de Gans-Riberi | 0ab6b07 | 2018-04-20 21:32:58 | [diff] [blame] | 5586 | if (is_posix || is_fuchsia) { |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 5587 | sources += [ "socket/udp_socket_posix_unittest.cc" ] |
Fabrice de Gans-Riberi | 0ab6b07 | 2018-04-20 21:32:58 | [diff] [blame] | 5588 | } |
| 5589 | |
Clark DuVall | fe37e8e0 | 2019-02-15 02:00:28 | [diff] [blame] | 5590 | if (is_android || is_chromeos) { |
| 5591 | sources += [ "base/network_change_notifier_posix_unittest.cc" ] |
| 5592 | } |
| 5593 | |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 5594 | if (enable_reporting) { |
| 5595 | sources += [ |
Lily Chen | 6ac29d8 | 2019-04-11 22:26:58 | [diff] [blame] | 5596 | "network_error_logging/mock_persistent_nel_store_unittest.cc", |
Julia Tuttle | 6c949ae | 2017-11-17 16:36:27 | [diff] [blame] | 5597 | "network_error_logging/network_error_logging_service_unittest.cc", |
Lily Chen | 0ada609 | 2019-05-08 00:08:48 | [diff] [blame] | 5598 | "reporting/mock_persistent_reporting_store_unittest.cc", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 5599 | "reporting/reporting_browsing_data_remover_unittest.cc", |
| 5600 | "reporting/reporting_cache_unittest.cc", |
| 5601 | "reporting/reporting_delivery_agent_unittest.cc", |
| 5602 | "reporting/reporting_endpoint_manager_unittest.cc", |
| 5603 | "reporting/reporting_garbage_collector_unittest.cc", |
| 5604 | "reporting/reporting_header_parser_unittest.cc", |
| 5605 | "reporting/reporting_network_change_observer_unittest.cc", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 5606 | "reporting/reporting_service_unittest.cc", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 5607 | "reporting/reporting_uploader_unittest.cc", |
| 5608 | ] |
| 5609 | } |
| 5610 | |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5611 | if (!is_proto_quic) { |
| 5612 | deps += [ |
| 5613 | ":extras", |
| 5614 | "//base:i18n", |
| 5615 | "//sql", |
| 5616 | ] |
Lily Chen | db14198 | 2019-03-18 17:18:49 | [diff] [blame] | 5617 | |
| 5618 | if (enable_reporting) { |
| 5619 | sources += [ |
| 5620 | "extras/sqlite/sqlite_persistent_reporting_and_nel_store_unittest.cc", |
| 5621 | ] |
| 5622 | } |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5623 | } else { |
Nick Harper | 099ef1d | 2019-05-08 23:41:32 | [diff] [blame] | 5624 | sources -= [ "extras/sqlite/sqlite_persistent_cookie_store_unittest.cc" ] |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5625 | } |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5626 | |
jbudorick | 944eb92 | 2016-06-20 15:38:30 | [diff] [blame] | 5627 | data = [] |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 5628 | data_deps = [ |
| 5629 | "third_party/nist-pkits/", |
| 5630 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5631 | |
Scott Graham | be24b04f | 2017-09-21 23:27:52 | [diff] [blame] | 5632 | if (is_linux || is_mac || is_win || is_fuchsia) { |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5633 | deps += [ |
| 5634 | "//third_party/pyftpdlib/", |
| 5635 | "//third_party/pywebsocket/", |
| 5636 | "//third_party/tlslite/", |
| 5637 | ] |
mattm | 6586b43 | 2016-02-12 04:52:39 | [diff] [blame] | 5638 | data_deps += [ |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5639 | "//third_party/pyftpdlib/", |
| 5640 | "//third_party/pywebsocket/", |
| 5641 | "//third_party/tlslite/", |
| 5642 | ] |
| 5643 | data += [ |
| 5644 | "tools/testserver/", |
| 5645 | "//third_party/pyftpdlib/", |
Takuto Ikuta | 7ff839d | 2018-08-09 03:15:36 | [diff] [blame] | 5646 | "//third_party/pywebsocket/src/mod_pywebsocket/", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5647 | "//third_party/tlslite/", |
dpranke | f497c796 | 2015-07-31 19:46:23 | [diff] [blame] | 5648 | ] |
| 5649 | } |
| 5650 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5651 | if (is_desktop_linux) { |
| 5652 | deps += [ ":epoll_quic_tools" ] |
| 5653 | } |
| 5654 | if (is_linux) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5655 | sources += [ |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 5656 | "quic/platform/impl/quic_epoll_clock_test.cc", |
| 5657 | "quic/platform/impl/quic_flags_test.cc", |
| 5658 | "quic/platform/impl/quic_linux_socket_utils_test.cc", |
| 5659 | "quic/platform/impl/quic_socket_utils_test.cc", |
Dan Zhang | 4149fc5 | 2019-04-26 14:28:28 | [diff] [blame] | 5660 | "third_party/quiche/src/epoll_server/simple_epoll_server_test.cc", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 5661 | "third_party/quiche/src/quic/core/chlo_extractor_test.cc", |
| 5662 | "third_party/quiche/src/quic/core/http/end_to_end_test.cc", |
| 5663 | "third_party/quiche/src/quic/core/http/quic_spdy_client_session_test.cc", |
| 5664 | "third_party/quiche/src/quic/core/http/quic_spdy_client_stream_test.cc", |
| 5665 | "third_party/quiche/src/quic/core/http/quic_spdy_server_stream_base_test.cc", |
| 5666 | "third_party/quiche/src/quic/core/quic_epoll_alarm_factory_test.cc", |
| 5667 | "third_party/quiche/src/quic/core/quic_epoll_connection_helper_test.cc", |
| 5668 | "third_party/quiche/src/quic/core/stateless_rejector_test.cc", |
| 5669 | "third_party/quiche/src/quic/tools/quic_client_test.cc", |
| 5670 | "third_party/quiche/src/quic/tools/quic_memory_cache_backend_test.cc", |
| 5671 | "third_party/quiche/src/quic/tools/quic_server_test.cc", |
| 5672 | "third_party/quiche/src/quic/tools/quic_simple_server_session_test.cc", |
| 5673 | "third_party/quiche/src/quic/tools/quic_simple_server_stream_test.cc", |
| 5674 | "third_party/quiche/src/quic/tools/quic_url_test.cc", |
Rajesh Mahindra | 4380217 | 2018-07-24 20:00:14 | [diff] [blame] | 5675 | "tools/quic/quic_http_proxy_backend_stream_test.cc", |
| 5676 | "tools/quic/quic_http_proxy_backend_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5677 | "tools/quic/quic_simple_server_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5678 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5679 | deps += [ |
| 5680 | ":epoll_quic_tools", |
| 5681 | ":epoll_server", |
Dan Zhang | 4149fc5 | 2019-04-26 14:28:28 | [diff] [blame] | 5682 | ":epoll_server_test_tools", |
brettw | bc8b2a2 | 2015-07-28 18:24:42 | [diff] [blame] | 5683 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5684 | } |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 5685 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5686 | if (is_mac || is_ios) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5687 | sources += [ "base/mac/url_conversions_unittest.mm" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5688 | } |
| 5689 | |
mattm | af868e7 | 2016-09-23 23:25:20 | [diff] [blame] | 5690 | if (is_mac) { |
| 5691 | libs = [ "Security.framework" ] |
| 5692 | } |
| 5693 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5694 | if (is_chromeos) { |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 5695 | sources -= [ "proxy_resolution/proxy_config_service_linux_unittest.cc" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5696 | } |
| 5697 | |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5698 | if (!is_proto_quic && v8_use_external_startup_data) { |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5699 | deps += [ "//gin" ] |
| 5700 | } |
| 5701 | |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 5702 | if (is_win) { |
| 5703 | sources -= [ |
zentaro | b89acda4 | 2017-07-14 01:28:57 | [diff] [blame] | 5704 | "http/http_auth_handler_ntlm_portable_unittest.cc", |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 5705 | "ntlm/ntlm_buffer_reader_unittest.cc", |
| 5706 | "ntlm/ntlm_buffer_writer_unittest.cc", |
Zentaro Kavanagh | dd55661 | 2017-08-03 20:27:04 | [diff] [blame] | 5707 | "ntlm/ntlm_client_unittest.cc", |
zentaro | b89acda4 | 2017-07-14 01:28:57 | [diff] [blame] | 5708 | "ntlm/ntlm_test_data.h", |
| 5709 | "ntlm/ntlm_unittest.cc", |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 5710 | ] |
| 5711 | } |
| 5712 | |
Sergey Ulanov | ec1d3de | 2017-09-19 19:27:47 | [diff] [blame] | 5713 | if (enable_python_utils) { |
| 5714 | sources += [ "test/python_utils_unittest.cc" ] |
| 5715 | } |
| 5716 | |
Sergey Ulanov | 7c0bcaf | 2017-08-28 19:03:26 | [diff] [blame] | 5717 | if (is_fuchsia) { |
| 5718 | use_test_server = true |
Kevin Marshall | 3e89fd7 | 2018-06-05 21:29:10 | [diff] [blame] | 5719 | deps += [ |
Kevin Marshall | 87c8502 | 2018-10-23 00:29:44 | [diff] [blame] | 5720 | "//third_party/fuchsia-sdk/sdk:fidl_cpp", |
Kevin Marshall | f10ee89 | 2018-10-02 01:45:37 | [diff] [blame] | 5721 | "//third_party/fuchsia-sdk/sdk:netstack", |
Kevin Marshall | 3e89fd7 | 2018-06-05 21:29:10 | [diff] [blame] | 5722 | ] |
| 5723 | sources += [ "base/network_change_notifier_fuchsia_unittest.cc" ] |
Sergey Ulanov | 7c0bcaf | 2017-08-28 19:03:26 | [diff] [blame] | 5724 | } |
| 5725 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5726 | if (!use_nss_certs) { |
| 5727 | sources -= [ |
mattm | 9c63d44 | 2016-09-03 00:45:51 | [diff] [blame] | 5728 | "cert/internal/trust_store_nss_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5729 | "cert/nss_cert_database_unittest.cc", |
Matt Mueller | 10684c9 | 2017-08-09 07:24:09 | [diff] [blame] | 5730 | "cert/x509_util_nss_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5731 | "ssl/client_cert_store_nss_unittest.cc", |
davidben | 983d610b | 2016-12-14 19:35:40 | [diff] [blame] | 5732 | "ssl/ssl_platform_key_nss_unittest.cc", |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 5733 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5734 | if (is_chromeos) { # Already removed for all non-ChromeOS builds. |
davidben | 2bcbc6b | 2015-04-22 02:36:41 | [diff] [blame] | 5735 | sources -= [ |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5736 | "cert/nss_cert_database_chromeos_unittest.cc", |
| 5737 | "cert/nss_profile_filter_chromeos_unittest.cc", |
davidben | 2bcbc6b | 2015-04-22 02:36:41 | [diff] [blame] | 5738 | ] |
brettw | 43ae0e1 | 2015-07-14 22:12:36 | [diff] [blame] | 5739 | } |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 5740 | } |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5741 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5742 | # These are excluded on Android, because the actual Kerberos support, which |
| 5743 | # these test, is in a separate app on Android. |
Fabrice de Gans-Riberi | 0ab6b07 | 2018-04-20 21:32:58 | [diff] [blame] | 5744 | if (use_kerberos && ((is_posix && !is_android) || is_fuchsia)) { |
| 5745 | sources += [ |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5746 | "http/http_auth_gssapi_posix_unittest.cc", |
| 5747 | "http/mock_gssapi_library_posix.cc", |
| 5748 | "http/mock_gssapi_library_posix.h", |
| 5749 | ] |
| 5750 | } |
| 5751 | if (!use_kerberos) { |
| 5752 | sources -= [ "http/http_auth_handler_negotiate_unittest.cc" ] |
| 5753 | } |
| 5754 | |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 5755 | if (!use_nss_certs) { |
svaldez | a1714ab | 2016-03-18 20:47:53 | [diff] [blame] | 5756 | # Only include this test when using NSS for cert verification. |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5757 | sources -= [ "cert_net/nss_ocsp_unittest.cc" ] |
| 5758 | } |
| 5759 | |
jbudorick | 1273a84 | 2016-04-01 19:50:05 | [diff] [blame] | 5760 | if (enable_websockets) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5761 | sources += [ |
Adam Rice | d4596a8e | 2018-07-13 08:06:17 | [diff] [blame] | 5762 | "websockets/websocket_basic_handshake_stream_test.cc", |
Bence Béky | 7294fc2 | 2018-02-08 14:26:17 | [diff] [blame] | 5763 | "websockets/websocket_basic_stream_adapters_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5764 | "websockets/websocket_basic_stream_test.cc", |
| 5765 | "websockets/websocket_channel_test.cc", |
| 5766 | "websockets/websocket_deflate_parameters_test.cc", |
| 5767 | "websockets/websocket_deflate_predictor_impl_test.cc", |
| 5768 | "websockets/websocket_deflate_stream_test.cc", |
| 5769 | "websockets/websocket_deflater_test.cc", |
| 5770 | "websockets/websocket_end_to_end_test.cc", |
| 5771 | "websockets/websocket_errors_test.cc", |
| 5772 | "websockets/websocket_extension_parser_test.cc", |
| 5773 | "websockets/websocket_extension_test.cc", |
| 5774 | "websockets/websocket_frame_parser_test.cc", |
| 5775 | "websockets/websocket_frame_test.cc", |
| 5776 | "websockets/websocket_handshake_challenge_test.cc", |
| 5777 | "websockets/websocket_handshake_stream_create_helper_test.cc", |
| 5778 | "websockets/websocket_inflater_test.cc", |
| 5779 | "websockets/websocket_stream_cookie_test.cc", |
| 5780 | "websockets/websocket_stream_create_test_base.cc", |
| 5781 | "websockets/websocket_stream_create_test_base.h", |
| 5782 | "websockets/websocket_stream_test.cc", |
| 5783 | "websockets/websocket_test_util.cc", |
| 5784 | "websockets/websocket_test_util.h", |
| 5785 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5786 | } |
| 5787 | |
| 5788 | if (disable_file_support) { |
| 5789 | sources -= [ |
| 5790 | "base/directory_lister_unittest.cc", |
Thiago Farina | d673bb12 | 2016-01-06 23:18:16 | [diff] [blame] | 5791 | "base/directory_listing_unittest.cc", |
shahriar.rostami | a8c06daf | 2016-02-12 00:07:04 | [diff] [blame] | 5792 | "url_request/url_request_file_dir_job_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5793 | "url_request/url_request_file_job_unittest.cc", |
| 5794 | ] |
| 5795 | } |
| 5796 | |
| 5797 | if (disable_ftp_support) { |
| 5798 | sources -= [ |
| 5799 | "ftp/ftp_auth_cache_unittest.cc", |
| 5800 | "ftp/ftp_ctrl_response_buffer_unittest.cc", |
| 5801 | "ftp/ftp_directory_listing_parser_ls_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5802 | "ftp/ftp_directory_listing_parser_unittest.cc", |
| 5803 | "ftp/ftp_directory_listing_parser_unittest.h", |
| 5804 | "ftp/ftp_directory_listing_parser_vms_unittest.cc", |
| 5805 | "ftp/ftp_directory_listing_parser_windows_unittest.cc", |
| 5806 | "ftp/ftp_network_transaction_unittest.cc", |
| 5807 | "ftp/ftp_util_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5808 | ] |
| 5809 | } |
| 5810 | |
Brad Lassey | d44bd42 | 2018-05-31 22:45:23 | [diff] [blame] | 5811 | if (enable_built_in_dns) { |
| 5812 | sources += [ "url_request/http_with_dns_over_https_unittest.cc" ] |
| 5813 | } |
| 5814 | |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 5815 | if (use_v8_in_net) { |
mmenke | e2ad992 | 2017-06-08 20:27:36 | [diff] [blame] | 5816 | deps += [ ":net_with_v8" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5817 | } else { |
| 5818 | sources -= [ |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 5819 | "proxy_resolution/proxy_resolver_v8_tracing_unittest.cc", |
| 5820 | "proxy_resolution/proxy_resolver_v8_tracing_wrapper_unittest.cc", |
| 5821 | "proxy_resolution/proxy_resolver_v8_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5822 | ] |
| 5823 | } |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5824 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5825 | if (is_ios) { |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5826 | sources -= [ |
| 5827 | # TODO(droger): The following tests are disabled because the |
| 5828 | # implementation is missing or incomplete. |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5829 | "disk_cache/backend_unittest.cc", |
| 5830 | "disk_cache/blockfile/block_files_unittest.cc", |
| 5831 | |
| 5832 | # Need to read input data files. |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5833 | "socket/ssl_server_socket_unittest.cc", |
Victor Vasiliev | 802b8d0 | 2018-10-19 17:48:17 | [diff] [blame] | 5834 | "spdy/fuzzing/hpack_fuzz_util_test.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5835 | |
| 5836 | # Need TestServer. |
| 5837 | "cert_net/cert_net_fetcher_impl_unittest.cc", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 5838 | "proxy_resolution/pac_file_fetcher_impl_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5839 | "socket/ssl_client_socket_unittest.cc", |
| 5840 | "url_request/url_fetcher_impl_unittest.cc", |
| 5841 | "url_request/url_request_context_builder_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5842 | ] |
mattm | 1a07e63 | 2017-05-16 05:55:50 | [diff] [blame] | 5843 | net_unfiltered_sources += [ "cert/x509_util_ios_and_mac_unittest.cc" ] |
rsesek | 7d4ab4bc | 2016-07-22 17:35:13 | [diff] [blame] | 5844 | |
| 5845 | bundle_deps = [ ":net_unittests_bundle_data" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5846 | } |
| 5847 | |
Sergey Ulanov | 21dea15 | 2017-09-13 00:50:50 | [diff] [blame] | 5848 | if (enable_unix_sockets) { |
| 5849 | sources += [ |
| 5850 | "socket/unix_domain_client_socket_posix_unittest.cc", |
| 5851 | "socket/unix_domain_server_socket_posix_unittest.cc", |
| 5852 | ] |
| 5853 | } |
| 5854 | |
Fabrice de Gans-Riberi | 9fba3aff | 2018-04-12 19:00:48 | [diff] [blame] | 5855 | # Use getifaddrs() on POSIX platforms, except Linux and Android. |
| 5856 | if (is_posix && !is_linux && !is_android) { |
| 5857 | sources += [ "base/network_interfaces_getifaddrs_unittest.cc" ] |
Sergey Ulanov | 5c33235ae | 2017-07-06 23:55:07 | [diff] [blame] | 5858 | } |
| 5859 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 5860 | # Unit tests that aren't supported by the current ICU alternatives on Android. |
| 5861 | if (is_android && use_platform_icu_alternatives) { |
| 5862 | sources -= [ |
| 5863 | "base/filename_util_unittest.cc", |
| 5864 | "base/url_util_unittest.cc", |
| 5865 | "cert/x509_certificate_unittest.cc", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 5866 | "proxy_resolution/proxy_resolver_v8_unittest.cc", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 5867 | "url_request/url_request_job_unittest.cc", |
| 5868 | ] |
Misha Efimov | 1722162 | 2018-01-30 23:36:02 | [diff] [blame] | 5869 | deps += [ "//url:url_java" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 5870 | } |
| 5871 | |
| 5872 | # Unit tests that are not supported by the current ICU alternatives on iOS. |
| 5873 | if (is_ios && use_platform_icu_alternatives) { |
| 5874 | sources -= [ |
| 5875 | "base/filename_util_unittest.cc", |
| 5876 | "base/url_util_unittest.cc", |
| 5877 | "cert/x509_certificate_unittest.cc", |
| 5878 | "http/http_auth_handler_basic_unittest.cc", |
| 5879 | "http/http_auth_handler_digest_unittest.cc", |
| 5880 | "http/http_auth_handler_factory_unittest.cc", |
| 5881 | "http/http_auth_unittest.cc", |
| 5882 | "http/http_content_disposition_unittest.cc", |
| 5883 | "http/http_network_transaction_unittest.cc", |
Bence Béky | 94658bf | 2018-05-11 19:22:58 | [diff] [blame] | 5884 | "spdy/spdy_network_transaction_unittest.cc", |
| 5885 | "spdy/spdy_proxy_client_socket_unittest.cc", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 5886 | "url_request/url_request_job_unittest.cc", |
| 5887 | "url_request/url_request_unittest.cc", |
| 5888 | ] |
| 5889 | } |
| 5890 | |
| 5891 | # Exclude brotli test if the support for brotli is disabled. |
xunjieli | f54f24a0 | 2016-11-04 15:51:54 | [diff] [blame] | 5892 | if (disable_brotli_filter) { |
xunjieli | 084a929 | 2016-09-23 18:15:04 | [diff] [blame] | 5893 | sources -= [ "filter/brotli_source_stream_unittest.cc" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 5894 | } |
| 5895 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5896 | if (is_android) { |
agrieve | 732db3a | 2016-04-26 19:18:19 | [diff] [blame] | 5897 | data_deps += [ "//net/tools/testserver:testserver_py" ] |
agrieve | 9717636 | 2015-12-01 16:36:19 | [diff] [blame] | 5898 | deps += [ |
| 5899 | ":net_test_jni_headers", |
agrieve | a5517aa | 2015-10-23 03:03:45 | [diff] [blame] | 5900 | "//base:base_java_unittest_support", |
| 5901 | "//net/android:net_java", |
agrieve | a5517aa | 2015-10-23 03:03:45 | [diff] [blame] | 5902 | "//net/android:net_java_test_support", |
Yipeng Wang | ff2db2d | 2017-06-16 13:54:52 | [diff] [blame] | 5903 | "//net/android:net_java_test_support_provider", |
agrieve | 9717636 | 2015-12-01 16:36:19 | [diff] [blame] | 5904 | "//net/android:net_javatests", |
agrieve | a5517aa | 2015-10-23 03:03:45 | [diff] [blame] | 5905 | "//net/android:net_unittests_apk_resources", |
agrieve | 9717636 | 2015-12-01 16:36:19 | [diff] [blame] | 5906 | |
| 5907 | # TODO(mmenke): This depends on test_support_base, which depends on |
| 5908 | # icu. Figure out a way to remove that dependency. |
| 5909 | "//testing/android/native_test:native_test_native_code", |
pkotwicz | 8c7027d | 2015-11-11 06:30:07 | [diff] [blame] | 5910 | "//v8:v8_external_startup_data_assets", |
agrieve | a5517aa | 2015-10-23 03:03:45 | [diff] [blame] | 5911 | ] |
| 5912 | android_manifest = "//net/android/unittest_support/AndroidManifest.xml" |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5913 | set_sources_assignment_filter([]) |
Sergey Ulanov | 5bb07d3 | 2017-07-12 04:14:54 | [diff] [blame] | 5914 | sources += [ |
| 5915 | "base/address_tracker_linux_unittest.cc", |
| 5916 | "base/network_interfaces_linux_unittest.cc", |
| 5917 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5918 | set_sources_assignment_filter(sources_assignment_filter) |
agrieve | 3ac557f0 | 2016-04-12 15:52:00 | [diff] [blame] | 5919 | shard_timeout = 300 |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5920 | } |
| 5921 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5922 | # Symbols for crashes when running tests on swarming. |
| 5923 | if (symbol_level > 0) { |
| 5924 | if (is_win) { |
| 5925 | data += [ "$root_out_dir/net_unittests.exe.pdb" ] |
| 5926 | } else if (is_mac) { |
dpranke | de2945b8 | 2016-04-15 22:14:13 | [diff] [blame] | 5927 | # TODO(crbug.com/330301): make this conditional on mac_strip_release. |
| 5928 | # data += [ "$root_out_dir/net_unittests.dSYM/" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5929 | } |
| 5930 | } |
maksim.sisov | c69619d | 2016-05-20 19:23:55 | [diff] [blame] | 5931 | |
| 5932 | if (is_win) { |
davidben | d6d1e4d | 2017-05-10 16:49:01 | [diff] [blame] | 5933 | libs = [ |
| 5934 | "iphlpapi.lib", |
| 5935 | "ncrypt.lib", |
| 5936 | ] |
maksim.sisov | c69619d | 2016-05-20 19:23:55 | [diff] [blame] | 5937 | } |
davidben | 983d610b | 2016-12-14 19:35:40 | [diff] [blame] | 5938 | |
| 5939 | if (is_chromecast && use_nss_certs) { |
mattm | 436ccfe | 2017-06-19 20:24:08 | [diff] [blame] | 5940 | sources -= [ |
| 5941 | "ssl/client_cert_store_nss_unittest.cc", |
| 5942 | "ssl/ssl_platform_key_nss_unittest.cc", |
| 5943 | ] |
davidben | 983d610b | 2016-12-14 19:35:40 | [diff] [blame] | 5944 | } |
martijn | b9aca9d | 2017-03-31 19:56:15 | [diff] [blame] | 5945 | |
Matt Mueller | dbc0aa7 | 2019-02-04 22:13:18 | [diff] [blame] | 5946 | if (trial_comparison_cert_verifier_supported) { |
| 5947 | sources += [ "cert/trial_comparison_cert_verifier_unittest.cc" ] |
| 5948 | } |
| 5949 | |
martijn | b9aca9d | 2017-03-31 19:56:15 | [diff] [blame] | 5950 | # Include transport_security_state_generator tests. |
| 5951 | if (host_toolchain == current_toolchain) { |
Mustafa Emre Acer | a7152b86 | 2018-06-14 20:57:47 | [diff] [blame] | 5952 | deps += [ |
| 5953 | "//net/tools/huffman_trie:huffman_trie_generator_test_sources", |
| 5954 | "//net/tools/transport_security_state_generator:transport_security_state_generator_test_sources", |
| 5955 | ] |
martijn | b9aca9d | 2017-03-31 19:56:15 | [diff] [blame] | 5956 | } |
mattm | 1a07e63 | 2017-05-16 05:55:50 | [diff] [blame] | 5957 | |
| 5958 | # Add back some sources that were otherwise filtered out. |
| 5959 | set_sources_assignment_filter([]) |
| 5960 | sources += net_unfiltered_sources |
| 5961 | set_sources_assignment_filter(sources_assignment_filter) |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5962 | } |
| 5963 | |
| 5964 | # !is_android && !is_win && !is_mac |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5965 | if (!is_ios && !is_proto_quic) { |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5966 | # TODO(crbug.com/594965): this should be converted to "app" template and |
| 5967 | # enabled on iOS too. |
Stephan Stross | 92fe507e | 2018-05-12 01:47:33 | [diff] [blame] | 5968 | test("net_perftests") { |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5969 | sources = [ |
| 5970 | "base/mime_sniffer_perftest.cc", |
| 5971 | "cookies/cookie_monster_perftest.cc", |
gavinp | c28fe112 | 2016-05-13 17:49:05 | [diff] [blame] | 5972 | "disk_cache/disk_cache_perftest.cc", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5973 | "extras/sqlite/sqlite_persistent_cookie_store_perftest.cc", |
tfarina | 5dd13c2 | 2016-11-16 12:08:26 | [diff] [blame] | 5974 | "socket/udp_socket_perftest.cc", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 5975 | "url_request/url_request_quic_perftest.cc", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5976 | ] |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 5977 | |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5978 | deps = [ |
| 5979 | ":extras", |
| 5980 | ":net", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 5981 | ":quic_test_tools", |
| 5982 | ":simple_quic_tools", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5983 | ":test_support", |
| 5984 | "//base", |
| 5985 | "//base:i18n", |
| 5986 | "//base/test:test_support_perf", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5987 | "//testing/gtest", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 5988 | "//testing/perf", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5989 | "//url", |
| 5990 | ] |
Emily Hanley | 87c264cc | 2018-04-13 17:58:45 | [diff] [blame] | 5991 | data_deps = [ |
xunjieli | 5a86684 | 2017-06-09 18:16:20 | [diff] [blame] | 5992 | # Needed for isolate script to execute. |
Emily Hanley | 87c264cc | 2018-04-13 17:58:45 | [diff] [blame] | 5993 | "//testing:run_perf_test", |
xunjieli | 5a86684 | 2017-06-09 18:16:20 | [diff] [blame] | 5994 | ] |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5995 | if (enable_websockets) { |
| 5996 | sources += [ "websockets/websocket_frame_perftest.cc" ] |
| 5997 | } |
Stephan Stross | 92fe507e | 2018-05-12 01:47:33 | [diff] [blame] | 5998 | if (is_win) { |
| 5999 | deps += [ "//build/win:default_exe_manifest" ] |
| 6000 | } |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 6001 | } |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 6002 | } |
mef | ff34b82 | 2016-01-11 15:28:08 | [diff] [blame] | 6003 | |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6004 | # Fuzzers |
| 6005 | |
mmenke | 35a3001 | 2016-07-15 19:20:12 | [diff] [blame] | 6006 | # This has a global (InitGlobals) that must always be linked in, so |
| 6007 | # must be a source set instead of a static library. |
| 6008 | source_set("net_fuzzer_test_support") { |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6009 | testonly = true |
| 6010 | |
| 6011 | sources = [ |
csharrison | 37ef985 | 2016-08-23 19:00:19 | [diff] [blame] | 6012 | "base/fuzzer_test_support.cc", |
xunjieli | 7583733 | 2016-10-31 16:51:26 | [diff] [blame] | 6013 | "filter/fuzzed_source_stream.cc", |
| 6014 | "filter/fuzzed_source_stream.h", |
tfarina | 5dd13c2 | 2016-11-16 12:08:26 | [diff] [blame] | 6015 | "socket/fuzzed_datagram_client_socket.cc", |
| 6016 | "socket/fuzzed_datagram_client_socket.h", |
morlovich | 5e6e19b | 2017-01-30 14:38:16 | [diff] [blame] | 6017 | "socket/fuzzed_server_socket.cc", |
| 6018 | "socket/fuzzed_server_socket.h", |
mmenke | 99b5717 | 2016-04-14 20:44:33 | [diff] [blame] | 6019 | "socket/fuzzed_socket.cc", |
| 6020 | "socket/fuzzed_socket.h", |
mmenke | c951d41 | 2016-04-28 19:05:22 | [diff] [blame] | 6021 | "socket/fuzzed_socket_factory.cc", |
| 6022 | "socket/fuzzed_socket_factory.h", |
Ryan Hamilton | d6cdacef | 2019-05-01 19:19:05 | [diff] [blame] | 6023 | "third_party/quiche/src/quic/platform/api/quic_fuzzed_data_provider.h", |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6024 | ] |
csharrison | f30fc95f | 2016-08-19 21:43:44 | [diff] [blame] | 6025 | public_deps = [ |
| 6026 | "//base/test:test_support", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 6027 | "//net/dns:fuzzer_test_support", |
csharrison | f30fc95f | 2016-08-19 21:43:44 | [diff] [blame] | 6028 | ] |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6029 | deps = [ |
| 6030 | "//base", |
| 6031 | "//base:i18n", |
mmenke | 99b5717 | 2016-04-14 20:44:33 | [diff] [blame] | 6032 | "//net", |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6033 | ] |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 6034 | allow_circular_includes_from = [ "//net/dns:fuzzer_test_support" ] |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6035 | } |
| 6036 | |
Matthew Denton | 29cbe0ee | 2019-03-27 00:10:41 | [diff] [blame] | 6037 | proto_library("disk_cache_lpm_fuzzer_proto") { |
| 6038 | sources = [ |
| 6039 | "disk_cache/disk_cache_fuzzer.proto", |
| 6040 | ] |
| 6041 | } |
| 6042 | |
| 6043 | fuzzer_test("disk_cache_lpm_fuzzer") { |
| 6044 | sources = [ |
| 6045 | "disk_cache/disk_cache_fuzzer.cc", |
| 6046 | ] |
| 6047 | deps = [ |
| 6048 | ":disk_cache_lpm_fuzzer_proto", |
| 6049 | ":test_support", |
| 6050 | "//base", |
| 6051 | "//net", |
| 6052 | "//third_party/libprotobuf-mutator", |
| 6053 | ] |
| 6054 | } |
| 6055 | |
csharrison | aa314dc | 2016-04-29 20:15:37 | [diff] [blame] | 6056 | fuzzer_test("net_data_job_fuzzer") { |
| 6057 | sources = [ |
| 6058 | "url_request/url_request_data_job_fuzzer.cc", |
| 6059 | ] |
| 6060 | deps = [ |
| 6061 | ":net_fuzzer_test_support", |
| 6062 | ":test_support", |
| 6063 | "//base", |
| 6064 | "//net", |
| 6065 | ] |
| 6066 | } |
| 6067 | |
mmenke | 5552a6a | 2016-03-28 23:11:59 | [diff] [blame] | 6068 | fuzzer_test("net_mime_sniffer_fuzzer") { |
| 6069 | sources = [ |
| 6070 | "base/mime_sniffer_fuzzer.cc", |
| 6071 | ] |
| 6072 | deps = [ |
| 6073 | ":net_fuzzer_test_support", |
| 6074 | "//base", |
| 6075 | "//net", |
| 6076 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 6077 | dict = "data/fuzzer_dictionaries/net_mime_sniffer_fuzzer.dict" |
mmenke | 5552a6a | 2016-03-28 23:11:59 | [diff] [blame] | 6078 | } |
| 6079 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 6080 | fuzzer_test("net_parse_proxy_list_pac_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6081 | sources = [ |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 6082 | "proxy_resolution/parse_proxy_list_pac_fuzzer.cc", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6083 | ] |
| 6084 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6085 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6086 | "//net", |
| 6087 | ] |
| 6088 | } |
| 6089 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 6090 | fuzzer_test("net_parse_proxy_list_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6091 | sources = [ |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 6092 | "proxy_resolution/parse_proxy_list_fuzzer.cc", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6093 | ] |
| 6094 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6095 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6096 | "//net", |
| 6097 | ] |
| 6098 | } |
| 6099 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 6100 | fuzzer_test("net_parse_proxy_bypass_rules_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6101 | sources = [ |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 6102 | "proxy_resolution/parse_proxy_bypass_rules_fuzzer.cc", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6103 | ] |
Eric Roman | b8522d6 | 2018-03-01 02:53:58 | [diff] [blame] | 6104 | |
| 6105 | libfuzzer_options = [ |
| 6106 | # The proxy bypass rules aren't very complicated, so this is more than |
| 6107 | # enough to explore the grammar. Allowing the length to become too large |
| 6108 | # can result in test timeouts (https://crbug.com/813619). |
| 6109 | "max_len=512", |
| 6110 | ] |
| 6111 | |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6112 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6113 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6114 | "//net", |
| 6115 | ] |
| 6116 | } |
| 6117 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 6118 | fuzzer_test("net_parse_proxy_rules_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6119 | sources = [ |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 6120 | "proxy_resolution/parse_proxy_rules_fuzzer.cc", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6121 | ] |
| 6122 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6123 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6124 | "//net", |
| 6125 | ] |
metzman | 31db75e | 2016-08-03 22:33:27 | [diff] [blame] | 6126 | dict = "data/fuzzer_dictionaries/net_parse_proxy_bypass_rules_fuzzer.dict" |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6127 | } |
| 6128 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 6129 | fuzzer_test("net_parse_data_url_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6130 | sources = [ |
| 6131 | "base/parse_data_url_fuzzer.cc", |
| 6132 | ] |
| 6133 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6134 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6135 | "//base", |
| 6136 | "//net", |
| 6137 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 6138 | dict = "data/fuzzer_dictionaries/net_parse_data_url_fuzzer.dict" |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6139 | } |
| 6140 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 6141 | fuzzer_test("net_parse_ip_pattern_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6142 | sources = [ |
| 6143 | "base/parse_ip_pattern_fuzzer.cc", |
| 6144 | ] |
| 6145 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6146 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6147 | "//net", |
| 6148 | ] |
| 6149 | } |
| 6150 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 6151 | fuzzer_test("net_get_domain_and_registry_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6152 | sources = [ |
| 6153 | "base/registry_controlled_domains/get_domain_and_registry_fuzzer.cc", |
| 6154 | ] |
| 6155 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6156 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6157 | "//base", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6158 | "//net", |
| 6159 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 6160 | dict = "data/fuzzer_dictionaries/net_get_domain_and_registry_fuzzer.dict" |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6161 | } |
| 6162 | |
Matthew Braithwaite | 02f33c867 | 2019-05-14 00:20:29 | [diff] [blame^] | 6163 | fuzzer_test("net_cert_ct_decode_signed_certificate_timestamp_fuzzer") { |
| 6164 | sources = [ |
| 6165 | "cert/decode_signed_certificate_timestamp_fuzzer.cc", |
| 6166 | ] |
| 6167 | deps = [ |
| 6168 | ":net_fuzzer_test_support", |
| 6169 | "//base", |
| 6170 | "//net", |
| 6171 | ] |
| 6172 | } |
| 6173 | |
mattm | afe43b8 | 2016-04-28 20:40:54 | [diff] [blame] | 6174 | fuzzer_test("net_cert_verify_name_match_fuzzer") { |
| 6175 | sources = [ |
| 6176 | "cert/internal/verify_name_match_fuzzer.cc", |
| 6177 | ] |
| 6178 | deps = [ |
| 6179 | ":net_fuzzer_test_support", |
| 6180 | "//base", |
| 6181 | "//net", |
| 6182 | ] |
| 6183 | } |
| 6184 | |
mattm | 2c637da4 | 2016-04-28 02:55:59 | [diff] [blame] | 6185 | fuzzer_test("net_cert_normalize_name_fuzzer") { |
| 6186 | sources = [ |
| 6187 | "cert/internal/verify_name_match_normalizename_fuzzer.cc", |
| 6188 | ] |
| 6189 | deps = [ |
| 6190 | "//base", |
| 6191 | "//net", |
| 6192 | ] |
| 6193 | } |
| 6194 | |
mattm | afe43b8 | 2016-04-28 20:40:54 | [diff] [blame] | 6195 | fuzzer_test("net_cert_verify_name_in_subtree_fuzzer") { |
| 6196 | sources = [ |
| 6197 | "cert/internal/verify_name_match_verifynameinsubtree_fuzzer.cc", |
| 6198 | ] |
| 6199 | deps = [ |
| 6200 | ":net_fuzzer_test_support", |
| 6201 | "//base", |
| 6202 | "//net", |
| 6203 | ] |
| 6204 | } |
| 6205 | |
Ryan Sleevi | 6cf36b48 | 2019-03-22 00:54:43 | [diff] [blame] | 6206 | fuzzer_test("net_cert_ocsp_parse_ocsp_cert_id_fuzzer") { |
| 6207 | sources = [ |
| 6208 | "cert/internal/ocsp_parse_ocsp_cert_id_fuzzer.cc", |
| 6209 | ] |
| 6210 | seed_corpus = "data/fuzzer_data/parse_ocsp_cert_id_fuzzer" |
| 6211 | deps = [ |
| 6212 | "//base", |
| 6213 | "//net", |
| 6214 | ] |
| 6215 | } |
| 6216 | |
| 6217 | fuzzer_test("net_cert_ocsp_parse_ocsp_single_response_fuzzer") { |
| 6218 | sources = [ |
| 6219 | "cert/internal/ocsp_parse_ocsp_single_response_fuzzer.cc", |
| 6220 | ] |
| 6221 | seed_corpus = "data/fuzzer_data/parse_ocsp_single_response_fuzzer" |
| 6222 | deps = [ |
| 6223 | "//base", |
| 6224 | "//net", |
| 6225 | ] |
| 6226 | } |
| 6227 | |
| 6228 | fuzzer_test("net_cert_ocsp_parse_ocsp_response_data_fuzzer") { |
| 6229 | sources = [ |
| 6230 | "cert/internal/ocsp_parse_ocsp_response_data_fuzzer.cc", |
| 6231 | ] |
| 6232 | seed_corpus = "data/fuzzer_data/parse_ocsp_response_data_fuzzer" |
| 6233 | deps = [ |
| 6234 | "//base", |
| 6235 | "//net", |
| 6236 | ] |
| 6237 | } |
| 6238 | |
| 6239 | fuzzer_test("net_cert_ocsp_parse_ocsp_response_fuzzer") { |
| 6240 | sources = [ |
| 6241 | "cert/internal/ocsp_parse_ocsp_response_fuzzer.cc", |
| 6242 | ] |
| 6243 | seed_corpus = "data/fuzzer_data/parse_ocsp_response_fuzzer" |
| 6244 | deps = [ |
| 6245 | "//base", |
| 6246 | "//net", |
| 6247 | ] |
| 6248 | } |
| 6249 | |
nharper | 85d3b6f | 2016-04-28 20:58:19 | [diff] [blame] | 6250 | fuzzer_test("net_cert_parse_certificate_fuzzer") { |
| 6251 | sources = [ |
| 6252 | "cert/internal/parse_certificate_fuzzer.cc", |
| 6253 | ] |
| 6254 | deps = [ |
| 6255 | "//base", |
| 6256 | "//net", |
| 6257 | ] |
| 6258 | } |
| 6259 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 6260 | fuzzer_test("net_parse_cookie_line_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6261 | sources = [ |
| 6262 | "cookies/parse_cookie_line_fuzzer.cc", |
| 6263 | ] |
| 6264 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6265 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 6266 | "//net", |
| 6267 | ] |
| 6268 | } |
| 6269 | |
mmenke | 44e8e9c | 2016-03-29 18:38:57 | [diff] [blame] | 6270 | fuzzer_test("net_http_stream_parser_fuzzer") { |
| 6271 | sources = [ |
| 6272 | "http/http_stream_parser_fuzzer.cc", |
| 6273 | ] |
| 6274 | deps = [ |
| 6275 | ":net_fuzzer_test_support", |
| 6276 | ":test_support", |
| 6277 | "//base", |
| 6278 | "//net", |
| 6279 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 6280 | dict = "data/fuzzer_dictionaries/net_http_stream_parser_fuzzer.dict" |
mmenke | 44e8e9c | 2016-03-29 18:38:57 | [diff] [blame] | 6281 | } |
| 6282 | |
Jonathan Metzman | 0e5e530f | 2018-10-04 19:29:57 | [diff] [blame] | 6283 | if (!is_win) { |
| 6284 | fuzzer_test("net_ntlm_ntlm_client_fuzzer") { |
| 6285 | sources = [ |
| 6286 | "ntlm/ntlm_client_fuzzer.cc", |
| 6287 | "ntlm/ntlm_test_data.h", |
| 6288 | ] |
| 6289 | deps = [ |
| 6290 | ":net_fuzzer_test_support", |
| 6291 | ":test_support", |
| 6292 | "//base", |
| 6293 | "//net", |
| 6294 | ] |
| 6295 | dict = "data/fuzzer_dictionaries/net_ntlm_ntlm_client_fuzzer.dict" |
| 6296 | seed_corpus = "data/fuzzer_data/ntlm_client_fuzzer/" |
| 6297 | } |
Zentaro Kavanagh | dd55661 | 2017-08-03 20:27:04 | [diff] [blame] | 6298 | } |
| 6299 | |
xunjieli | d5ffeaf | 2016-11-01 15:22:00 | [diff] [blame] | 6300 | if (!disable_brotli_filter) { |
| 6301 | fuzzer_test("net_brotli_source_stream_fuzzer") { |
| 6302 | sources = [ |
| 6303 | "filter/brotli_source_stream_fuzzer.cc", |
| 6304 | ] |
| 6305 | deps = [ |
| 6306 | ":net_fuzzer_test_support", |
| 6307 | ":test_support", |
| 6308 | "//base", |
| 6309 | "//net", |
| 6310 | ] |
| 6311 | } |
| 6312 | } |
| 6313 | |
xunjieli | 7583733 | 2016-10-31 16:51:26 | [diff] [blame] | 6314 | fuzzer_test("net_gzip_source_stream_fuzzer") { |
| 6315 | sources = [ |
| 6316 | "filter/gzip_source_stream_fuzzer.cc", |
| 6317 | ] |
| 6318 | deps = [ |
| 6319 | ":net_fuzzer_test_support", |
| 6320 | ":test_support", |
| 6321 | "//base", |
| 6322 | "//net", |
| 6323 | ] |
| 6324 | } |
| 6325 | |
Simon Que | 386bf4bc | 2019-04-12 14:54:14 | [diff] [blame] | 6326 | if (!disable_ftp_support) { |
| 6327 | fuzzer_test("net_ftp_ctrl_response_fuzzer") { |
| 6328 | sources = [ |
| 6329 | "ftp/ftp_ctrl_response_fuzzer.cc", |
| 6330 | ] |
| 6331 | deps = [ |
| 6332 | ":net_fuzzer_test_support", |
| 6333 | "//base", |
| 6334 | "//net", |
| 6335 | ] |
| 6336 | } |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6337 | |
Simon Que | 386bf4bc | 2019-04-12 14:54:14 | [diff] [blame] | 6338 | fuzzer_test("net_ftp_directory_listing_fuzzer") { |
| 6339 | sources = [ |
| 6340 | "ftp/ftp_directory_listing_fuzzer.cc", |
| 6341 | ] |
| 6342 | deps = [ |
| 6343 | ":net_fuzzer_test_support", |
| 6344 | "//base", |
| 6345 | "//net", |
| 6346 | ] |
Eric Roman | 230c1ed | 2019-01-16 00:40:23 | [diff] [blame] | 6347 | |
Simon Que | 386bf4bc | 2019-04-12 14:54:14 | [diff] [blame] | 6348 | # TODO(https://crbug.com/921297): Re-enable once source of timeout is |
| 6349 | # understood (probably just needs to restrict maximum input size). |
| 6350 | additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] |
| 6351 | } |
Matt Menke | a08b11a2 | 2019-05-13 17:56:36 | [diff] [blame] | 6352 | |
| 6353 | fuzzer_test("net_url_request_ftp_fuzzer") { |
| 6354 | sources = [ |
| 6355 | "url_request/url_request_ftp_fuzzer.cc", |
| 6356 | ] |
| 6357 | deps = [ |
| 6358 | ":net_fuzzer_test_support", |
| 6359 | ":test_support", |
| 6360 | "//base", |
| 6361 | "//net", |
| 6362 | ] |
| 6363 | dict = "data/fuzzer_dictionaries/net_url_request_ftp_fuzzer.dict" |
| 6364 | seed_corpus = "data/fuzzer_data/net_url_request_ftp_fuzzer/" |
| 6365 | |
| 6366 | # TODO(https://crbug.com/962087): Re-enable once source of timeout is |
| 6367 | # understood (probably just needs to restrict maximum input size). |
| 6368 | additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] |
| 6369 | } |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6370 | } |
| 6371 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 6372 | fuzzer_test("net_unescape_url_component_fuzzer") { |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6373 | sources = [ |
| 6374 | "base/unescape_url_component_fuzzer.cc", |
| 6375 | ] |
| 6376 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6377 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6378 | "//base", |
| 6379 | "//net", |
| 6380 | ] |
mmoroz | 34eb008 | 2016-03-11 14:32:01 | [diff] [blame] | 6381 | dict = "base/unescape_url_component_fuzzer.dict" |
mmoroz | 062a4a6 | 2016-04-12 09:02:33 | [diff] [blame] | 6382 | libfuzzer_options = [ "max_len = 2048" ] |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6383 | } |
| 6384 | |
ricea | 7b870e7 | 2016-09-01 04:41:04 | [diff] [blame] | 6385 | fuzzer_test("net_websocket_deflate_stream_fuzzer") { |
| 6386 | sources = [ |
| 6387 | "websockets/websocket_deflate_stream_fuzzer.cc", |
| 6388 | ] |
| 6389 | deps = [ |
| 6390 | ":net_fuzzer_test_support", |
| 6391 | "//net", |
| 6392 | ] |
| 6393 | dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict" |
| 6394 | libfuzzer_options = [ "max_len=512" ] |
| 6395 | } |
| 6396 | |
ricea | f9dcc09 | 2016-09-13 12:42:00 | [diff] [blame] | 6397 | fuzzer_test("net_websocket_extension_parser_fuzzer") { |
| 6398 | sources = [ |
| 6399 | "websockets/websocket_extension_parser_fuzzer.cc", |
| 6400 | ] |
| 6401 | deps = [ |
| 6402 | ":net_fuzzer_test_support", |
| 6403 | "//net", |
| 6404 | ] |
| 6405 | dict = "data/fuzzer_dictionaries/net_websocket_extension_parser_fuzzer.dict" |
| 6406 | libfuzzer_options = [ "max_len = 256" ] |
| 6407 | } |
| 6408 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 6409 | fuzzer_test("net_websocket_frame_parser_fuzzer") { |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6410 | sources = [ |
| 6411 | "websockets/websocket_frame_parser_fuzzer.cc", |
| 6412 | ] |
| 6413 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6414 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6415 | "//net", |
| 6416 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 6417 | dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict" |
ricea | 105ae61 | 2016-09-08 08:00:07 | [diff] [blame] | 6418 | libfuzzer_options = [ "max_len=256" ] |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6419 | } |
| 6420 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 6421 | fuzzer_test("net_http_chunked_decoder_fuzzer") { |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6422 | sources = [ |
| 6423 | "http/http_chunked_decoder_fuzzer.cc", |
| 6424 | ] |
| 6425 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6426 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6427 | "//net", |
| 6428 | ] |
| 6429 | } |
| 6430 | |
mmenke | 8e9314bc | 2016-04-15 21:45:02 | [diff] [blame] | 6431 | fuzzer_test("net_http_proxy_client_socket_fuzzer") { |
| 6432 | sources = [ |
| 6433 | "http/http_proxy_client_socket_fuzzer.cc", |
| 6434 | ] |
| 6435 | deps = [ |
| 6436 | ":net_fuzzer_test_support", |
| 6437 | ":test_support", |
| 6438 | "//base", |
| 6439 | "//net", |
| 6440 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 6441 | dict = "data/fuzzer_dictionaries/net_http_proxy_client_socket_fuzzer.dict" |
mmenke | 8e9314bc | 2016-04-15 21:45:02 | [diff] [blame] | 6442 | } |
| 6443 | |
mmoroz | 9299ef9b | 2016-09-01 17:37:09 | [diff] [blame] | 6444 | fuzzer_test("net_parse_url_hostname_to_address_fuzzer") { |
| 6445 | sources = [ |
| 6446 | "base/parse_url_hostname_to_address_fuzzer.cc", |
| 6447 | ] |
| 6448 | deps = [ |
| 6449 | ":net_fuzzer_test_support", |
| 6450 | "//base", |
| 6451 | "//net", |
| 6452 | ] |
| 6453 | libfuzzer_options = [ "max_len=512" ] |
| 6454 | seed_corpus = "data/fuzzer_data/hostnames/" |
| 6455 | } |
| 6456 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 6457 | fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6458 | sources = [ |
Ryan Hamilton | 7582d265 | 2018-08-01 22:35:32 | [diff] [blame] | 6459 | "quic/quic_crypto_framer_parse_message_fuzzer.cc", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6460 | ] |
| 6461 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6462 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6463 | "//base", |
| 6464 | "//net", |
| 6465 | ] |
| 6466 | } |
mmenke | 99b5717 | 2016-04-14 20:44:33 | [diff] [blame] | 6467 | |
btolsch | 7ebfd23c | 2018-11-16 00:05:10 | [diff] [blame] | 6468 | fuzzer_test("net_quic_transport_parameters_fuzzer") { |
| 6469 | sources = [ |
| 6470 | "quic/quic_transport_parameters_fuzzer.cc", |
| 6471 | ] |
| 6472 | deps = [ |
| 6473 | ":net_fuzzer_test_support", |
| 6474 | "//base", |
| 6475 | "//net", |
| 6476 | ] |
| 6477 | } |
| 6478 | |
mmenke | 99b5717 | 2016-04-14 20:44:33 | [diff] [blame] | 6479 | fuzzer_test("net_socks_client_socket_fuzzer") { |
| 6480 | sources = [ |
| 6481 | "socket/socks_client_socket_fuzzer.cc", |
| 6482 | ] |
| 6483 | deps = [ |
| 6484 | ":net_fuzzer_test_support", |
| 6485 | ":test_support", |
| 6486 | "//base", |
| 6487 | "//net", |
| 6488 | ] |
| 6489 | } |
| 6490 | |
| 6491 | fuzzer_test("net_socks5_client_socket_fuzzer") { |
| 6492 | sources = [ |
| 6493 | "socket/socks5_client_socket_fuzzer.cc", |
| 6494 | ] |
| 6495 | deps = [ |
| 6496 | ":net_fuzzer_test_support", |
| 6497 | ":test_support", |
| 6498 | "//base", |
| 6499 | "//net", |
| 6500 | ] |
| 6501 | } |
mmenke | c951d41 | 2016-04-28 19:05:22 | [diff] [blame] | 6502 | |
mmenke | c951d41 | 2016-04-28 19:05:22 | [diff] [blame] | 6503 | fuzzer_test("net_url_request_fuzzer") { |
| 6504 | sources = [ |
| 6505 | "url_request/url_request_fuzzer.cc", |
| 6506 | ] |
| 6507 | deps = [ |
| 6508 | ":net_fuzzer_test_support", |
| 6509 | ":test_support", |
| 6510 | "//base", |
| 6511 | "//net", |
| 6512 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 6513 | dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" |
mmenke | c951d41 | 2016-04-28 19:05:22 | [diff] [blame] | 6514 | } |
csharrison | 88d2a61 | 2016-09-09 16:58:54 | [diff] [blame] | 6515 | |
| 6516 | fuzzer_test("net_auth_challenge_tokenizer_fuzzer") { |
| 6517 | sources = [ |
| 6518 | "http/http_auth_challenge_tokenizer_fuzzer.cc", |
| 6519 | ] |
| 6520 | deps = [ |
| 6521 | ":net_fuzzer_test_support", |
| 6522 | ":test_support", |
| 6523 | "//base", |
| 6524 | "//net", |
| 6525 | ] |
| 6526 | } |
martijn | db9ad4f | 2016-10-26 18:34:09 | [diff] [blame] | 6527 | |
estark | a57e816 | 2017-04-21 18:01:05 | [diff] [blame] | 6528 | fuzzer_test("net_http_security_headers_expect_ct_fuzzer") { |
| 6529 | sources = [ |
| 6530 | "http/http_security_headers_expect_ct_fuzzer.cc", |
| 6531 | ] |
| 6532 | deps = [ |
| 6533 | ":net_fuzzer_test_support", |
| 6534 | "//base", |
| 6535 | "//net", |
| 6536 | "//url", |
| 6537 | ] |
| 6538 | dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
| 6539 | seed_corpus = "data/fuzzer_data/http_security_headers/" |
| 6540 | } |
| 6541 | |
martijn | db9ad4f | 2016-10-26 18:34:09 | [diff] [blame] | 6542 | fuzzer_test("net_http_security_headers_hsts_fuzzer") { |
| 6543 | sources = [ |
| 6544 | "http/http_security_headers_hsts_fuzzer.cc", |
| 6545 | ] |
| 6546 | deps = [ |
| 6547 | "//base", |
| 6548 | "//net", |
| 6549 | ] |
| 6550 | dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
estark | a57e816 | 2017-04-21 18:01:05 | [diff] [blame] | 6551 | seed_corpus = "data/fuzzer_data/http_security_headers/" |
martijn | db9ad4f | 2016-10-26 18:34:09 | [diff] [blame] | 6552 | } |
| 6553 | |
martijn | da94079 | 2016-12-29 01:36:51 | [diff] [blame] | 6554 | fuzzer_test("net_http_transport_security_state_static_fuzzer") { |
| 6555 | sources = [ |
| 6556 | "http/transport_security_state_static_fuzzer.cc", |
| 6557 | ] |
| 6558 | deps = [ |
| 6559 | ":net_fuzzer_test_support", |
| 6560 | "//net", |
| 6561 | ] |
| 6562 | dict = |
| 6563 | "data/fuzzer_dictionaries/net_http_transport_security_state_fuzzer.dict" |
| 6564 | } |
| 6565 | |
morlovich | 833190ec | 2017-02-10 16:53:04 | [diff] [blame] | 6566 | fuzzer_test("net_spdy_session_fuzzer") { |
| 6567 | sources = [ |
Bence Béky | 94658bf | 2018-05-11 19:22:58 | [diff] [blame] | 6568 | "spdy/spdy_session_fuzzer.cc", |
morlovich | 833190ec | 2017-02-10 16:53:04 | [diff] [blame] | 6569 | ] |
| 6570 | deps = [ |
| 6571 | ":net_fuzzer_test_support", |
| 6572 | ":test_support", |
| 6573 | "//base", |
| 6574 | "//net", |
Ryan Hamilton | e3e592e | 2017-11-16 04:49:09 | [diff] [blame] | 6575 | "//net/data/ssl/certificates:generate_fuzzer_cert_includes", |
morlovich | 833190ec | 2017-02-10 16:53:04 | [diff] [blame] | 6576 | ] |
| 6577 | dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 6578 | seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 6579 | } |
Patrick Meenan | 6a970137 | 2017-10-03 21:33:41 | [diff] [blame] | 6580 | |
| 6581 | fuzzer_test("net_http2_frame_decoder_fuzzer") { |
| 6582 | sources = [ |
Victor Vasiliev | 747e0c3c | 2018-12-07 04:38:53 | [diff] [blame] | 6583 | "spdy/fuzzing/http2_frame_decoder_fuzzer.cc", |
Patrick Meenan | 6a970137 | 2017-10-03 21:33:41 | [diff] [blame] | 6584 | ] |
| 6585 | deps = [ |
| 6586 | ":net_fuzzer_test_support", |
| 6587 | ":test_support", |
| 6588 | "//base", |
| 6589 | "//net", |
| 6590 | ] |
| 6591 | } |
Patrick Meenan | 73b497a | 2017-10-05 22:40:44 | [diff] [blame] | 6592 | |
| 6593 | fuzzer_test("net_hpack_decoder_fuzzer") { |
| 6594 | sources = [ |
Victor Vasiliev | 747e0c3c | 2018-12-07 04:38:53 | [diff] [blame] | 6595 | "spdy/fuzzing/hpack_decoder_fuzzer.cc", |
Patrick Meenan | 73b497a | 2017-10-05 22:40:44 | [diff] [blame] | 6596 | ] |
| 6597 | deps = [ |
| 6598 | ":net_fuzzer_test_support", |
| 6599 | ":test_support", |
| 6600 | "//base", |
| 6601 | "//net", |
| 6602 | ] |
| 6603 | } |
Max Moroz | 592f4c6 | 2017-11-01 01:10:32 | [diff] [blame] | 6604 | |
| 6605 | proto_library("reporting_policy_proto") { |
| 6606 | import_dirs = [ "//testing/libfuzzer/proto/" ] |
| 6607 | sources = [ |
| 6608 | "reporting/reporting_policy.proto", |
| 6609 | ] |
Takuto Ikuta | bb2fb35 | 2019-03-06 16:54:19 | [diff] [blame] | 6610 | link_deps = [ "//testing/libfuzzer/proto:json_proto" ] |
Max Moroz | 592f4c6 | 2017-11-01 01:10:32 | [diff] [blame] | 6611 | } |
| 6612 | |
| 6613 | fuzzer_test("net_reporting_header_parser_fuzzer") { |
| 6614 | sources = [ |
| 6615 | "reporting/reporting_header_parser_fuzzer.cc", |
Max Moroz | 592f4c6 | 2017-11-01 01:10:32 | [diff] [blame] | 6616 | ] |
| 6617 | |
| 6618 | deps = [ |
| 6619 | ":net_fuzzer_test_support", |
| 6620 | ":reporting_policy_proto", |
| 6621 | ":test_support", |
| 6622 | "//base", |
| 6623 | "//net", |
| 6624 | "//testing/libfuzzer/proto:json_proto", |
| 6625 | "//testing/libfuzzer/proto:json_proto_converter", |
| 6626 | "//third_party/libprotobuf-mutator", |
| 6627 | ] |
| 6628 | } |
Ned Williamson | 3d55bbb | 2017-11-07 22:58:13 | [diff] [blame] | 6629 | |
| 6630 | fuzzer_test("net_quic_stream_factory_fuzzer") { |
| 6631 | sources = [ |
Ryan Hamilton | a3ee93a7 | 2018-08-01 22:03:08 | [diff] [blame] | 6632 | "quic/quic_stream_factory_fuzzer.cc", |
Ned Williamson | 3d55bbb | 2017-11-07 22:58:13 | [diff] [blame] | 6633 | ] |
| 6634 | |
| 6635 | deps = [ |
| 6636 | ":net_fuzzer_test_support", |
| 6637 | ":quic_test_tools", |
| 6638 | ":test_support", |
| 6639 | "//net", |
Ryan Hamilton | e3e592e | 2017-11-16 04:49:09 | [diff] [blame] | 6640 | "//net/data/ssl/certificates:generate_fuzzer_cert_includes", |
Ned Williamson | 3d55bbb | 2017-11-07 22:58:13 | [diff] [blame] | 6641 | ] |
| 6642 | } |
dalyk | 6b82a025 | 2018-08-22 15:22:38 | [diff] [blame] | 6643 | |
Ryan Hamilton | d6cdacef | 2019-05-01 19:19:05 | [diff] [blame] | 6644 | fuzzer_test("net_quic_framer_fuzzer") { |
| 6645 | sources = [ |
| 6646 | "third_party/quiche/src/quic/test_tools/fuzzing/quic_framer_fuzzer.cc", |
| 6647 | ] |
| 6648 | |
| 6649 | deps = [ |
| 6650 | ":net_fuzzer_test_support", |
| 6651 | ":quic_test_tools", |
| 6652 | ":test_support", |
| 6653 | "//net", |
| 6654 | "//net/data/ssl/certificates:generate_fuzzer_cert_includes", |
| 6655 | ] |
| 6656 | } |
| 6657 | |
dalyk | 6b82a025 | 2018-08-22 15:22:38 | [diff] [blame] | 6658 | fuzzer_test("net_uri_template_fuzzer") { |
| 6659 | sources = [ |
| 6660 | "third_party/uri_template/uri_template_fuzzer.cc", |
| 6661 | ] |
| 6662 | deps = [ |
| 6663 | ":net_fuzzer_test_support", |
| 6664 | "//base", |
| 6665 | "//net", |
| 6666 | ] |
| 6667 | dict = "data/fuzzer_dictionaries/net_uri_template_fuzzer.dict" |
| 6668 | } |
Victor Vasiliev | 27ca04a | 2019-03-09 01:28:00 | [diff] [blame] | 6669 | |
| 6670 | fuzzer_test("net_qpack_decoder_fuzzer") { |
| 6671 | sources = [ |
| 6672 | "third_party/quiche/src/quic/core/qpack/fuzzer/qpack_decoder_fuzzer.cc", |
| 6673 | ] |
| 6674 | deps = [ |
| 6675 | ":net_fuzzer_test_support", |
| 6676 | ":quic_test_tools", |
| 6677 | ":test_support", |
| 6678 | "//base", |
| 6679 | "//net", |
| 6680 | ] |
| 6681 | seed_corpus = "third_party/quiche/src/quic/core/qpack/fuzzer/qpack_decoder_fuzzer_corpus/" |
| 6682 | } |
| 6683 | |
| 6684 | fuzzer_test("net_qpack_encoder_stream_receiver_fuzzer") { |
| 6685 | sources = [ |
| 6686 | "third_party/quiche/src/quic/core/qpack/fuzzer/qpack_encoder_stream_receiver_fuzzer.cc", |
| 6687 | ] |
| 6688 | deps = [ |
| 6689 | ":net_fuzzer_test_support", |
| 6690 | "//base", |
| 6691 | "//net", |
| 6692 | ] |
| 6693 | seed_corpus = "third_party/quiche/src/quic/core/qpack/fuzzer/qpack_encoder_stream_receiver_fuzzer_corpus/" |
| 6694 | } |
| 6695 | |
| 6696 | fuzzer_test("net_qpack_encoder_stream_sender_fuzzer") { |
| 6697 | sources = [ |
| 6698 | "third_party/quiche/src/quic/core/qpack/fuzzer/qpack_encoder_stream_sender_fuzzer.cc", |
| 6699 | ] |
| 6700 | deps = [ |
| 6701 | ":net_fuzzer_test_support", |
| 6702 | ":quic_test_tools", |
| 6703 | ":test_support", |
| 6704 | "//base", |
| 6705 | "//net", |
| 6706 | ] |
| 6707 | seed_corpus = "third_party/quiche/src/quic/core/qpack/fuzzer/qpack_encoder_stream_sender_fuzzer_corpus/" |
| 6708 | } |
| 6709 | |
| 6710 | fuzzer_test("net_qpack_round_trip_fuzzer") { |
| 6711 | sources = [ |
| 6712 | "third_party/quiche/src/quic/core/qpack/fuzzer/qpack_round_trip_fuzzer.cc", |
| 6713 | ] |
| 6714 | deps = [ |
| 6715 | ":net_fuzzer_test_support", |
| 6716 | ":quic_test_tools", |
| 6717 | ":test_support", |
| 6718 | "//base", |
| 6719 | "//net", |
| 6720 | ] |
| 6721 | seed_corpus = "third_party/quiche/src/quic/core/qpack/fuzzer/qpack_round_trip_fuzzer_corpus/" |
| 6722 | } |