[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 | |
Sergey Ulanov | 21dea15 | 2017-09-13 00:50:50 | [diff] [blame] | 40 | # Unix sockets are not supported on iOS, Fuchsia or NaCl. |
| 41 | enable_unix_sockets = is_posix && !is_ios && !is_fuchsia && !is_nacl |
| 42 | |
Sergey Ulanov | 2a0b019 | 2017-08-31 23:09:40 | [diff] [blame] | 43 | # Android and Fuchsia can't run testserver.py directly, so they use remote |
| 44 | # test server. |
| 45 | use_remote_test_server = is_android || is_fuchsia |
| 46 | |
Sergey Ulanov | ec1d3de | 2017-09-19 19:27:47 | [diff] [blame] | 47 | # Python works only on Linux, MacOS and Windows. |
| 48 | enable_python_utils = !is_android && !is_fuchsia && !is_ios |
| 49 | |
brettw | a1228ebb | 2016-10-28 03:51:34 | [diff] [blame] | 50 | buildflag_header("features") { |
| 51 | header = "net_features.h" |
| 52 | flags = [ |
| 53 | "POSIX_AVOID_MMAP=$posix_avoid_mmap", |
| 54 | "DISABLE_FILE_SUPPORT=$disable_file_support", |
| 55 | "DISABLE_FTP_SUPPORT=$disable_ftp_support", |
brettw | 5224a18 | 2016-10-28 22:13:02 | [diff] [blame] | 56 | "ENABLE_MDNS=$enable_mdns", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 57 | "ENABLE_REPORTING=$enable_reporting", |
brettw | a1228ebb | 2016-10-28 03:51:34 | [diff] [blame] | 58 | "ENABLE_WEBSOCKETS=$enable_websockets", |
xunjieli | 815ad5b | 2017-07-18 15:51:35 | [diff] [blame] | 59 | "INCLUDE_TRANSPORT_SECURITY_STATE_PRELOAD_LIST=$include_transport_security_state_preload_list", |
brettw | a1228ebb | 2016-10-28 03:51:34 | [diff] [blame] | 60 | ] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 61 | } |
| 62 | |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 63 | config("net_internal_config") { |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 64 | defines = [ |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 65 | "DLOPEN_KERBEROS", |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 66 | "NET_IMPLEMENTATION", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 67 | ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 68 | |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 69 | if (use_kerberos) { |
| 70 | defines += [ "USE_KERBEROS" ] |
| 71 | if (is_android) { |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 72 | include_dirs = [ "/usr/include/kerberosV" ] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 73 | } |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | if (enable_built_in_dns) { |
| 77 | defines += [ "ENABLE_BUILT_IN_DNS" ] |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 78 | } |
| 79 | } |
| 80 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 81 | net_configs = [ |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 82 | ":net_internal_config", |
| 83 | "//build/config:precompiled_headers", |
| 84 | |
rsesek | 99679aa | 2016-06-28 21:24:17 | [diff] [blame] | 85 | "//build/config/compiler:wexit_time_destructors", |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 86 | ] |
| 87 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 88 | if (is_linux) { |
| 89 | net_configs += [ "//build/config/linux:libresolv" ] |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 90 | } |
| 91 | |
xunjieli | 0b7f5b6 | 2016-12-06 20:43:48 | [diff] [blame] | 92 | source_set("constants") { |
| 93 | sources = [ |
| 94 | "base/trace_constants.cc", |
| 95 | "base/trace_constants.h", |
| 96 | ] |
| 97 | deps = [ |
| 98 | "//base", |
| 99 | ] |
| 100 | } |
| 101 | |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 102 | component("net") { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 103 | sources = [ |
| 104 | "base/address_family.cc", |
| 105 | "base/address_family.h", |
| 106 | "base/address_list.cc", |
| 107 | "base/address_list.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 108 | "base/auth.cc", |
| 109 | "base/auth.h", |
| 110 | "base/completion_callback.h", |
| 111 | "base/escape.cc", |
| 112 | "base/escape.h", |
| 113 | "base/hash_value.cc", |
| 114 | "base/hash_value.h", |
| 115 | "base/host_port_pair.cc", |
| 116 | "base/host_port_pair.h", |
fayang | baec8ff5 | 2017-01-28 03:26:12 | [diff] [blame] | 117 | "base/interval.h", |
| 118 | "base/interval_set.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 119 | "base/io_buffer.cc", |
| 120 | "base/io_buffer.h", |
| 121 | "base/ip_address.cc", |
| 122 | "base/ip_address.h", |
| 123 | "base/ip_endpoint.cc", |
| 124 | "base/ip_endpoint.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 125 | "base/load_timing_info.cc", |
| 126 | "base/load_timing_info.h", |
| 127 | "base/lookup_string_in_fixed_set.cc", |
| 128 | "base/lookup_string_in_fixed_set.h", |
| 129 | "base/net_error_details.h", |
| 130 | "base/net_error_list.h", |
| 131 | "base/net_errors.cc", |
| 132 | "base/net_errors.h", |
| 133 | "base/net_errors_posix.cc", |
| 134 | "base/net_export.h", |
| 135 | "base/net_module.cc", |
| 136 | "base/net_module.h", |
| 137 | "base/net_string_util.h", |
| 138 | "base/network_interfaces.cc", |
| 139 | "base/network_interfaces.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 140 | "base/parse_number.cc", |
| 141 | "base/parse_number.h", |
| 142 | "base/port_util.cc", |
| 143 | "base/port_util.h", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 144 | "base/privacy_mode.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 145 | "base/rand_callback.h", |
| 146 | "base/registry_controlled_domains/registry_controlled_domain.cc", |
| 147 | "base/registry_controlled_domains/registry_controlled_domain.h", |
| 148 | "base/sockaddr_storage.cc", |
| 149 | "base/sockaddr_storage.h", |
| 150 | "base/sys_addrinfo.h", |
| 151 | "base/url_util.cc", |
| 152 | "base/url_util.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 153 | "cert/asn1_util.cc", |
| 154 | "cert/asn1_util.h", |
| 155 | "cert/cert_database.cc", |
| 156 | "cert/cert_database.h", |
Matt Mueller | 1500421 | 2017-09-08 04:44:13 | [diff] [blame] | 157 | "cert/cert_database_stub.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 158 | "cert/cert_status_flags.cc", |
| 159 | "cert/cert_status_flags.h", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 160 | "cert/cert_status_flags_list.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 161 | "cert/cert_verifier.cc", |
| 162 | "cert/cert_verifier.h", |
| 163 | "cert/cert_verify_result.cc", |
| 164 | "cert/cert_verify_result.h", |
| 165 | "cert/client_cert_verifier.h", |
| 166 | "cert/crl_set.cc", |
| 167 | "cert/crl_set.h", |
| 168 | "cert/ct_known_logs.cc", |
| 169 | "cert/ct_known_logs.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 170 | "cert/ct_policy_enforcer.cc", |
| 171 | "cert/ct_policy_enforcer.h", |
| 172 | "cert/ct_policy_status.h", |
| 173 | "cert/ct_verifier.h", |
| 174 | "cert/ct_verify_result.cc", |
| 175 | "cert/ct_verify_result.h", |
| 176 | "cert/do_nothing_ct_verifier.cc", |
| 177 | "cert/do_nothing_ct_verifier.h", |
| 178 | "cert/internal/cert_error_id.cc", |
| 179 | "cert/internal/cert_error_id.h", |
| 180 | "cert/internal/cert_error_params.cc", |
| 181 | "cert/internal/cert_error_params.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 182 | "cert/internal/cert_errors.cc", |
| 183 | "cert/internal/cert_errors.h", |
| 184 | "cert/internal/cert_issuer_source.h", |
| 185 | "cert/internal/cert_issuer_source_aia.cc", |
| 186 | "cert/internal/cert_issuer_source_aia.h", |
| 187 | "cert/internal/cert_issuer_source_static.cc", |
| 188 | "cert/internal/cert_issuer_source_static.h", |
| 189 | "cert/internal/certificate_policies.cc", |
| 190 | "cert/internal/certificate_policies.h", |
Eric Roman | caa0a60 | 2017-07-28 21:17:11 | [diff] [blame] | 191 | "cert/internal/common_cert_errors.cc", |
| 192 | "cert/internal/common_cert_errors.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 193 | "cert/internal/extended_key_usage.cc", |
| 194 | "cert/internal/extended_key_usage.h", |
Matt Mueller | 9e3ad303 | 2017-09-14 19:29:31 | [diff] [blame] | 195 | "cert/internal/general_names.cc", |
| 196 | "cert/internal/general_names.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 197 | "cert/internal/name_constraints.cc", |
| 198 | "cert/internal/name_constraints.h", |
Eric Roman | a2f6f55d | 2017-09-07 23:34:57 | [diff] [blame] | 199 | "cert/internal/ocsp.cc", |
| 200 | "cert/internal/ocsp.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 201 | "cert/internal/parse_certificate.cc", |
| 202 | "cert/internal/parse_certificate.h", |
| 203 | "cert/internal/parse_name.cc", |
| 204 | "cert/internal/parse_name.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 205 | "cert/internal/parsed_certificate.cc", |
| 206 | "cert/internal/parsed_certificate.h", |
| 207 | "cert/internal/path_builder.cc", |
| 208 | "cert/internal/path_builder.h", |
Eric Roman | cc56d16f | 2017-10-11 23:04:26 | [diff] [blame] | 209 | "cert/internal/revocation_checker.cc", |
| 210 | "cert/internal/revocation_checker.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 211 | "cert/internal/signature_algorithm.cc", |
| 212 | "cert/internal/signature_algorithm.h", |
Eric Roman | 5431d70 | 2017-07-26 01:58:18 | [diff] [blame] | 213 | "cert/internal/simple_path_builder_delegate.cc", |
| 214 | "cert/internal/simple_path_builder_delegate.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 215 | "cert/internal/trust_store.cc", |
| 216 | "cert/internal/trust_store.h", |
| 217 | "cert/internal/trust_store_collection.cc", |
| 218 | "cert/internal/trust_store_collection.h", |
| 219 | "cert/internal/trust_store_in_memory.cc", |
| 220 | "cert/internal/trust_store_in_memory.h", |
| 221 | "cert/internal/verify_certificate_chain.cc", |
| 222 | "cert/internal/verify_certificate_chain.h", |
| 223 | "cert/internal/verify_name_match.cc", |
| 224 | "cert/internal/verify_name_match.h", |
| 225 | "cert/internal/verify_signed_data.cc", |
| 226 | "cert/internal/verify_signed_data.h", |
| 227 | "cert/ocsp_revocation_status.h", |
| 228 | "cert/ocsp_verify_result.cc", |
| 229 | "cert/ocsp_verify_result.h", |
| 230 | "cert/pem_tokenizer.cc", |
| 231 | "cert/pem_tokenizer.h", |
| 232 | "cert/sct_status_flags.cc", |
| 233 | "cert/sct_status_flags.h", |
| 234 | "cert/signed_certificate_timestamp.cc", |
| 235 | "cert/signed_certificate_timestamp.h", |
| 236 | "cert/signed_certificate_timestamp_and_status.cc", |
| 237 | "cert/signed_certificate_timestamp_and_status.h", |
| 238 | "cert/signed_tree_head.cc", |
| 239 | "cert/signed_tree_head.h", |
| 240 | "cert/sth_distributor.cc", |
| 241 | "cert/sth_distributor.h", |
| 242 | "cert/sth_observer.h", |
| 243 | "cert/sth_reporter.h", |
Emily Stark | d29cdae | 2017-09-16 01:59:34 | [diff] [blame] | 244 | "cert/symantec_certs.cc", |
| 245 | "cert/symantec_certs.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 246 | "cert/x509_cert_types.cc", |
| 247 | "cert/x509_cert_types.h", |
| 248 | "cert/x509_certificate.cc", |
| 249 | "cert/x509_certificate.h", |
| 250 | "cert/x509_certificate_net_log_param.cc", |
| 251 | "cert/x509_certificate_net_log_param.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 252 | "cert/x509_util.cc", |
| 253 | "cert/x509_util.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 254 | "der/encode_values.cc", |
| 255 | "der/encode_values.h", |
| 256 | "der/input.cc", |
| 257 | "der/input.h", |
| 258 | "der/parse_values.cc", |
| 259 | "der/parse_values.h", |
| 260 | "der/parser.cc", |
| 261 | "der/parser.h", |
| 262 | "der/tag.cc", |
| 263 | "der/tag.h", |
| 264 | "dns/dns_util.cc", |
| 265 | "dns/dns_util.h", |
| 266 | "http/http_auth_challenge_tokenizer.cc", |
| 267 | "http/http_auth_challenge_tokenizer.h", |
| 268 | "http/http_auth_scheme.cc", |
| 269 | "http/http_auth_scheme.h", |
| 270 | "http/http_byte_range.cc", |
| 271 | "http/http_byte_range.h", |
| 272 | "http/http_log_util.cc", |
| 273 | "http/http_log_util.h", |
Andrey Kosyakov | 83a6eee | 2017-08-14 19:20:04 | [diff] [blame] | 274 | "http/http_raw_request_headers.cc", |
| 275 | "http/http_raw_request_headers.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 276 | "http/http_request_headers.cc", |
| 277 | "http/http_request_headers.h", |
| 278 | "http/http_response_headers.cc", |
| 279 | "http/http_response_headers.h", |
| 280 | "http/http_response_info.cc", |
| 281 | "http/http_response_info.h", |
| 282 | "http/http_security_headers.cc", |
| 283 | "http/http_security_headers.h", |
Daniel Bratell | a6f7191d | 2017-11-23 09:20:37 | [diff] [blame] | 284 | "http/http_status_code_list.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 285 | "http/http_util.cc", |
| 286 | "http/http_util.h", |
| 287 | "http/http_vary_data.cc", |
| 288 | "http/http_vary_data.h", |
| 289 | "http/transport_security_state.cc", |
| 290 | "http/transport_security_state.h", |
xunjieli | 815ad5b | 2017-07-18 15:51:35 | [diff] [blame] | 291 | "http/transport_security_state_source.cc", |
martijn | 9b806ab2 | 2017-03-18 16:13:21 | [diff] [blame] | 292 | "http/transport_security_state_source.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 293 | "log/net_log.cc", |
| 294 | "log/net_log.h", |
| 295 | "log/net_log_capture_mode.cc", |
| 296 | "log/net_log_capture_mode.h", |
| 297 | "log/net_log_entry.cc", |
| 298 | "log/net_log_entry.h", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 299 | "log/net_log_event_type.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 300 | "log/net_log_event_type_list.h", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 301 | "log/net_log_parameters_callback.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 302 | "log/net_log_source.cc", |
| 303 | "log/net_log_source.h", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 304 | "log/net_log_source_type.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 305 | "log/net_log_source_type_list.h", |
| 306 | "log/net_log_with_source.cc", |
| 307 | "log/net_log_with_source.h", |
| 308 | "socket/client_socket_handle.cc", |
| 309 | "socket/client_socket_handle.h", |
| 310 | "socket/connection_attempts.h", |
| 311 | "socket/next_proto.cc", |
| 312 | "socket/next_proto.h", |
xunjieli | 321a96f3 | 2017-03-07 19:42:17 | [diff] [blame] | 313 | "socket/socket.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 314 | "socket/socket.h", |
| 315 | "socket/socket_bio_adapter.cc", |
| 316 | "socket/socket_bio_adapter.h", |
| 317 | "socket/socket_performance_watcher.h", |
| 318 | "socket/socket_performance_watcher_factory.h", |
| 319 | "socket/ssl_client_socket.cc", |
| 320 | "socket/ssl_client_socket.h", |
| 321 | "socket/ssl_client_socket_impl.cc", |
| 322 | "socket/ssl_client_socket_impl.h", |
| 323 | "socket/ssl_socket.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 324 | "ssl/channel_id_service.cc", |
| 325 | "ssl/channel_id_service.h", |
| 326 | "ssl/channel_id_store.cc", |
| 327 | "ssl/channel_id_store.h", |
mattm | 436ccfe | 2017-06-19 20:24:08 | [diff] [blame] | 328 | "ssl/client_cert_identity.cc", |
| 329 | "ssl/client_cert_identity.h", |
| 330 | "ssl/client_cert_identity_mac.cc", |
| 331 | "ssl/client_cert_identity_mac.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 332 | "ssl/default_channel_id_store.cc", |
| 333 | "ssl/default_channel_id_store.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 334 | "ssl/openssl_ssl_util.cc", |
| 335 | "ssl/openssl_ssl_util.h", |
| 336 | "ssl/ssl_cert_request_info.cc", |
| 337 | "ssl/ssl_cert_request_info.h", |
| 338 | "ssl/ssl_cipher_suite_names.cc", |
| 339 | "ssl/ssl_cipher_suite_names.h", |
| 340 | "ssl/ssl_client_auth_cache.cc", |
| 341 | "ssl/ssl_client_auth_cache.h", |
| 342 | "ssl/ssl_client_cert_type.h", |
| 343 | "ssl/ssl_client_session_cache.cc", |
| 344 | "ssl/ssl_client_session_cache.h", |
| 345 | "ssl/ssl_config.cc", |
| 346 | "ssl/ssl_config.h", |
| 347 | "ssl/ssl_config_service.cc", |
| 348 | "ssl/ssl_config_service.h", |
| 349 | "ssl/ssl_connection_status_flags.h", |
| 350 | "ssl/ssl_info.cc", |
| 351 | "ssl/ssl_info.h", |
David Benjamin | b9bafbe | 2017-11-07 21:41:38 | [diff] [blame] | 352 | "ssl/ssl_private_key.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 353 | "ssl/ssl_private_key.h", |
| 354 | "ssl/ssl_server_config.cc", |
| 355 | "ssl/ssl_server_config.h", |
| 356 | "ssl/token_binding.cc", |
| 357 | "ssl/token_binding.h", |
| 358 | ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 359 | net_unfiltered_sources = [] |
| 360 | |
| 361 | deps = [ |
xunjieli | 0b7f5b6 | 2016-12-06 20:43:48 | [diff] [blame] | 362 | ":constants", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 363 | ":net_resources", |
| 364 | "//base", |
| 365 | "//net/base/registry_controlled_domains", |
eranm | 9657f67 | 2017-05-05 12:25:19 | [diff] [blame] | 366 | "//net/data/ssl/certificate_transparency:ct_log_list", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 367 | "//third_party/protobuf:protobuf_lite", |
| 368 | "//url:url_features", |
| 369 | ] |
| 370 | |
xunjieli | 815ad5b | 2017-07-18 15:51:35 | [diff] [blame] | 371 | if (include_transport_security_state_preload_list) { |
| 372 | deps += [ "//net/http:generate_transport_security_state" ] |
| 373 | } |
| 374 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 375 | public_deps = [ |
Tarun Bansal | cdfa34b | 2017-11-23 05:11:17 | [diff] [blame] | 376 | ":net_nqe_proto", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 377 | ":net_quic_proto", |
rhalavati | a9b551d | 2017-02-09 12:03:00 | [diff] [blame] | 378 | ":traffic_annotation", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 379 | "//crypto", |
| 380 | "//crypto:platform", |
bcf | d0b70c4 | 2017-06-14 00:13:20 | [diff] [blame] | 381 | "//third_party/boringssl", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 382 | ] |
| 383 | |
| 384 | if (!is_nacl) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 385 | sources += [ |
| 386 | "android/cellular_signal_strength.cc", |
| 387 | "android/cellular_signal_strength.h", |
| 388 | "android/cert_verify_result_android.cc", |
| 389 | "android/cert_verify_result_android.h", |
| 390 | "android/gurl_utils.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 391 | "android/http_auth_negotiate_android.cc", |
| 392 | "android/http_auth_negotiate_android.h", |
| 393 | "android/keystore.cc", |
| 394 | "android/keystore.h", |
| 395 | "android/legacy_openssl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 396 | "android/network_change_notifier_android.cc", |
| 397 | "android/network_change_notifier_android.h", |
| 398 | "android/network_change_notifier_delegate_android.cc", |
| 399 | "android/network_change_notifier_delegate_android.h", |
| 400 | "android/network_change_notifier_factory_android.cc", |
| 401 | "android/network_change_notifier_factory_android.h", |
| 402 | "android/network_library.cc", |
| 403 | "android/network_library.h", |
| 404 | "android/traffic_stats.cc", |
| 405 | "android/traffic_stats.h", |
| 406 | "base/address_tracker_linux.cc", |
| 407 | "base/address_tracker_linux.h", |
bnc | 4fab802 | 2017-03-24 16:35:03 | [diff] [blame] | 408 | "base/arena.cc", |
| 409 | "base/arena.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 410 | "base/backoff_entry.cc", |
| 411 | "base/backoff_entry.h", |
| 412 | "base/backoff_entry_serializer.cc", |
| 413 | "base/backoff_entry_serializer.h", |
| 414 | "base/cache_type.h", |
| 415 | "base/chunked_upload_data_stream.cc", |
| 416 | "base/chunked_upload_data_stream.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 417 | "base/data_url.cc", |
| 418 | "base/data_url.h", |
| 419 | "base/elements_upload_data_stream.cc", |
| 420 | "base/elements_upload_data_stream.h", |
| 421 | "base/expiring_cache.h", |
| 422 | "base/file_stream.cc", |
| 423 | "base/file_stream.h", |
| 424 | "base/file_stream_context.cc", |
| 425 | "base/file_stream_context.h", |
| 426 | "base/file_stream_context_posix.cc", |
| 427 | "base/file_stream_context_win.cc", |
| 428 | "base/filename_util.cc", |
| 429 | "base/filename_util.h", |
| 430 | "base/filename_util_internal.cc", |
| 431 | "base/filename_util_internal.h", |
Bence Béky | d5c16edf | 2017-08-04 17:32:30 | [diff] [blame] | 432 | "base/hex_utils.cc", |
| 433 | "base/hex_utils.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 434 | "base/host_mapping_rules.cc", |
| 435 | "base/host_mapping_rules.h", |
| 436 | "base/int128.cc", |
| 437 | "base/int128.h", |
| 438 | "base/iovec.h", |
| 439 | "base/ip_pattern.cc", |
| 440 | "base/ip_pattern.h", |
| 441 | "base/layered_network_delegate.cc", |
| 442 | "base/layered_network_delegate.h", |
bnc | 4fab802 | 2017-03-24 16:35:03 | [diff] [blame] | 443 | "base/linked_hash_map.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 444 | "base/load_flags.h", |
| 445 | "base/load_flags_list.h", |
| 446 | "base/load_states.h", |
| 447 | "base/load_states_list.h", |
| 448 | "base/logging_network_change_observer.cc", |
| 449 | "base/logging_network_change_observer.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 450 | "base/mime_sniffer.cc", |
| 451 | "base/mime_sniffer.h", |
| 452 | "base/mime_util.cc", |
| 453 | "base/mime_util.h", |
| 454 | "base/net_errors_win.cc", |
| 455 | "base/net_info_source_list.h", |
| 456 | "base/network_activity_monitor.cc", |
| 457 | "base/network_activity_monitor.h", |
| 458 | "base/network_change_notifier.cc", |
| 459 | "base/network_change_notifier.h", |
| 460 | "base/network_change_notifier_factory.h", |
| 461 | "base/network_change_notifier_linux.cc", |
| 462 | "base/network_change_notifier_linux.h", |
| 463 | "base/network_change_notifier_mac.cc", |
| 464 | "base/network_change_notifier_mac.h", |
| 465 | "base/network_change_notifier_win.cc", |
| 466 | "base/network_change_notifier_win.h", |
| 467 | "base/network_config_watcher_mac.cc", |
| 468 | "base/network_config_watcher_mac.h", |
| 469 | "base/network_delegate.cc", |
| 470 | "base/network_delegate.h", |
| 471 | "base/network_delegate_impl.cc", |
| 472 | "base/network_delegate_impl.h", |
Sergey Ulanov | 5c33235ae | 2017-07-06 23:55:07 | [diff] [blame] | 473 | "base/network_interfaces_getifaddrs.cc", |
| 474 | "base/network_interfaces_getifaddrs.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 475 | "base/network_interfaces_linux.cc", |
wychen | 36575ffb | 2017-04-01 05:50:47 | [diff] [blame] | 476 | "base/network_interfaces_linux.h", |
Sergey Ulanov | 5c33235ae | 2017-07-06 23:55:07 | [diff] [blame] | 477 | "base/network_interfaces_nacl.cc", |
| 478 | "base/network_interfaces_posix.cc", |
| 479 | "base/network_interfaces_posix.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 480 | "base/network_interfaces_win.cc", |
thakis | b8590c9 | 2017-03-23 18:14:53 | [diff] [blame] | 481 | "base/network_interfaces_win.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 482 | "base/network_throttle_manager.h", |
| 483 | "base/network_throttle_manager_impl.cc", |
| 484 | "base/network_throttle_manager_impl.h", |
| 485 | "base/percentile_estimator.cc", |
| 486 | "base/percentile_estimator.h", |
| 487 | "base/platform_mime_util.h", |
| 488 | "base/platform_mime_util_linux.cc", |
| 489 | "base/platform_mime_util_mac.mm", |
| 490 | "base/platform_mime_util_win.cc", |
| 491 | "base/prioritized_dispatcher.cc", |
| 492 | "base/prioritized_dispatcher.h", |
| 493 | "base/priority_queue.h", |
| 494 | "base/proxy_delegate.h", |
| 495 | "base/request_priority.cc", |
| 496 | "base/request_priority.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 497 | "base/static_cookie_policy.cc", |
| 498 | "base/static_cookie_policy.h", |
| 499 | "base/test_data_stream.cc", |
| 500 | "base/test_data_stream.h", |
| 501 | "base/upload_bytes_element_reader.cc", |
| 502 | "base/upload_bytes_element_reader.h", |
| 503 | "base/upload_data_stream.cc", |
| 504 | "base/upload_data_stream.h", |
| 505 | "base/upload_element_reader.cc", |
| 506 | "base/upload_element_reader.h", |
| 507 | "base/upload_file_element_reader.cc", |
| 508 | "base/upload_file_element_reader.h", |
| 509 | "base/upload_progress.h", |
| 510 | "base/winsock_init.cc", |
| 511 | "base/winsock_init.h", |
| 512 | "base/winsock_util.cc", |
| 513 | "base/winsock_util.h", |
| 514 | "cert/caching_cert_verifier.cc", |
| 515 | "cert/caching_cert_verifier.h", |
| 516 | "cert/cert_database_android.cc", |
| 517 | "cert/cert_database_ios.cc", |
| 518 | "cert/cert_database_mac.cc", |
| 519 | "cert/cert_database_nss.cc", |
| 520 | "cert/cert_database_win.cc", |
Eric Roman | 227a7f3 | 2017-10-09 22:46:45 | [diff] [blame] | 521 | "cert/cert_net_fetcher.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 522 | "cert/cert_net_fetcher.h", |
| 523 | "cert/cert_verify_proc.cc", |
| 524 | "cert/cert_verify_proc.h", |
| 525 | "cert/cert_verify_proc_android.cc", |
| 526 | "cert/cert_verify_proc_android.h", |
eroman | 8ccd62d | 2017-03-16 23:54:26 | [diff] [blame] | 527 | "cert/cert_verify_proc_builtin.cc", |
| 528 | "cert/cert_verify_proc_builtin.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 529 | "cert/cert_verify_proc_ios.cc", |
| 530 | "cert/cert_verify_proc_ios.h", |
| 531 | "cert/cert_verify_proc_mac.cc", |
| 532 | "cert/cert_verify_proc_mac.h", |
| 533 | "cert/cert_verify_proc_nss.cc", |
| 534 | "cert/cert_verify_proc_nss.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 535 | "cert/cert_verify_proc_win.cc", |
| 536 | "cert/cert_verify_proc_win.h", |
| 537 | "cert/crl_set_storage.cc", |
| 538 | "cert/crl_set_storage.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 539 | "cert/ct_log_response_parser.cc", |
| 540 | "cert/ct_log_response_parser.h", |
| 541 | "cert/ct_log_verifier.cc", |
| 542 | "cert/ct_log_verifier.h", |
| 543 | "cert/ct_log_verifier_util.cc", |
| 544 | "cert/ct_log_verifier_util.h", |
| 545 | "cert/ct_objects_extractor.cc", |
| 546 | "cert/ct_objects_extractor.h", |
| 547 | "cert/ct_sct_to_string.cc", |
| 548 | "cert/ct_sct_to_string.h", |
| 549 | "cert/ct_serialization.cc", |
| 550 | "cert/ct_serialization.h", |
| 551 | "cert/ct_signed_certificate_timestamp_log_param.cc", |
| 552 | "cert/ct_signed_certificate_timestamp_log_param.h", |
| 553 | "cert/ev_root_ca_metadata.cc", |
| 554 | "cert/ev_root_ca_metadata.h", |
eroman | f628d6b | 2017-04-19 22:47:27 | [diff] [blame] | 555 | "cert/internal/system_trust_store.cc", |
| 556 | "cert/internal/system_trust_store.h", |
mattm | ea4ed823 | 2017-02-28 23:13:23 | [diff] [blame] | 557 | "cert/internal/trust_store_mac.cc", |
| 558 | "cert/internal/trust_store_mac.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 559 | "cert/internal/trust_store_nss.cc", |
| 560 | "cert/internal/trust_store_nss.h", |
| 561 | "cert/jwk_serializer.cc", |
| 562 | "cert/jwk_serializer.h", |
Ryan Sleevi | 19a7bde | 2017-11-22 06:51:39 | [diff] [blame] | 563 | "cert/known_roots.cc", |
| 564 | "cert/known_roots.h", |
eroman | f2971fd | 2017-04-20 20:10:45 | [diff] [blame] | 565 | "cert/known_roots_mac.cc", |
| 566 | "cert/known_roots_mac.h", |
| 567 | "cert/known_roots_nss.cc", |
| 568 | "cert/known_roots_nss.h", |
| 569 | "cert/known_roots_win.cc", |
| 570 | "cert/known_roots_win.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 571 | "cert/merkle_audit_proof.cc", |
| 572 | "cert/merkle_audit_proof.h", |
| 573 | "cert/merkle_consistency_proof.cc", |
| 574 | "cert/merkle_consistency_proof.h", |
| 575 | "cert/merkle_tree_leaf.cc", |
| 576 | "cert/merkle_tree_leaf.h", |
| 577 | "cert/multi_log_ct_verifier.cc", |
| 578 | "cert/multi_log_ct_verifier.h", |
| 579 | "cert/multi_threaded_cert_verifier.cc", |
| 580 | "cert/multi_threaded_cert_verifier.h", |
| 581 | "cert/nss_cert_database.cc", |
| 582 | "cert/nss_cert_database.h", |
| 583 | "cert/nss_cert_database_chromeos.cc", |
| 584 | "cert/nss_cert_database_chromeos.h", |
| 585 | "cert/nss_profile_filter_chromeos.cc", |
| 586 | "cert/nss_profile_filter_chromeos.h", |
Ryan Sleevi | 19a7bde | 2017-11-22 06:51:39 | [diff] [blame] | 587 | "cert/root_cert_list_generated.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 588 | "cert/test_keychain_search_list_mac.cc", |
| 589 | "cert/test_keychain_search_list_mac.h", |
| 590 | "cert/test_root_certs.cc", |
| 591 | "cert/test_root_certs.h", |
| 592 | "cert/test_root_certs_android.cc", |
| 593 | "cert/test_root_certs_mac.cc", |
| 594 | "cert/test_root_certs_nss.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 595 | "cert/test_root_certs_win.cc", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 596 | "cert/x509_certificate_known_roots_win.h", |
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", |
| 614 | "cookies/cookie_constants.cc", |
| 615 | "cookies/cookie_constants.h", |
| 616 | "cookies/cookie_monster.cc", |
| 617 | "cookies/cookie_monster.h", |
| 618 | "cookies/cookie_options.cc", |
| 619 | "cookies/cookie_options.h", |
| 620 | "cookies/cookie_store.cc", |
| 621 | "cookies/cookie_store.h", |
| 622 | "cookies/cookie_util.cc", |
| 623 | "cookies/cookie_util.h", |
| 624 | "cookies/parsed_cookie.cc", |
| 625 | "cookies/parsed_cookie.h", |
Maks Orlovich | 036fd1f | 2017-08-07 17:51:11 | [diff] [blame] | 626 | "disk_cache/backend_cleanup_tracker.cc", |
| 627 | "disk_cache/backend_cleanup_tracker.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 628 | "disk_cache/blockfile/addr.cc", |
| 629 | "disk_cache/blockfile/addr.h", |
| 630 | "disk_cache/blockfile/backend_impl.cc", |
| 631 | "disk_cache/blockfile/backend_impl.h", |
| 632 | "disk_cache/blockfile/bitmap.cc", |
| 633 | "disk_cache/blockfile/bitmap.h", |
| 634 | "disk_cache/blockfile/block_files.cc", |
| 635 | "disk_cache/blockfile/block_files.h", |
| 636 | "disk_cache/blockfile/disk_format.cc", |
| 637 | "disk_cache/blockfile/disk_format.h", |
| 638 | "disk_cache/blockfile/disk_format_base.h", |
| 639 | "disk_cache/blockfile/entry_impl.cc", |
| 640 | "disk_cache/blockfile/entry_impl.h", |
| 641 | "disk_cache/blockfile/errors.h", |
| 642 | "disk_cache/blockfile/eviction.cc", |
| 643 | "disk_cache/blockfile/eviction.h", |
| 644 | "disk_cache/blockfile/experiments.h", |
| 645 | "disk_cache/blockfile/file.cc", |
| 646 | "disk_cache/blockfile/file.h", |
| 647 | "disk_cache/blockfile/file_block.h", |
| 648 | "disk_cache/blockfile/file_ios.cc", |
| 649 | "disk_cache/blockfile/file_lock.cc", |
| 650 | "disk_cache/blockfile/file_lock.h", |
| 651 | "disk_cache/blockfile/file_posix.cc", |
| 652 | "disk_cache/blockfile/file_win.cc", |
| 653 | "disk_cache/blockfile/histogram_macros.h", |
| 654 | "disk_cache/blockfile/in_flight_backend_io.cc", |
| 655 | "disk_cache/blockfile/in_flight_backend_io.h", |
| 656 | "disk_cache/blockfile/in_flight_io.cc", |
| 657 | "disk_cache/blockfile/in_flight_io.h", |
| 658 | "disk_cache/blockfile/mapped_file.cc", |
| 659 | "disk_cache/blockfile/mapped_file.h", |
| 660 | "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc", |
| 661 | "disk_cache/blockfile/mapped_file_posix.cc", |
| 662 | "disk_cache/blockfile/mapped_file_win.cc", |
| 663 | "disk_cache/blockfile/rankings.cc", |
| 664 | "disk_cache/blockfile/rankings.h", |
| 665 | "disk_cache/blockfile/sparse_control.cc", |
| 666 | "disk_cache/blockfile/sparse_control.h", |
| 667 | "disk_cache/blockfile/stats.cc", |
| 668 | "disk_cache/blockfile/stats.h", |
| 669 | "disk_cache/blockfile/storage_block-inl.h", |
| 670 | "disk_cache/blockfile/storage_block.h", |
| 671 | "disk_cache/blockfile/stress_support.h", |
| 672 | "disk_cache/blockfile/trace.cc", |
| 673 | "disk_cache/blockfile/trace.h", |
| 674 | "disk_cache/blockfile/webfonts_histogram.cc", |
| 675 | "disk_cache/blockfile/webfonts_histogram.h", |
| 676 | "disk_cache/cache_util.cc", |
| 677 | "disk_cache/cache_util.h", |
| 678 | "disk_cache/cache_util_posix.cc", |
| 679 | "disk_cache/cache_util_win.cc", |
| 680 | "disk_cache/disk_cache.cc", |
| 681 | "disk_cache/disk_cache.h", |
| 682 | "disk_cache/memory/mem_backend_impl.cc", |
| 683 | "disk_cache/memory/mem_backend_impl.h", |
| 684 | "disk_cache/memory/mem_entry_impl.cc", |
| 685 | "disk_cache/memory/mem_entry_impl.h", |
| 686 | "disk_cache/net_log_parameters.cc", |
| 687 | "disk_cache/net_log_parameters.h", |
| 688 | "disk_cache/simple/simple_backend_impl.cc", |
| 689 | "disk_cache/simple/simple_backend_impl.h", |
| 690 | "disk_cache/simple/simple_backend_version.h", |
| 691 | "disk_cache/simple/simple_entry_format.cc", |
| 692 | "disk_cache/simple/simple_entry_format.h", |
| 693 | "disk_cache/simple/simple_entry_format_history.h", |
| 694 | "disk_cache/simple/simple_entry_impl.cc", |
| 695 | "disk_cache/simple/simple_entry_impl.h", |
| 696 | "disk_cache/simple/simple_entry_operation.cc", |
| 697 | "disk_cache/simple/simple_entry_operation.h", |
| 698 | "disk_cache/simple/simple_experiment.cc", |
| 699 | "disk_cache/simple/simple_experiment.h", |
Maks Orlovich | f378b3a | 2017-10-31 16:27:30 | [diff] [blame] | 700 | "disk_cache/simple/simple_file_tracker.cc", |
| 701 | "disk_cache/simple/simple_file_tracker.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 702 | "disk_cache/simple/simple_histogram_macros.h", |
| 703 | "disk_cache/simple/simple_index.cc", |
| 704 | "disk_cache/simple/simple_index.h", |
| 705 | "disk_cache/simple/simple_index_delegate.h", |
| 706 | "disk_cache/simple/simple_index_file.cc", |
| 707 | "disk_cache/simple/simple_index_file.h", |
| 708 | "disk_cache/simple/simple_index_file_posix.cc", |
| 709 | "disk_cache/simple/simple_index_file_win.cc", |
| 710 | "disk_cache/simple/simple_net_log_parameters.cc", |
| 711 | "disk_cache/simple/simple_net_log_parameters.h", |
| 712 | "disk_cache/simple/simple_synchronous_entry.cc", |
| 713 | "disk_cache/simple/simple_synchronous_entry.h", |
| 714 | "disk_cache/simple/simple_util.cc", |
| 715 | "disk_cache/simple/simple_util.h", |
| 716 | "disk_cache/simple/simple_util_posix.cc", |
| 717 | "disk_cache/simple/simple_util_win.cc", |
| 718 | "disk_cache/simple/simple_version_upgrade.cc", |
| 719 | "disk_cache/simple/simple_version_upgrade.h", |
| 720 | "dns/address_sorter.h", |
| 721 | "dns/address_sorter_posix.cc", |
| 722 | "dns/address_sorter_posix.h", |
| 723 | "dns/address_sorter_win.cc", |
| 724 | "dns/dns_client.cc", |
| 725 | "dns/dns_client.h", |
| 726 | "dns/dns_config_service.cc", |
| 727 | "dns/dns_config_service.h", |
| 728 | "dns/dns_config_service_posix.cc", |
| 729 | "dns/dns_config_service_posix.h", |
| 730 | "dns/dns_config_service_win.cc", |
| 731 | "dns/dns_config_service_win.h", |
| 732 | "dns/dns_config_watcher_mac.cc", |
| 733 | "dns/dns_config_watcher_mac.h", |
| 734 | "dns/dns_hosts.cc", |
| 735 | "dns/dns_hosts.h", |
| 736 | "dns/dns_protocol.h", |
| 737 | "dns/dns_query.cc", |
| 738 | "dns/dns_query.h", |
| 739 | "dns/dns_reloader.cc", |
| 740 | "dns/dns_reloader.h", |
| 741 | "dns/dns_response.cc", |
| 742 | "dns/dns_response.h", |
| 743 | "dns/dns_session.cc", |
| 744 | "dns/dns_session.h", |
| 745 | "dns/dns_socket_pool.cc", |
| 746 | "dns/dns_socket_pool.h", |
| 747 | "dns/dns_transaction.cc", |
| 748 | "dns/dns_transaction.h", |
| 749 | "dns/host_cache.cc", |
| 750 | "dns/host_cache.h", |
| 751 | "dns/host_resolver.cc", |
| 752 | "dns/host_resolver.h", |
| 753 | "dns/host_resolver_impl.cc", |
| 754 | "dns/host_resolver_impl.h", |
| 755 | "dns/host_resolver_proc.cc", |
| 756 | "dns/host_resolver_proc.h", |
| 757 | "dns/mapped_host_resolver.cc", |
| 758 | "dns/mapped_host_resolver.h", |
| 759 | "dns/mdns_cache.cc", |
| 760 | "dns/mdns_cache.h", |
| 761 | "dns/mdns_client.cc", |
| 762 | "dns/mdns_client.h", |
| 763 | "dns/mdns_client_impl.cc", |
| 764 | "dns/mdns_client_impl.h", |
| 765 | "dns/notify_watcher_mac.cc", |
| 766 | "dns/notify_watcher_mac.h", |
| 767 | "dns/record_parsed.cc", |
| 768 | "dns/record_parsed.h", |
| 769 | "dns/record_rdata.cc", |
| 770 | "dns/record_rdata.h", |
| 771 | "dns/serial_worker.cc", |
| 772 | "dns/serial_worker.h", |
| 773 | "filter/filter_source_stream.cc", |
| 774 | "filter/filter_source_stream.h", |
| 775 | "filter/gzip_header.cc", |
| 776 | "filter/gzip_header.h", |
| 777 | "filter/gzip_source_stream.cc", |
| 778 | "filter/gzip_source_stream.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 779 | "filter/source_stream.cc", |
| 780 | "filter/source_stream.h", |
| 781 | "filter/source_stream_type_list.h", |
| 782 | "http/bidirectional_stream.cc", |
| 783 | "http/bidirectional_stream.h", |
| 784 | "http/bidirectional_stream_impl.cc", |
| 785 | "http/bidirectional_stream_impl.h", |
| 786 | "http/bidirectional_stream_request_info.cc", |
| 787 | "http/bidirectional_stream_request_info.h", |
wangyix | 64ccc57c | 2017-06-01 23:14:16 | [diff] [blame] | 788 | "http/broken_alternative_services.cc", |
| 789 | "http/broken_alternative_services.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 790 | "http/failing_http_transaction_factory.cc", |
| 791 | "http/failing_http_transaction_factory.h", |
| 792 | "http/http_auth.cc", |
| 793 | "http/http_auth.h", |
| 794 | "http/http_auth_cache.cc", |
| 795 | "http/http_auth_cache.h", |
| 796 | "http/http_auth_controller.cc", |
| 797 | "http/http_auth_controller.h", |
| 798 | "http/http_auth_filter.cc", |
| 799 | "http/http_auth_filter.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 800 | "http/http_auth_gssapi_posix.cc", |
| 801 | "http/http_auth_gssapi_posix.h", |
| 802 | "http/http_auth_handler.cc", |
| 803 | "http/http_auth_handler.h", |
| 804 | "http/http_auth_handler_basic.cc", |
| 805 | "http/http_auth_handler_basic.h", |
| 806 | "http/http_auth_handler_digest.cc", |
| 807 | "http/http_auth_handler_digest.h", |
| 808 | "http/http_auth_handler_factory.cc", |
| 809 | "http/http_auth_handler_factory.h", |
| 810 | "http/http_auth_handler_negotiate.cc", |
| 811 | "http/http_auth_handler_negotiate.h", |
| 812 | "http/http_auth_handler_ntlm.cc", |
| 813 | "http/http_auth_handler_ntlm.h", |
| 814 | "http/http_auth_handler_ntlm_portable.cc", |
| 815 | "http/http_auth_handler_ntlm_win.cc", |
| 816 | "http/http_auth_multi_round_parse.cc", |
| 817 | "http/http_auth_multi_round_parse.h", |
| 818 | "http/http_auth_preferences.cc", |
| 819 | "http/http_auth_preferences.h", |
| 820 | "http/http_auth_sspi_win.cc", |
| 821 | "http/http_auth_sspi_win.h", |
| 822 | "http/http_basic_state.cc", |
| 823 | "http/http_basic_state.h", |
| 824 | "http/http_basic_stream.cc", |
| 825 | "http/http_basic_stream.h", |
| 826 | "http/http_cache.cc", |
| 827 | "http/http_cache.h", |
| 828 | "http/http_cache_lookup_manager.cc", |
| 829 | "http/http_cache_lookup_manager.h", |
| 830 | "http/http_cache_transaction.cc", |
| 831 | "http/http_cache_transaction.h", |
shivanisha | c6582e1 | 2017-07-14 22:18:19 | [diff] [blame] | 832 | "http/http_cache_writers.cc", |
| 833 | "http/http_cache_writers.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 834 | "http/http_chunked_decoder.cc", |
| 835 | "http/http_chunked_decoder.h", |
| 836 | "http/http_content_disposition.cc", |
| 837 | "http/http_content_disposition.h", |
| 838 | "http/http_network_layer.cc", |
| 839 | "http/http_network_layer.h", |
| 840 | "http/http_network_session.cc", |
| 841 | "http/http_network_session.h", |
| 842 | "http/http_network_session_peer.cc", |
| 843 | "http/http_network_session_peer.h", |
| 844 | "http/http_network_transaction.cc", |
| 845 | "http/http_network_transaction.h", |
| 846 | "http/http_proxy_client_socket.cc", |
| 847 | "http/http_proxy_client_socket.h", |
| 848 | "http/http_proxy_client_socket_pool.cc", |
| 849 | "http/http_proxy_client_socket_pool.h", |
| 850 | "http/http_proxy_client_socket_wrapper.cc", |
| 851 | "http/http_proxy_client_socket_wrapper.h", |
| 852 | "http/http_request_info.cc", |
| 853 | "http/http_request_info.h", |
| 854 | "http/http_response_body_drainer.cc", |
| 855 | "http/http_response_body_drainer.h", |
| 856 | "http/http_server_properties.cc", |
| 857 | "http/http_server_properties.h", |
| 858 | "http/http_server_properties_impl.cc", |
| 859 | "http/http_server_properties_impl.h", |
| 860 | "http/http_server_properties_manager.cc", |
| 861 | "http/http_server_properties_manager.h", |
| 862 | "http/http_status_code.cc", |
| 863 | "http/http_status_code.h", |
| 864 | "http/http_stream.h", |
| 865 | "http/http_stream_factory.cc", |
| 866 | "http/http_stream_factory.h", |
| 867 | "http/http_stream_factory_impl.cc", |
| 868 | "http/http_stream_factory_impl.h", |
| 869 | "http/http_stream_factory_impl_job.cc", |
| 870 | "http/http_stream_factory_impl_job.h", |
| 871 | "http/http_stream_factory_impl_job_controller.cc", |
| 872 | "http/http_stream_factory_impl_job_controller.h", |
| 873 | "http/http_stream_factory_impl_request.cc", |
| 874 | "http/http_stream_factory_impl_request.h", |
| 875 | "http/http_stream_parser.cc", |
| 876 | "http/http_stream_parser.h", |
| 877 | "http/http_transaction.h", |
| 878 | "http/http_transaction_factory.h", |
| 879 | "http/http_version.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 880 | "http/partial_data.cc", |
| 881 | "http/partial_data.h", |
| 882 | "http/proxy_client_socket.cc", |
| 883 | "http/proxy_client_socket.h", |
| 884 | "http/proxy_connect_redirect_http_stream.cc", |
| 885 | "http/proxy_connect_redirect_http_stream.h", |
| 886 | "http/transport_security_persister.cc", |
| 887 | "http/transport_security_persister.h", |
| 888 | "http/transport_security_state_static.h", |
| 889 | "http/url_security_manager.cc", |
| 890 | "http/url_security_manager.h", |
| 891 | "http/url_security_manager_posix.cc", |
| 892 | "http/url_security_manager_win.cc", |
| 893 | "http2/decoder/decode_buffer.cc", |
| 894 | "http2/decoder/decode_buffer.h", |
| 895 | "http2/decoder/decode_http2_structures.cc", |
| 896 | "http2/decoder/decode_http2_structures.h", |
| 897 | "http2/decoder/decode_status.cc", |
| 898 | "http2/decoder/decode_status.h", |
| 899 | "http2/decoder/frame_decoder_state.cc", |
| 900 | "http2/decoder/frame_decoder_state.h", |
| 901 | "http2/decoder/http2_frame_decoder.cc", |
| 902 | "http2/decoder/http2_frame_decoder.h", |
| 903 | "http2/decoder/http2_frame_decoder_listener.cc", |
| 904 | "http2/decoder/http2_frame_decoder_listener.h", |
| 905 | "http2/decoder/http2_structure_decoder.cc", |
| 906 | "http2/decoder/http2_structure_decoder.h", |
| 907 | "http2/decoder/payload_decoders/altsvc_payload_decoder.cc", |
| 908 | "http2/decoder/payload_decoders/altsvc_payload_decoder.h", |
| 909 | "http2/decoder/payload_decoders/continuation_payload_decoder.cc", |
| 910 | "http2/decoder/payload_decoders/continuation_payload_decoder.h", |
| 911 | "http2/decoder/payload_decoders/data_payload_decoder.cc", |
| 912 | "http2/decoder/payload_decoders/data_payload_decoder.h", |
| 913 | "http2/decoder/payload_decoders/goaway_payload_decoder.cc", |
| 914 | "http2/decoder/payload_decoders/goaway_payload_decoder.h", |
| 915 | "http2/decoder/payload_decoders/headers_payload_decoder.cc", |
| 916 | "http2/decoder/payload_decoders/headers_payload_decoder.h", |
| 917 | "http2/decoder/payload_decoders/ping_payload_decoder.cc", |
| 918 | "http2/decoder/payload_decoders/ping_payload_decoder.h", |
| 919 | "http2/decoder/payload_decoders/priority_payload_decoder.cc", |
| 920 | "http2/decoder/payload_decoders/priority_payload_decoder.h", |
| 921 | "http2/decoder/payload_decoders/push_promise_payload_decoder.cc", |
| 922 | "http2/decoder/payload_decoders/push_promise_payload_decoder.h", |
| 923 | "http2/decoder/payload_decoders/rst_stream_payload_decoder.cc", |
| 924 | "http2/decoder/payload_decoders/rst_stream_payload_decoder.h", |
| 925 | "http2/decoder/payload_decoders/settings_payload_decoder.cc", |
| 926 | "http2/decoder/payload_decoders/settings_payload_decoder.h", |
| 927 | "http2/decoder/payload_decoders/unknown_payload_decoder.cc", |
| 928 | "http2/decoder/payload_decoders/unknown_payload_decoder.h", |
| 929 | "http2/decoder/payload_decoders/window_update_payload_decoder.cc", |
| 930 | "http2/decoder/payload_decoders/window_update_payload_decoder.h", |
| 931 | "http2/hpack/decoder/hpack_block_decoder.cc", |
| 932 | "http2/hpack/decoder/hpack_block_decoder.h", |
Bence Béky | bad9ef9 | 2017-07-28 13:36:27 | [diff] [blame] | 933 | "http2/hpack/decoder/hpack_decoder.cc", |
| 934 | "http2/hpack/decoder/hpack_decoder.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 935 | "http2/hpack/decoder/hpack_decoder_listener.cc", |
| 936 | "http2/hpack/decoder/hpack_decoder_listener.h", |
| 937 | "http2/hpack/decoder/hpack_decoder_state.cc", |
| 938 | "http2/hpack/decoder/hpack_decoder_state.h", |
| 939 | "http2/hpack/decoder/hpack_decoder_string_buffer.cc", |
| 940 | "http2/hpack/decoder/hpack_decoder_string_buffer.h", |
| 941 | "http2/hpack/decoder/hpack_decoder_tables.cc", |
| 942 | "http2/hpack/decoder/hpack_decoder_tables.h", |
| 943 | "http2/hpack/decoder/hpack_entry_decoder.cc", |
| 944 | "http2/hpack/decoder/hpack_entry_decoder.h", |
| 945 | "http2/hpack/decoder/hpack_entry_decoder_listener.cc", |
| 946 | "http2/hpack/decoder/hpack_entry_decoder_listener.h", |
| 947 | "http2/hpack/decoder/hpack_entry_type_decoder.cc", |
| 948 | "http2/hpack/decoder/hpack_entry_type_decoder.h", |
| 949 | "http2/hpack/decoder/hpack_string_decoder.cc", |
| 950 | "http2/hpack/decoder/hpack_string_decoder.h", |
| 951 | "http2/hpack/decoder/hpack_string_decoder_listener.cc", |
| 952 | "http2/hpack/decoder/hpack_string_decoder_listener.h", |
| 953 | "http2/hpack/decoder/hpack_varint_decoder.cc", |
| 954 | "http2/hpack/decoder/hpack_varint_decoder.h", |
| 955 | "http2/hpack/decoder/hpack_whole_entry_buffer.cc", |
| 956 | "http2/hpack/decoder/hpack_whole_entry_buffer.h", |
| 957 | "http2/hpack/decoder/hpack_whole_entry_listener.cc", |
| 958 | "http2/hpack/decoder/hpack_whole_entry_listener.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 959 | "http2/hpack/hpack_static_table_entries.inc", |
| 960 | "http2/hpack/hpack_string.cc", |
| 961 | "http2/hpack/hpack_string.h", |
| 962 | "http2/hpack/http2_hpack_constants.cc", |
| 963 | "http2/hpack/http2_hpack_constants.h", |
Bence Béky | d140652 | 2017-08-07 18:05:08 | [diff] [blame] | 964 | "http2/hpack/huffman/hpack_huffman_decoder.cc", |
| 965 | "http2/hpack/huffman/hpack_huffman_decoder.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 966 | "http2/http2_constants.cc", |
| 967 | "http2/http2_constants.h", |
| 968 | "http2/http2_structures.cc", |
| 969 | "http2/http2_structures.h", |
Bence Béky | 6d0fa2c | 2017-06-28 17:42:01 | [diff] [blame] | 970 | "http2/platform/api/http2_export.h", |
bnc | 7c36d9b | 2017-02-09 20:35:43 | [diff] [blame] | 971 | "http2/platform/api/http2_reconstruct_object.h", |
Bence Béky | e53090e | 2017-07-12 02:58:40 | [diff] [blame] | 972 | "http2/platform/api/http2_string.h", |
| 973 | "http2/platform/api/http2_string_piece.h", |
| 974 | "http2/platform/api/http2_string_utils.h", |
Bence Béky | 6d0fa2c | 2017-06-28 17:42:01 | [diff] [blame] | 975 | "http2/platform/impl/http2_export_impl.h", |
bnc | 7c36d9b | 2017-02-09 20:35:43 | [diff] [blame] | 976 | "http2/platform/impl/http2_reconstruct_object_impl.h", |
Bence Béky | e53090e | 2017-07-12 02:58:40 | [diff] [blame] | 977 | "http2/platform/impl/http2_string_impl.h", |
| 978 | "http2/platform/impl/http2_string_piece_impl.h", |
| 979 | "http2/platform/impl/http2_string_utils_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 980 | "http2/tools/http2_bug_tracker.h", |
| 981 | "log/file_net_log_observer.cc", |
| 982 | "log/file_net_log_observer.h", |
| 983 | "log/net_log_util.cc", |
| 984 | "log/net_log_util.h", |
| 985 | "log/trace_net_log_observer.cc", |
| 986 | "log/trace_net_log_observer.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 987 | "nqe/cached_network_quality.cc", |
| 988 | "nqe/cached_network_quality.h", |
| 989 | "nqe/effective_connection_type.cc", |
| 990 | "nqe/effective_connection_type.h", |
tbansal | 1bd4a95 | 2017-06-06 23:01:46 | [diff] [blame] | 991 | "nqe/effective_connection_type_observer.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 992 | "nqe/event_creator.cc", |
| 993 | "nqe/event_creator.h", |
| 994 | "nqe/external_estimate_provider.h", |
Tarun Bansal | 9414bae | 2017-11-21 01:37:23 | [diff] [blame] | 995 | "nqe/network_id.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 996 | "nqe/network_id.h", |
| 997 | "nqe/network_qualities_prefs_manager.cc", |
| 998 | "nqe/network_qualities_prefs_manager.h", |
| 999 | "nqe/network_quality.cc", |
| 1000 | "nqe/network_quality.h", |
| 1001 | "nqe/network_quality_estimator.cc", |
| 1002 | "nqe/network_quality_estimator.h", |
| 1003 | "nqe/network_quality_estimator_params.cc", |
| 1004 | "nqe/network_quality_estimator_params.h", |
tbansal | 82edab4 | 2017-06-19 05:55:25 | [diff] [blame] | 1005 | "nqe/network_quality_estimator_util.cc", |
| 1006 | "nqe/network_quality_estimator_util.h", |
Devdeep Ray | 35f5066 | 2017-08-11 02:41:30 | [diff] [blame] | 1007 | "nqe/network_quality_observation.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1008 | "nqe/network_quality_observation.h", |
Tarun Bansal | d2677a1 | 2017-08-31 01:26:38 | [diff] [blame] | 1009 | "nqe/network_quality_observation_source.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1010 | "nqe/network_quality_observation_source.h", |
tbansal | 1bd4a95 | 2017-06-06 23:01:46 | [diff] [blame] | 1011 | "nqe/network_quality_provider.cc", |
| 1012 | "nqe/network_quality_provider.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1013 | "nqe/network_quality_store.cc", |
| 1014 | "nqe/network_quality_store.h", |
Devdeep Ray | 35f5066 | 2017-08-11 02:41:30 | [diff] [blame] | 1015 | "nqe/observation_buffer.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1016 | "nqe/observation_buffer.h", |
tbansal | 1bd4a95 | 2017-06-06 23:01:46 | [diff] [blame] | 1017 | "nqe/rtt_throughput_estimates_observer.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1018 | "nqe/socket_watcher.cc", |
| 1019 | "nqe/socket_watcher.h", |
| 1020 | "nqe/socket_watcher_factory.cc", |
| 1021 | "nqe/socket_watcher_factory.h", |
| 1022 | "nqe/throughput_analyzer.cc", |
| 1023 | "nqe/throughput_analyzer.h", |
| 1024 | "nqe/weighted_observation.h", |
zentaro | b89acda4 | 2017-07-14 01:28:57 | [diff] [blame] | 1025 | "ntlm/ntlm.cc", |
| 1026 | "ntlm/ntlm.h", |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 1027 | "ntlm/ntlm_buffer_reader.cc", |
| 1028 | "ntlm/ntlm_buffer_reader.h", |
| 1029 | "ntlm/ntlm_buffer_writer.cc", |
| 1030 | "ntlm/ntlm_buffer_writer.h", |
Zentaro Kavanagh | dd55661 | 2017-08-03 20:27:04 | [diff] [blame] | 1031 | "ntlm/ntlm_client.cc", |
| 1032 | "ntlm/ntlm_client.h", |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 1033 | "ntlm/ntlm_constants.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1034 | "proxy/dhcp_proxy_script_adapter_fetcher_win.cc", |
| 1035 | "proxy/dhcp_proxy_script_adapter_fetcher_win.h", |
| 1036 | "proxy/dhcp_proxy_script_fetcher.cc", |
| 1037 | "proxy/dhcp_proxy_script_fetcher.h", |
| 1038 | "proxy/dhcp_proxy_script_fetcher_factory.cc", |
| 1039 | "proxy/dhcp_proxy_script_fetcher_factory.h", |
| 1040 | "proxy/dhcp_proxy_script_fetcher_win.cc", |
| 1041 | "proxy/dhcp_proxy_script_fetcher_win.h", |
| 1042 | "proxy/dhcpcsvc_init_win.cc", |
| 1043 | "proxy/dhcpcsvc_init_win.h", |
| 1044 | "proxy/multi_threaded_proxy_resolver.cc", |
| 1045 | "proxy/multi_threaded_proxy_resolver.h", |
| 1046 | "proxy/network_delegate_error_observer.cc", |
| 1047 | "proxy/network_delegate_error_observer.h", |
Lily Houghton | 14ec569 | 2017-12-13 15:25:05 | [diff] [blame] | 1048 | "proxy/pac_js_library.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1049 | "proxy/polling_proxy_config_service.cc", |
| 1050 | "proxy/polling_proxy_config_service.h", |
| 1051 | "proxy/proxy_bypass_rules.cc", |
| 1052 | "proxy/proxy_bypass_rules.h", |
| 1053 | "proxy/proxy_config.cc", |
| 1054 | "proxy/proxy_config.h", |
| 1055 | "proxy/proxy_config_service.h", |
| 1056 | "proxy/proxy_config_service_android.cc", |
| 1057 | "proxy/proxy_config_service_android.h", |
| 1058 | "proxy/proxy_config_service_fixed.cc", |
| 1059 | "proxy/proxy_config_service_fixed.h", |
| 1060 | "proxy/proxy_config_service_ios.cc", |
| 1061 | "proxy/proxy_config_service_ios.h", |
| 1062 | "proxy/proxy_config_service_linux.cc", |
| 1063 | "proxy/proxy_config_service_linux.h", |
| 1064 | "proxy/proxy_config_service_mac.cc", |
| 1065 | "proxy/proxy_config_service_mac.h", |
| 1066 | "proxy/proxy_config_service_win.cc", |
| 1067 | "proxy/proxy_config_service_win.h", |
| 1068 | "proxy/proxy_config_source.cc", |
| 1069 | "proxy/proxy_config_source.h", |
| 1070 | "proxy/proxy_info.cc", |
| 1071 | "proxy/proxy_info.h", |
| 1072 | "proxy/proxy_list.cc", |
| 1073 | "proxy/proxy_list.h", |
| 1074 | "proxy/proxy_resolver.h", |
| 1075 | "proxy/proxy_resolver_error_observer.h", |
| 1076 | "proxy/proxy_resolver_factory.cc", |
| 1077 | "proxy/proxy_resolver_factory.h", |
| 1078 | "proxy/proxy_resolver_mac.cc", |
| 1079 | "proxy/proxy_resolver_mac.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1080 | "proxy/proxy_resolver_script_data.cc", |
| 1081 | "proxy/proxy_resolver_script_data.h", |
| 1082 | "proxy/proxy_resolver_winhttp.cc", |
| 1083 | "proxy/proxy_resolver_winhttp.h", |
| 1084 | "proxy/proxy_retry_info.h", |
| 1085 | "proxy/proxy_script_decider.cc", |
| 1086 | "proxy/proxy_script_decider.h", |
| 1087 | "proxy/proxy_script_fetcher.h", |
| 1088 | "proxy/proxy_script_fetcher_impl.cc", |
| 1089 | "proxy/proxy_script_fetcher_impl.h", |
| 1090 | "proxy/proxy_server.cc", |
| 1091 | "proxy/proxy_server.h", |
| 1092 | "proxy/proxy_server_mac.cc", |
| 1093 | "proxy/proxy_service.cc", |
| 1094 | "proxy/proxy_service.h", |
| 1095 | "quic/chromium/bidirectional_stream_quic_impl.cc", |
| 1096 | "quic/chromium/bidirectional_stream_quic_impl.h", |
| 1097 | "quic/chromium/crypto/channel_id_chromium.cc", |
| 1098 | "quic/chromium/crypto/channel_id_chromium.h", |
| 1099 | "quic/chromium/crypto/proof_source_chromium.cc", |
| 1100 | "quic/chromium/crypto/proof_source_chromium.h", |
| 1101 | "quic/chromium/crypto/proof_verifier_chromium.cc", |
| 1102 | "quic/chromium/crypto/proof_verifier_chromium.h", |
| 1103 | "quic/chromium/network_connection.cc", |
| 1104 | "quic/chromium/network_connection.h", |
| 1105 | "quic/chromium/properties_based_quic_server_info.cc", |
| 1106 | "quic/chromium/properties_based_quic_server_info.h", |
| 1107 | "quic/chromium/quic_address_mismatch.cc", |
| 1108 | "quic/chromium/quic_address_mismatch.h", |
| 1109 | "quic/chromium/quic_chromium_alarm_factory.cc", |
| 1110 | "quic/chromium/quic_chromium_alarm_factory.h", |
| 1111 | "quic/chromium/quic_chromium_client_session.cc", |
| 1112 | "quic/chromium/quic_chromium_client_session.h", |
| 1113 | "quic/chromium/quic_chromium_client_stream.cc", |
| 1114 | "quic/chromium/quic_chromium_client_stream.h", |
| 1115 | "quic/chromium/quic_chromium_connection_helper.cc", |
| 1116 | "quic/chromium/quic_chromium_connection_helper.h", |
| 1117 | "quic/chromium/quic_chromium_packet_reader.cc", |
| 1118 | "quic/chromium/quic_chromium_packet_reader.h", |
| 1119 | "quic/chromium/quic_chromium_packet_writer.cc", |
| 1120 | "quic/chromium/quic_chromium_packet_writer.h", |
| 1121 | "quic/chromium/quic_clock_skew_detector.cc", |
| 1122 | "quic/chromium/quic_clock_skew_detector.h", |
| 1123 | "quic/chromium/quic_connection_logger.cc", |
| 1124 | "quic/chromium/quic_connection_logger.h", |
Zhongyi Shi | 8fff75b | 2017-11-19 21:36:36 | [diff] [blame] | 1125 | "quic/chromium/quic_connectivity_probing_manager.cc", |
| 1126 | "quic/chromium/quic_connectivity_probing_manager.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1127 | "quic/chromium/quic_crypto_client_stream_factory.cc", |
| 1128 | "quic/chromium/quic_crypto_client_stream_factory.h", |
| 1129 | "quic/chromium/quic_http_stream.cc", |
| 1130 | "quic/chromium/quic_http_stream.h", |
| 1131 | "quic/chromium/quic_http_utils.cc", |
| 1132 | "quic/chromium/quic_http_utils.h", |
Yixin Wang | 0d2c6b7e1 | 2017-08-16 21:12:55 | [diff] [blame] | 1133 | "quic/chromium/quic_proxy_client_socket.cc", |
| 1134 | "quic/chromium/quic_proxy_client_socket.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1135 | "quic/chromium/quic_server_info.cc", |
| 1136 | "quic/chromium/quic_server_info.h", |
| 1137 | "quic/chromium/quic_stream_factory.cc", |
| 1138 | "quic/chromium/quic_stream_factory.h", |
| 1139 | "quic/chromium/quic_utils_chromium.cc", |
| 1140 | "quic/chromium/quic_utils_chromium.h", |
| 1141 | "quic/core/congestion_control/bandwidth_sampler.cc", |
| 1142 | "quic/core/congestion_control/bandwidth_sampler.h", |
| 1143 | "quic/core/congestion_control/bbr_sender.cc", |
| 1144 | "quic/core/congestion_control/bbr_sender.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1145 | "quic/core/congestion_control/cubic_bytes.cc", |
| 1146 | "quic/core/congestion_control/cubic_bytes.h", |
| 1147 | "quic/core/congestion_control/general_loss_algorithm.cc", |
| 1148 | "quic/core/congestion_control/general_loss_algorithm.h", |
| 1149 | "quic/core/congestion_control/hybrid_slow_start.cc", |
| 1150 | "quic/core/congestion_control/hybrid_slow_start.h", |
| 1151 | "quic/core/congestion_control/loss_detection_interface.h", |
| 1152 | "quic/core/congestion_control/pacing_sender.cc", |
| 1153 | "quic/core/congestion_control/pacing_sender.h", |
| 1154 | "quic/core/congestion_control/prr_sender.cc", |
| 1155 | "quic/core/congestion_control/prr_sender.h", |
| 1156 | "quic/core/congestion_control/rtt_stats.cc", |
| 1157 | "quic/core/congestion_control/rtt_stats.h", |
| 1158 | "quic/core/congestion_control/send_algorithm_interface.cc", |
| 1159 | "quic/core/congestion_control/send_algorithm_interface.h", |
| 1160 | "quic/core/congestion_control/tcp_cubic_sender_base.cc", |
| 1161 | "quic/core/congestion_control/tcp_cubic_sender_base.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1162 | "quic/core/congestion_control/tcp_cubic_sender_bytes.cc", |
ckrasic | b07e160 | 2017-01-26 01:39:02 | [diff] [blame] | 1163 | "quic/core/congestion_control/tcp_cubic_sender_bytes.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1164 | "quic/core/congestion_control/windowed_filter.h", |
| 1165 | "quic/core/crypto/aead_base_decrypter.cc", |
| 1166 | "quic/core/crypto/aead_base_decrypter.h", |
| 1167 | "quic/core/crypto/aead_base_encrypter.cc", |
| 1168 | "quic/core/crypto/aead_base_encrypter.h", |
| 1169 | "quic/core/crypto/aes_128_gcm_12_decrypter.cc", |
| 1170 | "quic/core/crypto/aes_128_gcm_12_decrypter.h", |
| 1171 | "quic/core/crypto/aes_128_gcm_12_encrypter.cc", |
| 1172 | "quic/core/crypto/aes_128_gcm_12_encrypter.h", |
Michael Warres | 74ee3ce | 2017-10-09 15:26:37 | [diff] [blame] | 1173 | "quic/core/crypto/aes_128_gcm_decrypter.cc", |
| 1174 | "quic/core/crypto/aes_128_gcm_decrypter.h", |
| 1175 | "quic/core/crypto/aes_128_gcm_encrypter.cc", |
| 1176 | "quic/core/crypto/aes_128_gcm_encrypter.h", |
| 1177 | "quic/core/crypto/aes_256_gcm_decrypter.cc", |
| 1178 | "quic/core/crypto/aes_256_gcm_decrypter.h", |
| 1179 | "quic/core/crypto/aes_256_gcm_encrypter.cc", |
| 1180 | "quic/core/crypto/aes_256_gcm_encrypter.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1181 | "quic/core/crypto/cert_compressor.cc", |
| 1182 | "quic/core/crypto/cert_compressor.h", |
| 1183 | "quic/core/crypto/chacha20_poly1305_decrypter.cc", |
| 1184 | "quic/core/crypto/chacha20_poly1305_decrypter.h", |
| 1185 | "quic/core/crypto/chacha20_poly1305_encrypter.cc", |
| 1186 | "quic/core/crypto/chacha20_poly1305_encrypter.h", |
Michael Warres | 74ee3ce | 2017-10-09 15:26:37 | [diff] [blame] | 1187 | "quic/core/crypto/chacha20_poly1305_tls_decrypter.cc", |
| 1188 | "quic/core/crypto/chacha20_poly1305_tls_decrypter.h", |
| 1189 | "quic/core/crypto/chacha20_poly1305_tls_encrypter.cc", |
| 1190 | "quic/core/crypto/chacha20_poly1305_tls_encrypter.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1191 | "quic/core/crypto/channel_id.cc", |
| 1192 | "quic/core/crypto/channel_id.h", |
| 1193 | "quic/core/crypto/common_cert_set.cc", |
| 1194 | "quic/core/crypto/common_cert_set.h", |
| 1195 | "quic/core/crypto/crypto_framer.cc", |
| 1196 | "quic/core/crypto/crypto_framer.h", |
| 1197 | "quic/core/crypto/crypto_handshake.cc", |
| 1198 | "quic/core/crypto/crypto_handshake.h", |
| 1199 | "quic/core/crypto/crypto_handshake_message.cc", |
| 1200 | "quic/core/crypto/crypto_handshake_message.h", |
Fan Yang | 2a1699a | 2017-07-25 16:44:55 | [diff] [blame] | 1201 | "quic/core/crypto/crypto_message_parser.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1202 | "quic/core/crypto/crypto_protocol.h", |
| 1203 | "quic/core/crypto/crypto_secret_boxer.cc", |
| 1204 | "quic/core/crypto/crypto_secret_boxer.h", |
| 1205 | "quic/core/crypto/crypto_server_config_protobuf.cc", |
| 1206 | "quic/core/crypto/crypto_server_config_protobuf.h", |
| 1207 | "quic/core/crypto/crypto_utils.cc", |
| 1208 | "quic/core/crypto/crypto_utils.h", |
| 1209 | "quic/core/crypto/curve25519_key_exchange.cc", |
| 1210 | "quic/core/crypto/curve25519_key_exchange.h", |
| 1211 | "quic/core/crypto/ephemeral_key_source.h", |
| 1212 | "quic/core/crypto/key_exchange.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1213 | "quic/core/crypto/null_decrypter.cc", |
| 1214 | "quic/core/crypto/null_decrypter.h", |
| 1215 | "quic/core/crypto/null_encrypter.cc", |
| 1216 | "quic/core/crypto/null_encrypter.h", |
| 1217 | "quic/core/crypto/p256_key_exchange.cc", |
| 1218 | "quic/core/crypto/p256_key_exchange.h", |
| 1219 | "quic/core/crypto/proof_source.cc", |
| 1220 | "quic/core/crypto/proof_source.h", |
| 1221 | "quic/core/crypto/proof_verifier.h", |
| 1222 | "quic/core/crypto/quic_compressed_certs_cache.cc", |
| 1223 | "quic/core/crypto/quic_compressed_certs_cache.h", |
| 1224 | "quic/core/crypto/quic_crypto_client_config.cc", |
| 1225 | "quic/core/crypto/quic_crypto_client_config.h", |
| 1226 | "quic/core/crypto/quic_crypto_proof.cc", |
| 1227 | "quic/core/crypto/quic_crypto_proof.h", |
| 1228 | "quic/core/crypto/quic_crypto_server_config.cc", |
| 1229 | "quic/core/crypto/quic_crypto_server_config.h", |
| 1230 | "quic/core/crypto/quic_decrypter.cc", |
| 1231 | "quic/core/crypto/quic_decrypter.h", |
| 1232 | "quic/core/crypto/quic_encrypter.cc", |
| 1233 | "quic/core/crypto/quic_encrypter.h", |
| 1234 | "quic/core/crypto/quic_random.cc", |
| 1235 | "quic/core/crypto/quic_random.h", |
Ryan Hamilton | 8815148 | 2017-09-06 14:55:45 | [diff] [blame] | 1236 | "quic/core/crypto/quic_tls_adapter.cc", |
| 1237 | "quic/core/crypto/quic_tls_adapter.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1238 | "quic/core/crypto/scoped_evp_aead_ctx.cc", |
| 1239 | "quic/core/crypto/scoped_evp_aead_ctx.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1240 | "quic/core/frames/quic_ack_frame.cc", |
| 1241 | "quic/core/frames/quic_ack_frame.h", |
| 1242 | "quic/core/frames/quic_blocked_frame.cc", |
| 1243 | "quic/core/frames/quic_blocked_frame.h", |
| 1244 | "quic/core/frames/quic_connection_close_frame.cc", |
| 1245 | "quic/core/frames/quic_connection_close_frame.h", |
Fan Yang | 0a1a0af | 2017-11-27 19:28:05 | [diff] [blame] | 1246 | "quic/core/frames/quic_control_frame.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1247 | "quic/core/frames/quic_frame.cc", |
| 1248 | "quic/core/frames/quic_frame.h", |
| 1249 | "quic/core/frames/quic_goaway_frame.cc", |
| 1250 | "quic/core/frames/quic_goaway_frame.h", |
| 1251 | "quic/core/frames/quic_mtu_discovery_frame.h", |
| 1252 | "quic/core/frames/quic_padding_frame.cc", |
| 1253 | "quic/core/frames/quic_padding_frame.h", |
Fan Yang | 0a1a0af | 2017-11-27 19:28:05 | [diff] [blame] | 1254 | "quic/core/frames/quic_ping_frame.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1255 | "quic/core/frames/quic_ping_frame.h", |
| 1256 | "quic/core/frames/quic_rst_stream_frame.cc", |
| 1257 | "quic/core/frames/quic_rst_stream_frame.h", |
| 1258 | "quic/core/frames/quic_stop_waiting_frame.cc", |
| 1259 | "quic/core/frames/quic_stop_waiting_frame.h", |
| 1260 | "quic/core/frames/quic_stream_frame.cc", |
| 1261 | "quic/core/frames/quic_stream_frame.h", |
| 1262 | "quic/core/frames/quic_window_update_frame.cc", |
| 1263 | "quic/core/frames/quic_window_update_frame.h", |
vasilvv | 8b7782e | 2017-05-12 01:52:03 | [diff] [blame] | 1264 | "quic/core/packet_number_indexed_queue.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1265 | "quic/core/quic_ack_listener_interface.cc", |
| 1266 | "quic/core/quic_ack_listener_interface.h", |
| 1267 | "quic/core/quic_alarm.cc", |
| 1268 | "quic/core/quic_alarm.h", |
ckrasic | b07e160 | 2017-01-26 01:39:02 | [diff] [blame] | 1269 | "quic/core/quic_alarm_factory.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1270 | "quic/core/quic_arena_scoped_ptr.h", |
| 1271 | "quic/core/quic_bandwidth.cc", |
| 1272 | "quic/core/quic_bandwidth.h", |
| 1273 | "quic/core/quic_blocked_writer_interface.h", |
| 1274 | "quic/core/quic_buffer_allocator.cc", |
| 1275 | "quic/core/quic_buffer_allocator.h", |
| 1276 | "quic/core/quic_buffered_packet_store.cc", |
| 1277 | "quic/core/quic_buffered_packet_store.h", |
| 1278 | "quic/core/quic_client_promised_info.cc", |
| 1279 | "quic/core/quic_client_promised_info.h", |
| 1280 | "quic/core/quic_client_push_promise_index.cc", |
| 1281 | "quic/core/quic_client_push_promise_index.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1282 | "quic/core/quic_config.cc", |
| 1283 | "quic/core/quic_config.h", |
| 1284 | "quic/core/quic_connection.cc", |
| 1285 | "quic/core/quic_connection.h", |
| 1286 | "quic/core/quic_connection_close_delegate_interface.h", |
| 1287 | "quic/core/quic_connection_stats.cc", |
| 1288 | "quic/core/quic_connection_stats.h", |
| 1289 | "quic/core/quic_constants.cc", |
| 1290 | "quic/core/quic_constants.h", |
Fan Yang | e8220f00 | 2017-11-27 21:19:07 | [diff] [blame] | 1291 | "quic/core/quic_control_frame_manager.cc", |
| 1292 | "quic/core/quic_control_frame_manager.h", |
Fan Yang | 2a1699a | 2017-07-25 16:44:55 | [diff] [blame] | 1293 | "quic/core/quic_crypto_client_handshaker.cc", |
| 1294 | "quic/core/quic_crypto_client_handshaker.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1295 | "quic/core/quic_crypto_client_stream.cc", |
| 1296 | "quic/core/quic_crypto_client_stream.h", |
Fan Yang | 2a1699a | 2017-07-25 16:44:55 | [diff] [blame] | 1297 | "quic/core/quic_crypto_handshaker.cc", |
| 1298 | "quic/core/quic_crypto_handshaker.h", |
| 1299 | "quic/core/quic_crypto_server_handshaker.cc", |
| 1300 | "quic/core/quic_crypto_server_handshaker.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1301 | "quic/core/quic_crypto_server_stream.cc", |
| 1302 | "quic/core/quic_crypto_server_stream.h", |
| 1303 | "quic/core/quic_crypto_stream.cc", |
| 1304 | "quic/core/quic_crypto_stream.h", |
| 1305 | "quic/core/quic_data_reader.cc", |
| 1306 | "quic/core/quic_data_reader.h", |
| 1307 | "quic/core/quic_data_writer.cc", |
| 1308 | "quic/core/quic_data_writer.h", |
| 1309 | "quic/core/quic_error_codes.cc", |
| 1310 | "quic/core/quic_error_codes.h", |
ckrasic | b07e160 | 2017-01-26 01:39:02 | [diff] [blame] | 1311 | "quic/core/quic_flags_list.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1312 | "quic/core/quic_flow_controller.cc", |
| 1313 | "quic/core/quic_flow_controller.h", |
| 1314 | "quic/core/quic_framer.cc", |
| 1315 | "quic/core/quic_framer.h", |
| 1316 | "quic/core/quic_header_list.cc", |
| 1317 | "quic/core/quic_header_list.h", |
| 1318 | "quic/core/quic_headers_stream.cc", |
| 1319 | "quic/core/quic_headers_stream.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1320 | "quic/core/quic_one_block_arena.h", |
| 1321 | "quic/core/quic_packet_creator.cc", |
| 1322 | "quic/core/quic_packet_creator.h", |
| 1323 | "quic/core/quic_packet_generator.cc", |
| 1324 | "quic/core/quic_packet_generator.h", |
| 1325 | "quic/core/quic_packet_writer.h", |
| 1326 | "quic/core/quic_packets.cc", |
| 1327 | "quic/core/quic_packets.h", |
| 1328 | "quic/core/quic_pending_retransmission.h", |
| 1329 | "quic/core/quic_received_packet_manager.cc", |
| 1330 | "quic/core/quic_received_packet_manager.h", |
| 1331 | "quic/core/quic_sent_packet_manager.cc", |
| 1332 | "quic/core/quic_sent_packet_manager.h", |
| 1333 | "quic/core/quic_server_id.cc", |
| 1334 | "quic/core/quic_server_id.h", |
| 1335 | "quic/core/quic_server_session_base.cc", |
| 1336 | "quic/core/quic_server_session_base.h", |
| 1337 | "quic/core/quic_session.cc", |
| 1338 | "quic/core/quic_session.h", |
| 1339 | "quic/core/quic_simple_buffer_allocator.cc", |
| 1340 | "quic/core/quic_simple_buffer_allocator.h", |
| 1341 | "quic/core/quic_socket_address_coder.cc", |
| 1342 | "quic/core/quic_socket_address_coder.h", |
Ryan Hamilton | c440230 | 2017-08-10 01:55:46 | [diff] [blame] | 1343 | "quic/core/quic_spdy_client_session_base.cc", |
| 1344 | "quic/core/quic_spdy_client_session_base.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1345 | "quic/core/quic_spdy_session.cc", |
| 1346 | "quic/core/quic_spdy_session.h", |
| 1347 | "quic/core/quic_spdy_stream.cc", |
| 1348 | "quic/core/quic_spdy_stream.h", |
| 1349 | "quic/core/quic_stream.cc", |
| 1350 | "quic/core/quic_stream.h", |
fayang | df3cb2b | 2017-07-05 15:03:38 | [diff] [blame] | 1351 | "quic/core/quic_stream_frame_data_producer.h", |
| 1352 | "quic/core/quic_stream_send_buffer.cc", |
| 1353 | "quic/core/quic_stream_send_buffer.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1354 | "quic/core/quic_stream_sequencer.cc", |
| 1355 | "quic/core/quic_stream_sequencer.h", |
| 1356 | "quic/core/quic_stream_sequencer_buffer.cc", |
| 1357 | "quic/core/quic_stream_sequencer_buffer.h", |
| 1358 | "quic/core/quic_sustained_bandwidth_recorder.cc", |
| 1359 | "quic/core/quic_sustained_bandwidth_recorder.h", |
| 1360 | "quic/core/quic_tag.cc", |
| 1361 | "quic/core/quic_tag.h", |
| 1362 | "quic/core/quic_time.cc", |
| 1363 | "quic/core/quic_time.h", |
| 1364 | "quic/core/quic_transmission_info.cc", |
| 1365 | "quic/core/quic_transmission_info.h", |
| 1366 | "quic/core/quic_types.cc", |
| 1367 | "quic/core/quic_types.h", |
| 1368 | "quic/core/quic_unacked_packet_map.cc", |
| 1369 | "quic/core/quic_unacked_packet_map.h", |
| 1370 | "quic/core/quic_utils.cc", |
| 1371 | "quic/core/quic_utils.h", |
| 1372 | "quic/core/quic_version_manager.cc", |
| 1373 | "quic/core/quic_version_manager.h", |
| 1374 | "quic/core/quic_versions.cc", |
| 1375 | "quic/core/quic_versions.h", |
| 1376 | "quic/core/quic_write_blocked_list.cc", |
| 1377 | "quic/core/quic_write_blocked_list.h", |
| 1378 | "quic/core/spdy_utils.cc", |
| 1379 | "quic/core/spdy_utils.h", |
Bin Wu | de3943c | 2017-11-09 22:44:48 | [diff] [blame] | 1380 | "quic/core/tls_client_handshaker.cc", |
| 1381 | "quic/core/tls_client_handshaker.h", |
| 1382 | "quic/core/tls_handshaker.cc", |
| 1383 | "quic/core/tls_handshaker.h", |
| 1384 | "quic/core/tls_server_handshaker.cc", |
| 1385 | "quic/core/tls_server_handshaker.h", |
Charles 'Buck' Krasic | 9385c57 | 2017-11-29 02:21:51 | [diff] [blame] | 1386 | "quic/http/decoder/payload_decoders/quic_http_altsvc_payload_decoder.cc", |
| 1387 | "quic/http/decoder/payload_decoders/quic_http_altsvc_payload_decoder.h", |
| 1388 | "quic/http/decoder/payload_decoders/quic_http_continuation_payload_decoder.cc", |
| 1389 | "quic/http/decoder/payload_decoders/quic_http_continuation_payload_decoder.h", |
| 1390 | "quic/http/decoder/payload_decoders/quic_http_data_payload_decoder.cc", |
| 1391 | "quic/http/decoder/payload_decoders/quic_http_data_payload_decoder.h", |
| 1392 | "quic/http/decoder/payload_decoders/quic_http_goaway_payload_decoder.cc", |
| 1393 | "quic/http/decoder/payload_decoders/quic_http_goaway_payload_decoder.h", |
| 1394 | "quic/http/decoder/payload_decoders/quic_http_headers_payload_decoder.cc", |
| 1395 | "quic/http/decoder/payload_decoders/quic_http_headers_payload_decoder.h", |
| 1396 | "quic/http/decoder/payload_decoders/quic_http_ping_payload_decoder.cc", |
| 1397 | "quic/http/decoder/payload_decoders/quic_http_ping_payload_decoder.h", |
| 1398 | "quic/http/decoder/payload_decoders/quic_http_priority_payload_decoder.cc", |
| 1399 | "quic/http/decoder/payload_decoders/quic_http_priority_payload_decoder.h", |
| 1400 | "quic/http/decoder/payload_decoders/quic_http_push_promise_payload_decoder.cc", |
| 1401 | "quic/http/decoder/payload_decoders/quic_http_push_promise_payload_decoder.h", |
| 1402 | "quic/http/decoder/payload_decoders/quic_http_rst_stream_payload_decoder.cc", |
| 1403 | "quic/http/decoder/payload_decoders/quic_http_rst_stream_payload_decoder.h", |
| 1404 | "quic/http/decoder/payload_decoders/quic_http_settings_payload_decoder.cc", |
| 1405 | "quic/http/decoder/payload_decoders/quic_http_settings_payload_decoder.h", |
| 1406 | "quic/http/decoder/payload_decoders/quic_http_unknown_payload_decoder.cc", |
| 1407 | "quic/http/decoder/payload_decoders/quic_http_unknown_payload_decoder.h", |
| 1408 | "quic/http/decoder/payload_decoders/quic_http_window_update_payload_decoder.cc", |
| 1409 | "quic/http/decoder/payload_decoders/quic_http_window_update_payload_decoder.h", |
| 1410 | "quic/http/decoder/quic_http_decode_buffer.cc", |
| 1411 | "quic/http/decoder/quic_http_decode_buffer.h", |
| 1412 | "quic/http/decoder/quic_http_decode_status.cc", |
| 1413 | "quic/http/decoder/quic_http_decode_status.h", |
| 1414 | "quic/http/decoder/quic_http_decode_structures.cc", |
| 1415 | "quic/http/decoder/quic_http_decode_structures.h", |
| 1416 | "quic/http/decoder/quic_http_frame_decoder.cc", |
| 1417 | "quic/http/decoder/quic_http_frame_decoder.h", |
| 1418 | "quic/http/decoder/quic_http_frame_decoder_adapter.cc", |
| 1419 | "quic/http/decoder/quic_http_frame_decoder_adapter.h", |
| 1420 | "quic/http/decoder/quic_http_frame_decoder_listener.cc", |
| 1421 | "quic/http/decoder/quic_http_frame_decoder_listener.h", |
| 1422 | "quic/http/decoder/quic_http_frame_decoder_state.cc", |
| 1423 | "quic/http/decoder/quic_http_frame_decoder_state.h", |
| 1424 | "quic/http/decoder/quic_http_structure_decoder.cc", |
| 1425 | "quic/http/decoder/quic_http_structure_decoder.h", |
| 1426 | "quic/http/quic_http_constants.cc", |
| 1427 | "quic/http/quic_http_constants.h", |
| 1428 | "quic/http/quic_http_structures.cc", |
| 1429 | "quic/http/quic_http_structures.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1430 | "quic/platform/api/quic_aligned.h", |
Fan Yang | 928f163 | 2017-12-14 18:55:22 | [diff] [blame] | 1431 | "quic/platform/api/quic_arraysize.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1432 | "quic/platform/api/quic_bug_tracker.h", |
| 1433 | "quic/platform/api/quic_clock.cc", |
| 1434 | "quic/platform/api/quic_clock.h", |
fayang | baec8ff5 | 2017-01-28 03:26:12 | [diff] [blame] | 1435 | "quic/platform/api/quic_containers.h", |
fayang | 3ae2fa2 | 2017-03-02 18:03:40 | [diff] [blame] | 1436 | "quic/platform/api/quic_endian.h", |
xunjieli | 48e4f10 | 2017-04-11 23:06:53 | [diff] [blame] | 1437 | "quic/platform/api/quic_estimate_memory_usage.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1438 | "quic/platform/api/quic_export.h", |
vasilvv | 93dc0c3 | 2017-02-24 23:53:51 | [diff] [blame] | 1439 | "quic/platform/api/quic_flag_utils.h", |
rch | fc6809b6 | 2017-04-19 01:37:01 | [diff] [blame] | 1440 | "quic/platform/api/quic_flags.h", |
mpw | 3f85953 | 2017-02-16 20:00:31 | [diff] [blame] | 1441 | "quic/platform/api/quic_hostname_utils.cc", |
| 1442 | "quic/platform/api/quic_hostname_utils.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1443 | "quic/platform/api/quic_ip_address.cc", |
| 1444 | "quic/platform/api/quic_ip_address.h", |
| 1445 | "quic/platform/api/quic_ip_address_family.h", |
| 1446 | "quic/platform/api/quic_logging.h", |
| 1447 | "quic/platform/api/quic_lru_cache.h", |
ckrasic | b07e160 | 2017-01-26 01:39:02 | [diff] [blame] | 1448 | "quic/platform/api/quic_map_util.h", |
Fan Yang | 62cae30f | 2017-09-01 20:50:51 | [diff] [blame] | 1449 | "quic/platform/api/quic_mem_slice.h", |
| 1450 | "quic/platform/api/quic_mem_slice_span.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1451 | "quic/platform/api/quic_mutex.cc", |
| 1452 | "quic/platform/api/quic_mutex.h", |
Charles 'Buck' Krasic | 9385c57 | 2017-11-29 02:21:51 | [diff] [blame] | 1453 | "quic/platform/api/quic_optional.h", |
jokulik | 3591730 | 2017-05-04 04:04:08 | [diff] [blame] | 1454 | "quic/platform/api/quic_pcc_sender.h", |
Charles 'Buck' Krasic | 15d08db6 | 2017-12-04 20:27:52 | [diff] [blame] | 1455 | "quic/platform/api/quic_prefetch.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1456 | "quic/platform/api/quic_ptr_util.h", |
Charles 'Buck' Krasic | 9385c57 | 2017-11-29 02:21:51 | [diff] [blame] | 1457 | "quic/platform/api/quic_reconstruct_object.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1458 | "quic/platform/api/quic_reference_counted.h", |
| 1459 | "quic/platform/api/quic_socket_address.cc", |
| 1460 | "quic/platform/api/quic_socket_address.h", |
ckrasic | b07e160 | 2017-01-26 01:39:02 | [diff] [blame] | 1461 | "quic/platform/api/quic_stack_trace.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1462 | "quic/platform/api/quic_str_cat.h", |
Charles 'Buck' Krasic | 9385c57 | 2017-11-29 02:21:51 | [diff] [blame] | 1463 | "quic/platform/api/quic_string.h", |
fayang | 19c3077 | 2017-03-09 15:06:17 | [diff] [blame] | 1464 | "quic/platform/api/quic_string_piece.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1465 | "quic/platform/api/quic_text_utils.h", |
fayang | 32caee40 | 2017-02-13 21:00:08 | [diff] [blame] | 1466 | "quic/platform/api/quic_url.cc", |
| 1467 | "quic/platform/api/quic_url.h", |
fayang | 527c6c30 | 2017-01-24 15:38:31 | [diff] [blame] | 1468 | "quic/platform/api/quic_url_utils.cc", |
| 1469 | "quic/platform/api/quic_url_utils.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1470 | "quic/platform/impl/quic_aligned_impl.h", |
Fan Yang | 928f163 | 2017-12-14 18:55:22 | [diff] [blame] | 1471 | "quic/platform/impl/quic_arraysize_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1472 | "quic/platform/impl/quic_bug_tracker_impl.h", |
| 1473 | "quic/platform/impl/quic_chromium_clock.cc", |
| 1474 | "quic/platform/impl/quic_chromium_clock.h", |
fayang | baec8ff5 | 2017-01-28 03:26:12 | [diff] [blame] | 1475 | "quic/platform/impl/quic_containers_impl.h", |
fayang | 3ae2fa2 | 2017-03-02 18:03:40 | [diff] [blame] | 1476 | "quic/platform/impl/quic_endian_impl.h", |
xunjieli | 48e4f10 | 2017-04-11 23:06:53 | [diff] [blame] | 1477 | "quic/platform/impl/quic_estimate_memory_usage_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1478 | "quic/platform/impl/quic_export_impl.h", |
vasilvv | 93dc0c3 | 2017-02-24 23:53:51 | [diff] [blame] | 1479 | "quic/platform/impl/quic_flag_utils_impl.h", |
rch | fc6809b6 | 2017-04-19 01:37:01 | [diff] [blame] | 1480 | "quic/platform/impl/quic_flags_impl.cc", |
| 1481 | "quic/platform/impl/quic_flags_impl.h", |
mpw | 3f85953 | 2017-02-16 20:00:31 | [diff] [blame] | 1482 | "quic/platform/impl/quic_hostname_utils_impl.cc", |
| 1483 | "quic/platform/impl/quic_hostname_utils_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1484 | "quic/platform/impl/quic_ip_address_impl.cc", |
| 1485 | "quic/platform/impl/quic_ip_address_impl.h", |
| 1486 | "quic/platform/impl/quic_logging_impl.h", |
| 1487 | "quic/platform/impl/quic_lru_cache_impl.h", |
ckrasic | b07e160 | 2017-01-26 01:39:02 | [diff] [blame] | 1488 | "quic/platform/impl/quic_map_util_impl.h", |
Fan Yang | 62cae30f | 2017-09-01 20:50:51 | [diff] [blame] | 1489 | "quic/platform/impl/quic_mem_slice_impl.cc", |
| 1490 | "quic/platform/impl/quic_mem_slice_impl.h", |
| 1491 | "quic/platform/impl/quic_mem_slice_span_impl.cc", |
| 1492 | "quic/platform/impl/quic_mem_slice_span_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1493 | "quic/platform/impl/quic_mutex_impl.cc", |
| 1494 | "quic/platform/impl/quic_mutex_impl.h", |
Charles 'Buck' Krasic | 9385c57 | 2017-11-29 02:21:51 | [diff] [blame] | 1495 | "quic/platform/impl/quic_optional_impl.h", |
jokulik | 3591730 | 2017-05-04 04:04:08 | [diff] [blame] | 1496 | "quic/platform/impl/quic_pcc_sender_impl.h", |
Charles 'Buck' Krasic | 15d08db6 | 2017-12-04 20:27:52 | [diff] [blame] | 1497 | "quic/platform/impl/quic_prefetch_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1498 | "quic/platform/impl/quic_ptr_util_impl.h", |
Charles 'Buck' Krasic | 9385c57 | 2017-11-29 02:21:51 | [diff] [blame] | 1499 | "quic/platform/impl/quic_reconstruct_object_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1500 | "quic/platform/impl/quic_reference_counted_impl.h", |
| 1501 | "quic/platform/impl/quic_socket_address_impl.cc", |
| 1502 | "quic/platform/impl/quic_socket_address_impl.h", |
ckrasic | b07e160 | 2017-01-26 01:39:02 | [diff] [blame] | 1503 | "quic/platform/impl/quic_stack_trace_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1504 | "quic/platform/impl/quic_str_cat_impl.h", |
Charles 'Buck' Krasic | 9385c57 | 2017-11-29 02:21:51 | [diff] [blame] | 1505 | "quic/platform/impl/quic_string_impl.h", |
fayang | 19c3077 | 2017-03-09 15:06:17 | [diff] [blame] | 1506 | "quic/platform/impl/quic_string_piece_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1507 | "quic/platform/impl/quic_text_utils_impl.h", |
fayang | 32caee40 | 2017-02-13 21:00:08 | [diff] [blame] | 1508 | "quic/platform/impl/quic_url_impl.cc", |
| 1509 | "quic/platform/impl/quic_url_impl.h", |
fayang | 527c6c30 | 2017-01-24 15:38:31 | [diff] [blame] | 1510 | "quic/platform/impl/quic_url_utils_impl.cc", |
| 1511 | "quic/platform/impl/quic_url_utils_impl.h", |
rch | 7b8e0afb1 | 2017-05-03 01:07:22 | [diff] [blame] | 1512 | "quic/quartc/quartc_clock_interface.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1513 | "quic/quartc/quartc_factory.cc", |
| 1514 | "quic/quartc/quartc_factory.h", |
Victor Vasiliev | 7998727a | 2017-11-20 22:48:45 | [diff] [blame] | 1515 | "quic/quartc/quartc_factory_interface.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1516 | "quic/quartc/quartc_factory_interface.h", |
| 1517 | "quic/quartc/quartc_packet_writer.cc", |
| 1518 | "quic/quartc/quartc_packet_writer.h", |
| 1519 | "quic/quartc/quartc_session.cc", |
| 1520 | "quic/quartc/quartc_session.h", |
| 1521 | "quic/quartc/quartc_session_interface.h", |
| 1522 | "quic/quartc/quartc_stream.cc", |
| 1523 | "quic/quartc/quartc_stream.h", |
| 1524 | "quic/quartc/quartc_stream_interface.h", |
ckrasic | b07e160 | 2017-01-26 01:39:02 | [diff] [blame] | 1525 | "quic/quartc/quartc_task_runner_interface.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1526 | "socket/client_socket_factory.cc", |
| 1527 | "socket/client_socket_factory.h", |
| 1528 | "socket/client_socket_pool.cc", |
| 1529 | "socket/client_socket_pool.h", |
| 1530 | "socket/client_socket_pool_base.cc", |
| 1531 | "socket/client_socket_pool_base.h", |
| 1532 | "socket/client_socket_pool_manager.cc", |
| 1533 | "socket/client_socket_pool_manager.h", |
| 1534 | "socket/client_socket_pool_manager_impl.cc", |
| 1535 | "socket/client_socket_pool_manager_impl.h", |
| 1536 | "socket/datagram_client_socket.h", |
| 1537 | "socket/datagram_server_socket.h", |
| 1538 | "socket/datagram_socket.h", |
| 1539 | "socket/diff_serv_code_point.h", |
| 1540 | "socket/server_socket.cc", |
| 1541 | "socket/server_socket.h", |
| 1542 | "socket/socket_descriptor.cc", |
| 1543 | "socket/socket_descriptor.h", |
| 1544 | "socket/socket_net_log_params.cc", |
| 1545 | "socket/socket_net_log_params.h", |
tfarina | 8a40706 | 2017-04-06 13:14:17 | [diff] [blame] | 1546 | "socket/socket_options.cc", |
| 1547 | "socket/socket_options.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1548 | "socket/socket_posix.cc", |
| 1549 | "socket/socket_posix.h", |
Paul Jensen | ec3c1112 | 2017-11-28 16:48:38 | [diff] [blame] | 1550 | "socket/socket_tag.cc", |
| 1551 | "socket/socket_tag.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1552 | "socket/socks5_client_socket.cc", |
| 1553 | "socket/socks5_client_socket.h", |
| 1554 | "socket/socks_client_socket.cc", |
| 1555 | "socket/socks_client_socket.h", |
| 1556 | "socket/socks_client_socket_pool.cc", |
| 1557 | "socket/socks_client_socket_pool.h", |
| 1558 | "socket/ssl_client_socket_pool.cc", |
| 1559 | "socket/ssl_client_socket_pool.h", |
| 1560 | "socket/ssl_server_socket.h", |
| 1561 | "socket/ssl_server_socket_impl.cc", |
| 1562 | "socket/ssl_server_socket_impl.h", |
| 1563 | "socket/stream_socket.cc", |
| 1564 | "socket/stream_socket.h", |
| 1565 | "socket/tcp_client_socket.cc", |
| 1566 | "socket/tcp_client_socket.h", |
| 1567 | "socket/tcp_server_socket.cc", |
| 1568 | "socket/tcp_server_socket.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1569 | "socket/tcp_socket.h", |
| 1570 | "socket/tcp_socket_posix.cc", |
| 1571 | "socket/tcp_socket_posix.h", |
| 1572 | "socket/tcp_socket_win.cc", |
| 1573 | "socket/tcp_socket_win.h", |
| 1574 | "socket/transport_client_socket_pool.cc", |
| 1575 | "socket/transport_client_socket_pool.h", |
| 1576 | "socket/udp_client_socket.cc", |
| 1577 | "socket/udp_client_socket.h", |
| 1578 | "socket/udp_net_log_parameters.cc", |
| 1579 | "socket/udp_net_log_parameters.h", |
| 1580 | "socket/udp_server_socket.cc", |
| 1581 | "socket/udp_server_socket.h", |
| 1582 | "socket/udp_socket.h", |
| 1583 | "socket/udp_socket_posix.cc", |
| 1584 | "socket/udp_socket_posix.h", |
| 1585 | "socket/udp_socket_win.cc", |
| 1586 | "socket/udp_socket_win.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1587 | "socket/websocket_endpoint_lock_manager.cc", |
| 1588 | "socket/websocket_endpoint_lock_manager.h", |
| 1589 | "socket/websocket_transport_client_socket_pool.cc", |
| 1590 | "socket/websocket_transport_client_socket_pool.h", |
| 1591 | "socket/websocket_transport_connect_sub_job.cc", |
| 1592 | "socket/websocket_transport_connect_sub_job.h", |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 1593 | "spdy/chromium/bidirectional_stream_spdy_impl.cc", |
| 1594 | "spdy/chromium/bidirectional_stream_spdy_impl.h", |
| 1595 | "spdy/chromium/buffered_spdy_framer.cc", |
| 1596 | "spdy/chromium/buffered_spdy_framer.h", |
| 1597 | "spdy/chromium/header_coalescer.cc", |
| 1598 | "spdy/chromium/header_coalescer.h", |
| 1599 | "spdy/chromium/http2_priority_dependencies.cc", |
| 1600 | "spdy/chromium/http2_priority_dependencies.h", |
Bence Béky | 824e493 | 2017-10-02 16:51:54 | [diff] [blame] | 1601 | "spdy/chromium/http2_push_promise_index.cc", |
| 1602 | "spdy/chromium/http2_push_promise_index.h", |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 1603 | "spdy/chromium/multiplexed_http_stream.cc", |
| 1604 | "spdy/chromium/multiplexed_http_stream.h", |
| 1605 | "spdy/chromium/multiplexed_session.cc", |
| 1606 | "spdy/chromium/multiplexed_session.h", |
| 1607 | "spdy/chromium/server_push_delegate.h", |
| 1608 | "spdy/chromium/spdy_buffer.cc", |
| 1609 | "spdy/chromium/spdy_buffer.h", |
| 1610 | "spdy/chromium/spdy_buffer_producer.cc", |
| 1611 | "spdy/chromium/spdy_buffer_producer.h", |
| 1612 | "spdy/chromium/spdy_flags.cc", |
| 1613 | "spdy/chromium/spdy_flags.h", |
| 1614 | "spdy/chromium/spdy_http_stream.cc", |
| 1615 | "spdy/chromium/spdy_http_stream.h", |
| 1616 | "spdy/chromium/spdy_http_utils.cc", |
| 1617 | "spdy/chromium/spdy_http_utils.h", |
| 1618 | "spdy/chromium/spdy_log_util.cc", |
| 1619 | "spdy/chromium/spdy_log_util.h", |
| 1620 | "spdy/chromium/spdy_proxy_client_socket.cc", |
| 1621 | "spdy/chromium/spdy_proxy_client_socket.h", |
| 1622 | "spdy/chromium/spdy_read_queue.cc", |
| 1623 | "spdy/chromium/spdy_read_queue.h", |
| 1624 | "spdy/chromium/spdy_session.cc", |
| 1625 | "spdy/chromium/spdy_session.h", |
| 1626 | "spdy/chromium/spdy_session_key.cc", |
| 1627 | "spdy/chromium/spdy_session_key.h", |
| 1628 | "spdy/chromium/spdy_session_pool.cc", |
| 1629 | "spdy/chromium/spdy_session_pool.h", |
| 1630 | "spdy/chromium/spdy_stream.cc", |
| 1631 | "spdy/chromium/spdy_stream.h", |
| 1632 | "spdy/chromium/spdy_write_queue.cc", |
| 1633 | "spdy/chromium/spdy_write_queue.h", |
| 1634 | "spdy/core/fuzzing/hpack_fuzz_util.cc", |
| 1635 | "spdy/core/fuzzing/hpack_fuzz_util.h", |
| 1636 | "spdy/core/hpack/hpack_constants.cc", |
| 1637 | "spdy/core/hpack/hpack_constants.h", |
Dianna Hu | 33dcd6c | 2017-07-24 15:01:46 | [diff] [blame] | 1638 | "spdy/core/hpack/hpack_decoder_adapter.cc", |
| 1639 | "spdy/core/hpack/hpack_decoder_adapter.h", |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 1640 | "spdy/core/hpack/hpack_encoder.cc", |
| 1641 | "spdy/core/hpack/hpack_encoder.h", |
| 1642 | "spdy/core/hpack/hpack_entry.cc", |
| 1643 | "spdy/core/hpack/hpack_entry.h", |
| 1644 | "spdy/core/hpack/hpack_header_table.cc", |
| 1645 | "spdy/core/hpack/hpack_header_table.h", |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 1646 | "spdy/core/hpack/hpack_huffman_table.cc", |
| 1647 | "spdy/core/hpack/hpack_huffman_table.h", |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 1648 | "spdy/core/hpack/hpack_output_stream.cc", |
| 1649 | "spdy/core/hpack/hpack_output_stream.h", |
| 1650 | "spdy/core/hpack/hpack_static_table.cc", |
| 1651 | "spdy/core/hpack/hpack_static_table.h", |
| 1652 | "spdy/core/http2_frame_decoder_adapter.cc", |
| 1653 | "spdy/core/http2_frame_decoder_adapter.h", |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 1654 | "spdy/core/priority_write_scheduler.h", |
| 1655 | "spdy/core/spdy_alt_svc_wire_format.cc", |
| 1656 | "spdy/core/spdy_alt_svc_wire_format.h", |
| 1657 | "spdy/core/spdy_bitmasks.h", |
| 1658 | "spdy/core/spdy_bug_tracker.h", |
| 1659 | "spdy/core/spdy_frame_builder.cc", |
| 1660 | "spdy/core/spdy_frame_builder.h", |
| 1661 | "spdy/core/spdy_frame_reader.cc", |
| 1662 | "spdy/core/spdy_frame_reader.h", |
| 1663 | "spdy/core/spdy_framer.cc", |
| 1664 | "spdy/core/spdy_framer.h", |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 1665 | "spdy/core/spdy_header_block.cc", |
| 1666 | "spdy/core/spdy_header_block.h", |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 1667 | "spdy/core/spdy_headers_handler_interface.h", |
| 1668 | "spdy/core/spdy_pinnable_buffer_piece.cc", |
| 1669 | "spdy/core/spdy_pinnable_buffer_piece.h", |
| 1670 | "spdy/core/spdy_prefixed_buffer_reader.cc", |
| 1671 | "spdy/core/spdy_prefixed_buffer_reader.h", |
| 1672 | "spdy/core/spdy_protocol.cc", |
| 1673 | "spdy/core/spdy_protocol.h", |
| 1674 | "spdy/core/write_scheduler.h", |
| 1675 | "spdy/core/zero_copy_output_buffer.h", |
bnc | 8078c9db | 2017-02-09 20:06:38 | [diff] [blame] | 1676 | "spdy/platform/api/spdy_estimate_memory_usage.h", |
bnc | c4c12fd | 2017-04-27 19:11:44 | [diff] [blame] | 1677 | "spdy/platform/api/spdy_export.h", |
Dianna Hu | 46254a8 | 2017-10-12 15:59:01 | [diff] [blame] | 1678 | "spdy/platform/api/spdy_mem_slice.h", |
bnc | dae95a8 | 2017-04-27 14:05:10 | [diff] [blame] | 1679 | "spdy/platform/api/spdy_ptr_util.h", |
diannahu | 401e364c | 2017-04-07 01:17:47 | [diff] [blame] | 1680 | "spdy/platform/api/spdy_string.h", |
bnc | a16616c | 2017-03-21 13:58:25 | [diff] [blame] | 1681 | "spdy/platform/api/spdy_string_piece.h", |
bnc | ed7be41d | 2017-03-28 17:30:24 | [diff] [blame] | 1682 | "spdy/platform/api/spdy_string_utils.h", |
bnc | 8078c9db | 2017-02-09 20:06:38 | [diff] [blame] | 1683 | "spdy/platform/impl/spdy_estimate_memory_usage_impl.h", |
bnc | c4c12fd | 2017-04-27 19:11:44 | [diff] [blame] | 1684 | "spdy/platform/impl/spdy_export_impl.h", |
Dianna Hu | 46254a8 | 2017-10-12 15:59:01 | [diff] [blame] | 1685 | "spdy/platform/impl/spdy_mem_slice_impl.cc", |
| 1686 | "spdy/platform/impl/spdy_mem_slice_impl.h", |
bnc | dae95a8 | 2017-04-27 14:05:10 | [diff] [blame] | 1687 | "spdy/platform/impl/spdy_ptr_util_impl.h", |
diannahu | 401e364c | 2017-04-07 01:17:47 | [diff] [blame] | 1688 | "spdy/platform/impl/spdy_string_impl.h", |
bnc | a16616c | 2017-03-21 13:58:25 | [diff] [blame] | 1689 | "spdy/platform/impl/spdy_string_piece_impl.h", |
Ryan Hamilton | 70874e05 | 2017-09-22 22:34:10 | [diff] [blame] | 1690 | "spdy/platform/impl/spdy_string_utils_impl.cc", |
bnc | ed7be41d | 2017-03-28 17:30:24 | [diff] [blame] | 1691 | "spdy/platform/impl/spdy_string_utils_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1692 | "ssl/client_cert_store.h", |
| 1693 | "ssl/client_cert_store_mac.cc", |
| 1694 | "ssl/client_cert_store_mac.h", |
| 1695 | "ssl/client_cert_store_nss.cc", |
| 1696 | "ssl/client_cert_store_nss.h", |
| 1697 | "ssl/client_cert_store_win.cc", |
| 1698 | "ssl/client_cert_store_win.h", |
| 1699 | "ssl/ssl_config_service_defaults.cc", |
| 1700 | "ssl/ssl_config_service_defaults.h", |
| 1701 | "ssl/ssl_key_logger.cc", |
| 1702 | "ssl/ssl_key_logger.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1703 | "ssl/ssl_platform_key_android.cc", |
thakis | b8590c9 | 2017-03-23 18:14:53 | [diff] [blame] | 1704 | "ssl/ssl_platform_key_android.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1705 | "ssl/ssl_platform_key_mac.cc", |
thakis | b8590c9 | 2017-03-23 18:14:53 | [diff] [blame] | 1706 | "ssl/ssl_platform_key_mac.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1707 | "ssl/ssl_platform_key_nss.cc", |
mattm | 436ccfe | 2017-06-19 20:24:08 | [diff] [blame] | 1708 | "ssl/ssl_platform_key_nss.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1709 | "ssl/ssl_platform_key_util.cc", |
| 1710 | "ssl/ssl_platform_key_util.h", |
| 1711 | "ssl/ssl_platform_key_win.cc", |
| 1712 | "ssl/test_ssl_private_key.cc", |
| 1713 | "ssl/test_ssl_private_key.h", |
| 1714 | "ssl/threaded_ssl_private_key.cc", |
| 1715 | "ssl/threaded_ssl_private_key.h", |
| 1716 | "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp", |
| 1717 | "third_party/mozilla_security_manager/nsNSSCertificateDB.h", |
| 1718 | "third_party/mozilla_security_manager/nsPKCS12Blob.cpp", |
| 1719 | "third_party/mozilla_security_manager/nsPKCS12Blob.h", |
| 1720 | "url_request/data_protocol_handler.cc", |
| 1721 | "url_request/data_protocol_handler.h", |
| 1722 | "url_request/http_user_agent_settings.h", |
| 1723 | "url_request/redirect_info.cc", |
| 1724 | "url_request/redirect_info.h", |
Tsuyoshi Horo | 9e2ec4df | 2017-10-16 15:15:55 | [diff] [blame] | 1725 | "url_request/redirect_util.cc", |
| 1726 | "url_request/redirect_util.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1727 | "url_request/report_sender.cc", |
| 1728 | "url_request/report_sender.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1729 | "url_request/static_http_user_agent_settings.cc", |
| 1730 | "url_request/static_http_user_agent_settings.h", |
| 1731 | "url_request/url_fetcher.cc", |
| 1732 | "url_request/url_fetcher.h", |
| 1733 | "url_request/url_fetcher_core.cc", |
| 1734 | "url_request/url_fetcher_core.h", |
| 1735 | "url_request/url_fetcher_delegate.cc", |
| 1736 | "url_request/url_fetcher_delegate.h", |
| 1737 | "url_request/url_fetcher_factory.h", |
| 1738 | "url_request/url_fetcher_impl.cc", |
| 1739 | "url_request/url_fetcher_impl.h", |
| 1740 | "url_request/url_fetcher_response_writer.cc", |
| 1741 | "url_request/url_fetcher_response_writer.h", |
| 1742 | "url_request/url_range_request_job.cc", |
| 1743 | "url_request/url_range_request_job.h", |
| 1744 | "url_request/url_request.cc", |
| 1745 | "url_request/url_request.h", |
| 1746 | "url_request/url_request_context.cc", |
| 1747 | "url_request/url_request_context.h", |
| 1748 | "url_request/url_request_context_builder.cc", |
| 1749 | "url_request/url_request_context_builder.h", |
| 1750 | "url_request/url_request_context_getter.cc", |
| 1751 | "url_request/url_request_context_getter.h", |
| 1752 | "url_request/url_request_context_getter_observer.h", |
| 1753 | "url_request/url_request_context_storage.cc", |
| 1754 | "url_request/url_request_context_storage.h", |
| 1755 | "url_request/url_request_data_job.cc", |
| 1756 | "url_request/url_request_data_job.h", |
| 1757 | "url_request/url_request_error_job.cc", |
| 1758 | "url_request/url_request_error_job.h", |
| 1759 | "url_request/url_request_filter.cc", |
| 1760 | "url_request/url_request_filter.h", |
| 1761 | "url_request/url_request_http_job.cc", |
| 1762 | "url_request/url_request_http_job.h", |
| 1763 | "url_request/url_request_intercepting_job_factory.cc", |
| 1764 | "url_request/url_request_intercepting_job_factory.h", |
| 1765 | "url_request/url_request_interceptor.cc", |
| 1766 | "url_request/url_request_interceptor.h", |
| 1767 | "url_request/url_request_job.cc", |
| 1768 | "url_request/url_request_job.h", |
| 1769 | "url_request/url_request_job_factory.cc", |
| 1770 | "url_request/url_request_job_factory.h", |
| 1771 | "url_request/url_request_job_factory_impl.cc", |
| 1772 | "url_request/url_request_job_factory_impl.h", |
| 1773 | "url_request/url_request_job_manager.cc", |
| 1774 | "url_request/url_request_job_manager.h", |
| 1775 | "url_request/url_request_netlog_params.cc", |
| 1776 | "url_request/url_request_netlog_params.h", |
| 1777 | "url_request/url_request_redirect_job.cc", |
| 1778 | "url_request/url_request_redirect_job.h", |
| 1779 | "url_request/url_request_simple_job.cc", |
| 1780 | "url_request/url_request_simple_job.h", |
| 1781 | "url_request/url_request_status.cc", |
| 1782 | "url_request/url_request_status.h", |
| 1783 | "url_request/url_request_test_job.cc", |
| 1784 | "url_request/url_request_test_job.h", |
| 1785 | "url_request/url_request_throttler_entry.cc", |
| 1786 | "url_request/url_request_throttler_entry.h", |
| 1787 | "url_request/url_request_throttler_entry_interface.h", |
| 1788 | "url_request/url_request_throttler_manager.cc", |
| 1789 | "url_request/url_request_throttler_manager.h", |
| 1790 | "url_request/view_cache_helper.cc", |
| 1791 | "url_request/view_cache_helper.h", |
| 1792 | "url_request/websocket_handshake_userdata_key.cc", |
| 1793 | "url_request/websocket_handshake_userdata_key.h", |
| 1794 | "websockets/websocket_handshake_request_info.h", |
| 1795 | "websockets/websocket_handshake_response_info.h", |
| 1796 | "websockets/websocket_handshake_stream_base.h", |
| 1797 | "websockets/websocket_stream.h", |
| 1798 | ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1799 | deps += [ |
| 1800 | "//base/third_party/dynamic_annotations", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1801 | "//third_party/zlib", |
| 1802 | ] |
| 1803 | |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 1804 | if (enable_reporting) { |
| 1805 | sources += [ |
Julia Tuttle | 6c949ae | 2017-11-17 16:36:27 | [diff] [blame] | 1806 | "network_error_logging/network_error_logging_service.cc", |
| 1807 | "network_error_logging/network_error_logging_service.h", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 1808 | "reporting/reporting_browsing_data_remover.cc", |
| 1809 | "reporting/reporting_browsing_data_remover.h", |
| 1810 | "reporting/reporting_cache.cc", |
| 1811 | "reporting/reporting_cache.h", |
| 1812 | "reporting/reporting_client.cc", |
| 1813 | "reporting/reporting_client.h", |
| 1814 | "reporting/reporting_context.cc", |
| 1815 | "reporting/reporting_context.h", |
| 1816 | "reporting/reporting_delegate.cc", |
| 1817 | "reporting/reporting_delegate.h", |
| 1818 | "reporting/reporting_delivery_agent.cc", |
| 1819 | "reporting/reporting_delivery_agent.h", |
| 1820 | "reporting/reporting_endpoint_manager.cc", |
| 1821 | "reporting/reporting_endpoint_manager.h", |
| 1822 | "reporting/reporting_feature.cc", |
| 1823 | "reporting/reporting_feature.h", |
| 1824 | "reporting/reporting_garbage_collector.cc", |
| 1825 | "reporting/reporting_garbage_collector.h", |
| 1826 | "reporting/reporting_header_parser.cc", |
| 1827 | "reporting/reporting_header_parser.h", |
| 1828 | "reporting/reporting_network_change_observer.cc", |
| 1829 | "reporting/reporting_network_change_observer.h", |
| 1830 | "reporting/reporting_observer.cc", |
| 1831 | "reporting/reporting_observer.h", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 1832 | "reporting/reporting_policy.cc", |
| 1833 | "reporting/reporting_policy.h", |
| 1834 | "reporting/reporting_report.cc", |
| 1835 | "reporting/reporting_report.h", |
| 1836 | "reporting/reporting_service.cc", |
| 1837 | "reporting/reporting_service.h", |
| 1838 | "reporting/reporting_uploader.cc", |
| 1839 | "reporting/reporting_uploader.h", |
Julia Tuttle | 3f9acac | 2017-11-20 22:06:30 | [diff] [blame] | 1840 | "url_request/network_error_logging_delegate.cc", |
| 1841 | "url_request/network_error_logging_delegate.h", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 1842 | ] |
| 1843 | } |
| 1844 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1845 | if (!use_kerberos) { |
| 1846 | sources -= [ |
| 1847 | "http/http_auth_handler_negotiate.cc", |
| 1848 | "http/http_auth_handler_negotiate.h", |
| 1849 | ] |
| 1850 | } |
| 1851 | |
| 1852 | if (is_posix) { |
| 1853 | if (posix_avoid_mmap) { |
| 1854 | sources -= [ "disk_cache/blockfile/mapped_file_posix.cc" ] |
| 1855 | } else { |
| 1856 | sources -= [ "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc" ] |
| 1857 | } |
| 1858 | } |
| 1859 | |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 1860 | if (is_win) { |
| 1861 | sources -= [ |
zentaro | b89acda4 | 2017-07-14 01:28:57 | [diff] [blame] | 1862 | "ntlm/ntlm.cc", |
| 1863 | "ntlm/ntlm.h", |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 1864 | "ntlm/ntlm_buffer_reader.cc", |
| 1865 | "ntlm/ntlm_buffer_reader.h", |
| 1866 | "ntlm/ntlm_buffer_writer.cc", |
| 1867 | "ntlm/ntlm_buffer_writer.h", |
Zentaro Kavanagh | dd55661 | 2017-08-03 20:27:04 | [diff] [blame] | 1868 | "ntlm/ntlm_client.cc", |
| 1869 | "ntlm/ntlm_client.h", |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 1870 | "ntlm/ntlm_constants.h", |
| 1871 | ] |
| 1872 | } |
| 1873 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1874 | if (!enable_built_in_dns) { |
| 1875 | sources -= [ |
| 1876 | "dns/address_sorter_posix.cc", |
| 1877 | "dns/address_sorter_posix.h", |
| 1878 | "dns/dns_client.cc", |
| 1879 | ] |
| 1880 | } |
| 1881 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1882 | if (!use_kerberos || is_android) { |
| 1883 | sources -= [ |
| 1884 | "http/http_auth_gssapi_posix.cc", |
| 1885 | "http/http_auth_gssapi_posix.h", |
| 1886 | ] |
| 1887 | } |
| 1888 | |
Sergey Ulanov | 5c33235ae | 2017-07-06 23:55:07 | [diff] [blame] | 1889 | if (!is_nacl) { |
Matt Mueller | 1500421 | 2017-09-08 04:44:13 | [diff] [blame] | 1890 | sources -= [ |
| 1891 | "base/network_interfaces_nacl.cc", |
| 1892 | "cert/cert_database_stub.cc", |
| 1893 | ] |
Sergey Ulanov | 5c33235ae | 2017-07-06 23:55:07 | [diff] [blame] | 1894 | } |
| 1895 | |
| 1896 | # Use getifaddrs() on POSIX platforms, except Linux and Android. |
Sergey Ulanov | 2beef3d | 2017-10-19 21:53:53 | [diff] [blame] | 1897 | if (!is_posix || is_linux || is_android || is_fuchsia) { |
Sergey Ulanov | 5c33235ae | 2017-07-06 23:55:07 | [diff] [blame] | 1898 | sources -= [ |
| 1899 | "base/network_interfaces_getifaddrs.cc", |
| 1900 | "base/network_interfaces_getifaddrs.h", |
| 1901 | ] |
| 1902 | } |
| 1903 | |
mostynb | 75e8d63 | 2016-08-02 16:46:53 | [diff] [blame] | 1904 | if (use_gio) { |
Tim Brown | 1c307cc | 2017-12-08 02:40:38 | [diff] [blame] | 1905 | configs += [ "//build/linux:gio_config" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1906 | } |
| 1907 | |
| 1908 | if (!use_nss_certs) { |
| 1909 | sources -= [ |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1910 | "cert/cert_database_nss.cc", |
mattm | 9c63d44 | 2016-09-03 00:45:51 | [diff] [blame] | 1911 | "cert/internal/trust_store_nss.cc", |
| 1912 | "cert/internal/trust_store_nss.h", |
eroman | f2971fd | 2017-04-20 20:10:45 | [diff] [blame] | 1913 | "cert/known_roots_nss.cc", |
| 1914 | "cert/known_roots_nss.h", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1915 | "cert/nss_cert_database.cc", |
| 1916 | "cert/nss_cert_database.h", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1917 | "ssl/client_cert_store_nss.cc", |
| 1918 | "ssl/client_cert_store_nss.h", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1919 | "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp", |
| 1920 | "third_party/mozilla_security_manager/nsNSSCertificateDB.h", |
| 1921 | "third_party/mozilla_security_manager/nsPKCS12Blob.cpp", |
| 1922 | "third_party/mozilla_security_manager/nsPKCS12Blob.h", |
| 1923 | ] |
| 1924 | if (is_chromeos) { |
| 1925 | # These were already removed on non-ChromeOS. |
| 1926 | sources -= [ |
| 1927 | "cert/nss_cert_database_chromeos.cc", |
| 1928 | "cert/nss_cert_database_chromeos.h", |
| 1929 | "cert/nss_profile_filter_chromeos.cc", |
| 1930 | "cert/nss_profile_filter_chromeos.h", |
| 1931 | ] |
| 1932 | } |
mattm | bbf7fc0 | 2017-06-19 23:38:19 | [diff] [blame] | 1933 | sources -= [ "ssl/ssl_platform_key_nss.cc" ] |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 1934 | } else { |
davidben | 8d569f5 | 2016-07-29 16:03:18 | [diff] [blame] | 1935 | sources += [ |
| 1936 | "third_party/nss/ssl/cmpcert.cc", |
| 1937 | "third_party/nss/ssl/cmpcert.h", |
| 1938 | ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1939 | } |
| 1940 | |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 1941 | if (!use_nss_certs) { |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1942 | # These files are part of the partial implementation of NSS for |
| 1943 | # cert verification, so keep them in that case. |
| 1944 | sources -= [ |
| 1945 | "cert/cert_verify_proc_nss.cc", |
| 1946 | "cert/cert_verify_proc_nss.h", |
| 1947 | "cert/test_root_certs_nss.cc", |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 1948 | "cert/x509_util_nss.cc", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1949 | "cert_net/nss_ocsp.cc", |
| 1950 | "cert_net/nss_ocsp.h", |
| 1951 | ] |
| 1952 | } |
| 1953 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1954 | if (is_chromecast && use_nss_certs) { |
mattm | 436ccfe | 2017-06-19 20:24:08 | [diff] [blame] | 1955 | sources -= [ |
| 1956 | "ssl/client_cert_store_nss.cc", |
| 1957 | "ssl/client_cert_store_nss.h", |
| 1958 | "ssl/ssl_platform_key_nss.cc", |
| 1959 | ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1960 | } |
| 1961 | |
| 1962 | if (!enable_mdns) { |
| 1963 | sources -= [ |
| 1964 | "dns/mdns_cache.cc", |
| 1965 | "dns/mdns_cache.h", |
| 1966 | "dns/mdns_client.cc", |
| 1967 | "dns/mdns_client.h", |
| 1968 | "dns/mdns_client_impl.cc", |
| 1969 | "dns/mdns_client_impl.h", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1970 | ] |
| 1971 | } |
| 1972 | |
| 1973 | if (is_win) { |
| 1974 | sources -= [ "http/http_auth_handler_ntlm_portable.cc" ] |
| 1975 | } else { # !is_win |
| 1976 | sources -= [ |
| 1977 | "base/winsock_init.cc", |
| 1978 | "base/winsock_init.h", |
| 1979 | "base/winsock_util.cc", |
| 1980 | "base/winsock_util.h", |
| 1981 | "proxy/proxy_resolver_winhttp.cc", |
| 1982 | "proxy/proxy_resolver_winhttp.h", |
| 1983 | ] |
| 1984 | } |
| 1985 | |
| 1986 | if (is_ios) { |
| 1987 | # Add back some sources that were otherwise filtered out. |
| 1988 | # iOS needs some Mac files. |
| 1989 | net_unfiltered_sources += [ |
| 1990 | "base/mac/url_conversions.h", |
| 1991 | "base/mac/url_conversions.mm", |
| 1992 | "base/network_change_notifier_mac.cc", |
wychen | ebb66ffb | 2017-04-05 07:19:37 | [diff] [blame] | 1993 | "base/network_change_notifier_mac.h", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1994 | "base/network_config_watcher_mac.cc", |
wychen | ebb66ffb | 2017-04-05 07:19:37 | [diff] [blame] | 1995 | "base/network_config_watcher_mac.h", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1996 | "base/platform_mime_util_mac.mm", |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 1997 | "cert/test_root_certs_mac.cc", |
mattm | 1a07e63 | 2017-05-16 05:55:50 | [diff] [blame] | 1998 | "cert/x509_util_ios_and_mac.cc", |
| 1999 | "cert/x509_util_ios_and_mac.h", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2000 | "proxy/proxy_resolver_mac.cc", |
wychen | ebb66ffb | 2017-04-05 07:19:37 | [diff] [blame] | 2001 | "proxy/proxy_resolver_mac.h", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2002 | "proxy/proxy_server_mac.cc", |
| 2003 | ] |
| 2004 | |
| 2005 | sources -= [ "disk_cache/blockfile/file_posix.cc" ] |
| 2006 | } |
| 2007 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2008 | if (is_ios || is_mac) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2009 | sources += [ |
| 2010 | "base/mac/url_conversions.h", |
| 2011 | "base/mac/url_conversions.mm", |
| 2012 | ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2013 | } |
| 2014 | |
| 2015 | if (is_android) { |
| 2016 | deps += [ ":net_jni_headers" ] |
| 2017 | |
| 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 += [ |
Sergey Ulanov | 2beef3d | 2017-10-19 21:53:53 | [diff] [blame] | 2031 | "base/network_interfaces_fuchsia.cc", |
Sergey Ulanov | 4908557 | 2017-07-10 23:25:46 | [diff] [blame] | 2032 | "base/platform_mime_util_fuchsia.cc", |
| 2033 | "cert/cert_database_fuchsia.cc", |
| 2034 | "cert/test_root_certs_fuchsia.cc", |
| 2035 | ] |
| 2036 | } |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2037 | } else { |
| 2038 | public_deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
| 2039 | } |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 2040 | |
Sergey Ulanov | 21dea15 | 2017-09-13 00:50:50 | [diff] [blame] | 2041 | if (enable_unix_sockets) { |
| 2042 | sources += [ |
| 2043 | "socket/unix_domain_client_socket_posix.cc", |
| 2044 | "socket/unix_domain_client_socket_posix.h", |
| 2045 | "socket/unix_domain_server_socket_posix.cc", |
| 2046 | "socket/unix_domain_server_socket_posix.h", |
| 2047 | ] |
| 2048 | } |
| 2049 | |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 2050 | # Add back some sources that were otherwise filtered out. |
| 2051 | set_sources_assignment_filter([]) |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2052 | sources += net_unfiltered_sources |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 2053 | set_sources_assignment_filter(sources_assignment_filter) |
| 2054 | |
| 2055 | cflags = [] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2056 | configs += net_configs |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 2057 | |
brettw | a1228ebb | 2016-10-28 03:51:34 | [diff] [blame] | 2058 | public_deps += [ |
| 2059 | ":features", |
| 2060 | "//url", |
| 2061 | ] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2062 | |
| 2063 | if (is_mac) { |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2064 | libs = [ |
rsesek | 02aa51c | 2016-05-11 02:13:57 | [diff] [blame] | 2065 | "CFNetwork.framework", |
| 2066 | "CoreServices.framework", |
[email protected] | ab9ce6e | 2014-04-17 20:33:19 | [diff] [blame] | 2067 | "Foundation.framework", |
| 2068 | "Security.framework", |
| 2069 | "SystemConfiguration.framework", |
| 2070 | "resolv", |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2071 | ] |
| 2072 | } |
| 2073 | |
| 2074 | if (is_ios) { |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2075 | libs = [ |
[email protected] | ab9ce6e | 2014-04-17 20:33:19 | [diff] [blame] | 2076 | "CFNetwork.framework", |
| 2077 | "MobileCoreServices.framework", |
| 2078 | "Security.framework", |
| 2079 | "SystemConfiguration.framework", |
| 2080 | "resolv", |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2081 | ] |
xunjieli | 06d9398 | 2015-08-27 17:13:02 | [diff] [blame] | 2082 | } |
xunjieli | 4c8c692 | 2015-08-27 16:02:40 | [diff] [blame] | 2083 | |
jam | 5332a63 | 2016-04-01 22:36:05 | [diff] [blame] | 2084 | if (is_win) { |
| 2085 | libs = [ |
| 2086 | "crypt32.lib", |
| 2087 | "dhcpcsvc.lib", |
| 2088 | "iphlpapi.lib", |
davidben | 6239919 | 2016-09-13 01:54:22 | [diff] [blame] | 2089 | "ncrypt.lib", |
jam | 5332a63 | 2016-04-01 22:36:05 | [diff] [blame] | 2090 | "rpcrt4.lib", |
| 2091 | "secur32.lib", |
| 2092 | "urlmon.lib", |
| 2093 | "winhttp.lib", |
| 2094 | ] |
| 2095 | } |
| 2096 | |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 2097 | if (!is_nacl) { |
| 2098 | if (!disable_file_support) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2099 | sources += [ |
| 2100 | "base/directory_lister.cc", |
| 2101 | "base/directory_lister.h", |
| 2102 | "base/directory_listing.cc", |
| 2103 | "base/directory_listing.h", |
| 2104 | "url_request/file_protocol_handler.cc", |
| 2105 | "url_request/file_protocol_handler.h", |
| 2106 | "url_request/url_request_file_dir_job.cc", |
| 2107 | "url_request/url_request_file_dir_job.h", |
| 2108 | "url_request/url_request_file_job.cc", |
| 2109 | "url_request/url_request_file_job.h", |
| 2110 | ] |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 2111 | } |
xunjieli | 06d9398 | 2015-08-27 17:13:02 | [diff] [blame] | 2112 | |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 2113 | if (!disable_ftp_support) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2114 | sources += [ |
| 2115 | "ftp/ftp_auth_cache.cc", |
| 2116 | "ftp/ftp_auth_cache.h", |
| 2117 | "ftp/ftp_ctrl_response_buffer.cc", |
| 2118 | "ftp/ftp_ctrl_response_buffer.h", |
| 2119 | "ftp/ftp_directory_listing_parser.cc", |
| 2120 | "ftp/ftp_directory_listing_parser.h", |
| 2121 | "ftp/ftp_directory_listing_parser_ls.cc", |
| 2122 | "ftp/ftp_directory_listing_parser_ls.h", |
| 2123 | "ftp/ftp_directory_listing_parser_vms.cc", |
| 2124 | "ftp/ftp_directory_listing_parser_vms.h", |
| 2125 | "ftp/ftp_directory_listing_parser_windows.cc", |
| 2126 | "ftp/ftp_directory_listing_parser_windows.h", |
| 2127 | "ftp/ftp_network_layer.cc", |
| 2128 | "ftp/ftp_network_layer.h", |
| 2129 | "ftp/ftp_network_session.cc", |
| 2130 | "ftp/ftp_network_session.h", |
| 2131 | "ftp/ftp_network_transaction.cc", |
| 2132 | "ftp/ftp_network_transaction.h", |
| 2133 | "ftp/ftp_request_info.h", |
| 2134 | "ftp/ftp_response_info.cc", |
| 2135 | "ftp/ftp_response_info.h", |
| 2136 | "ftp/ftp_server_type_histograms.cc", |
| 2137 | "ftp/ftp_server_type_histograms.h", |
| 2138 | "ftp/ftp_transaction.h", |
| 2139 | "ftp/ftp_transaction_factory.h", |
| 2140 | "ftp/ftp_util.cc", |
| 2141 | "ftp/ftp_util.h", |
| 2142 | "url_request/ftp_protocol_handler.cc", |
| 2143 | "url_request/ftp_protocol_handler.h", |
| 2144 | "url_request/url_request_ftp_job.cc", |
| 2145 | "url_request/url_request_ftp_job.h", |
| 2146 | ] |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 2147 | } |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 2148 | |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 2149 | if (enable_websockets) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2150 | sources += [ |
| 2151 | "websockets/websocket_basic_handshake_stream.cc", |
| 2152 | "websockets/websocket_basic_handshake_stream.h", |
| 2153 | "websockets/websocket_basic_stream.cc", |
| 2154 | "websockets/websocket_basic_stream.h", |
| 2155 | "websockets/websocket_channel.cc", |
| 2156 | "websockets/websocket_channel.h", |
| 2157 | "websockets/websocket_deflate_parameters.cc", |
| 2158 | "websockets/websocket_deflate_parameters.h", |
| 2159 | "websockets/websocket_deflate_predictor.h", |
| 2160 | "websockets/websocket_deflate_predictor_impl.cc", |
| 2161 | "websockets/websocket_deflate_predictor_impl.h", |
| 2162 | "websockets/websocket_deflate_stream.cc", |
| 2163 | "websockets/websocket_deflate_stream.h", |
| 2164 | "websockets/websocket_deflater.cc", |
| 2165 | "websockets/websocket_deflater.h", |
| 2166 | "websockets/websocket_errors.cc", |
| 2167 | "websockets/websocket_errors.h", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 2168 | "websockets/websocket_event_interface.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2169 | "websockets/websocket_extension.cc", |
| 2170 | "websockets/websocket_extension.h", |
| 2171 | "websockets/websocket_extension_parser.cc", |
| 2172 | "websockets/websocket_extension_parser.h", |
| 2173 | "websockets/websocket_frame.cc", |
| 2174 | "websockets/websocket_frame.h", |
| 2175 | "websockets/websocket_frame_parser.cc", |
| 2176 | "websockets/websocket_frame_parser.h", |
| 2177 | "websockets/websocket_handshake_challenge.cc", |
| 2178 | "websockets/websocket_handshake_challenge.h", |
| 2179 | "websockets/websocket_handshake_constants.cc", |
| 2180 | "websockets/websocket_handshake_constants.h", |
| 2181 | "websockets/websocket_handshake_request_info.cc", |
| 2182 | "websockets/websocket_handshake_request_info.h", |
| 2183 | "websockets/websocket_handshake_response_info.cc", |
| 2184 | "websockets/websocket_handshake_response_info.h", |
| 2185 | "websockets/websocket_handshake_stream_base.h", |
| 2186 | "websockets/websocket_handshake_stream_create_helper.cc", |
| 2187 | "websockets/websocket_handshake_stream_create_helper.h", |
| 2188 | "websockets/websocket_inflater.cc", |
| 2189 | "websockets/websocket_inflater.h", |
| 2190 | "websockets/websocket_stream.cc", |
| 2191 | "websockets/websocket_stream.h", |
| 2192 | ] |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 2193 | } |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 2194 | |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 2195 | # ICU support. |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2196 | if (use_platform_icu_alternatives) { |
| 2197 | if (is_android) { |
| 2198 | # Use ICU alternative on Android. |
torne | d8b7d925 | 2016-08-04 19:41:45 | [diff] [blame] | 2199 | sources += [ "base/net_string_util_icu_alternatives_android.cc" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2200 | deps += [ ":net_jni_headers" ] |
| 2201 | } else if (is_ios) { |
| 2202 | # Use ICU alternative on iOS. |
| 2203 | sources += [ "base/net_string_util_icu_alternatives_ios.mm" ] |
| 2204 | } else { |
| 2205 | assert(false, |
| 2206 | "ICU alternative is not implemented for platform: " + target_os) |
| 2207 | } |
| 2208 | } else { |
| 2209 | # Use ICU. |
| 2210 | deps += [ |
| 2211 | "//base:i18n", |
| 2212 | "//third_party/icu", |
| 2213 | ] |
| 2214 | sources += [ |
| 2215 | "base/filename_util_icu.cc", |
| 2216 | "base/net_string_util_icu.cc", |
| 2217 | ] |
| 2218 | } |
eustas | fbec913 | 2015-12-30 14:56:51 | [diff] [blame] | 2219 | |
| 2220 | # Brotli support. |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2221 | if (!disable_brotli_filter) { |
thakis | b8590c9 | 2017-03-23 18:14:53 | [diff] [blame] | 2222 | sources += [ |
| 2223 | "filter/brotli_source_stream.cc", |
| 2224 | "filter/brotli_source_stream.h", |
| 2225 | ] |
eustas | 6ed4c41 | 2016-12-14 13:53:34 | [diff] [blame] | 2226 | deps += [ "//third_party/brotli:dec" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2227 | } else { |
xunjieli | 084a929 | 2016-09-23 18:15:04 | [diff] [blame] | 2228 | sources += [ "filter/brotli_source_stream_disabled.cc" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2229 | } |
[email protected] | 85191ed | 2014-05-15 00:41:49 | [diff] [blame] | 2230 | } |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2231 | } |
| 2232 | |
| 2233 | grit("net_resources") { |
| 2234 | source = "base/net_resources.grd" |
[email protected] | b89c5384 | 2014-07-23 16:32:32 | [diff] [blame] | 2235 | outputs = [ |
| 2236 | "grit/net_resources.h", |
| 2237 | "net_resources.pak", |
[email protected] | b89c5384 | 2014-07-23 16:32:32 | [diff] [blame] | 2238 | ] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2239 | } |
| 2240 | |
Tarun Bansal | cdfa34b | 2017-11-23 05:11:17 | [diff] [blame] | 2241 | proto_library("net_nqe_proto") { |
| 2242 | visibility = [ ":net" ] |
| 2243 | |
| 2244 | sources = [ |
| 2245 | "nqe/proto/network_id_proto.proto", |
| 2246 | ] |
| 2247 | cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:" |
| 2248 | cc_include = "net/base/net_export.h" |
| 2249 | component_build_force_source_set = true |
| 2250 | |
| 2251 | defines = [ "NET_IMPLEMENTATION" ] |
| 2252 | |
| 2253 | extra_configs = [ "//build/config/compiler:wexit_time_destructors" ] |
| 2254 | } |
| 2255 | |
rtenneti | b6f1c0d | 2015-04-03 17:52:06 | [diff] [blame] | 2256 | proto_library("net_quic_proto") { |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2257 | visibility = [ ":net" ] |
brettw | 2e7db0a | 2015-04-24 22:59:17 | [diff] [blame] | 2258 | |
rtenneti | b6f1c0d | 2015-04-03 17:52:06 | [diff] [blame] | 2259 | sources = [ |
rch | d4db7c15 | 2016-07-29 21:58:12 | [diff] [blame] | 2260 | "quic/core/proto/cached_network_parameters.proto", |
| 2261 | "quic/core/proto/source_address_token.proto", |
rtenneti | b6f1c0d | 2015-04-03 17:52:06 | [diff] [blame] | 2262 | ] |
| 2263 | cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:" |
| 2264 | cc_include = "net/base/net_export.h" |
brettw | 7ef8045 | 2016-06-30 00:43:18 | [diff] [blame] | 2265 | component_build_force_source_set = true |
rtenneti | b6f1c0d | 2015-04-03 17:52:06 | [diff] [blame] | 2266 | |
| 2267 | defines = [ "NET_IMPLEMENTATION" ] |
| 2268 | |
| 2269 | extra_configs = [ "//build/config/compiler:wexit_time_destructors" ] |
| 2270 | } |
| 2271 | |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2272 | if (!is_proto_quic) { |
| 2273 | static_library("extras") { |
| 2274 | sources = [ |
| 2275 | "extras/sqlite/cookie_crypto_delegate.h", |
| 2276 | "extras/sqlite/sqlite_channel_id_store.cc", |
| 2277 | "extras/sqlite/sqlite_channel_id_store.h", |
| 2278 | "extras/sqlite/sqlite_persistent_cookie_store.cc", |
| 2279 | "extras/sqlite/sqlite_persistent_cookie_store.h", |
| 2280 | ] |
| 2281 | configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 2282 | deps = [ |
| 2283 | ":net", |
| 2284 | "//base", |
| 2285 | "//sql:sql", |
| 2286 | ] |
| 2287 | } |
mef | 327a8e4 | 2014-08-29 17:10:03 | [diff] [blame] | 2288 | } |
| 2289 | |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 2290 | static_library("http_server") { |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2291 | sources = [ |
| 2292 | "server/http_connection.cc", |
| 2293 | "server/http_connection.h", |
| 2294 | "server/http_server.cc", |
| 2295 | "server/http_server.h", |
| 2296 | "server/http_server_request_info.cc", |
| 2297 | "server/http_server_request_info.h", |
| 2298 | "server/http_server_response_info.cc", |
| 2299 | "server/http_server_response_info.h", |
| 2300 | "server/web_socket.cc", |
| 2301 | "server/web_socket.h", |
dgozman | a6e7009 | 2014-12-12 14:46:21 | [diff] [blame] | 2302 | "server/web_socket_encoder.cc", |
| 2303 | "server/web_socket_encoder.h", |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2304 | ] |
Hitoshi Yoshida | f07e903 | 2017-12-08 00:41:18 | [diff] [blame] | 2305 | configs += [ "//build/config/compiler:wexit_time_destructors" ] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2306 | deps = [ |
| 2307 | ":net", |
| 2308 | "//base", |
| 2309 | ] |
| 2310 | } |
| 2311 | |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 2312 | if (!is_ios) { |
| 2313 | executable("dump_cache") { |
| 2314 | testonly = true |
| 2315 | sources = [ |
| 2316 | "tools/dump_cache/dump_cache.cc", |
| 2317 | "tools/dump_cache/dump_files.cc", |
| 2318 | "tools/dump_cache/dump_files.h", |
| 2319 | ] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2320 | |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 2321 | deps = [ |
| 2322 | ":net", |
| 2323 | ":test_support", |
| 2324 | "//base", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 2325 | "//build/config:exe_and_shlib_deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2326 | "//build/win:default_exe_manifest", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 2327 | ] |
| 2328 | } |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2329 | } |
| 2330 | |
eroman | 1295131 | 2017-05-05 22:55:51 | [diff] [blame] | 2331 | # This section can be updated from globbing rules using: |
| 2332 | # python ./tools/update_ios_bundle_data.py |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 2333 | bundle_data("test_support_bundle_data") { |
sdefresne | 04f9114 | 2016-04-21 08:41:59 | [diff] [blame] | 2334 | visibility = [ ":test_support" ] |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 2335 | testonly = true |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2336 | sources = [ |
zhongyi | d7dd2db1 | 2017-04-14 17:01:25 | [diff] [blame] | 2337 | "data/quic_http_response_cache_data_with_push/test.example.com/favicon.ico", |
| 2338 | "data/quic_http_response_cache_data_with_push/test.example.com/index.html", |
| 2339 | "data/quic_http_response_cache_data_with_push/test.example.com/index2.html", |
| 2340 | "data/quic_http_response_cache_data_with_push/test.example.com/kitten-1.jpg", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2341 | "data/ssl/certificates/1024-rsa-ee-by-1024-rsa-intermediate.pem", |
| 2342 | "data/ssl/certificates/1024-rsa-ee-by-2048-rsa-intermediate.pem", |
| 2343 | "data/ssl/certificates/1024-rsa-ee-by-768-rsa-intermediate.pem", |
| 2344 | "data/ssl/certificates/1024-rsa-ee-by-prime256v1-ecdsa-intermediate.pem", |
| 2345 | "data/ssl/certificates/1024-rsa-intermediate.pem", |
| 2346 | "data/ssl/certificates/10_year_validity.pem", |
| 2347 | "data/ssl/certificates/11_year_validity.pem", |
| 2348 | "data/ssl/certificates/2029_globalsign_com_cert.pem", |
| 2349 | "data/ssl/certificates/2048-rsa-ee-by-1024-rsa-intermediate.pem", |
| 2350 | "data/ssl/certificates/2048-rsa-ee-by-2048-rsa-intermediate.pem", |
| 2351 | "data/ssl/certificates/2048-rsa-ee-by-768-rsa-intermediate.pem", |
| 2352 | "data/ssl/certificates/2048-rsa-ee-by-prime256v1-ecdsa-intermediate.pem", |
| 2353 | "data/ssl/certificates/2048-rsa-intermediate.pem", |
| 2354 | "data/ssl/certificates/2048-rsa-root.pem", |
| 2355 | "data/ssl/certificates/39_months_after_2015_04.pem", |
| 2356 | "data/ssl/certificates/40_months_after_2015_04.pem", |
| 2357 | "data/ssl/certificates/60_months_after_2012_07.pem", |
| 2358 | "data/ssl/certificates/61_months_after_2012_07.pem", |
| 2359 | "data/ssl/certificates/768-rsa-ee-by-1024-rsa-intermediate.pem", |
| 2360 | "data/ssl/certificates/768-rsa-ee-by-2048-rsa-intermediate.pem", |
| 2361 | "data/ssl/certificates/768-rsa-ee-by-768-rsa-intermediate.pem", |
| 2362 | "data/ssl/certificates/768-rsa-ee-by-prime256v1-ecdsa-intermediate.pem", |
| 2363 | "data/ssl/certificates/768-rsa-intermediate.pem", |
eroman | 1295131 | 2017-05-05 22:55:51 | [diff] [blame] | 2364 | "data/ssl/certificates/README", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2365 | "data/ssl/certificates/aia-cert.pem", |
| 2366 | "data/ssl/certificates/aia-intermediate.der", |
| 2367 | "data/ssl/certificates/aia-root.pem", |
| 2368 | "data/ssl/certificates/bad_validity.pem", |
| 2369 | "data/ssl/certificates/client-empty-password.p12", |
| 2370 | "data/ssl/certificates/client-nokey.p12", |
| 2371 | "data/ssl/certificates/client-null-password.p12", |
| 2372 | "data/ssl/certificates/client.p12", |
| 2373 | "data/ssl/certificates/client_1.key", |
| 2374 | "data/ssl/certificates/client_1.pem", |
| 2375 | "data/ssl/certificates/client_1.pk8", |
| 2376 | "data/ssl/certificates/client_1_ca.pem", |
| 2377 | "data/ssl/certificates/client_2.key", |
| 2378 | "data/ssl/certificates/client_2.pem", |
| 2379 | "data/ssl/certificates/client_2.pk8", |
| 2380 | "data/ssl/certificates/client_2_ca.pem", |
| 2381 | "data/ssl/certificates/client_3.key", |
| 2382 | "data/ssl/certificates/client_3.pem", |
| 2383 | "data/ssl/certificates/client_3.pk8", |
| 2384 | "data/ssl/certificates/client_3_ca.pem", |
| 2385 | "data/ssl/certificates/client_4.key", |
| 2386 | "data/ssl/certificates/client_4.pem", |
| 2387 | "data/ssl/certificates/client_4.pk8", |
| 2388 | "data/ssl/certificates/client_4_ca.pem", |
| 2389 | "data/ssl/certificates/client_5.key", |
| 2390 | "data/ssl/certificates/client_5.pem", |
| 2391 | "data/ssl/certificates/client_5.pk8", |
| 2392 | "data/ssl/certificates/client_5_ca.pem", |
| 2393 | "data/ssl/certificates/client_6.key", |
| 2394 | "data/ssl/certificates/client_6.pem", |
| 2395 | "data/ssl/certificates/client_6.pk8", |
| 2396 | "data/ssl/certificates/client_6_ca.pem", |
| 2397 | "data/ssl/certificates/client_root_ca.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2398 | "data/ssl/certificates/crit-codeSigning-chain.pem", |
| 2399 | "data/ssl/certificates/crlset_by_intermediate_serial.raw", |
| 2400 | "data/ssl/certificates/crlset_by_leaf_spki.raw", |
| 2401 | "data/ssl/certificates/crlset_by_root_serial.raw", |
Adam Langley | ea6d678 | 2017-12-05 23:57:33 | [diff] [blame] | 2402 | "data/ssl/certificates/crlset_by_subject.raw", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2403 | "data/ssl/certificates/cross-signed-leaf.pem", |
| 2404 | "data/ssl/certificates/cross-signed-root-md5.pem", |
| 2405 | "data/ssl/certificates/cross-signed-root-sha256.pem", |
| 2406 | "data/ssl/certificates/ct-test-embedded-cert.pem", |
| 2407 | "data/ssl/certificates/ct-test-embedded-with-intermediate-chain.pem", |
| 2408 | "data/ssl/certificates/ct-test-embedded-with-intermediate-preca-chain.pem", |
| 2409 | "data/ssl/certificates/ct-test-embedded-with-preca-chain.pem", |
| 2410 | "data/ssl/certificates/diginotar_cyber_ca.pem", |
| 2411 | "data/ssl/certificates/diginotar_pkioverheid.pem", |
| 2412 | "data/ssl/certificates/diginotar_pkioverheid_g2.pem", |
| 2413 | "data/ssl/certificates/diginotar_public_ca_2025.pem", |
| 2414 | "data/ssl/certificates/diginotar_root_ca.pem", |
| 2415 | "data/ssl/certificates/diginotar_services_1024_ca.pem", |
| 2416 | "data/ssl/certificates/dod_ca_13_cert.der", |
| 2417 | "data/ssl/certificates/dod_ca_17_cert.der", |
| 2418 | "data/ssl/certificates/dod_root_ca_2_cert.der", |
| 2419 | "data/ssl/certificates/duplicate_cn_1.p12", |
| 2420 | "data/ssl/certificates/duplicate_cn_1.pem", |
| 2421 | "data/ssl/certificates/duplicate_cn_2.p12", |
| 2422 | "data/ssl/certificates/duplicate_cn_2.pem", |
| 2423 | "data/ssl/certificates/eku-test-root.pem", |
| 2424 | "data/ssl/certificates/empty_subject_cert.der", |
| 2425 | "data/ssl/certificates/expired_cert.pem", |
| 2426 | "data/ssl/certificates/explicit-policy-chain.pem", |
| 2427 | "data/ssl/certificates/foaf.me.chromium-test-cert.der", |
| 2428 | "data/ssl/certificates/google.binary.p7b", |
| 2429 | "data/ssl/certificates/google.chain.pem", |
| 2430 | "data/ssl/certificates/google.pem_cert.p7b", |
| 2431 | "data/ssl/certificates/google.pem_pkcs7.p7b", |
| 2432 | "data/ssl/certificates/google.single.der", |
| 2433 | "data/ssl/certificates/google.single.pem", |
| 2434 | "data/ssl/certificates/google_diginotar.pem", |
| 2435 | "data/ssl/certificates/googlenew.chain.pem", |
| 2436 | "data/ssl/certificates/intermediate_ca_cert.pem", |
| 2437 | "data/ssl/certificates/invalid_key_usage_cert.der", |
| 2438 | "data/ssl/certificates/large_key.pem", |
| 2439 | "data/ssl/certificates/localhost_cert.pem", |
| 2440 | "data/ssl/certificates/mit.davidben.der", |
| 2441 | "data/ssl/certificates/multi-root-A-by-B.pem", |
| 2442 | "data/ssl/certificates/multi-root-B-by-C.pem", |
| 2443 | "data/ssl/certificates/multi-root-B-by-F.pem", |
| 2444 | "data/ssl/certificates/multi-root-BFE.keychain", |
| 2445 | "data/ssl/certificates/multi-root-C-by-D.pem", |
| 2446 | "data/ssl/certificates/multi-root-C-by-E.pem", |
| 2447 | "data/ssl/certificates/multi-root-D-by-D.pem", |
| 2448 | "data/ssl/certificates/multi-root-E-by-E.pem", |
| 2449 | "data/ssl/certificates/multi-root-F-by-E.pem", |
| 2450 | "data/ssl/certificates/multi-root-chain1.pem", |
| 2451 | "data/ssl/certificates/multi-root-chain2.pem", |
| 2452 | "data/ssl/certificates/multi-root-crlset-C.raw", |
| 2453 | "data/ssl/certificates/multi-root-crlset-CD-and-FE.raw", |
| 2454 | "data/ssl/certificates/multi-root-crlset-D-and-E.raw", |
| 2455 | "data/ssl/certificates/multi-root-crlset-E.raw", |
| 2456 | "data/ssl/certificates/multi-root-crlset-unrelated.raw", |
eroman | 1295131 | 2017-05-05 22:55:51 | [diff] [blame] | 2457 | "data/ssl/certificates/multi-root.keychain", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2458 | "data/ssl/certificates/multivalue_rdn.pem", |
| 2459 | "data/ssl/certificates/name_constraint_bad.pem", |
| 2460 | "data/ssl/certificates/name_constraint_good.pem", |
| 2461 | "data/ssl/certificates/ndn.ca.crt", |
| 2462 | "data/ssl/certificates/nist.der", |
| 2463 | "data/ssl/certificates/no_subject_common_name_cert.pem", |
| 2464 | "data/ssl/certificates/non-crit-codeSigning-chain.pem", |
| 2465 | "data/ssl/certificates/ocsp-test-root.pem", |
| 2466 | "data/ssl/certificates/ok_cert.pem", |
| 2467 | "data/ssl/certificates/ok_cert_by_intermediate.pem", |
| 2468 | "data/ssl/certificates/post_june_2016.pem", |
| 2469 | "data/ssl/certificates/pre_br_validity_bad_121.pem", |
| 2470 | "data/ssl/certificates/pre_br_validity_bad_2020.pem", |
| 2471 | "data/ssl/certificates/pre_br_validity_ok.pem", |
| 2472 | "data/ssl/certificates/pre_june_2016.pem", |
| 2473 | "data/ssl/certificates/prime256v1-ecdsa-ee-by-1024-rsa-intermediate.pem", |
| 2474 | "data/ssl/certificates/prime256v1-ecdsa-ee-by-2048-rsa-intermediate.pem", |
| 2475 | "data/ssl/certificates/prime256v1-ecdsa-ee-by-768-rsa-intermediate.pem", |
| 2476 | "data/ssl/certificates/prime256v1-ecdsa-ee-by-prime256v1-ecdsa-intermediate.pem", |
| 2477 | "data/ssl/certificates/prime256v1-ecdsa-intermediate.pem", |
| 2478 | "data/ssl/certificates/punycodetest.pem", |
| 2479 | "data/ssl/certificates/quic_chain.crt", |
| 2480 | "data/ssl/certificates/quic_intermediate.crt", |
| 2481 | "data/ssl/certificates/quic_intermediate.key", |
| 2482 | "data/ssl/certificates/quic_root.crt", |
| 2483 | "data/ssl/certificates/quic_root.key", |
| 2484 | "data/ssl/certificates/quic_test.example.com.crt", |
| 2485 | "data/ssl/certificates/quic_test.example.com.key", |
| 2486 | "data/ssl/certificates/quic_test.example.com.key.pkcs8", |
eroman | 1295131 | 2017-05-05 22:55:51 | [diff] [blame] | 2487 | "data/ssl/certificates/quic_test.example.com.key.pkcs8.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2488 | "data/ssl/certificates/quic_test.example.com.key.sct", |
| 2489 | "data/ssl/certificates/quic_test_ecc.example.com.crt", |
| 2490 | "data/ssl/certificates/quic_test_ecc.example.com.key", |
| 2491 | "data/ssl/certificates/quic_test_ecc.example.com.sct", |
| 2492 | "data/ssl/certificates/redundant-server-chain.pem", |
| 2493 | "data/ssl/certificates/redundant-validated-chain-root.pem", |
| 2494 | "data/ssl/certificates/redundant-validated-chain.pem", |
| 2495 | "data/ssl/certificates/reject_intranet_hosts.pem", |
| 2496 | "data/ssl/certificates/root_ca_cert.pem", |
| 2497 | "data/ssl/certificates/salesforce_com_test.pem", |
| 2498 | "data/ssl/certificates/self-signed-invalid-name.pem", |
| 2499 | "data/ssl/certificates/self-signed-invalid-sig.pem", |
| 2500 | "data/ssl/certificates/sha1_2016.pem", |
| 2501 | "data/ssl/certificates/sha1_dec_2015.pem", |
| 2502 | "data/ssl/certificates/sha1_jan_2016.pem", |
| 2503 | "data/ssl/certificates/spdy_pooling.pem", |
| 2504 | "data/ssl/certificates/start_after_expiry.pem", |
| 2505 | "data/ssl/certificates/subjectAltName_sanity_check.pem", |
elawrence | c7484f5 | 2017-04-05 21:46:42 | [diff] [blame] | 2506 | "data/ssl/certificates/subjectAltName_www_example_com.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2507 | "data/ssl/certificates/thawte.single.pem", |
| 2508 | "data/ssl/certificates/tls_feature_extension.pem", |
| 2509 | "data/ssl/certificates/tripadvisor-verisign-chain.pem", |
eroman | 1295131 | 2017-05-05 22:55:51 | [diff] [blame] | 2510 | "data/ssl/certificates/trustcenter.websecurity.symantec.com.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2511 | "data/ssl/certificates/twitter-chain.pem", |
| 2512 | "data/ssl/certificates/unescaped.pem", |
| 2513 | "data/ssl/certificates/unittest.key.bin", |
| 2514 | "data/ssl/certificates/unittest.originbound.der", |
| 2515 | "data/ssl/certificates/unittest.originbound.key.der", |
| 2516 | "data/ssl/certificates/unittest.selfsigned.der", |
| 2517 | "data/ssl/certificates/verisign_class3_g5_crosssigned-trusted.keychain", |
| 2518 | "data/ssl/certificates/verisign_class3_g5_crosssigned.pem", |
| 2519 | "data/ssl/certificates/verisign_intermediate_ca_2011.pem", |
| 2520 | "data/ssl/certificates/verisign_intermediate_ca_2016.pem", |
| 2521 | "data/ssl/certificates/weak_digest_md2_ee.pem", |
| 2522 | "data/ssl/certificates/weak_digest_md2_intermediate.pem", |
| 2523 | "data/ssl/certificates/weak_digest_md2_root.pem", |
| 2524 | "data/ssl/certificates/weak_digest_md4_ee.pem", |
| 2525 | "data/ssl/certificates/weak_digest_md4_intermediate.pem", |
| 2526 | "data/ssl/certificates/weak_digest_md4_root.pem", |
| 2527 | "data/ssl/certificates/weak_digest_md5_ee.pem", |
| 2528 | "data/ssl/certificates/weak_digest_md5_intermediate.pem", |
| 2529 | "data/ssl/certificates/weak_digest_md5_root.pem", |
| 2530 | "data/ssl/certificates/weak_digest_sha1_ee.pem", |
| 2531 | "data/ssl/certificates/weak_digest_sha1_intermediate.pem", |
| 2532 | "data/ssl/certificates/weak_digest_sha1_root.pem", |
| 2533 | "data/ssl/certificates/websocket_cacert.pem", |
| 2534 | "data/ssl/certificates/websocket_client_cert.p12", |
| 2535 | "data/ssl/certificates/wildcard.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2536 | "data/ssl/certificates/www_us_army_mil_cert.der", |
| 2537 | "data/ssl/certificates/x509_verify_results.chain.pem", |
| 2538 | ] |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 2539 | outputs = [ |
| 2540 | "{{bundle_resources_dir}}/" + |
| 2541 | "{{source_root_relative_dir}}/{{source_file_part}}", |
| 2542 | ] |
| 2543 | } |
| 2544 | |
brettw | 3871f52 | 2016-07-14 22:08:34 | [diff] [blame] | 2545 | static_library("test_support") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2546 | testonly = true |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2547 | sources = [ |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2548 | "base/load_timing_info_test_util.cc", |
| 2549 | "base/load_timing_info_test_util.h", |
| 2550 | "base/mock_file_stream.cc", |
| 2551 | "base/mock_file_stream.h", |
Helen Li | f18af04d | 2017-10-19 17:26:07 | [diff] [blame] | 2552 | "base/mock_network_change_notifier.cc", |
| 2553 | "base/mock_network_change_notifier.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2554 | "base/test_completion_callback.cc", |
| 2555 | "base/test_completion_callback.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2556 | "cert/mock_cert_verifier.cc", |
| 2557 | "cert/mock_cert_verifier.h", |
ryanchung | 987b2ff | 2016-02-19 00:17:12 | [diff] [blame] | 2558 | "cert/mock_client_cert_verifier.cc", |
| 2559 | "cert/mock_client_cert_verifier.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2560 | "cookies/cookie_monster_store_test.cc", |
| 2561 | "cookies/cookie_monster_store_test.h", |
| 2562 | "cookies/cookie_store_test_callbacks.cc", |
| 2563 | "cookies/cookie_store_test_callbacks.h", |
| 2564 | "cookies/cookie_store_test_helpers.cc", |
| 2565 | "cookies/cookie_store_test_helpers.h", |
droger | fd8b277 | 2015-12-04 14:34:56 | [diff] [blame] | 2566 | "cookies/cookie_store_unittest.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2567 | "disk_cache/disk_cache_test_base.cc", |
| 2568 | "disk_cache/disk_cache_test_base.h", |
| 2569 | "disk_cache/disk_cache_test_util.cc", |
| 2570 | "disk_cache/disk_cache_test_util.h", |
| 2571 | "dns/dns_test_util.cc", |
| 2572 | "dns/dns_test_util.h", |
| 2573 | "dns/mock_host_resolver.cc", |
| 2574 | "dns/mock_host_resolver.h", |
| 2575 | "dns/mock_mdns_socket_factory.cc", |
| 2576 | "dns/mock_mdns_socket_factory.h", |
Matt Menke | 1dd3f2f | 2017-08-09 17:10:06 | [diff] [blame] | 2577 | "filter/filter_source_stream_test_util.cc", |
| 2578 | "filter/filter_source_stream_test_util.h", |
xunjieli | 6cc8b84b | 2016-11-08 15:23:39 | [diff] [blame] | 2579 | "filter/mock_source_stream.cc", |
| 2580 | "filter/mock_source_stream.h", |
zhongyi | 3c41298 | 2016-06-18 00:34:30 | [diff] [blame] | 2581 | "http/http_stream_factory_test_util.cc", |
| 2582 | "http/http_stream_factory_test_util.h", |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 2583 | "http/http_transaction_test_util.cc", |
| 2584 | "http/http_transaction_test_util.h", |
vishal.b | 62985ca9 | 2015-04-17 08:45:51 | [diff] [blame] | 2585 | "log/test_net_log.cc", |
| 2586 | "log/test_net_log.h", |
mmenke | 43758e6 | 2015-05-04 21:09:46 | [diff] [blame] | 2587 | "log/test_net_log_entry.cc", |
| 2588 | "log/test_net_log_entry.h", |
mmenke | 0034c54 | 2015-05-05 22:34:59 | [diff] [blame] | 2589 | "log/test_net_log_util.cc", |
mmenke | 43758e6 | 2015-05-04 21:09:46 | [diff] [blame] | 2590 | "log/test_net_log_util.h", |
tbansal | 785a6ab | 2016-10-10 20:19:28 | [diff] [blame] | 2591 | "nqe/network_quality_estimator_test_util.cc", |
| 2592 | "nqe/network_quality_estimator_test_util.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2593 | "proxy/mock_proxy_resolver.cc", |
| 2594 | "proxy/mock_proxy_resolver.h", |
| 2595 | "proxy/mock_proxy_script_fetcher.cc", |
| 2596 | "proxy/mock_proxy_script_fetcher.h", |
| 2597 | "proxy/proxy_config_service_common_unittest.cc", |
| 2598 | "proxy/proxy_config_service_common_unittest.h", |
| 2599 | "socket/socket_test_util.cc", |
| 2600 | "socket/socket_test_util.h", |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 2601 | "spdy/chromium/spdy_test_util_common.cc", |
| 2602 | "spdy/chromium/spdy_test_util_common.h", |
mattm | 436ccfe | 2017-06-19 20:24:08 | [diff] [blame] | 2603 | "ssl/client_cert_identity_test_util.cc", |
| 2604 | "ssl/client_cert_identity_test_util.h", |
| 2605 | "ssl/ssl_private_key_test_util.cc", |
| 2606 | "ssl/ssl_private_key_test_util.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2607 | "test/cert_test_util.cc", |
| 2608 | "test/cert_test_util.h", |
[email protected] | 83e1ae3 | 2014-07-18 10:57:07 | [diff] [blame] | 2609 | "test/cert_test_util_nss.cc", |
nharper | 2e171cf | 2015-06-01 20:29:23 | [diff] [blame] | 2610 | "test/channel_id_test_util.cc", |
| 2611 | "test/channel_id_test_util.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2612 | "test/ct_test_util.cc", |
| 2613 | "test/ct_test_util.h", |
svaldez | 7d25c56 | 2015-10-30 19:09:45 | [diff] [blame] | 2614 | "test/embedded_test_server/default_handlers.cc", |
| 2615 | "test/embedded_test_server/default_handlers.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2616 | "test/embedded_test_server/embedded_test_server.cc", |
| 2617 | "test/embedded_test_server/embedded_test_server.h", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 2618 | "test/embedded_test_server/embedded_test_server_connection_listener.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2619 | "test/embedded_test_server/http_connection.cc", |
| 2620 | "test/embedded_test_server/http_connection.h", |
| 2621 | "test/embedded_test_server/http_request.cc", |
| 2622 | "test/embedded_test_server/http_request.h", |
| 2623 | "test/embedded_test_server/http_response.cc", |
| 2624 | "test/embedded_test_server/http_response.h", |
svaldez | 6e7e82a2 | 2015-10-28 19:39:53 | [diff] [blame] | 2625 | "test/embedded_test_server/request_handler_util.cc", |
| 2626 | "test/embedded_test_server/request_handler_util.h", |
mmenke | 93be9ca | 2017-05-23 16:29:13 | [diff] [blame] | 2627 | "test/embedded_test_server/simple_connection_listener.cc", |
| 2628 | "test/embedded_test_server/simple_connection_listener.h", |
sammc | 6ac3fe5 | 2015-02-25 06:00:28 | [diff] [blame] | 2629 | "test/event_waiter.h", |
johnme | 36ae580 | 2016-05-10 15:46:24 | [diff] [blame] | 2630 | "test/gtest_util.h", |
mattm | c1ec9d9 | 2017-05-25 01:40:30 | [diff] [blame] | 2631 | "test/keychain_test_util_mac.cc", |
| 2632 | "test/keychain_test_util_mac.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2633 | "test/net_test_suite.cc", |
| 2634 | "test/net_test_suite.h", |
johnme | 36ae580 | 2016-05-10 15:46:24 | [diff] [blame] | 2635 | "test/scoped_disable_exit_on_dfatal.cc", |
| 2636 | "test/scoped_disable_exit_on_dfatal.h", |
brettw | 6315e03 | 2015-11-27 18:38:36 | [diff] [blame] | 2637 | "test/test_certificate_data.h", |
rsleevi | a69c79a | 2016-06-22 03:28:43 | [diff] [blame] | 2638 | "test/test_data_directory.cc", |
| 2639 | "test/test_data_directory.h", |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 2640 | "test/url_request/ssl_certificate_error_job.cc", |
| 2641 | "test/url_request/ssl_certificate_error_job.h", |
Brett Wilson | 32ce17a | 2014-11-10 17:45:30 | [diff] [blame] | 2642 | "test/url_request/url_request_failed_job.cc", |
| 2643 | "test/url_request/url_request_failed_job.h", |
xunjieli | 5d1f989 | 2016-05-18 20:44:34 | [diff] [blame] | 2644 | "test/url_request/url_request_hanging_read_job.cc", |
| 2645 | "test/url_request/url_request_hanging_read_job.h", |
mef | 3e826cf | 2014-12-13 18:40:40 | [diff] [blame] | 2646 | "test/url_request/url_request_mock_data_job.cc", |
| 2647 | "test/url_request/url_request_mock_data_job.h", |
jam | 8e45cd7 | 2015-01-20 16:33:44 | [diff] [blame] | 2648 | "test/url_request/url_request_slow_download_job.cc", |
| 2649 | "test/url_request/url_request_slow_download_job.h", |
rhalavati | a9b551d | 2017-02-09 12:03:00 | [diff] [blame] | 2650 | "traffic_annotation/network_traffic_annotation_test_helper.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2651 | "url_request/test_url_fetcher_factory.cc", |
| 2652 | "url_request/test_url_fetcher_factory.h", |
| 2653 | "url_request/url_request_test_util.cc", |
| 2654 | "url_request/url_request_test_util.h", |
| 2655 | ] |
| 2656 | |
Hitoshi Yoshida | f07e903 | 2017-12-08 00:41:18 | [diff] [blame] | 2657 | configs += [ "//build/config:precompiled_headers" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2658 | |
Brett Wilson | e5389527 | 2014-09-23 23:41:46 | [diff] [blame] | 2659 | public_deps = [ |
rhalavati | a9b551d | 2017-02-09 12:03:00 | [diff] [blame] | 2660 | ":traffic_annotation", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2661 | "//base", |
| 2662 | "//base/test:test_support", |
[email protected] | 22fe91d | 2014-08-12 17:07:12 | [diff] [blame] | 2663 | "//crypto", |
[email protected] | 59ff2d4 | 2014-04-22 22:25:23 | [diff] [blame] | 2664 | "//net", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2665 | "//net/tools/tld_cleanup", |
| 2666 | "//testing/gmock", |
| 2667 | "//testing/gtest", |
| 2668 | "//url", |
| 2669 | ] |
| 2670 | |
Matt Menke | 1dd3f2f | 2017-08-09 17:10:06 | [diff] [blame] | 2671 | deps = [ |
| 2672 | "//third_party/zlib", |
| 2673 | ] |
sdefresne | 04f9114 | 2016-04-21 08:41:59 | [diff] [blame] | 2674 | |
jbudorick | 944eb92 | 2016-06-20 15:38:30 | [diff] [blame] | 2675 | data = [ |
| 2676 | "data/", |
| 2677 | ] |
| 2678 | |
rsesek | 7d4ab4bc | 2016-07-22 17:35:13 | [diff] [blame] | 2679 | if (is_ios) { |
| 2680 | deps += [ ":test_support_bundle_data" ] |
| 2681 | } else { |
jam | b533b7e | 2015-03-04 17:12:05 | [diff] [blame] | 2682 | public_deps += [ "//third_party/protobuf:py_proto" ] |
| 2683 | } |
| 2684 | |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 2685 | if (use_nss_certs) { |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2686 | public_deps += [ "//crypto:platform" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2687 | } |
| 2688 | |
Sergey Ulanov | ec1d3de | 2017-09-19 19:27:47 | [diff] [blame] | 2689 | if (!is_ios) { |
sherouk | 3eee4a8 | 2015-09-01 10:42:33 | [diff] [blame] | 2690 | sources += [ |
Sergey Ulanov | ec1d3de | 2017-09-19 19:27:47 | [diff] [blame] | 2691 | "test/spawned_test_server/base_test_server.cc", |
| 2692 | "test/spawned_test_server/base_test_server.h", |
| 2693 | "test/spawned_test_server/spawned_test_server.h", |
| 2694 | ] |
| 2695 | |
| 2696 | if (use_remote_test_server) { |
| 2697 | sources += [ |
| 2698 | "test/spawned_test_server/remote_test_server.cc", |
| 2699 | "test/spawned_test_server/remote_test_server.h", |
| 2700 | "test/spawned_test_server/remote_test_server_config.cc", |
| 2701 | "test/spawned_test_server/remote_test_server_config.h", |
| 2702 | "test/spawned_test_server/remote_test_server_proxy.cc", |
| 2703 | "test/spawned_test_server/remote_test_server_proxy.h", |
| 2704 | "test/spawned_test_server/remote_test_server_spawner_request.cc", |
| 2705 | "test/spawned_test_server/remote_test_server_spawner_request.h", |
| 2706 | ] |
| 2707 | } else { |
| 2708 | sources += [ |
| 2709 | "test/spawned_test_server/local_test_server.cc", |
| 2710 | "test/spawned_test_server/local_test_server.h", |
| 2711 | "test/spawned_test_server/local_test_server_posix.cc", |
| 2712 | "test/spawned_test_server/local_test_server_win.cc", |
| 2713 | ] |
| 2714 | } |
| 2715 | } |
| 2716 | |
| 2717 | if (enable_python_utils) { |
| 2718 | sources += [ |
| 2719 | "test/python_utils.cc", |
| 2720 | "test/python_utils.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2721 | ] |
| 2722 | } |
| 2723 | |
| 2724 | if (use_v8_in_net) { |
Brett Wilson | e5389527 | 2014-09-23 23:41:46 | [diff] [blame] | 2725 | public_deps += [ ":net_with_v8" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2726 | } |
| 2727 | |
| 2728 | if (!enable_mdns) { |
| 2729 | sources -= [ |
| 2730 | "dns/mock_mdns_socket_factory.cc", |
| 2731 | "dns/mock_mdns_socket_factory.h", |
| 2732 | ] |
| 2733 | } |
| 2734 | |
davidben | 15d69d48 | 2014-09-29 18:24:08 | [diff] [blame] | 2735 | if (!use_nss_certs) { |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2736 | sources -= [ "test/cert_test_util_nss.cc" ] |
[email protected] | 83e1ae3 | 2014-07-18 10:57:07 | [diff] [blame] | 2737 | } |
xunjieli | a688820 | 2015-04-14 21:34:25 | [diff] [blame] | 2738 | |
| 2739 | if (!disable_file_support) { |
| 2740 | sources += [ |
| 2741 | "test/url_request/url_request_mock_http_job.cc", |
| 2742 | "test/url_request/url_request_mock_http_job.h", |
| 2743 | "url_request/test_url_request_interceptor.cc", |
| 2744 | "url_request/test_url_request_interceptor.h", |
| 2745 | ] |
| 2746 | } |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2747 | } |
| 2748 | |
| 2749 | if (use_v8_in_net) { |
| 2750 | component("net_with_v8") { |
| 2751 | sources = [ |
| 2752 | "proxy/proxy_resolver_v8.cc", |
| 2753 | "proxy/proxy_resolver_v8.h", |
| 2754 | "proxy/proxy_resolver_v8_tracing.cc", |
| 2755 | "proxy/proxy_resolver_v8_tracing.h", |
sammc | f2d1ea0 | 2015-06-29 02:58:47 | [diff] [blame] | 2756 | "proxy/proxy_resolver_v8_tracing_wrapper.cc", |
| 2757 | "proxy/proxy_resolver_v8_tracing_wrapper.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2758 | ] |
| 2759 | |
| 2760 | defines = [ "NET_IMPLEMENTATION" ] |
dpranke | a22b073 | 2015-10-21 21:15:11 | [diff] [blame] | 2761 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2762 | configs += [ |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2763 | "//build/config/compiler:wexit_time_destructors", |
Hitoshi Yoshida | f07e903 | 2017-12-08 00:41:18 | [diff] [blame] | 2764 | "//tools/v8_context_snapshot:use_v8_context_snapshot", |
dpranke | a22b073 | 2015-10-21 21:15:11 | [diff] [blame] | 2765 | "//v8:external_startup_data", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2766 | ] |
| 2767 | |
Brett Wilson | e5389527 | 2014-09-23 23:41:46 | [diff] [blame] | 2768 | public_deps = [ |
xunjieli | 0b7f5b6 | 2016-12-06 20:43:48 | [diff] [blame] | 2769 | ":constants", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2770 | ":net", |
Brett Wilson | e5389527 | 2014-09-23 23:41:46 | [diff] [blame] | 2771 | ] |
| 2772 | deps = [ |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2773 | "//base", |
| 2774 | "//gin", |
Hitoshi Yoshida | f07e903 | 2017-12-08 00:41:18 | [diff] [blame] | 2775 | "//tools/v8_context_snapshot", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2776 | "//url", |
| 2777 | "//v8", |
| 2778 | ] |
| 2779 | } |
| 2780 | } |
| 2781 | |
mmenke | 93be9ca | 2017-05-23 16:29:13 | [diff] [blame] | 2782 | if (enable_net_mojo) { |
amistry | 7e6ebfdc8 | 2015-02-13 04:19:11 | [diff] [blame] | 2783 | source_set("net_browser_services") { |
| 2784 | sources = [ |
| 2785 | "dns/mojo_host_resolver_impl.cc", |
| 2786 | "dns/mojo_host_resolver_impl.h", |
| 2787 | ] |
| 2788 | |
| 2789 | public_deps = [ |
scottmg | 5bf3420 | 2017-01-26 05:49:02 | [diff] [blame] | 2790 | ":net", |
brettw | bc44c0a9 | 2015-02-20 22:30:39 | [diff] [blame] | 2791 | "//base", |
rockot | 85dce086 | 2015-11-13 01:33:59 | [diff] [blame] | 2792 | "//mojo/public/cpp/bindings", |
amistry | 7e6ebfdc8 | 2015-02-13 04:19:11 | [diff] [blame] | 2793 | "//net/interfaces", |
amistry | 7e6ebfdc8 | 2015-02-13 04:19:11 | [diff] [blame] | 2794 | ] |
| 2795 | } |
| 2796 | |
sammc | 5403aa1d | 2015-02-25 04:59:21 | [diff] [blame] | 2797 | source_set("net_utility_services") { |
| 2798 | sources = [ |
sammc | 6ac3fe5 | 2015-02-25 06:00:28 | [diff] [blame] | 2799 | "dns/host_resolver_mojo.cc", |
| 2800 | "dns/host_resolver_mojo.h", |
sammc | 5403aa1d | 2015-02-25 04:59:21 | [diff] [blame] | 2801 | ] |
| 2802 | |
rockot | 9509ec8 | 2015-04-14 02:50:56 | [diff] [blame] | 2803 | deps = [ |
| 2804 | ":net_with_v8", |
tfarina | 8ac4d17f | 2015-12-16 02:11:11 | [diff] [blame] | 2805 | "//base", |
rockot | 9509ec8 | 2015-04-14 02:50:56 | [diff] [blame] | 2806 | ] |
| 2807 | |
sammc | 5403aa1d | 2015-02-25 04:59:21 | [diff] [blame] | 2808 | public_deps = [ |
sammc | 5403aa1d | 2015-02-25 04:59:21 | [diff] [blame] | 2809 | ":net", |
rockot | 85dce086 | 2015-11-13 01:33:59 | [diff] [blame] | 2810 | "//mojo/public/cpp/bindings", |
sammc | 5403aa1d | 2015-02-25 04:59:21 | [diff] [blame] | 2811 | "//net/interfaces", |
sammc | 5403aa1d | 2015-02-25 04:59:21 | [diff] [blame] | 2812 | ] |
| 2813 | } |
amistry | 7e6ebfdc8 | 2015-02-13 04:19:11 | [diff] [blame] | 2814 | } |
| 2815 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2816 | if (!is_ios && !is_android) { |
mattm | 36d8968 | 2016-06-08 22:22:40 | [diff] [blame] | 2817 | executable("cert_verify_tool") { |
| 2818 | testonly = true |
| 2819 | sources = [ |
| 2820 | "tools/cert_verify_tool/cert_verify_tool.cc", |
| 2821 | "tools/cert_verify_tool/cert_verify_tool_util.cc", |
| 2822 | "tools/cert_verify_tool/cert_verify_tool_util.h", |
| 2823 | "tools/cert_verify_tool/verify_using_cert_verify_proc.cc", |
| 2824 | "tools/cert_verify_tool/verify_using_cert_verify_proc.h", |
mattm | 3c66edc | 2016-07-13 22:40:42 | [diff] [blame] | 2825 | "tools/cert_verify_tool/verify_using_path_builder.cc", |
| 2826 | "tools/cert_verify_tool/verify_using_path_builder.h", |
mattm | 36d8968 | 2016-06-08 22:22:40 | [diff] [blame] | 2827 | ] |
| 2828 | |
mattm | 36d8968 | 2016-06-08 22:22:40 | [diff] [blame] | 2829 | deps = [ |
| 2830 | ":net", |
| 2831 | ":test_support", |
| 2832 | "//base", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 2833 | "//build/config:exe_and_shlib_deps", |
mattm | 36d8968 | 2016-06-08 22:22:40 | [diff] [blame] | 2834 | "//build/win:default_exe_manifest", |
| 2835 | ] |
mattm | 49957fe | 2017-03-02 01:45:29 | [diff] [blame] | 2836 | |
| 2837 | if (is_mac) { |
| 2838 | libs = [ "Security.framework" ] |
| 2839 | } |
mattm | 36d8968 | 2016-06-08 22:22:40 | [diff] [blame] | 2840 | } |
| 2841 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2842 | executable("crash_cache") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2843 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2844 | sources = [ |
| 2845 | "tools/crash_cache/crash_cache.cc", |
| 2846 | ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 2847 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2848 | deps = [ |
| 2849 | ":net", |
[email protected] | b2b2bf5 | 2014-05-28 20:26:57 | [diff] [blame] | 2850 | ":test_support", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2851 | "//base", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 2852 | "//build/config:exe_and_shlib_deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2853 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2854 | ] |
| 2855 | } |
| 2856 | |
| 2857 | executable("crl_set_dump") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2858 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2859 | sources = [ |
| 2860 | "tools/crl_set_dump/crl_set_dump.cc", |
| 2861 | ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 2862 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2863 | deps = [ |
| 2864 | ":net", |
| 2865 | "//base", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 2866 | "//build/config:exe_and_shlib_deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2867 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2868 | ] |
| 2869 | } |
| 2870 | |
| 2871 | executable("dns_fuzz_stub") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2872 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2873 | sources = [ |
| 2874 | "tools/dns_fuzz_stub/dns_fuzz_stub.cc", |
| 2875 | ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 2876 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2877 | deps = [ |
| 2878 | ":net", |
| 2879 | "//base", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 2880 | "//build/config:exe_and_shlib_deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2881 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2882 | ] |
| 2883 | } |
| 2884 | |
| 2885 | executable("gdig") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2886 | testonly = true |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2887 | sources = [ |
| 2888 | "tools/gdig/file_net_log.cc", |
thakis | b8590c9 | 2017-03-23 18:14:53 | [diff] [blame] | 2889 | "tools/gdig/file_net_log.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2890 | "tools/gdig/gdig.cc", |
| 2891 | ] |
| 2892 | deps = [ |
| 2893 | ":net", |
| 2894 | "//base", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 2895 | "//build/config:exe_and_shlib_deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2896 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2897 | ] |
| 2898 | } |
| 2899 | |
| 2900 | executable("get_server_time") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2901 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2902 | sources = [ |
| 2903 | "tools/get_server_time/get_server_time.cc", |
| 2904 | ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 2905 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2906 | deps = [ |
| 2907 | ":net", |
| 2908 | "//base", |
| 2909 | "//base:i18n", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 2910 | "//build/config:exe_and_shlib_deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2911 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2912 | "//url", |
| 2913 | ] |
| 2914 | } |
| 2915 | |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 2916 | executable("hpack_example_generator") { |
| 2917 | testonly = true |
| 2918 | sources = [ |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 2919 | "spdy/core/fuzzing/hpack_example_generator.cc", |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 2920 | ] |
| 2921 | |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 2922 | deps = [ |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 2923 | ":net", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 2924 | "//base", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 2925 | "//build/config:exe_and_shlib_deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2926 | "//build/win:default_exe_manifest", |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 2927 | ] |
| 2928 | } |
| 2929 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2930 | if (use_v8_in_net) { |
| 2931 | executable("net_watcher") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2932 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2933 | sources = [ |
| 2934 | "tools/net_watcher/net_watcher.cc", |
| 2935 | ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2936 | deps = [ |
| 2937 | ":net", |
| 2938 | ":net_with_v8", |
| 2939 | "//base", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 2940 | "//build/config:exe_and_shlib_deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2941 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2942 | ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2943 | } |
| 2944 | } |
| 2945 | |
| 2946 | executable("run_testserver") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2947 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2948 | sources = [ |
| 2949 | "tools/testserver/run_testserver.cc", |
| 2950 | ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2951 | deps = [ |
[email protected] | b2b2bf5 | 2014-05-28 20:26:57 | [diff] [blame] | 2952 | ":test_support", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2953 | "//base", |
| 2954 | "//base/test:test_support", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 2955 | "//build/config:exe_and_shlib_deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2956 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2957 | "//testing/gtest", |
| 2958 | ] |
| 2959 | } |
| 2960 | |
| 2961 | executable("stress_cache") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2962 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2963 | sources = [ |
rvargas | e23fcf65 | 2015-03-04 19:59:22 | [diff] [blame] | 2964 | "tools/stress_cache/stress_cache.cc", |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2965 | ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 2966 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2967 | deps = [ |
| 2968 | ":net", |
[email protected] | b2b2bf5 | 2014-05-28 20:26:57 | [diff] [blame] | 2969 | ":test_support", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2970 | "//base", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 2971 | "//build/config:exe_and_shlib_deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2972 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2973 | ] |
| 2974 | } |
| 2975 | |
| 2976 | executable("tld_cleanup") { |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2977 | sources = [ |
| 2978 | "tools/tld_cleanup/tld_cleanup.cc", |
| 2979 | ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 2980 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2981 | deps = [ |
| 2982 | "//base", |
| 2983 | "//base:i18n", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 2984 | "//build/config:exe_and_shlib_deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2985 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2986 | "//net/tools/tld_cleanup", |
| 2987 | ] |
| 2988 | } |
| 2989 | } |
| 2990 | |
gabadie | 0774bee | 2016-05-12 14:02:58 | [diff] [blame] | 2991 | if (is_linux || is_mac) { |
gabadie | 64af64a | 2016-03-29 16:36:42 | [diff] [blame] | 2992 | executable("cachetool") { |
| 2993 | testonly = true |
| 2994 | sources = [ |
| 2995 | "tools/cachetool/cachetool.cc", |
| 2996 | ] |
| 2997 | deps = [ |
| 2998 | ":net", |
| 2999 | ":test_support", |
| 3000 | "//base", |
thomasanderson | b7a5277 | 2017-05-26 19:26:42 | [diff] [blame] | 3001 | "//build/config:exe_and_shlib_deps", |
gabadie | 64af64a | 2016-03-29 16:36:42 | [diff] [blame] | 3002 | ] |
| 3003 | } |
| 3004 | |
| 3005 | executable("content_decoder_tool") { |
| 3006 | testonly = true |
| 3007 | sources = [ |
gabadie | 64af64a | 2016-03-29 16:36:42 | [diff] [blame] | 3008 | "tools/content_decoder_tool/content_decoder_tool.cc", |
xunjieli | bb2d9f20 | 2016-11-01 16:37:27 | [diff] [blame] | 3009 | "tools/content_decoder_tool/content_decoder_tool.h", |
| 3010 | "tools/content_decoder_tool/content_decoder_tool_bin.cc", |
gabadie | 64af64a | 2016-03-29 16:36:42 | [diff] [blame] | 3011 | ] |
| 3012 | deps = [ |
| 3013 | ":net", |
| 3014 | ":test_support", |
| 3015 | "//base", |
thomasanderson | b7a5277 | 2017-05-26 19:26:42 | [diff] [blame] | 3016 | "//build/config:exe_and_shlib_deps", |
gabadie | 64af64a | 2016-03-29 16:36:42 | [diff] [blame] | 3017 | "//url", |
| 3018 | ] |
| 3019 | } |
gabadie | 0774bee | 2016-05-12 14:02:58 | [diff] [blame] | 3020 | } |
gabadie | 64af64a | 2016-03-29 16:36:42 | [diff] [blame] | 3021 | |
gabadie | 0774bee | 2016-05-12 14:02:58 | [diff] [blame] | 3022 | if (is_linux) { |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 3023 | static_library("epoll_server") { |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3024 | sources = [ |
| 3025 | "tools/epoll_server/epoll_server.cc", |
| 3026 | "tools/epoll_server/epoll_server.h", |
| 3027 | ] |
| 3028 | deps = [ |
| 3029 | ":net", |
| 3030 | "//base", |
| 3031 | ] |
| 3032 | } |
| 3033 | |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 3034 | source_set("epoll_quic_tools") { |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3035 | sources = [ |
rch | dfdb064 | 2016-12-03 03:37:20 | [diff] [blame] | 3036 | "tools/quic/platform/impl/quic_epoll_clock.cc", |
| 3037 | "tools/quic/platform/impl/quic_epoll_clock.h", |
rch | 33a6ce8 | 2016-12-06 18:41:40 | [diff] [blame] | 3038 | "tools/quic/platform/impl/quic_socket_utils.cc", |
| 3039 | "tools/quic/platform/impl/quic_socket_utils.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3040 | "tools/quic/quic_client.cc", |
| 3041 | "tools/quic/quic_client.h", |
Ryan Hamilton | c440230 | 2017-08-10 01:55:46 | [diff] [blame] | 3042 | "tools/quic/quic_client_epoll_network_helper.cc", |
| 3043 | "tools/quic/quic_client_epoll_network_helper.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3044 | "tools/quic/quic_default_packet_writer.cc", |
| 3045 | "tools/quic/quic_default_packet_writer.h", |
rch | 16c74d1d | 2016-04-22 06:14:07 | [diff] [blame] | 3046 | "tools/quic/quic_epoll_alarm_factory.cc", |
| 3047 | "tools/quic/quic_epoll_alarm_factory.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3048 | "tools/quic/quic_epoll_connection_helper.cc", |
| 3049 | "tools/quic/quic_epoll_connection_helper.h", |
rtenneti | fb3fa6c | 2015-03-16 23:04:55 | [diff] [blame] | 3050 | "tools/quic/quic_packet_reader.cc", |
| 3051 | "tools/quic/quic_packet_reader.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3052 | "tools/quic/quic_packet_writer_wrapper.cc", |
| 3053 | "tools/quic/quic_packet_writer_wrapper.h", |
| 3054 | "tools/quic/quic_server.cc", |
| 3055 | "tools/quic/quic_server.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3056 | ] |
| 3057 | deps = [ |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3058 | ":epoll_server", |
| 3059 | ":net", |
tfarina | 8ac4d17f | 2015-12-16 02:11:11 | [diff] [blame] | 3060 | ":simple_quic_tools", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3061 | "//base", |
| 3062 | "//base/third_party/dynamic_annotations", |
| 3063 | "//crypto", |
[email protected] | edfd0f4 | 2014-07-22 18:20:37 | [diff] [blame] | 3064 | "//third_party/boringssl", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3065 | "//url", |
| 3066 | ] |
| 3067 | } |
| 3068 | |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 3069 | executable("epoll_quic_client") { |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 3070 | sources = [ |
| 3071 | "tools/quic/quic_client_bin.cc", |
| 3072 | ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3073 | deps = [ |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 3074 | ":epoll_quic_tools", |
agrieve | d7a71c88 | 2015-11-20 19:53:28 | [diff] [blame] | 3075 | ":epoll_server", |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 3076 | ":net", |
| 3077 | ":simple_quic_tools", |
| 3078 | "//base", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 3079 | "//build/config:exe_and_shlib_deps", |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 3080 | "//third_party/boringssl", |
| 3081 | ] |
| 3082 | } |
| 3083 | |
| 3084 | executable("epoll_quic_server") { |
| 3085 | sources = [ |
| 3086 | "tools/quic/quic_server_bin.cc", |
| 3087 | ] |
| 3088 | deps = [ |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 3089 | ":epoll_quic_tools", |
agrieve | d7a71c88 | 2015-11-20 19:53:28 | [diff] [blame] | 3090 | ":epoll_server", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3091 | ":net", |
rch | da78df5a | 2015-03-22 05:16:37 | [diff] [blame] | 3092 | ":simple_quic_tools", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3093 | "//base", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 3094 | "//build/config:exe_and_shlib_deps", |
[email protected] | edfd0f4 | 2014-07-22 18:20:37 | [diff] [blame] | 3095 | "//third_party/boringssl", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3096 | ] |
| 3097 | } |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3098 | } |
| 3099 | |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 3100 | if (is_android) { |
| 3101 | generate_jni("net_jni_headers") { |
| 3102 | sources = [ |
tbansal | c04b7aa | 2016-07-02 06:54:37 | [diff] [blame] | 3103 | "android/java/src/org/chromium/net/AndroidCellularSignalStrength.java", |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 3104 | "android/java/src/org/chromium/net/AndroidCertVerifyResult.java", |
| 3105 | "android/java/src/org/chromium/net/AndroidKeyStore.java", |
| 3106 | "android/java/src/org/chromium/net/AndroidNetworkLibrary.java", |
tbansal | 59a1ddc | 2015-09-14 17:35:01 | [diff] [blame] | 3107 | "android/java/src/org/chromium/net/AndroidTrafficStats.java", |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 3108 | "android/java/src/org/chromium/net/GURLUtils.java", |
aberent | ec894a5 | 2015-07-09 14:45:53 | [diff] [blame] | 3109 | "android/java/src/org/chromium/net/HttpNegotiateAuthenticator.java", |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 3110 | "android/java/src/org/chromium/net/NetStringUtil.java", |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 3111 | "android/java/src/org/chromium/net/NetworkChangeNotifier.java", |
| 3112 | "android/java/src/org/chromium/net/ProxyChangeListener.java", |
| 3113 | "android/java/src/org/chromium/net/X509Util.java", |
| 3114 | ] |
| 3115 | jni_package = "net" |
| 3116 | } |
cjhopman | dad5f427 | 2014-09-05 01:00:55 | [diff] [blame] | 3117 | generate_jni("net_test_jni_headers") { |
| 3118 | sources = [ |
| 3119 | "android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java", |
mgersh | d21d6d14 | 2016-12-14 23:06:36 | [diff] [blame] | 3120 | "android/javatests/src/org/chromium/net/AndroidNetworkLibraryTestUtil.java", |
pauljensen | 6815aef | 2017-05-05 03:00:06 | [diff] [blame] | 3121 | "android/javatests/src/org/chromium/net/AndroidProxyConfigServiceTestUtil.java", |
aberent | ec894a5 | 2015-07-09 14:45:53 | [diff] [blame] | 3122 | "test/android/javatests/src/org/chromium/net/test/DummySpnegoAuthenticator.java", |
jbudorick | ccffb98 | 2015-12-22 01:21:35 | [diff] [blame] | 3123 | "test/android/javatests/src/org/chromium/net/test/EmbeddedTestServerImpl.java", |
cjhopman | dad5f427 | 2014-09-05 01:00:55 | [diff] [blame] | 3124 | ] |
brettw | cdccaf0 | 2015-07-27 16:27:09 | [diff] [blame] | 3125 | jni_package = "net/test" |
cjhopman | dad5f427 | 2014-09-05 01:00:55 | [diff] [blame] | 3126 | } |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 3127 | } |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3128 | |
| 3129 | if (is_android || is_linux) { |
| 3130 | executable("disk_cache_memory_test") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 3131 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 3132 | sources = [ |
| 3133 | "tools/disk_cache_memory_test/disk_cache_memory_test.cc", |
| 3134 | ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3135 | deps = [ |
| 3136 | ":net", |
| 3137 | "//base", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 3138 | "//build/config:exe_and_shlib_deps", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 3139 | ] |
| 3140 | } |
| 3141 | } |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 3142 | |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 3143 | source_set("quic_test_tools") { |
| 3144 | testonly = true |
| 3145 | sources = [ |
| 3146 | "quic/chromium/crypto_test_utils_chromium.cc", |
| 3147 | "quic/platform/api/quic_test.h", |
fayang | 221f04f | 2017-06-12 14:33:58 | [diff] [blame] | 3148 | "quic/platform/api/quic_test_loopback.cc", |
| 3149 | "quic/platform/api/quic_test_loopback.h", |
Fan Yang | 62cae30f | 2017-09-01 20:50:51 | [diff] [blame] | 3150 | "quic/platform/api/quic_test_mem_slice_vector.h", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 3151 | "quic/platform/impl/quic_test_impl.cc", |
| 3152 | "quic/platform/impl/quic_test_impl.h", |
fayang | 221f04f | 2017-06-12 14:33:58 | [diff] [blame] | 3153 | "quic/platform/impl/quic_test_loopback_impl.cc", |
| 3154 | "quic/platform/impl/quic_test_loopback_impl.h", |
Fan Yang | 62cae30f | 2017-09-01 20:50:51 | [diff] [blame] | 3155 | "quic/platform/impl/quic_test_mem_slice_vector_impl.cc", |
| 3156 | "quic/platform/impl/quic_test_mem_slice_vector_impl.h", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 3157 | "quic/test_tools/crypto_test_utils.cc", |
| 3158 | "quic/test_tools/crypto_test_utils.h", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 3159 | "quic/test_tools/failing_proof_source.cc", |
| 3160 | "quic/test_tools/failing_proof_source.h", |
| 3161 | "quic/test_tools/fake_proof_source.cc", |
| 3162 | "quic/test_tools/fake_proof_source.h", |
| 3163 | "quic/test_tools/mock_clock.cc", |
| 3164 | "quic/test_tools/mock_clock.h", |
| 3165 | "quic/test_tools/mock_crypto_client_stream.cc", |
| 3166 | "quic/test_tools/mock_crypto_client_stream.h", |
Ned Williamson | 3d55bbb | 2017-11-07 22:58:13 | [diff] [blame] | 3167 | "quic/test_tools/mock_decrypter.cc", |
| 3168 | "quic/test_tools/mock_decrypter.h", |
| 3169 | "quic/test_tools/mock_encrypter.cc", |
| 3170 | "quic/test_tools/mock_encrypter.h", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 3171 | "quic/test_tools/mock_quic_client_promised_info.cc", |
| 3172 | "quic/test_tools/mock_quic_client_promised_info.h", |
| 3173 | "quic/test_tools/mock_quic_dispatcher.cc", |
| 3174 | "quic/test_tools/mock_quic_dispatcher.h", |
| 3175 | "quic/test_tools/mock_quic_spdy_client_stream.cc", |
| 3176 | "quic/test_tools/mock_quic_spdy_client_stream.h", |
| 3177 | "quic/test_tools/mock_random.cc", |
| 3178 | "quic/test_tools/mock_random.h", |
| 3179 | "quic/test_tools/quic_buffered_packet_store_peer.cc", |
| 3180 | "quic/test_tools/quic_buffered_packet_store_peer.h", |
| 3181 | "quic/test_tools/quic_client_promised_info_peer.cc", |
| 3182 | "quic/test_tools/quic_client_promised_info_peer.h", |
| 3183 | "quic/test_tools/quic_config_peer.cc", |
| 3184 | "quic/test_tools/quic_config_peer.h", |
| 3185 | "quic/test_tools/quic_connection_peer.cc", |
| 3186 | "quic/test_tools/quic_connection_peer.h", |
| 3187 | "quic/test_tools/quic_crypto_server_config_peer.cc", |
| 3188 | "quic/test_tools/quic_crypto_server_config_peer.h", |
| 3189 | "quic/test_tools/quic_flow_controller_peer.cc", |
| 3190 | "quic/test_tools/quic_flow_controller_peer.h", |
| 3191 | "quic/test_tools/quic_framer_peer.cc", |
| 3192 | "quic/test_tools/quic_framer_peer.h", |
| 3193 | "quic/test_tools/quic_packet_creator_peer.cc", |
| 3194 | "quic/test_tools/quic_packet_creator_peer.h", |
| 3195 | "quic/test_tools/quic_packet_generator_peer.cc", |
| 3196 | "quic/test_tools/quic_packet_generator_peer.h", |
| 3197 | "quic/test_tools/quic_sent_packet_manager_peer.cc", |
| 3198 | "quic/test_tools/quic_sent_packet_manager_peer.h", |
| 3199 | "quic/test_tools/quic_session_peer.cc", |
| 3200 | "quic/test_tools/quic_session_peer.h", |
| 3201 | "quic/test_tools/quic_spdy_session_peer.cc", |
| 3202 | "quic/test_tools/quic_spdy_session_peer.h", |
| 3203 | "quic/test_tools/quic_spdy_stream_peer.cc", |
| 3204 | "quic/test_tools/quic_spdy_stream_peer.h", |
| 3205 | "quic/test_tools/quic_stream_peer.cc", |
| 3206 | "quic/test_tools/quic_stream_peer.h", |
Fan Yang | 97d44ba2 | 2017-08-07 17:00:03 | [diff] [blame] | 3207 | "quic/test_tools/quic_stream_send_buffer_peer.cc", |
| 3208 | "quic/test_tools/quic_stream_send_buffer_peer.h", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 3209 | "quic/test_tools/quic_stream_sequencer_buffer_peer.cc", |
| 3210 | "quic/test_tools/quic_stream_sequencer_buffer_peer.h", |
| 3211 | "quic/test_tools/quic_stream_sequencer_peer.cc", |
| 3212 | "quic/test_tools/quic_stream_sequencer_peer.h", |
| 3213 | "quic/test_tools/quic_sustained_bandwidth_recorder_peer.cc", |
| 3214 | "quic/test_tools/quic_sustained_bandwidth_recorder_peer.h", |
| 3215 | "quic/test_tools/quic_test_utils.cc", |
| 3216 | "quic/test_tools/quic_test_utils.h", |
| 3217 | "quic/test_tools/quic_time_wait_list_manager_peer.cc", |
| 3218 | "quic/test_tools/quic_time_wait_list_manager_peer.h", |
| 3219 | "quic/test_tools/rtt_stats_peer.cc", |
| 3220 | "quic/test_tools/rtt_stats_peer.h", |
fayang | df3cb2b | 2017-07-05 15:03:38 | [diff] [blame] | 3221 | "quic/test_tools/simple_data_producer.cc", |
| 3222 | "quic/test_tools/simple_data_producer.h", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 3223 | "quic/test_tools/simple_quic_framer.cc", |
| 3224 | "quic/test_tools/simple_quic_framer.h", |
| 3225 | "quic/test_tools/simulator/actor.cc", |
| 3226 | "quic/test_tools/simulator/actor.h", |
| 3227 | "quic/test_tools/simulator/alarm_factory.cc", |
| 3228 | "quic/test_tools/simulator/alarm_factory.h", |
| 3229 | "quic/test_tools/simulator/link.cc", |
| 3230 | "quic/test_tools/simulator/link.h", |
| 3231 | "quic/test_tools/simulator/packet_filter.cc", |
| 3232 | "quic/test_tools/simulator/packet_filter.h", |
| 3233 | "quic/test_tools/simulator/port.cc", |
| 3234 | "quic/test_tools/simulator/port.h", |
| 3235 | "quic/test_tools/simulator/queue.cc", |
| 3236 | "quic/test_tools/simulator/queue.h", |
| 3237 | "quic/test_tools/simulator/quic_endpoint.cc", |
| 3238 | "quic/test_tools/simulator/quic_endpoint.h", |
| 3239 | "quic/test_tools/simulator/simulator.cc", |
| 3240 | "quic/test_tools/simulator/simulator.h", |
| 3241 | "quic/test_tools/simulator/switch.cc", |
| 3242 | "quic/test_tools/simulator/switch.h", |
| 3243 | "quic/test_tools/simulator/traffic_policer.cc", |
| 3244 | "quic/test_tools/simulator/traffic_policer.h", |
| 3245 | "tools/quic/test_tools/mock_quic_session_visitor.cc", |
| 3246 | "tools/quic/test_tools/mock_quic_session_visitor.h", |
| 3247 | ] |
| 3248 | deps = [ |
| 3249 | ":net", |
| 3250 | ":simple_quic_tools", |
| 3251 | ":test_support", |
| 3252 | "//base", |
| 3253 | "//crypto:test_support", |
| 3254 | "//testing/gmock", |
| 3255 | "//testing/gtest", |
| 3256 | "//third_party/boringssl", |
| 3257 | "//third_party/protobuf:protobuf_lite", |
| 3258 | ] |
| 3259 | |
| 3260 | if (is_linux) { |
| 3261 | sources += [ |
| 3262 | "tools/quic/test_tools/limited_mtu_test_writer.cc", |
| 3263 | "tools/quic/test_tools/limited_mtu_test_writer.h", |
| 3264 | "tools/quic/test_tools/mock_epoll_server.cc", |
| 3265 | "tools/quic/test_tools/mock_epoll_server.h", |
| 3266 | "tools/quic/test_tools/mock_quic_time_wait_list_manager.cc", |
| 3267 | "tools/quic/test_tools/mock_quic_time_wait_list_manager.h", |
| 3268 | "tools/quic/test_tools/packet_dropping_test_writer.cc", |
| 3269 | "tools/quic/test_tools/packet_dropping_test_writer.h", |
| 3270 | "tools/quic/test_tools/packet_reordering_writer.cc", |
| 3271 | "tools/quic/test_tools/packet_reordering_writer.h", |
| 3272 | "tools/quic/test_tools/quic_client_peer.cc", |
| 3273 | "tools/quic/test_tools/quic_client_peer.h", |
| 3274 | "tools/quic/test_tools/quic_dispatcher_peer.cc", |
| 3275 | "tools/quic/test_tools/quic_dispatcher_peer.h", |
| 3276 | "tools/quic/test_tools/quic_server_peer.cc", |
| 3277 | "tools/quic/test_tools/quic_server_peer.h", |
| 3278 | "tools/quic/test_tools/quic_test_client.cc", |
| 3279 | "tools/quic/test_tools/quic_test_client.h", |
| 3280 | "tools/quic/test_tools/quic_test_server.cc", |
| 3281 | "tools/quic/test_tools/quic_test_server.h", |
| 3282 | "tools/quic/test_tools/server_thread.cc", |
| 3283 | "tools/quic/test_tools/server_thread.h", |
| 3284 | ] |
| 3285 | deps += [ |
| 3286 | ":epoll_quic_tools", |
| 3287 | ":epoll_server", |
| 3288 | ] |
| 3289 | } |
| 3290 | } |
| 3291 | |
rch | 47ad01f | 2015-03-20 21:17:23 | [diff] [blame] | 3292 | source_set("simple_quic_tools") { |
rch | a9d12ce1 | 2015-03-19 23:06:49 | [diff] [blame] | 3293 | sources = [ |
ckrasic | a7fd124 | 2016-05-14 20:36:01 | [diff] [blame] | 3294 | "tools/quic/chlo_extractor.cc", |
| 3295 | "tools/quic/chlo_extractor.h", |
rtenneti | d67b3a72 | 2015-08-18 05:15:31 | [diff] [blame] | 3296 | "tools/quic/quic_client_base.cc", |
| 3297 | "tools/quic/quic_client_base.h", |
Ryan Hamilton | c440230 | 2017-08-10 01:55:46 | [diff] [blame] | 3298 | "tools/quic/quic_client_message_loop_network_helper.cc", |
| 3299 | "tools/quic/quic_client_message_loop_network_helper.h", |
rch | c99f380c | 2015-03-26 19:50:56 | [diff] [blame] | 3300 | "tools/quic/quic_dispatcher.cc", |
| 3301 | "tools/quic/quic_dispatcher.h", |
vasilvv | 28270e8f | 2016-12-01 21:38:09 | [diff] [blame] | 3302 | "tools/quic/quic_http_response_cache.cc", |
| 3303 | "tools/quic/quic_http_response_cache.h", |
rch | c99f380c | 2015-03-26 19:50:56 | [diff] [blame] | 3304 | "tools/quic/quic_per_connection_packet_writer.cc", |
| 3305 | "tools/quic/quic_per_connection_packet_writer.h", |
brettw | 25ca892 | 2016-03-18 22:59:58 | [diff] [blame] | 3306 | "tools/quic/quic_process_packet_interface.h", |
rch | a9d12ce1 | 2015-03-19 23:06:49 | [diff] [blame] | 3307 | "tools/quic/quic_simple_client.cc", |
| 3308 | "tools/quic/quic_simple_client.h", |
ianswett | 6c7b7ed | 2016-09-13 19:35:27 | [diff] [blame] | 3309 | "tools/quic/quic_simple_crypto_server_stream_helper.cc", |
| 3310 | "tools/quic/quic_simple_crypto_server_stream_helper.h", |
alyssar | a473d6f | 2016-08-04 16:54:04 | [diff] [blame] | 3311 | "tools/quic/quic_simple_dispatcher.cc", |
| 3312 | "tools/quic/quic_simple_dispatcher.h", |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 3313 | "tools/quic/quic_simple_per_connection_packet_writer.cc", |
| 3314 | "tools/quic/quic_simple_per_connection_packet_writer.h", |
| 3315 | "tools/quic/quic_simple_server.cc", |
| 3316 | "tools/quic/quic_simple_server.h", |
| 3317 | "tools/quic/quic_simple_server_packet_writer.cc", |
| 3318 | "tools/quic/quic_simple_server_packet_writer.h", |
jokulik | c971baf9 | 2016-01-06 00:36:39 | [diff] [blame] | 3319 | "tools/quic/quic_simple_server_session.cc", |
| 3320 | "tools/quic/quic_simple_server_session.h", |
mpw | b5c8da9 | 2016-06-05 20:07:31 | [diff] [blame] | 3321 | "tools/quic/quic_simple_server_session_helper.cc", |
| 3322 | "tools/quic/quic_simple_server_session_helper.h", |
danzh | b755134 | 2015-12-18 02:06:40 | [diff] [blame] | 3323 | "tools/quic/quic_simple_server_stream.cc", |
| 3324 | "tools/quic/quic_simple_server_stream.h", |
Ryan Hamilton | c440230 | 2017-08-10 01:55:46 | [diff] [blame] | 3325 | "tools/quic/quic_spdy_client_base.cc", |
| 3326 | "tools/quic/quic_spdy_client_base.h", |
| 3327 | "tools/quic/quic_spdy_client_session.cc", |
| 3328 | "tools/quic/quic_spdy_client_session.h", |
rch | ed113b2 | 2015-03-26 04:54:05 | [diff] [blame] | 3329 | "tools/quic/quic_spdy_client_stream.cc", |
| 3330 | "tools/quic/quic_spdy_client_stream.h", |
rch | aa4ec09 | 2016-12-02 00:34:19 | [diff] [blame] | 3331 | "tools/quic/quic_spdy_server_stream_base.cc", |
| 3332 | "tools/quic/quic_spdy_server_stream_base.h", |
rch | 0e94547 | 2015-03-26 15:19:21 | [diff] [blame] | 3333 | "tools/quic/quic_time_wait_list_manager.cc", |
| 3334 | "tools/quic/quic_time_wait_list_manager.h", |
jri | d04ea36 | 2016-06-23 03:07:37 | [diff] [blame] | 3335 | "tools/quic/stateless_rejector.cc", |
| 3336 | "tools/quic/stateless_rejector.h", |
rch | da78df5a | 2015-03-22 05:16:37 | [diff] [blame] | 3337 | "tools/quic/synchronous_host_resolver.cc", |
| 3338 | "tools/quic/synchronous_host_resolver.h", |
rch | a9d12ce1 | 2015-03-19 23:06:49 | [diff] [blame] | 3339 | ] |
| 3340 | deps = [ |
| 3341 | ":net", |
| 3342 | "//base", |
rch | 47ad01f | 2015-03-20 21:17:23 | [diff] [blame] | 3343 | "//base/third_party/dynamic_annotations", |
| 3344 | "//url", |
| 3345 | ] |
| 3346 | } |
| 3347 | |
rhalavati | a9b551d | 2017-02-09 12:03:00 | [diff] [blame] | 3348 | source_set("traffic_annotation") { |
| 3349 | sources = [ |
| 3350 | "traffic_annotation/network_traffic_annotation.h", |
| 3351 | ] |
rhalavati | 99c6fcef | 2017-05-25 07:53:01 | [diff] [blame] | 3352 | deps = [ |
| 3353 | "//base", |
| 3354 | ] |
rhalavati | a9b551d | 2017-02-09 12:03:00 | [diff] [blame] | 3355 | } |
| 3356 | |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 3357 | if (!is_ios) { |
| 3358 | executable("quic_client") { |
| 3359 | sources = [ |
| 3360 | "tools/quic/quic_simple_client_bin.cc", |
| 3361 | ] |
| 3362 | deps = [ |
| 3363 | ":net", |
| 3364 | ":simple_quic_tools", |
| 3365 | "//base", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 3366 | "//build/config:exe_and_shlib_deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 3367 | "//build/win:default_exe_manifest", |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 3368 | "//url", |
| 3369 | ] |
| 3370 | } |
| 3371 | executable("quic_server") { |
| 3372 | sources = [ |
| 3373 | "tools/quic/quic_simple_server_bin.cc", |
| 3374 | ] |
| 3375 | deps = [ |
| 3376 | ":net", |
| 3377 | ":simple_quic_tools", |
| 3378 | "//base", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 3379 | "//build/config:exe_and_shlib_deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 3380 | "//build/win:default_exe_manifest", |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 3381 | "//third_party/boringssl", |
| 3382 | "//third_party/protobuf:protobuf_lite", |
| 3383 | ] |
| 3384 | } |
rch | f80f62d1 | 2016-05-11 00:47:31 | [diff] [blame] | 3385 | executable("quic_packet_printer") { |
| 3386 | sources = [ |
| 3387 | "tools/quic/quic_packet_printer_bin.cc", |
| 3388 | ] |
| 3389 | deps = [ |
| 3390 | ":net", |
| 3391 | ":simple_quic_tools", |
| 3392 | "//base", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 3393 | "//build/config:exe_and_shlib_deps", |
rch | f80f62d1 | 2016-05-11 00:47:31 | [diff] [blame] | 3394 | "//build/win:default_exe_manifest", |
| 3395 | "//third_party/boringssl", |
| 3396 | "//third_party/protobuf:protobuf_lite", |
| 3397 | ] |
| 3398 | } |
mpw | bbea85d | 2016-08-27 14:39:21 | [diff] [blame] | 3399 | executable("quic_reject_reason_decoder") { |
| 3400 | sources = [ |
| 3401 | "tools/quic/quic_reject_reason_decoder_bin.cc", |
| 3402 | ] |
| 3403 | deps = [ |
| 3404 | ":net", |
| 3405 | ":simple_quic_tools", |
| 3406 | "//base", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 3407 | "//build/config:exe_and_shlib_deps", |
mpw | bbea85d | 2016-08-27 14:39:21 | [diff] [blame] | 3408 | "//build/win:default_exe_manifest", |
| 3409 | "//third_party/boringssl", |
| 3410 | "//third_party/protobuf:protobuf_lite", |
| 3411 | ] |
| 3412 | } |
danzh | 1401f0a | 2016-05-19 13:41:10 | [diff] [blame] | 3413 | executable("crypto_message_printer") { |
| 3414 | sources = [ |
| 3415 | "tools/quic/crypto_message_printer_bin.cc", |
| 3416 | ] |
| 3417 | deps = [ |
| 3418 | ":net", |
| 3419 | "//base", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 3420 | "//build/config:exe_and_shlib_deps", |
danzh | 1401f0a | 2016-05-19 13:41:10 | [diff] [blame] | 3421 | "//build/win:default_exe_manifest", |
| 3422 | ] |
| 3423 | } |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 3424 | } |
| 3425 | |
eroman | d5207a9 | 2017-05-05 17:49:36 | [diff] [blame] | 3426 | # This section can be updated from globbing rules using: |
| 3427 | # python ./tools/update_ios_bundle_data.py |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 3428 | bundle_data("net_unittests_bundle_data") { |
| 3429 | testonly = true |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3430 | sources = [ |
| 3431 | "data/cert_issuer_source_aia_unittest/i.pem", |
| 3432 | "data/cert_issuer_source_aia_unittest/i2.pem", |
| 3433 | "data/cert_issuer_source_aia_unittest/i3.pem", |
eroman | d5207a9 | 2017-05-05 17:49:36 | [diff] [blame] | 3434 | "data/cert_issuer_source_aia_unittest/root.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3435 | "data/cert_issuer_source_aia_unittest/target_file_aia.pem", |
| 3436 | "data/cert_issuer_source_aia_unittest/target_file_and_http_aia.pem", |
| 3437 | "data/cert_issuer_source_aia_unittest/target_invalid_and_http_aia.pem", |
| 3438 | "data/cert_issuer_source_aia_unittest/target_invalid_url_aia.pem", |
| 3439 | "data/cert_issuer_source_aia_unittest/target_no_aia.pem", |
| 3440 | "data/cert_issuer_source_aia_unittest/target_one_aia.pem", |
| 3441 | "data/cert_issuer_source_aia_unittest/target_six_aia.pem", |
| 3442 | "data/cert_issuer_source_aia_unittest/target_three_aia.pem", |
| 3443 | "data/cert_issuer_source_aia_unittest/target_two_aia.pem", |
| 3444 | "data/cert_issuer_source_static_unittest/c1.pem", |
| 3445 | "data/cert_issuer_source_static_unittest/c2.pem", |
| 3446 | "data/cert_issuer_source_static_unittest/d.pem", |
| 3447 | "data/cert_issuer_source_static_unittest/e1.pem", |
| 3448 | "data/cert_issuer_source_static_unittest/e2.pem", |
| 3449 | "data/cert_issuer_source_static_unittest/i1_1.pem", |
| 3450 | "data/cert_issuer_source_static_unittest/i1_2.pem", |
| 3451 | "data/cert_issuer_source_static_unittest/i2.pem", |
| 3452 | "data/cert_issuer_source_static_unittest/i3_1.pem", |
| 3453 | "data/cert_issuer_source_static_unittest/i3_2.pem", |
| 3454 | "data/cert_issuer_source_static_unittest/root.pem", |
| 3455 | "data/certificate_policies_unittest/anypolicy.pem", |
| 3456 | "data/certificate_policies_unittest/anypolicy_with_qualifier.pem", |
| 3457 | "data/certificate_policies_unittest/invalid-anypolicy_with_custom_qualifier.pem", |
| 3458 | "data/certificate_policies_unittest/invalid-empty.pem", |
| 3459 | "data/certificate_policies_unittest/invalid-policy_1_2_3_dupe.pem", |
| 3460 | "data/certificate_policies_unittest/invalid-policy_1_2_3_policyinformation_unconsumed_data.pem", |
| 3461 | "data/certificate_policies_unittest/invalid-policy_1_2_3_policyqualifierinfo_unconsumed_data.pem", |
| 3462 | "data/certificate_policies_unittest/invalid-policy_1_2_3_with_empty_qualifiers_sequence.pem", |
| 3463 | "data/certificate_policies_unittest/invalid-policy_identifier_not_oid.pem", |
| 3464 | "data/certificate_policies_unittest/policy_1_2_3.pem", |
| 3465 | "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4.pem", |
| 3466 | "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4_with_qualifiers.pem", |
| 3467 | "data/certificate_policies_unittest/policy_1_2_3_with_custom_qualifier.pem", |
| 3468 | "data/certificate_policies_unittest/policy_1_2_3_with_qualifier.pem", |
jam | 29f1aed4 | 2017-06-06 21:37:43 | [diff] [blame] | 3469 | "data/embedded_test_server/mock-headers-without-crlf.html", |
| 3470 | "data/embedded_test_server/mock-headers-without-crlf.html.mock-http-headers", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3471 | "data/filter_unittests/google.br", |
| 3472 | "data/filter_unittests/google.txt", |
| 3473 | "data/name_constraints_unittest/directoryname-excludeall.pem", |
| 3474 | "data/name_constraints_unittest/directoryname-excluded.pem", |
| 3475 | "data/name_constraints_unittest/directoryname.pem", |
| 3476 | "data/name_constraints_unittest/directoryname_and_dnsname.pem", |
| 3477 | "data/name_constraints_unittest/directoryname_and_dnsname_and_ipaddress.pem", |
| 3478 | "data/name_constraints_unittest/dnsname-exclude_dot.pem", |
| 3479 | "data/name_constraints_unittest/dnsname-excludeall.pem", |
| 3480 | "data/name_constraints_unittest/dnsname-excluded.pem", |
| 3481 | "data/name_constraints_unittest/dnsname-excluded_with_leading_dot.pem", |
| 3482 | "data/name_constraints_unittest/dnsname-permitted_two_dot.pem", |
| 3483 | "data/name_constraints_unittest/dnsname-permitted_with_leading_dot.pem", |
| 3484 | "data/name_constraints_unittest/dnsname-with_max.pem", |
| 3485 | "data/name_constraints_unittest/dnsname-with_min_0.pem", |
| 3486 | "data/name_constraints_unittest/dnsname-with_min_0_and_max.pem", |
| 3487 | "data/name_constraints_unittest/dnsname-with_min_1.pem", |
| 3488 | "data/name_constraints_unittest/dnsname-with_min_1_and_max.pem", |
| 3489 | "data/name_constraints_unittest/dnsname.pem", |
| 3490 | "data/name_constraints_unittest/dnsname2.pem", |
| 3491 | "data/name_constraints_unittest/edipartyname-excluded.pem", |
| 3492 | "data/name_constraints_unittest/edipartyname-permitted.pem", |
| 3493 | "data/name_constraints_unittest/invalid-empty_excluded_subtree.pem", |
| 3494 | "data/name_constraints_unittest/invalid-empty_permitted_subtree.pem", |
| 3495 | "data/name_constraints_unittest/invalid-no_subtrees.pem", |
| 3496 | "data/name_constraints_unittest/ipaddress-excludeall.pem", |
| 3497 | "data/name_constraints_unittest/ipaddress-excluded.pem", |
| 3498 | "data/name_constraints_unittest/ipaddress-invalid_addr.pem", |
| 3499 | "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_1.pem", |
| 3500 | "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_2.pem", |
| 3501 | "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_3.pem", |
| 3502 | "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_4.pem", |
| 3503 | "data/name_constraints_unittest/ipaddress-permit_all.pem", |
| 3504 | "data/name_constraints_unittest/ipaddress-permit_prefix1.pem", |
| 3505 | "data/name_constraints_unittest/ipaddress-permit_prefix31.pem", |
| 3506 | "data/name_constraints_unittest/ipaddress-permit_singlehost.pem", |
| 3507 | "data/name_constraints_unittest/ipaddress.pem", |
| 3508 | "data/name_constraints_unittest/name-ca.pem", |
| 3509 | "data/name_constraints_unittest/name-de.pem", |
| 3510 | "data/name_constraints_unittest/name-empty.pem", |
| 3511 | "data/name_constraints_unittest/name-jp-tokyo.pem", |
| 3512 | "data/name_constraints_unittest/name-jp.pem", |
| 3513 | "data/name_constraints_unittest/name-us-arizona-1.1.1.1.pem", |
| 3514 | "data/name_constraints_unittest/name-us-arizona-192.168.1.1.pem", |
| 3515 | "data/name_constraints_unittest/name-us-arizona-email.pem", |
| 3516 | "data/name_constraints_unittest/name-us-arizona-foo.com.pem", |
| 3517 | "data/name_constraints_unittest/name-us-arizona-ipv6.pem", |
| 3518 | "data/name_constraints_unittest/name-us-arizona-permitted.example.com.pem", |
| 3519 | "data/name_constraints_unittest/name-us-arizona.pem", |
| 3520 | "data/name_constraints_unittest/name-us-california-192.168.1.1.pem", |
| 3521 | "data/name_constraints_unittest/name-us-california-mountain_view.pem", |
| 3522 | "data/name_constraints_unittest/name-us-california-permitted.example.com.pem", |
| 3523 | "data/name_constraints_unittest/name-us-california.pem", |
| 3524 | "data/name_constraints_unittest/name-us.pem", |
| 3525 | "data/name_constraints_unittest/othername-excluded.pem", |
| 3526 | "data/name_constraints_unittest/othername-permitted.pem", |
| 3527 | "data/name_constraints_unittest/registeredid-excluded.pem", |
| 3528 | "data/name_constraints_unittest/registeredid-permitted.pem", |
| 3529 | "data/name_constraints_unittest/rfc822name-excluded.pem", |
| 3530 | "data/name_constraints_unittest/rfc822name-permitted.pem", |
Matt Mueller | 766bedc9 | 2017-09-14 23:30:41 | [diff] [blame] | 3531 | "data/name_constraints_unittest/san-directoryname.pem", |
| 3532 | "data/name_constraints_unittest/san-dnsname.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3533 | "data/name_constraints_unittest/san-edipartyname.pem", |
| 3534 | "data/name_constraints_unittest/san-excluded-directoryname.pem", |
| 3535 | "data/name_constraints_unittest/san-excluded-dnsname.pem", |
| 3536 | "data/name_constraints_unittest/san-excluded-ipaddress.pem", |
| 3537 | "data/name_constraints_unittest/san-invalid-empty.pem", |
| 3538 | "data/name_constraints_unittest/san-invalid-ipaddress.pem", |
Matt Mueller | 766bedc9 | 2017-09-14 23:30:41 | [diff] [blame] | 3539 | "data/name_constraints_unittest/san-ipaddress4.pem", |
| 3540 | "data/name_constraints_unittest/san-ipaddress6.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3541 | "data/name_constraints_unittest/san-othername.pem", |
| 3542 | "data/name_constraints_unittest/san-permitted.pem", |
| 3543 | "data/name_constraints_unittest/san-registeredid.pem", |
| 3544 | "data/name_constraints_unittest/san-rfc822name.pem", |
| 3545 | "data/name_constraints_unittest/san-uri.pem", |
| 3546 | "data/name_constraints_unittest/san-x400address.pem", |
| 3547 | "data/name_constraints_unittest/uri-excluded.pem", |
| 3548 | "data/name_constraints_unittest/uri-permitted.pem", |
| 3549 | "data/name_constraints_unittest/x400address-excluded.pem", |
| 3550 | "data/name_constraints_unittest/x400address-permitted.pem", |
Eric Roman | a2f6f55d | 2017-09-07 23:34:57 | [diff] [blame] | 3551 | "data/ocsp_unittest/bad_ocsp_type.pem", |
| 3552 | "data/ocsp_unittest/bad_signature.pem", |
| 3553 | "data/ocsp_unittest/bad_status.pem", |
| 3554 | "data/ocsp_unittest/good_response.pem", |
| 3555 | "data/ocsp_unittest/good_response_next_update.pem", |
Steven Valdez | 060eac4 | 2017-09-21 22:31:57 | [diff] [blame] | 3556 | "data/ocsp_unittest/good_response_sha256.pem", |
Eric Roman | a2f6f55d | 2017-09-07 23:34:57 | [diff] [blame] | 3557 | "data/ocsp_unittest/has_extension.pem", |
| 3558 | "data/ocsp_unittest/has_single_extension.pem", |
| 3559 | "data/ocsp_unittest/has_version.pem", |
Eric Roman | ff24262 | 2017-09-25 21:49:44 | [diff] [blame] | 3560 | "data/ocsp_unittest/malformed_request.pem", |
Eric Roman | a2f6f55d | 2017-09-07 23:34:57 | [diff] [blame] | 3561 | "data/ocsp_unittest/missing_response.pem", |
| 3562 | "data/ocsp_unittest/multiple_response.pem", |
| 3563 | "data/ocsp_unittest/no_response.pem", |
| 3564 | "data/ocsp_unittest/ocsp_extra_certs.pem", |
| 3565 | "data/ocsp_unittest/ocsp_sign_bad_indirect.pem", |
| 3566 | "data/ocsp_unittest/ocsp_sign_direct.pem", |
| 3567 | "data/ocsp_unittest/ocsp_sign_indirect.pem", |
| 3568 | "data/ocsp_unittest/ocsp_sign_indirect_missing.pem", |
| 3569 | "data/ocsp_unittest/other_response.pem", |
| 3570 | "data/ocsp_unittest/responder_id.pem", |
| 3571 | "data/ocsp_unittest/responder_name.pem", |
| 3572 | "data/ocsp_unittest/revoke_response.pem", |
| 3573 | "data/ocsp_unittest/revoke_response_reason.pem", |
| 3574 | "data/ocsp_unittest/unknown_response.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3575 | "data/parse_certificate_unittest/bad_key_usage.pem", |
| 3576 | "data/parse_certificate_unittest/bad_policy_qualifiers.pem", |
| 3577 | "data/parse_certificate_unittest/bad_signature_algorithm_oid.pem", |
| 3578 | "data/parse_certificate_unittest/bad_validity.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3579 | "data/parse_certificate_unittest/basic_constraints_ca_false.pem", |
| 3580 | "data/parse_certificate_unittest/basic_constraints_ca_no_path.pem", |
| 3581 | "data/parse_certificate_unittest/basic_constraints_ca_path_9.pem", |
| 3582 | "data/parse_certificate_unittest/basic_constraints_negative_path.pem", |
| 3583 | "data/parse_certificate_unittest/basic_constraints_not_ca.pem", |
| 3584 | "data/parse_certificate_unittest/basic_constraints_path_too_large.pem", |
| 3585 | "data/parse_certificate_unittest/basic_constraints_pathlen_255.pem", |
| 3586 | "data/parse_certificate_unittest/basic_constraints_pathlen_256.pem", |
| 3587 | "data/parse_certificate_unittest/basic_constraints_pathlen_not_ca.pem", |
| 3588 | "data/parse_certificate_unittest/basic_constraints_unconsumed_data.pem", |
| 3589 | "data/parse_certificate_unittest/cert_algorithm_not_sequence.pem", |
| 3590 | "data/parse_certificate_unittest/cert_data_after_signature.pem", |
| 3591 | "data/parse_certificate_unittest/cert_empty_sequence.pem", |
| 3592 | "data/parse_certificate_unittest/cert_missing_signature.pem", |
| 3593 | "data/parse_certificate_unittest/cert_not_sequence.pem", |
| 3594 | "data/parse_certificate_unittest/cert_signature_not_bit_string.pem", |
| 3595 | "data/parse_certificate_unittest/cert_skeleton.pem", |
| 3596 | "data/parse_certificate_unittest/cert_version3.pem", |
Eric Roman | db460e9 | 2017-08-01 17:17:34 | [diff] [blame] | 3597 | "data/parse_certificate_unittest/crldp_1uri_noissuer.pem", |
| 3598 | "data/parse_certificate_unittest/crldp_3uri_noissuer.pem", |
| 3599 | "data/parse_certificate_unittest/crldp_full_name_as_dirname.pem", |
| 3600 | "data/parse_certificate_unittest/crldp_issuer_as_dirname.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3601 | "data/parse_certificate_unittest/extended_key_usage.pem", |
| 3602 | "data/parse_certificate_unittest/extension_critical.pem", |
| 3603 | "data/parse_certificate_unittest/extension_critical_0.pem", |
| 3604 | "data/parse_certificate_unittest/extension_critical_3.pem", |
| 3605 | "data/parse_certificate_unittest/extension_not_critical.pem", |
| 3606 | "data/parse_certificate_unittest/extensions_data_after_sequence.pem", |
| 3607 | "data/parse_certificate_unittest/extensions_duplicate_key_usage.pem", |
| 3608 | "data/parse_certificate_unittest/extensions_empty_sequence.pem", |
| 3609 | "data/parse_certificate_unittest/extensions_not_sequence.pem", |
| 3610 | "data/parse_certificate_unittest/extensions_real.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3611 | "data/parse_certificate_unittest/failed_signature_algorithm.pem", |
eroman | d312c06 | 2017-05-19 03:06:29 | [diff] [blame] | 3612 | "data/parse_certificate_unittest/inhibit_any_policy.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3613 | "data/parse_certificate_unittest/issuer_bad_printable_string.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3614 | "data/parse_certificate_unittest/key_usage.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3615 | "data/parse_certificate_unittest/name_constraints_bad_ip.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3616 | "data/parse_certificate_unittest/policies.pem", |
eroman | 25ead1bcf8 | 2017-05-13 06:44:58 | [diff] [blame] | 3617 | "data/parse_certificate_unittest/policy_constraints_empty.pem", |
| 3618 | "data/parse_certificate_unittest/policy_constraints_inhibit.pem", |
| 3619 | "data/parse_certificate_unittest/policy_constraints_inhibit_require.pem", |
| 3620 | "data/parse_certificate_unittest/policy_constraints_require.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3621 | "data/parse_certificate_unittest/policy_qualifiers_empty_sequence.pem", |
mattm | 312644de | 2017-05-16 08:13:18 | [diff] [blame] | 3622 | "data/parse_certificate_unittest/serial_37_bytes.pem", |
| 3623 | "data/parse_certificate_unittest/serial_negative.pem", |
Eric Roman | 5d193462 | 2017-08-03 03:57:09 | [diff] [blame] | 3624 | "data/parse_certificate_unittest/serial_not_minimal.pem", |
| 3625 | "data/parse_certificate_unittest/serial_not_number.pem", |
| 3626 | "data/parse_certificate_unittest/serial_zero.pem", |
mattm | 312644de | 2017-05-16 08:13:18 | [diff] [blame] | 3627 | "data/parse_certificate_unittest/serial_zero_padded.pem", |
| 3628 | "data/parse_certificate_unittest/serial_zero_padded_21_bytes.pem", |
mattm | 2fe429a | 2017-06-20 01:53:44 | [diff] [blame] | 3629 | "data/parse_certificate_unittest/signature_algorithm_null.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3630 | "data/parse_certificate_unittest/subject_alt_name.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3631 | "data/parse_certificate_unittest/subject_blank_subjectaltname_not_critical.pem", |
| 3632 | "data/parse_certificate_unittest/subject_not_ascii.pem", |
| 3633 | "data/parse_certificate_unittest/subject_not_printable_string.pem", |
Matt Mueller | 6c8b07c6 | 2017-10-09 21:02:25 | [diff] [blame] | 3634 | "data/parse_certificate_unittest/subject_printable_string_containing_utf8_client_cert.pem", |
mattm | 788812f | 2017-05-05 23:49:09 | [diff] [blame] | 3635 | "data/parse_certificate_unittest/subject_t61string.pem", |
| 3636 | "data/parse_certificate_unittest/subject_t61string_1-32.pem", |
| 3637 | "data/parse_certificate_unittest/subject_t61string_126-160.pem", |
| 3638 | "data/parse_certificate_unittest/subject_t61string_actual.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3639 | "data/parse_certificate_unittest/subjectaltname_bad_ip.pem", |
| 3640 | "data/parse_certificate_unittest/subjectaltname_dns_not_ascii.pem", |
| 3641 | "data/parse_certificate_unittest/subjectaltname_general_names_empty_sequence.pem", |
| 3642 | "data/parse_certificate_unittest/subjectaltname_trailing_data.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3643 | "data/parse_certificate_unittest/tbs_explicit_v1.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3644 | "data/parse_certificate_unittest/tbs_v1.pem", |
| 3645 | "data/parse_certificate_unittest/tbs_v1_extensions.pem", |
| 3646 | "data/parse_certificate_unittest/tbs_v2_extensions.pem", |
| 3647 | "data/parse_certificate_unittest/tbs_v2_issuer_and_subject_unique_id.pem", |
| 3648 | "data/parse_certificate_unittest/tbs_v2_issuer_unique_id.pem", |
| 3649 | "data/parse_certificate_unittest/tbs_v2_no_optionals.pem", |
| 3650 | "data/parse_certificate_unittest/tbs_v3_all_optionals.pem", |
| 3651 | "data/parse_certificate_unittest/tbs_v3_data_after_extensions.pem", |
| 3652 | "data/parse_certificate_unittest/tbs_v3_extensions.pem", |
| 3653 | "data/parse_certificate_unittest/tbs_v3_extensions_not_sequence.pem", |
| 3654 | "data/parse_certificate_unittest/tbs_v3_no_optionals.pem", |
| 3655 | "data/parse_certificate_unittest/tbs_v3_real.pem", |
| 3656 | "data/parse_certificate_unittest/tbs_v4.pem", |
| 3657 | "data/parse_certificate_unittest/tbs_validity_both_generalized_time.pem", |
| 3658 | "data/parse_certificate_unittest/tbs_validity_both_utc_time.pem", |
| 3659 | "data/parse_certificate_unittest/tbs_validity_generalized_time_and_utc_time.pem", |
| 3660 | "data/parse_certificate_unittest/tbs_validity_relaxed.pem", |
| 3661 | "data/parse_certificate_unittest/tbs_validity_utc_time_and_generalized_time.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3662 | "data/parse_certificate_unittest/v1_explicit_version.pem", |
Matt Mueller | 6c8b07c6 | 2017-10-09 21:02:25 | [diff] [blame] | 3663 | "data/parse_certificate_unittest/v3_certificate_template.pk8", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3664 | "data/test.html", |
| 3665 | "data/url_request_unittest/308-without-location-header", |
| 3666 | "data/url_request_unittest/308-without-location-header.mock-http-headers", |
| 3667 | "data/url_request_unittest/BullRunSpeech.txt", |
| 3668 | "data/url_request_unittest/content-type-normalization.html", |
| 3669 | "data/url_request_unittest/content-type-normalization.html.mock-http-headers", |
Emily Stark | 4cfecf07 | 2017-08-08 01:05:51 | [diff] [blame] | 3670 | "data/url_request_unittest/expect-ct-header-multiple.html", |
| 3671 | "data/url_request_unittest/expect-ct-header-multiple.html.mock-http-headers", |
| 3672 | "data/url_request_unittest/expect-ct-header-preload.html", |
| 3673 | "data/url_request_unittest/expect-ct-header-preload.html.mock-http-headers", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3674 | "data/url_request_unittest/expect-ct-header.html", |
| 3675 | "data/url_request_unittest/expect-ct-header.html.mock-http-headers", |
| 3676 | "data/url_request_unittest/filedir-sentinel", |
| 3677 | "data/url_request_unittest/gzip-encoded", |
| 3678 | "data/url_request_unittest/gzip-encoded.mock-http-headers", |
| 3679 | "data/url_request_unittest/hpkp-headers-report-only.html", |
| 3680 | "data/url_request_unittest/hpkp-headers-report-only.html.mock-http-headers", |
| 3681 | "data/url_request_unittest/hpkp-headers.html", |
| 3682 | "data/url_request_unittest/hpkp-headers.html.mock-http-headers", |
| 3683 | "data/url_request_unittest/hsts-and-hpkp-headers.html", |
| 3684 | "data/url_request_unittest/hsts-and-hpkp-headers.html.mock-http-headers", |
| 3685 | "data/url_request_unittest/hsts-and-hpkp-headers2.html", |
| 3686 | "data/url_request_unittest/hsts-and-hpkp-headers2.html.mock-http-headers", |
| 3687 | "data/url_request_unittest/hsts-headers.html", |
| 3688 | "data/url_request_unittest/hsts-headers.html.mock-http-headers", |
| 3689 | "data/url_request_unittest/hsts-multiple-headers.html", |
| 3690 | "data/url_request_unittest/hsts-multiple-headers.html.mock-http-headers", |
| 3691 | "data/url_request_unittest/redirect-test.html", |
| 3692 | "data/url_request_unittest/redirect-test.html.mock-http-headers", |
| 3693 | "data/url_request_unittest/redirect-to-data.html", |
| 3694 | "data/url_request_unittest/redirect-to-data.html.mock-http-headers", |
| 3695 | "data/url_request_unittest/redirect-to-echoall", |
| 3696 | "data/url_request_unittest/redirect-to-echoall.mock-http-headers", |
| 3697 | "data/url_request_unittest/redirect-to-file.html", |
| 3698 | "data/url_request_unittest/redirect-to-file.html.mock-http-headers", |
| 3699 | "data/url_request_unittest/redirect-to-invalid-url.html", |
| 3700 | "data/url_request_unittest/redirect-to-invalid-url.html.mock-http-headers", |
| 3701 | "data/url_request_unittest/redirect301-to-echo", |
| 3702 | "data/url_request_unittest/redirect301-to-echo.mock-http-headers", |
| 3703 | "data/url_request_unittest/redirect301-to-https", |
| 3704 | "data/url_request_unittest/redirect301-to-https.mock-http-headers", |
| 3705 | "data/url_request_unittest/redirect302-to-echo", |
| 3706 | "data/url_request_unittest/redirect302-to-echo-cacheable", |
| 3707 | "data/url_request_unittest/redirect302-to-echo-cacheable.mock-http-headers", |
| 3708 | "data/url_request_unittest/redirect302-to-echo.mock-http-headers", |
| 3709 | "data/url_request_unittest/redirect302-to-https", |
| 3710 | "data/url_request_unittest/redirect302-to-https.mock-http-headers", |
| 3711 | "data/url_request_unittest/redirect303-to-echo", |
| 3712 | "data/url_request_unittest/redirect303-to-echo.mock-http-headers", |
| 3713 | "data/url_request_unittest/redirect303-to-https", |
| 3714 | "data/url_request_unittest/redirect303-to-https.mock-http-headers", |
| 3715 | "data/url_request_unittest/redirect307-to-echo", |
| 3716 | "data/url_request_unittest/redirect307-to-echo.mock-http-headers", |
| 3717 | "data/url_request_unittest/redirect307-to-https", |
| 3718 | "data/url_request_unittest/redirect307-to-https.mock-http-headers", |
| 3719 | "data/url_request_unittest/redirect308-to-echo", |
| 3720 | "data/url_request_unittest/redirect308-to-echo.mock-http-headers", |
| 3721 | "data/url_request_unittest/redirect308-to-https", |
| 3722 | "data/url_request_unittest/redirect308-to-https.mock-http-headers", |
| 3723 | "data/url_request_unittest/simple.html", |
| 3724 | "data/url_request_unittest/simple.html.mock-http-headers", |
| 3725 | "data/url_request_unittest/two-content-lengths.html", |
| 3726 | "data/url_request_unittest/two-content-lengths.html.mock-http-headers", |
| 3727 | "data/url_request_unittest/with-headers.html", |
| 3728 | "data/url_request_unittest/with-headers.html.mock-http-headers", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3729 | "data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/chain.pem", |
| 3730 | "data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/main.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3731 | "data/verify_certificate_chain_unittest/expired-intermediate/chain.pem", |
eroman | e7af900 | 2017-05-13 05:04:01 | [diff] [blame] | 3732 | "data/verify_certificate_chain_unittest/expired-intermediate/not-after.test", |
| 3733 | "data/verify_certificate_chain_unittest/expired-intermediate/not-before.test", |
eroman | c1a8b5d0 | 2017-05-03 21:52:10 | [diff] [blame] | 3734 | "data/verify_certificate_chain_unittest/expired-root/chain.pem", |
eroman | e7af900 | 2017-05-13 05:04:01 | [diff] [blame] | 3735 | "data/verify_certificate_chain_unittest/expired-root/not-after-ta-with-constraints.test", |
| 3736 | "data/verify_certificate_chain_unittest/expired-root/not-after.test", |
| 3737 | "data/verify_certificate_chain_unittest/expired-root/not-before.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3738 | "data/verify_certificate_chain_unittest/expired-target/chain.pem", |
eroman | e7af900 | 2017-05-13 05:04:01 | [diff] [blame] | 3739 | "data/verify_certificate_chain_unittest/expired-target/not-after.test", |
| 3740 | "data/verify_certificate_chain_unittest/expired-target/not-before.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3741 | "data/verify_certificate_chain_unittest/incorrect-trust-anchor/chain.pem", |
| 3742 | "data/verify_certificate_chain_unittest/incorrect-trust-anchor/main.test", |
| 3743 | "data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/chain.pem", |
| 3744 | "data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/main.test", |
| 3745 | "data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/chain.pem", |
| 3746 | "data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/main.test", |
eroman | 7333d9b | 2017-06-23 01:50:25 | [diff] [blame] | 3747 | "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/any.test", |
| 3748 | "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/chain.pem", |
| 3749 | "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/clientauth.test", |
| 3750 | "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/serverauth.test", |
| 3751 | "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/any.test", |
| 3752 | "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/chain.pem", |
| 3753 | "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/clientauth.test", |
| 3754 | "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/serverauth.test", |
Eric Roman | c8c2d6a | 2017-08-01 22:55:30 | [diff] [blame] | 3755 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-chain.pem", |
| 3756 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-any.test", |
| 3757 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-clientAuth.test", |
| 3758 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-serverAuth.test", |
| 3759 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-chain.pem", |
| 3760 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-any.test", |
| 3761 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-clientAuth.test", |
| 3762 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-serverAuth.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3763 | "data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/chain.pem", |
| 3764 | "data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/main.test", |
| 3765 | "data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/chain.pem", |
| 3766 | "data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/main.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3767 | "data/verify_certificate_chain_unittest/intermediate-signed-with-md5/chain.pem", |
| 3768 | "data/verify_certificate_chain_unittest/intermediate-signed-with-md5/main.test", |
| 3769 | "data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/chain.pem", |
| 3770 | "data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/main.test", |
| 3771 | "data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/chain.pem", |
| 3772 | "data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/main.test", |
| 3773 | "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.pem", |
| 3774 | "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.test", |
| 3775 | "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.pem", |
| 3776 | "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.test", |
| 3777 | "data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.pem", |
| 3778 | "data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.test", |
| 3779 | "data/verify_certificate_chain_unittest/key-rollover/newchain.pem", |
| 3780 | "data/verify_certificate_chain_unittest/key-rollover/newchain.test", |
| 3781 | "data/verify_certificate_chain_unittest/key-rollover/oldchain.pem", |
| 3782 | "data/verify_certificate_chain_unittest/key-rollover/oldchain.test", |
| 3783 | "data/verify_certificate_chain_unittest/key-rollover/rolloverchain.pem", |
| 3784 | "data/verify_certificate_chain_unittest/key-rollover/rolloverchain.test", |
| 3785 | "data/verify_certificate_chain_unittest/non-self-signed-root/chain.pem", |
| 3786 | "data/verify_certificate_chain_unittest/non-self-signed-root/main.test", |
eroman | c1a8b5d0 | 2017-05-03 21:52:10 | [diff] [blame] | 3787 | "data/verify_certificate_chain_unittest/non-self-signed-root/ta-with-constraints.test", |
eroman | 605a5cc | 2017-06-03 02:45:24 | [diff] [blame] | 3788 | "data/verify_certificate_chain_unittest/pkits_errors/4.1.2.txt", |
| 3789 | "data/verify_certificate_chain_unittest/pkits_errors/4.1.3.txt", |
| 3790 | "data/verify_certificate_chain_unittest/pkits_errors/4.1.4.txt", |
| 3791 | "data/verify_certificate_chain_unittest/pkits_errors/4.1.5.txt", |
| 3792 | "data/verify_certificate_chain_unittest/pkits_errors/4.1.6.txt", |
| 3793 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.1.txt", |
| 3794 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.10.txt", |
| 3795 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.2.txt", |
| 3796 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.3.txt", |
| 3797 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.4.txt", |
| 3798 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.5.txt", |
| 3799 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.6.txt", |
| 3800 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.7.txt", |
| 3801 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.8.txt", |
| 3802 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.1.txt", |
| 3803 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.10.txt", |
| 3804 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.11.txt", |
| 3805 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.3.txt", |
| 3806 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.5.txt", |
| 3807 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.6.txt", |
| 3808 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.8.txt", |
| 3809 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.9.txt", |
| 3810 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.1.txt", |
| 3811 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.10.txt", |
| 3812 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.3.txt", |
| 3813 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.4.txt", |
| 3814 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.5.txt", |
| 3815 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.6.txt", |
| 3816 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.8.txt", |
| 3817 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.10.txt", |
| 3818 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.12.txt", |
| 3819 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.13.txt", |
| 3820 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.15.txt", |
| 3821 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.16.txt", |
| 3822 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.17.txt", |
| 3823 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.2.txt", |
| 3824 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.20.txt", |
| 3825 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.21.txt", |
| 3826 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.22.txt", |
| 3827 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.23.txt", |
| 3828 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.24.txt", |
| 3829 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.25.txt", |
| 3830 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.26.txt", |
| 3831 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.27.txt", |
| 3832 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.28.txt", |
| 3833 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.29.txt", |
| 3834 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.3.txt", |
| 3835 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.31.txt", |
| 3836 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.33.txt", |
| 3837 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.34.txt", |
| 3838 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.35.txt", |
| 3839 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.36.txt", |
| 3840 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.37.txt", |
| 3841 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.38.txt", |
| 3842 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.7.txt", |
| 3843 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.8.txt", |
| 3844 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.9.txt", |
| 3845 | "data/verify_certificate_chain_unittest/pkits_errors/4.16.2.txt", |
| 3846 | "data/verify_certificate_chain_unittest/pkits_errors/4.2.1.txt", |
| 3847 | "data/verify_certificate_chain_unittest/pkits_errors/4.2.2.txt", |
| 3848 | "data/verify_certificate_chain_unittest/pkits_errors/4.2.5.txt", |
| 3849 | "data/verify_certificate_chain_unittest/pkits_errors/4.2.6.txt", |
| 3850 | "data/verify_certificate_chain_unittest/pkits_errors/4.2.7.txt", |
| 3851 | "data/verify_certificate_chain_unittest/pkits_errors/4.3.1.txt", |
| 3852 | "data/verify_certificate_chain_unittest/pkits_errors/4.3.2.txt", |
| 3853 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.1.txt", |
| 3854 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.10.txt", |
| 3855 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.11.txt", |
| 3856 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.12.txt", |
| 3857 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.16.txt", |
| 3858 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.2.txt", |
| 3859 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.3.txt", |
| 3860 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.5.txt", |
| 3861 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.6.txt", |
| 3862 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.9.txt", |
| 3863 | "data/verify_certificate_chain_unittest/pkits_errors/4.7.1.txt", |
| 3864 | "data/verify_certificate_chain_unittest/pkits_errors/4.7.2.txt", |
| 3865 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.1.txt", |
| 3866 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.12.txt", |
| 3867 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.14.txt", |
| 3868 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.2.txt", |
| 3869 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.3.txt", |
| 3870 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.4.txt", |
| 3871 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.5.txt", |
| 3872 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.6.txt", |
| 3873 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.7.txt", |
| 3874 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.8.txt", |
| 3875 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.9.txt", |
| 3876 | "data/verify_certificate_chain_unittest/pkits_errors/4.9.3.txt", |
| 3877 | "data/verify_certificate_chain_unittest/pkits_errors/4.9.5.txt", |
| 3878 | "data/verify_certificate_chain_unittest/pkits_errors/4.9.7.txt", |
| 3879 | "data/verify_certificate_chain_unittest/pkits_errors/4.9.8.txt", |
eroman | c1a8b5d0 | 2017-05-03 21:52:10 | [diff] [blame] | 3880 | "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/chain.pem", |
| 3881 | "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/main.test", |
| 3882 | "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/ta-with-constraints.test", |
eroman | 7333d9b | 2017-06-23 01:50:25 | [diff] [blame] | 3883 | "data/verify_certificate_chain_unittest/root-eku-clientauth/chain.pem", |
| 3884 | "data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth-ta-with-constraints.test", |
| 3885 | "data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth.test", |
eroman | c1a8b5d0 | 2017-05-03 21:52:10 | [diff] [blame] | 3886 | "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/chain.pem", |
| 3887 | "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/main.test", |
| 3888 | "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/ta-with-constraints.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3889 | "data/verify_certificate_chain_unittest/target-and-intermediate/chain.pem", |
eroman | d1c9c9b | 2017-05-04 19:23:45 | [diff] [blame] | 3890 | "data/verify_certificate_chain_unittest/target-and-intermediate/distrusted-root.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3891 | "data/verify_certificate_chain_unittest/target-and-intermediate/main.test", |
eroman | d1c9c9b | 2017-05-04 19:23:45 | [diff] [blame] | 3892 | "data/verify_certificate_chain_unittest/target-and-intermediate/unspecified-trust-root.test", |
eroman | 7333d9b | 2017-06-23 01:50:25 | [diff] [blame] | 3893 | "data/verify_certificate_chain_unittest/target-eku-clientauth/any.test", |
| 3894 | "data/verify_certificate_chain_unittest/target-eku-clientauth/chain.pem", |
| 3895 | "data/verify_certificate_chain_unittest/target-eku-clientauth/clientauth.test", |
| 3896 | "data/verify_certificate_chain_unittest/target-eku-clientauth/serverauth.test", |
| 3897 | "data/verify_certificate_chain_unittest/target-eku-none/any.test", |
| 3898 | "data/verify_certificate_chain_unittest/target-eku-none/chain.pem", |
| 3899 | "data/verify_certificate_chain_unittest/target-eku-none/clientauth.test", |
| 3900 | "data/verify_certificate_chain_unittest/target-eku-none/serverauth.test", |
Eric Roman | 5431d70 | 2017-07-26 01:58:18 | [diff] [blame] | 3901 | "data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/chain.pem", |
| 3902 | "data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/main.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3903 | "data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/chain.pem", |
| 3904 | "data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/main.test", |
| 3905 | "data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/chain.pem", |
| 3906 | "data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/main.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3907 | "data/verify_certificate_chain_unittest/target-not-end-entity/chain.pem", |
| 3908 | "data/verify_certificate_chain_unittest/target-not-end-entity/main.test", |
eroman | e789943 | 2017-05-04 16:40:48 | [diff] [blame] | 3909 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.pem", |
| 3910 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.test", |
| 3911 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.pem", |
| 3912 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.test", |
| 3913 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.pem", |
| 3914 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.test", |
| 3915 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.pem", |
| 3916 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.test", |
| 3917 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.pem", |
| 3918 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.test", |
| 3919 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.pem", |
| 3920 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.test", |
| 3921 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.pem", |
| 3922 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.test", |
| 3923 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.pem", |
| 3924 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3925 | "data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/chain.pem", |
| 3926 | "data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/main.test", |
| 3927 | "data/verify_certificate_chain_unittest/target-signed-using-ecdsa/chain.pem", |
| 3928 | "data/verify_certificate_chain_unittest/target-signed-using-ecdsa/main.test", |
| 3929 | "data/verify_certificate_chain_unittest/target-signed-with-md5/chain.pem", |
| 3930 | "data/verify_certificate_chain_unittest/target-signed-with-md5/main.test", |
| 3931 | "data/verify_certificate_chain_unittest/target-unknown-critical-extension/chain.pem", |
| 3932 | "data/verify_certificate_chain_unittest/target-unknown-critical-extension/main.test", |
| 3933 | "data/verify_certificate_chain_unittest/target-wrong-signature/chain.pem", |
| 3934 | "data/verify_certificate_chain_unittest/target-wrong-signature/main.test", |
eroman | 178f2c6 | 2017-06-07 01:03:44 | [diff] [blame] | 3935 | "data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/chain.pem", |
| 3936 | "data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/main.test", |
| 3937 | "data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/chain.pem", |
| 3938 | "data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/main.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3939 | "data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/chain.pem", |
| 3940 | "data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/main.test", |
eroman | c1a8b5d0 | 2017-05-03 21:52:10 | [diff] [blame] | 3941 | "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/chain.pem", |
| 3942 | "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/main.test", |
| 3943 | "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/ta-with-constraints.test", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3944 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-dupe_attr.pem", |
| 3945 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_attr.pem", |
| 3946 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_rdn.pem", |
| 3947 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap.pem", |
| 3948 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-dupe_attr.pem", |
| 3949 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_attr.pem", |
| 3950 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_rdn.pem", |
| 3951 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace.pem", |
| 3952 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-dupe_attr.pem", |
| 3953 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_attr.pem", |
| 3954 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_rdn.pem", |
| 3955 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled.pem", |
| 3956 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-dupe_attr.pem", |
| 3957 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_attr.pem", |
| 3958 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_rdn.pem", |
| 3959 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap.pem", |
| 3960 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-dupe_attr.pem", |
| 3961 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_attr.pem", |
| 3962 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_rdn.pem", |
| 3963 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace.pem", |
| 3964 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_1.pem", |
| 3965 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_2.pem", |
| 3966 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-dupe_attr.pem", |
| 3967 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_attr.pem", |
| 3968 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_rdn.pem", |
| 3969 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled.pem", |
| 3970 | "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-dupe_attr.pem", |
| 3971 | "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_attr.pem", |
| 3972 | "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_rdn.pem", |
| 3973 | "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap.pem", |
| 3974 | "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-dupe_attr.pem", |
| 3975 | "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_attr.pem", |
| 3976 | "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_rdn.pem", |
| 3977 | "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace.pem", |
| 3978 | "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-dupe_attr.pem", |
| 3979 | "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_attr.pem", |
| 3980 | "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_rdn.pem", |
| 3981 | "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled.pem", |
| 3982 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-dupe_attr.pem", |
| 3983 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_attr.pem", |
| 3984 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_rdn.pem", |
| 3985 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap.pem", |
| 3986 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-dupe_attr.pem", |
| 3987 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_attr.pem", |
| 3988 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_rdn.pem", |
| 3989 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace.pem", |
| 3990 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-dupe_attr.pem", |
| 3991 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_attr.pem", |
| 3992 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_rdn.pem", |
| 3993 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled.pem", |
| 3994 | "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-dupe_attr.pem", |
| 3995 | "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_attr.pem", |
| 3996 | "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_rdn.pem", |
| 3997 | "data/verify_name_match_unittest/names/ascii-UTF8-case_swap.pem", |
| 3998 | "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-dupe_attr.pem", |
| 3999 | "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_attr.pem", |
| 4000 | "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_rdn.pem", |
| 4001 | "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace.pem", |
| 4002 | "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-dupe_attr.pem", |
| 4003 | "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_attr.pem", |
| 4004 | "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_rdn.pem", |
| 4005 | "data/verify_name_match_unittest/names/ascii-UTF8-unmangled.pem", |
| 4006 | "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_1.pem", |
| 4007 | "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_2.pem", |
David Benjamin | c4dd105 | 2017-12-15 21:23:17 | [diff] [blame^] | 4008 | "data/verify_name_match_unittest/names/custom-custom-normalized.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4009 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-badAttributeType.pem", |
| 4010 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-empty.pem", |
| 4011 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-extradata.pem", |
| 4012 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-onlyOneElement.pem", |
| 4013 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-setNotSequence.pem", |
| 4014 | "data/verify_name_match_unittest/names/invalid-Name-setInsteadOfSequence.pem", |
| 4015 | "data/verify_name_match_unittest/names/invalid-RDN-empty.pem", |
| 4016 | "data/verify_name_match_unittest/names/invalid-RDN-sequenceInsteadOfSet.pem", |
| 4017 | "data/verify_name_match_unittest/names/unicode-mixed-normalized.pem", |
| 4018 | "data/verify_name_match_unittest/names/unicode-mixed-unnormalized.pem", |
| 4019 | "data/verify_name_match_unittest/names/unicode_bmp-BMPSTRING-unmangled.pem", |
| 4020 | "data/verify_name_match_unittest/names/unicode_bmp-UNIVERSALSTRING-unmangled.pem", |
| 4021 | "data/verify_name_match_unittest/names/unicode_bmp-UTF8-unmangled.pem", |
| 4022 | "data/verify_name_match_unittest/names/unicode_supplementary-UNIVERSALSTRING-unmangled.pem", |
| 4023 | "data/verify_name_match_unittest/names/unicode_supplementary-UTF8-unmangled.pem", |
| 4024 | "data/verify_name_match_unittest/names/valid-Name-empty.pem", |
| 4025 | "data/verify_name_match_unittest/names/valid-minimal.pem", |
| 4026 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-spki-params-null.pem", |
| 4027 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-unused-bits-signature.pem", |
| 4028 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecdh-key.pem", |
| 4029 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecmqv-key.pem", |
| 4030 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-rsa-algorithm.pem", |
| 4031 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-wrong-signature-format.pem", |
| 4032 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512.pem", |
| 4033 | "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256-corrupted-data.pem", |
| 4034 | "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256.pem", |
| 4035 | "data/verify_signed_data_unittest/ecdsa-using-rsa-key.pem", |
| 4036 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-length.pem", |
| 4037 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-null.pem", |
| 4038 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-key-params-absent.pem", |
| 4039 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-using-pss-key-no-params.pem", |
| 4040 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-wrong-algorithm.pem", |
| 4041 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1.pem", |
| 4042 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256-key-encoded-ber.pem", |
| 4043 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256-spki-non-null-params.pem", |
| 4044 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-ecdsa-algorithm.pem", |
| 4045 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-id-ea-rsa.pem", |
| 4046 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256.pem", |
| 4047 | "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-no-params.pem", |
| 4048 | "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-with-null-params.pem", |
| 4049 | "data/verify_signed_data_unittest/rsa-pss-sha1-salt20.pem", |
| 4050 | "data/verify_signed_data_unittest/rsa-pss-sha1-wrong-salt.pem", |
| 4051 | "data/verify_signed_data_unittest/rsa-pss-sha256-mgf1-sha512-salt33.pem", |
| 4052 | "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-params.pem", |
| 4053 | "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-wrong-params.pem", |
| 4054 | "data/verify_signed_data_unittest/rsa-pss-sha256-salt10.pem", |
| 4055 | "data/verify_signed_data_unittest/rsa-using-ec-key.pem", |
| 4056 | "data/verify_signed_data_unittest/rsa2048-pkcs1-sha512.pem", |
| 4057 | "third_party/nist-pkits/certs/AllCertificatesNoPoliciesTest2EE.crt", |
| 4058 | "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest10EE.crt", |
| 4059 | "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest13EE.crt", |
| 4060 | "third_party/nist-pkits/certs/AllCertificatesanyPolicyTest11EE.crt", |
| 4061 | "third_party/nist-pkits/certs/AnyPolicyTest14EE.crt", |
| 4062 | "third_party/nist-pkits/certs/BadCRLIssuerNameCACert.crt", |
| 4063 | "third_party/nist-pkits/certs/BadCRLSignatureCACert.crt", |
| 4064 | "third_party/nist-pkits/certs/BadSignedCACert.crt", |
| 4065 | "third_party/nist-pkits/certs/BadnotAfterDateCACert.crt", |
| 4066 | "third_party/nist-pkits/certs/BadnotBeforeDateCACert.crt", |
| 4067 | "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCACert.crt", |
| 4068 | "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCRLCert.crt", |
| 4069 | "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyCACert.crt", |
| 4070 | "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyOldWithNewCACert.crt", |
| 4071 | "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyCACert.crt", |
| 4072 | "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyNewWithOldCACert.crt", |
| 4073 | "third_party/nist-pkits/certs/CPSPointerQualifierTest20EE.crt", |
| 4074 | "third_party/nist-pkits/certs/DSACACert.crt", |
| 4075 | "third_party/nist-pkits/certs/DSAParametersInheritedCACert.crt", |
| 4076 | "third_party/nist-pkits/certs/DifferentPoliciesTest12EE.crt", |
| 4077 | "third_party/nist-pkits/certs/DifferentPoliciesTest3EE.crt", |
| 4078 | "third_party/nist-pkits/certs/DifferentPoliciesTest4EE.crt", |
| 4079 | "third_party/nist-pkits/certs/DifferentPoliciesTest5EE.crt", |
| 4080 | "third_party/nist-pkits/certs/DifferentPoliciesTest7EE.crt", |
| 4081 | "third_party/nist-pkits/certs/DifferentPoliciesTest8EE.crt", |
| 4082 | "third_party/nist-pkits/certs/DifferentPoliciesTest9EE.crt", |
| 4083 | "third_party/nist-pkits/certs/GeneralizedTimeCRLnextUpdateCACert.crt", |
| 4084 | "third_party/nist-pkits/certs/GoodCACert.crt", |
| 4085 | "third_party/nist-pkits/certs/GoodsubCACert.crt", |
| 4086 | "third_party/nist-pkits/certs/GoodsubCAPanyPolicyMapping1to2CACert.crt", |
| 4087 | "third_party/nist-pkits/certs/InvalidBadCRLIssuerNameTest5EE.crt", |
| 4088 | "third_party/nist-pkits/certs/InvalidBadCRLSignatureTest4EE.crt", |
| 4089 | "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest7EE.crt", |
| 4090 | "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest8EE.crt", |
| 4091 | "third_party/nist-pkits/certs/InvalidBasicSelfIssuedNewWithOldTest5EE.crt", |
| 4092 | "third_party/nist-pkits/certs/InvalidBasicSelfIssuedOldWithNewTest2EE.crt", |
| 4093 | "third_party/nist-pkits/certs/InvalidCASignatureTest2EE.crt", |
| 4094 | "third_party/nist-pkits/certs/InvalidCAnotAfterDateTest5EE.crt", |
| 4095 | "third_party/nist-pkits/certs/InvalidCAnotBeforeDateTest1EE.crt", |
| 4096 | "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest31EE.crt", |
| 4097 | "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest33EE.crt", |
| 4098 | "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest38EE.crt", |
| 4099 | "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest28EE.crt", |
| 4100 | "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest29EE.crt", |
| 4101 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest10EE.crt", |
| 4102 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest12EE.crt", |
| 4103 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest13EE.crt", |
| 4104 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest15EE.crt", |
| 4105 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest16EE.crt", |
| 4106 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest17EE.crt", |
| 4107 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest20EE.crt", |
| 4108 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest2EE.crt", |
| 4109 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest3EE.crt", |
| 4110 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest7EE.crt", |
| 4111 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest8EE.crt", |
| 4112 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest9EE.crt", |
| 4113 | "third_party/nist-pkits/certs/InvalidDSASignatureTest6EE.crt", |
| 4114 | "third_party/nist-pkits/certs/InvalidEESignatureTest3EE.crt", |
| 4115 | "third_party/nist-pkits/certs/InvalidEEnotAfterDateTest6EE.crt", |
| 4116 | "third_party/nist-pkits/certs/InvalidEEnotBeforeDateTest2EE.crt", |
| 4117 | "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest23EE.crt", |
| 4118 | "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest26EE.crt", |
| 4119 | "third_party/nist-pkits/certs/InvalidLongSerialNumberTest18EE.crt", |
| 4120 | "third_party/nist-pkits/certs/InvalidMappingFromanyPolicyTest7EE.crt", |
| 4121 | "third_party/nist-pkits/certs/InvalidMappingToanyPolicyTest8EE.crt", |
| 4122 | "third_party/nist-pkits/certs/InvalidMissingCRLTest1EE.crt", |
| 4123 | "third_party/nist-pkits/certs/InvalidMissingbasicConstraintsTest1EE.crt", |
| 4124 | "third_party/nist-pkits/certs/InvalidNameChainingOrderTest2EE.crt", |
| 4125 | "third_party/nist-pkits/certs/InvalidNameChainingTest1EE.crt", |
| 4126 | "third_party/nist-pkits/certs/InvalidNegativeSerialNumberTest15EE.crt", |
| 4127 | "third_party/nist-pkits/certs/InvalidOldCRLnextUpdateTest11EE.crt", |
| 4128 | "third_party/nist-pkits/certs/InvalidPolicyMappingTest10EE.crt", |
| 4129 | "third_party/nist-pkits/certs/InvalidPolicyMappingTest2EE.crt", |
| 4130 | "third_party/nist-pkits/certs/InvalidPolicyMappingTest4EE.crt", |
| 4131 | "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest22EE.crt", |
| 4132 | "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest24EE.crt", |
| 4133 | "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest26EE.crt", |
| 4134 | "third_party/nist-pkits/certs/InvalidRevokedCATest2EE.crt", |
| 4135 | "third_party/nist-pkits/certs/InvalidRevokedEETest3EE.crt", |
| 4136 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest10EE.crt", |
| 4137 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest8EE.crt", |
| 4138 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest10EE.crt", |
| 4139 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest11EE.crt", |
| 4140 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest8EE.crt", |
| 4141 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest9EE.crt", |
| 4142 | "third_party/nist-pkits/certs/InvalidSelfIssuedpathLenConstraintTest16EE.crt", |
| 4143 | "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest7EE.crt", |
| 4144 | "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest8EE.crt", |
| 4145 | "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest20EE.crt", |
| 4146 | "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest21EE.crt", |
| 4147 | "third_party/nist-pkits/certs/InvalidURInameConstraintsTest35EE.crt", |
| 4148 | "third_party/nist-pkits/certs/InvalidURInameConstraintsTest37EE.crt", |
| 4149 | "third_party/nist-pkits/certs/InvalidUnknownCRLEntryExtensionTest8EE.crt", |
| 4150 | "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest10EE.crt", |
| 4151 | "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest9EE.crt", |
| 4152 | "third_party/nist-pkits/certs/InvalidUnknownCriticalCertificateExtensionTest2EE.crt", |
| 4153 | "third_party/nist-pkits/certs/InvalidWrongCRLTest6EE.crt", |
| 4154 | "third_party/nist-pkits/certs/InvalidcAFalseTest2EE.crt", |
| 4155 | "third_party/nist-pkits/certs/InvalidcAFalseTest3EE.crt", |
| 4156 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest27EE.crt", |
| 4157 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest31EE.crt", |
| 4158 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest32EE.crt", |
| 4159 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest34EE.crt", |
| 4160 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest35EE.crt", |
| 4161 | "third_party/nist-pkits/certs/InvaliddeltaCRLIndicatorNoBaseTest1EE.crt", |
| 4162 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest10EE.crt", |
| 4163 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest3EE.crt", |
| 4164 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest4EE.crt", |
| 4165 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest6EE.crt", |
| 4166 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest9EE.crt", |
| 4167 | "third_party/nist-pkits/certs/InvaliddistributionPointTest2EE.crt", |
| 4168 | "third_party/nist-pkits/certs/InvaliddistributionPointTest3EE.crt", |
| 4169 | "third_party/nist-pkits/certs/InvaliddistributionPointTest6EE.crt", |
| 4170 | "third_party/nist-pkits/certs/InvaliddistributionPointTest8EE.crt", |
| 4171 | "third_party/nist-pkits/certs/InvaliddistributionPointTest9EE.crt", |
| 4172 | "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest1EE.crt", |
| 4173 | "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest4EE.crt", |
| 4174 | "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest5EE.crt", |
| 4175 | "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest6EE.crt", |
| 4176 | "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest1EE.crt", |
| 4177 | "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest3EE.crt", |
| 4178 | "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest5EE.crt", |
| 4179 | "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest6EE.crt", |
| 4180 | "third_party/nist-pkits/certs/InvalidkeyUsageCriticalcRLSignFalseTest4EE.crt", |
| 4181 | "third_party/nist-pkits/certs/InvalidkeyUsageCriticalkeyCertSignFalseTest1EE.crt", |
| 4182 | "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalcRLSignFalseTest5EE.crt", |
| 4183 | "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalkeyCertSignFalseTest2EE.crt", |
| 4184 | "third_party/nist-pkits/certs/InvalidonlyContainsAttributeCertsTest14EE.crt", |
| 4185 | "third_party/nist-pkits/certs/InvalidonlyContainsCACertsTest12EE.crt", |
| 4186 | "third_party/nist-pkits/certs/InvalidonlyContainsUserCertsTest11EE.crt", |
| 4187 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest15EE.crt", |
| 4188 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest16EE.crt", |
| 4189 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest17EE.crt", |
| 4190 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest20EE.crt", |
| 4191 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest21EE.crt", |
| 4192 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest10EE.crt", |
| 4193 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest11EE.crt", |
| 4194 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest12EE.crt", |
| 4195 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest5EE.crt", |
| 4196 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest6EE.crt", |
| 4197 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest9EE.crt", |
| 4198 | "third_party/nist-pkits/certs/Invalidpre2000CRLnextUpdateTest12EE.crt", |
| 4199 | "third_party/nist-pkits/certs/Invalidpre2000UTCEEnotAfterDateTest7EE.crt", |
| 4200 | "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest3EE.crt", |
| 4201 | "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest5EE.crt", |
| 4202 | "third_party/nist-pkits/certs/LongSerialNumberCACert.crt", |
| 4203 | "third_party/nist-pkits/certs/Mapping1to2CACert.crt", |
| 4204 | "third_party/nist-pkits/certs/MappingFromanyPolicyCACert.crt", |
| 4205 | "third_party/nist-pkits/certs/MappingToanyPolicyCACert.crt", |
| 4206 | "third_party/nist-pkits/certs/MissingbasicConstraintsCACert.crt", |
| 4207 | "third_party/nist-pkits/certs/NameOrderingCACert.crt", |
| 4208 | "third_party/nist-pkits/certs/NegativeSerialNumberCACert.crt", |
| 4209 | "third_party/nist-pkits/certs/NoCRLCACert.crt", |
| 4210 | "third_party/nist-pkits/certs/NoPoliciesCACert.crt", |
| 4211 | "third_party/nist-pkits/certs/NoissuingDistributionPointCACert.crt", |
| 4212 | "third_party/nist-pkits/certs/OldCRLnextUpdateCACert.crt", |
| 4213 | "third_party/nist-pkits/certs/OverlappingPoliciesTest6EE.crt", |
| 4214 | "third_party/nist-pkits/certs/P12Mapping1to3CACert.crt", |
| 4215 | "third_party/nist-pkits/certs/P12Mapping1to3subCACert.crt", |
| 4216 | "third_party/nist-pkits/certs/P12Mapping1to3subsubCACert.crt", |
| 4217 | "third_party/nist-pkits/certs/P1Mapping1to234CACert.crt", |
| 4218 | "third_party/nist-pkits/certs/P1Mapping1to234subCACert.crt", |
| 4219 | "third_party/nist-pkits/certs/P1anyPolicyMapping1to2CACert.crt", |
| 4220 | "third_party/nist-pkits/certs/PanyPolicyMapping1to2CACert.crt", |
| 4221 | "third_party/nist-pkits/certs/PoliciesP1234CACert.crt", |
| 4222 | "third_party/nist-pkits/certs/PoliciesP1234subCAP123Cert.crt", |
| 4223 | "third_party/nist-pkits/certs/PoliciesP1234subsubCAP123P12Cert.crt", |
| 4224 | "third_party/nist-pkits/certs/PoliciesP123CACert.crt", |
| 4225 | "third_party/nist-pkits/certs/PoliciesP123subCAP12Cert.crt", |
| 4226 | "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P1Cert.crt", |
| 4227 | "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P2Cert.crt", |
| 4228 | "third_party/nist-pkits/certs/PoliciesP123subsubsubCAP12P2P1Cert.crt", |
| 4229 | "third_party/nist-pkits/certs/PoliciesP12CACert.crt", |
| 4230 | "third_party/nist-pkits/certs/PoliciesP12subCAP1Cert.crt", |
| 4231 | "third_party/nist-pkits/certs/PoliciesP12subsubCAP1P2Cert.crt", |
| 4232 | "third_party/nist-pkits/certs/PoliciesP2subCA2Cert.crt", |
| 4233 | "third_party/nist-pkits/certs/PoliciesP2subCACert.crt", |
| 4234 | "third_party/nist-pkits/certs/PoliciesP3CACert.crt", |
| 4235 | "third_party/nist-pkits/certs/RFC3280MandatoryAttributeTypesCACert.crt", |
| 4236 | "third_party/nist-pkits/certs/RFC3280OptionalAttributeTypesCACert.crt", |
| 4237 | "third_party/nist-pkits/certs/RevokedsubCACert.crt", |
| 4238 | "third_party/nist-pkits/certs/RolloverfromPrintableStringtoUTF8StringCACert.crt", |
| 4239 | "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CRLSigningCert.crt", |
| 4240 | "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CertificateSigningCACert.crt", |
| 4241 | "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCRLSigningCert.crt", |
| 4242 | "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCertificateSigningCACert.crt", |
| 4243 | "third_party/nist-pkits/certs/TrustAnchorRootCertificate.crt", |
| 4244 | "third_party/nist-pkits/certs/TwoCRLsCACert.crt", |
| 4245 | "third_party/nist-pkits/certs/UIDCACert.crt", |
| 4246 | "third_party/nist-pkits/certs/UTF8StringCaseInsensitiveMatchCACert.crt", |
| 4247 | "third_party/nist-pkits/certs/UTF8StringEncodedNamesCACert.crt", |
| 4248 | "third_party/nist-pkits/certs/UnknownCRLEntryExtensionCACert.crt", |
| 4249 | "third_party/nist-pkits/certs/UnknownCRLExtensionCACert.crt", |
| 4250 | "third_party/nist-pkits/certs/UserNoticeQualifierTest15EE.crt", |
| 4251 | "third_party/nist-pkits/certs/UserNoticeQualifierTest16EE.crt", |
| 4252 | "third_party/nist-pkits/certs/UserNoticeQualifierTest17EE.crt", |
| 4253 | "third_party/nist-pkits/certs/UserNoticeQualifierTest18EE.crt", |
| 4254 | "third_party/nist-pkits/certs/UserNoticeQualifierTest19EE.crt", |
| 4255 | "third_party/nist-pkits/certs/ValidBasicSelfIssuedCRLSigningKeyTest6EE.crt", |
| 4256 | "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest3EE.crt", |
| 4257 | "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest4EE.crt", |
| 4258 | "third_party/nist-pkits/certs/ValidBasicSelfIssuedOldWithNewTest1EE.crt", |
| 4259 | "third_party/nist-pkits/certs/ValidCertificatePathTest1EE.crt", |
| 4260 | "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest30EE.crt", |
| 4261 | "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest32EE.crt", |
| 4262 | "third_party/nist-pkits/certs/ValidDNandRFC822nameConstraintsTest27EE.crt", |
| 4263 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest11EE.crt", |
| 4264 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest14EE.crt", |
| 4265 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest18EE.crt", |
| 4266 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest19EE.crt", |
| 4267 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest1EE.crt", |
| 4268 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest4EE.crt", |
| 4269 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest5EE.crt", |
| 4270 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest6EE.crt", |
| 4271 | "third_party/nist-pkits/certs/ValidDSAParameterInheritanceTest5EE.crt", |
| 4272 | "third_party/nist-pkits/certs/ValidDSASignaturesTest4EE.crt", |
| 4273 | "third_party/nist-pkits/certs/ValidGeneralizedTimeCRLnextUpdateTest13EE.crt", |
| 4274 | "third_party/nist-pkits/certs/ValidGeneralizedTimenotAfterDateTest8EE.crt", |
| 4275 | "third_party/nist-pkits/certs/ValidGeneralizedTimenotBeforeDateTest4EE.crt", |
| 4276 | "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest22EE.crt", |
| 4277 | "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest24EE.crt", |
| 4278 | "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest25EE.crt", |
| 4279 | "third_party/nist-pkits/certs/ValidLongSerialNumberTest16EE.crt", |
| 4280 | "third_party/nist-pkits/certs/ValidLongSerialNumberTest17EE.crt", |
| 4281 | "third_party/nist-pkits/certs/ValidNameChainingCapitalizationTest5EE.crt", |
| 4282 | "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest3EE.crt", |
| 4283 | "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest4EE.crt", |
| 4284 | "third_party/nist-pkits/certs/ValidNameUIDsTest6EE.crt", |
| 4285 | "third_party/nist-pkits/certs/ValidNegativeSerialNumberTest14EE.crt", |
| 4286 | "third_party/nist-pkits/certs/ValidNoissuingDistributionPointTest10EE.crt", |
| 4287 | "third_party/nist-pkits/certs/ValidPolicyMappingTest11EE.crt", |
| 4288 | "third_party/nist-pkits/certs/ValidPolicyMappingTest12EE.crt", |
| 4289 | "third_party/nist-pkits/certs/ValidPolicyMappingTest13EE.crt", |
| 4290 | "third_party/nist-pkits/certs/ValidPolicyMappingTest14EE.crt", |
| 4291 | "third_party/nist-pkits/certs/ValidPolicyMappingTest1EE.crt", |
| 4292 | "third_party/nist-pkits/certs/ValidPolicyMappingTest3EE.crt", |
| 4293 | "third_party/nist-pkits/certs/ValidPolicyMappingTest5EE.crt", |
| 4294 | "third_party/nist-pkits/certs/ValidPolicyMappingTest6EE.crt", |
| 4295 | "third_party/nist-pkits/certs/ValidPolicyMappingTest9EE.crt", |
| 4296 | "third_party/nist-pkits/certs/ValidRFC3280MandatoryAttributeTypesTest7EE.crt", |
| 4297 | "third_party/nist-pkits/certs/ValidRFC3280OptionalAttributeTypesTest8EE.crt", |
| 4298 | "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest21EE.crt", |
| 4299 | "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest23EE.crt", |
| 4300 | "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest25EE.crt", |
| 4301 | "third_party/nist-pkits/certs/ValidRolloverfromPrintableStringtoUTF8StringTest10EE.crt", |
| 4302 | "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest7EE.crt", |
| 4303 | "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest9EE.crt", |
| 4304 | "third_party/nist-pkits/certs/ValidSelfIssuedinhibitPolicyMappingTest7EE.crt", |
| 4305 | "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest15EE.crt", |
| 4306 | "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest17EE.crt", |
| 4307 | "third_party/nist-pkits/certs/ValidSelfIssuedrequireExplicitPolicyTest6EE.crt", |
| 4308 | "third_party/nist-pkits/certs/ValidSeparateCertificateandCRLKeysTest19EE.crt", |
| 4309 | "third_party/nist-pkits/certs/ValidTwoCRLsTest7EE.crt", |
| 4310 | "third_party/nist-pkits/certs/ValidURInameConstraintsTest34EE.crt", |
| 4311 | "third_party/nist-pkits/certs/ValidURInameConstraintsTest36EE.crt", |
| 4312 | "third_party/nist-pkits/certs/ValidUTF8StringCaseInsensitiveMatchTest11EE.crt", |
| 4313 | "third_party/nist-pkits/certs/ValidUTF8StringEncodedNamesTest9EE.crt", |
| 4314 | "third_party/nist-pkits/certs/ValidUnknownNotCriticalCertificateExtensionTest1EE.crt", |
| 4315 | "third_party/nist-pkits/certs/ValidbasicConstraintsNotCriticalTest4EE.crt", |
| 4316 | "third_party/nist-pkits/certs/ValidcRLIssuerTest28EE.crt", |
| 4317 | "third_party/nist-pkits/certs/ValidcRLIssuerTest29EE.crt", |
| 4318 | "third_party/nist-pkits/certs/ValidcRLIssuerTest30EE.crt", |
| 4319 | "third_party/nist-pkits/certs/ValidcRLIssuerTest33EE.crt", |
| 4320 | "third_party/nist-pkits/certs/ValiddeltaCRLTest2EE.crt", |
| 4321 | "third_party/nist-pkits/certs/ValiddeltaCRLTest5EE.crt", |
| 4322 | "third_party/nist-pkits/certs/ValiddeltaCRLTest7EE.crt", |
| 4323 | "third_party/nist-pkits/certs/ValiddeltaCRLTest8EE.crt", |
| 4324 | "third_party/nist-pkits/certs/ValiddistributionPointTest1EE.crt", |
| 4325 | "third_party/nist-pkits/certs/ValiddistributionPointTest4EE.crt", |
| 4326 | "third_party/nist-pkits/certs/ValiddistributionPointTest5EE.crt", |
| 4327 | "third_party/nist-pkits/certs/ValiddistributionPointTest7EE.crt", |
| 4328 | "third_party/nist-pkits/certs/ValidinhibitAnyPolicyTest2EE.crt", |
| 4329 | "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest2EE.crt", |
| 4330 | "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest4EE.crt", |
| 4331 | "third_party/nist-pkits/certs/ValidkeyUsageNotCriticalTest3EE.crt", |
| 4332 | "third_party/nist-pkits/certs/ValidonlyContainsCACertsTest13EE.crt", |
| 4333 | "third_party/nist-pkits/certs/ValidonlySomeReasonsTest18EE.crt", |
| 4334 | "third_party/nist-pkits/certs/ValidonlySomeReasonsTest19EE.crt", |
| 4335 | "third_party/nist-pkits/certs/ValidpathLenConstraintTest13EE.crt", |
| 4336 | "third_party/nist-pkits/certs/ValidpathLenConstraintTest14EE.crt", |
| 4337 | "third_party/nist-pkits/certs/ValidpathLenConstraintTest7EE.crt", |
| 4338 | "third_party/nist-pkits/certs/ValidpathLenConstraintTest8EE.crt", |
| 4339 | "third_party/nist-pkits/certs/Validpre2000UTCnotBeforeDateTest3EE.crt", |
| 4340 | "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest1EE.crt", |
| 4341 | "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest2EE.crt", |
| 4342 | "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest4EE.crt", |
| 4343 | "third_party/nist-pkits/certs/WrongCRLCACert.crt", |
| 4344 | "third_party/nist-pkits/certs/anyPolicyCACert.crt", |
| 4345 | "third_party/nist-pkits/certs/basicConstraintsCriticalcAFalseCACert.crt", |
| 4346 | "third_party/nist-pkits/certs/basicConstraintsNotCriticalCACert.crt", |
| 4347 | "third_party/nist-pkits/certs/basicConstraintsNotCriticalcAFalseCACert.crt", |
| 4348 | "third_party/nist-pkits/certs/deltaCRLCA1Cert.crt", |
| 4349 | "third_party/nist-pkits/certs/deltaCRLCA2Cert.crt", |
| 4350 | "third_party/nist-pkits/certs/deltaCRLCA3Cert.crt", |
| 4351 | "third_party/nist-pkits/certs/deltaCRLIndicatorNoBaseCACert.crt", |
| 4352 | "third_party/nist-pkits/certs/distributionPoint1CACert.crt", |
| 4353 | "third_party/nist-pkits/certs/distributionPoint2CACert.crt", |
| 4354 | "third_party/nist-pkits/certs/indirectCRLCA1Cert.crt", |
| 4355 | "third_party/nist-pkits/certs/indirectCRLCA2Cert.crt", |
| 4356 | "third_party/nist-pkits/certs/indirectCRLCA3Cert.crt", |
| 4357 | "third_party/nist-pkits/certs/indirectCRLCA3cRLIssuerCert.crt", |
| 4358 | "third_party/nist-pkits/certs/indirectCRLCA4Cert.crt", |
| 4359 | "third_party/nist-pkits/certs/indirectCRLCA4cRLIssuerCert.crt", |
| 4360 | "third_party/nist-pkits/certs/indirectCRLCA5Cert.crt", |
| 4361 | "third_party/nist-pkits/certs/indirectCRLCA6Cert.crt", |
| 4362 | "third_party/nist-pkits/certs/inhibitAnyPolicy0CACert.crt", |
| 4363 | "third_party/nist-pkits/certs/inhibitAnyPolicy1CACert.crt", |
| 4364 | "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedCACert.crt", |
| 4365 | "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedsubCA2Cert.crt", |
| 4366 | "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA1Cert.crt", |
| 4367 | "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA2Cert.crt", |
| 4368 | "third_party/nist-pkits/certs/inhibitAnyPolicy1subCAIAP5Cert.crt", |
| 4369 | "third_party/nist-pkits/certs/inhibitAnyPolicy1subsubCA2Cert.crt", |
| 4370 | "third_party/nist-pkits/certs/inhibitAnyPolicy5CACert.crt", |
| 4371 | "third_party/nist-pkits/certs/inhibitAnyPolicy5subCACert.crt", |
| 4372 | "third_party/nist-pkits/certs/inhibitAnyPolicy5subsubCACert.crt", |
| 4373 | "third_party/nist-pkits/certs/inhibitAnyPolicyTest3EE.crt", |
| 4374 | "third_party/nist-pkits/certs/inhibitPolicyMapping0CACert.crt", |
| 4375 | "third_party/nist-pkits/certs/inhibitPolicyMapping0subCACert.crt", |
| 4376 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12CACert.crt", |
| 4377 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCACert.crt", |
| 4378 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCAIPM5Cert.crt", |
| 4379 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCACert.crt", |
| 4380 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCAIPM5Cert.crt", |
| 4381 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1CACert.crt", |
| 4382 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedCACert.crt", |
| 4383 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedsubCACert.crt", |
| 4384 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subCACert.crt", |
| 4385 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subsubCACert.crt", |
| 4386 | "third_party/nist-pkits/certs/inhibitPolicyMapping5CACert.crt", |
| 4387 | "third_party/nist-pkits/certs/inhibitPolicyMapping5subCACert.crt", |
| 4388 | "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubCACert.crt", |
| 4389 | "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubsubCACert.crt", |
| 4390 | "third_party/nist-pkits/certs/keyUsageCriticalcRLSignFalseCACert.crt", |
| 4391 | "third_party/nist-pkits/certs/keyUsageCriticalkeyCertSignFalseCACert.crt", |
| 4392 | "third_party/nist-pkits/certs/keyUsageNotCriticalCACert.crt", |
| 4393 | "third_party/nist-pkits/certs/keyUsageNotCriticalcRLSignFalseCACert.crt", |
| 4394 | "third_party/nist-pkits/certs/keyUsageNotCriticalkeyCertSignFalseCACert.crt", |
| 4395 | "third_party/nist-pkits/certs/nameConstraintsDN1CACert.crt", |
| 4396 | "third_party/nist-pkits/certs/nameConstraintsDN1SelfIssuedCACert.crt", |
| 4397 | "third_party/nist-pkits/certs/nameConstraintsDN1subCA1Cert.crt", |
| 4398 | "third_party/nist-pkits/certs/nameConstraintsDN1subCA2Cert.crt", |
| 4399 | "third_party/nist-pkits/certs/nameConstraintsDN1subCA3Cert.crt", |
| 4400 | "third_party/nist-pkits/certs/nameConstraintsDN2CACert.crt", |
| 4401 | "third_party/nist-pkits/certs/nameConstraintsDN3CACert.crt", |
| 4402 | "third_party/nist-pkits/certs/nameConstraintsDN3subCA1Cert.crt", |
| 4403 | "third_party/nist-pkits/certs/nameConstraintsDN3subCA2Cert.crt", |
| 4404 | "third_party/nist-pkits/certs/nameConstraintsDN4CACert.crt", |
| 4405 | "third_party/nist-pkits/certs/nameConstraintsDN5CACert.crt", |
| 4406 | "third_party/nist-pkits/certs/nameConstraintsDNS1CACert.crt", |
| 4407 | "third_party/nist-pkits/certs/nameConstraintsDNS2CACert.crt", |
| 4408 | "third_party/nist-pkits/certs/nameConstraintsRFC822CA1Cert.crt", |
| 4409 | "third_party/nist-pkits/certs/nameConstraintsRFC822CA2Cert.crt", |
| 4410 | "third_party/nist-pkits/certs/nameConstraintsRFC822CA3Cert.crt", |
| 4411 | "third_party/nist-pkits/certs/nameConstraintsURI1CACert.crt", |
| 4412 | "third_party/nist-pkits/certs/nameConstraintsURI2CACert.crt", |
| 4413 | "third_party/nist-pkits/certs/onlyContainsAttributeCertsCACert.crt", |
| 4414 | "third_party/nist-pkits/certs/onlyContainsCACertsCACert.crt", |
| 4415 | "third_party/nist-pkits/certs/onlyContainsUserCertsCACert.crt", |
| 4416 | "third_party/nist-pkits/certs/onlySomeReasonsCA1Cert.crt", |
| 4417 | "third_party/nist-pkits/certs/onlySomeReasonsCA2Cert.crt", |
| 4418 | "third_party/nist-pkits/certs/onlySomeReasonsCA3Cert.crt", |
| 4419 | "third_party/nist-pkits/certs/onlySomeReasonsCA4Cert.crt", |
| 4420 | "third_party/nist-pkits/certs/pathLenConstraint0CACert.crt", |
| 4421 | "third_party/nist-pkits/certs/pathLenConstraint0SelfIssuedCACert.crt", |
| 4422 | "third_party/nist-pkits/certs/pathLenConstraint0subCA2Cert.crt", |
| 4423 | "third_party/nist-pkits/certs/pathLenConstraint0subCACert.crt", |
| 4424 | "third_party/nist-pkits/certs/pathLenConstraint1CACert.crt", |
| 4425 | "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedCACert.crt", |
| 4426 | "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedsubCACert.crt", |
| 4427 | "third_party/nist-pkits/certs/pathLenConstraint1subCACert.crt", |
| 4428 | "third_party/nist-pkits/certs/pathLenConstraint6CACert.crt", |
| 4429 | "third_party/nist-pkits/certs/pathLenConstraint6subCA0Cert.crt", |
| 4430 | "third_party/nist-pkits/certs/pathLenConstraint6subCA1Cert.crt", |
| 4431 | "third_party/nist-pkits/certs/pathLenConstraint6subCA4Cert.crt", |
| 4432 | "third_party/nist-pkits/certs/pathLenConstraint6subsubCA00Cert.crt", |
| 4433 | "third_party/nist-pkits/certs/pathLenConstraint6subsubCA11Cert.crt", |
| 4434 | "third_party/nist-pkits/certs/pathLenConstraint6subsubCA41Cert.crt", |
| 4435 | "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA11XCert.crt", |
| 4436 | "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA41XCert.crt", |
| 4437 | "third_party/nist-pkits/certs/pre2000CRLnextUpdateCACert.crt", |
| 4438 | "third_party/nist-pkits/certs/requireExplicitPolicy0CACert.crt", |
| 4439 | "third_party/nist-pkits/certs/requireExplicitPolicy0subCACert.crt", |
| 4440 | "third_party/nist-pkits/certs/requireExplicitPolicy0subsubCACert.crt", |
| 4441 | "third_party/nist-pkits/certs/requireExplicitPolicy0subsubsubCACert.crt", |
| 4442 | "third_party/nist-pkits/certs/requireExplicitPolicy10CACert.crt", |
| 4443 | "third_party/nist-pkits/certs/requireExplicitPolicy10subCACert.crt", |
| 4444 | "third_party/nist-pkits/certs/requireExplicitPolicy10subsubCACert.crt", |
| 4445 | "third_party/nist-pkits/certs/requireExplicitPolicy10subsubsubCACert.crt", |
| 4446 | "third_party/nist-pkits/certs/requireExplicitPolicy2CACert.crt", |
| 4447 | "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedCACert.crt", |
| 4448 | "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedsubCACert.crt", |
| 4449 | "third_party/nist-pkits/certs/requireExplicitPolicy2subCACert.crt", |
| 4450 | "third_party/nist-pkits/certs/requireExplicitPolicy4CACert.crt", |
| 4451 | "third_party/nist-pkits/certs/requireExplicitPolicy4subCACert.crt", |
| 4452 | "third_party/nist-pkits/certs/requireExplicitPolicy4subsubCACert.crt", |
| 4453 | "third_party/nist-pkits/certs/requireExplicitPolicy4subsubsubCACert.crt", |
| 4454 | "third_party/nist-pkits/certs/requireExplicitPolicy5CACert.crt", |
| 4455 | "third_party/nist-pkits/certs/requireExplicitPolicy5subCACert.crt", |
| 4456 | "third_party/nist-pkits/certs/requireExplicitPolicy5subsubCACert.crt", |
| 4457 | "third_party/nist-pkits/certs/requireExplicitPolicy5subsubsubCACert.crt", |
| 4458 | "third_party/nist-pkits/certs/requireExplicitPolicy7CACert.crt", |
| 4459 | "third_party/nist-pkits/certs/requireExplicitPolicy7subCARE2Cert.crt", |
| 4460 | "third_party/nist-pkits/certs/requireExplicitPolicy7subsubCARE2RE4Cert.crt", |
| 4461 | "third_party/nist-pkits/certs/requireExplicitPolicy7subsubsubCARE2RE4Cert.crt", |
| 4462 | "third_party/nist-pkits/crls/BadCRLIssuerNameCACRL.crl", |
| 4463 | "third_party/nist-pkits/crls/BadCRLSignatureCACRL.crl", |
| 4464 | "third_party/nist-pkits/crls/BadSignedCACRL.crl", |
| 4465 | "third_party/nist-pkits/crls/BadnotAfterDateCACRL.crl", |
| 4466 | "third_party/nist-pkits/crls/BadnotBeforeDateCACRL.crl", |
| 4467 | "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCACRL.crl", |
| 4468 | "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCRLCertCRL.crl", |
| 4469 | "third_party/nist-pkits/crls/BasicSelfIssuedNewKeyCACRL.crl", |
| 4470 | "third_party/nist-pkits/crls/BasicSelfIssuedOldKeyCACRL.crl", |
| 4471 | "third_party/nist-pkits/crls/BasicSelfIssuedOldKeySelfIssuedCertCRL.crl", |
| 4472 | "third_party/nist-pkits/crls/DSACACRL.crl", |
| 4473 | "third_party/nist-pkits/crls/DSAParametersInheritedCACRL.crl", |
| 4474 | "third_party/nist-pkits/crls/GeneralizedTimeCRLnextUpdateCACRL.crl", |
| 4475 | "third_party/nist-pkits/crls/GoodCACRL.crl", |
| 4476 | "third_party/nist-pkits/crls/GoodsubCACRL.crl", |
| 4477 | "third_party/nist-pkits/crls/GoodsubCAPanyPolicyMapping1to2CACRL.crl", |
| 4478 | "third_party/nist-pkits/crls/LongSerialNumberCACRL.crl", |
| 4479 | "third_party/nist-pkits/crls/Mapping1to2CACRL.crl", |
| 4480 | "third_party/nist-pkits/crls/MappingFromanyPolicyCACRL.crl", |
| 4481 | "third_party/nist-pkits/crls/MappingToanyPolicyCACRL.crl", |
| 4482 | "third_party/nist-pkits/crls/MissingbasicConstraintsCACRL.crl", |
| 4483 | "third_party/nist-pkits/crls/NameOrderCACRL.crl", |
| 4484 | "third_party/nist-pkits/crls/NegativeSerialNumberCACRL.crl", |
| 4485 | "third_party/nist-pkits/crls/NoPoliciesCACRL.crl", |
| 4486 | "third_party/nist-pkits/crls/NoissuingDistributionPointCACRL.crl", |
| 4487 | "third_party/nist-pkits/crls/OldCRLnextUpdateCACRL.crl", |
| 4488 | "third_party/nist-pkits/crls/P12Mapping1to3CACRL.crl", |
| 4489 | "third_party/nist-pkits/crls/P12Mapping1to3subCACRL.crl", |
| 4490 | "third_party/nist-pkits/crls/P12Mapping1to3subsubCACRL.crl", |
| 4491 | "third_party/nist-pkits/crls/P1Mapping1to234CACRL.crl", |
| 4492 | "third_party/nist-pkits/crls/P1Mapping1to234subCACRL.crl", |
| 4493 | "third_party/nist-pkits/crls/P1anyPolicyMapping1to2CACRL.crl", |
| 4494 | "third_party/nist-pkits/crls/PanyPolicyMapping1to2CACRL.crl", |
| 4495 | "third_party/nist-pkits/crls/PoliciesP1234CACRL.crl", |
| 4496 | "third_party/nist-pkits/crls/PoliciesP1234subCAP123CRL.crl", |
| 4497 | "third_party/nist-pkits/crls/PoliciesP1234subsubCAP123P12CRL.crl", |
| 4498 | "third_party/nist-pkits/crls/PoliciesP123CACRL.crl", |
| 4499 | "third_party/nist-pkits/crls/PoliciesP123subCAP12CRL.crl", |
| 4500 | "third_party/nist-pkits/crls/PoliciesP123subsubCAP12P1CRL.crl", |
| 4501 | "third_party/nist-pkits/crls/PoliciesP123subsubCAP2P2CRL.crl", |
| 4502 | "third_party/nist-pkits/crls/PoliciesP123subsubsubCAP12P2P1CRL.crl", |
| 4503 | "third_party/nist-pkits/crls/PoliciesP12CACRL.crl", |
| 4504 | "third_party/nist-pkits/crls/PoliciesP12subCAP1CRL.crl", |
| 4505 | "third_party/nist-pkits/crls/PoliciesP12subsubCAP1P2CRL.crl", |
| 4506 | "third_party/nist-pkits/crls/PoliciesP2subCA2CRL.crl", |
| 4507 | "third_party/nist-pkits/crls/PoliciesP2subCACRL.crl", |
| 4508 | "third_party/nist-pkits/crls/PoliciesP3CACRL.crl", |
| 4509 | "third_party/nist-pkits/crls/RFC3280MandatoryAttributeTypesCACRL.crl", |
| 4510 | "third_party/nist-pkits/crls/RFC3280OptionalAttributeTypesCACRL.crl", |
| 4511 | "third_party/nist-pkits/crls/RevokedsubCACRL.crl", |
| 4512 | "third_party/nist-pkits/crls/RolloverfromPrintableStringtoUTF8StringCACRL.crl", |
| 4513 | "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCA2CRL.crl", |
| 4514 | "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCRL.crl", |
| 4515 | "third_party/nist-pkits/crls/TrustAnchorRootCRL.crl", |
| 4516 | "third_party/nist-pkits/crls/TwoCRLsCABadCRL.crl", |
| 4517 | "third_party/nist-pkits/crls/TwoCRLsCAGoodCRL.crl", |
| 4518 | "third_party/nist-pkits/crls/UIDCACRL.crl", |
| 4519 | "third_party/nist-pkits/crls/UTF8StringCaseInsensitiveMatchCACRL.crl", |
| 4520 | "third_party/nist-pkits/crls/UTF8StringEncodedNamesCACRL.crl", |
| 4521 | "third_party/nist-pkits/crls/UnknownCRLEntryExtensionCACRL.crl", |
| 4522 | "third_party/nist-pkits/crls/UnknownCRLExtensionCACRL.crl", |
| 4523 | "third_party/nist-pkits/crls/WrongCRLCACRL.crl", |
| 4524 | "third_party/nist-pkits/crls/anyPolicyCACRL.crl", |
| 4525 | "third_party/nist-pkits/crls/basicConstraintsCriticalcAFalseCACRL.crl", |
| 4526 | "third_party/nist-pkits/crls/basicConstraintsNotCriticalCACRL.crl", |
| 4527 | "third_party/nist-pkits/crls/basicConstraintsNotCriticalcAFalseCACRL.crl", |
| 4528 | "third_party/nist-pkits/crls/deltaCRLCA1CRL.crl", |
| 4529 | "third_party/nist-pkits/crls/deltaCRLCA1deltaCRL.crl", |
| 4530 | "third_party/nist-pkits/crls/deltaCRLCA2CRL.crl", |
| 4531 | "third_party/nist-pkits/crls/deltaCRLCA2deltaCRL.crl", |
| 4532 | "third_party/nist-pkits/crls/deltaCRLCA3CRL.crl", |
| 4533 | "third_party/nist-pkits/crls/deltaCRLCA3deltaCRL.crl", |
| 4534 | "third_party/nist-pkits/crls/deltaCRLIndicatorNoBaseCACRL.crl", |
| 4535 | "third_party/nist-pkits/crls/distributionPoint1CACRL.crl", |
| 4536 | "third_party/nist-pkits/crls/distributionPoint2CACRL.crl", |
| 4537 | "third_party/nist-pkits/crls/indirectCRLCA1CRL.crl", |
| 4538 | "third_party/nist-pkits/crls/indirectCRLCA3CRL.crl", |
| 4539 | "third_party/nist-pkits/crls/indirectCRLCA3cRLIssuerCRL.crl", |
| 4540 | "third_party/nist-pkits/crls/indirectCRLCA4cRLIssuerCRL.crl", |
| 4541 | "third_party/nist-pkits/crls/indirectCRLCA5CRL.crl", |
| 4542 | "third_party/nist-pkits/crls/inhibitAnyPolicy0CACRL.crl", |
| 4543 | "third_party/nist-pkits/crls/inhibitAnyPolicy1CACRL.crl", |
| 4544 | "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA1CRL.crl", |
| 4545 | "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA2CRL.crl", |
| 4546 | "third_party/nist-pkits/crls/inhibitAnyPolicy1subCAIAP5CRL.crl", |
| 4547 | "third_party/nist-pkits/crls/inhibitAnyPolicy1subsubCA2CRL.crl", |
| 4548 | "third_party/nist-pkits/crls/inhibitAnyPolicy5CACRL.crl", |
| 4549 | "third_party/nist-pkits/crls/inhibitAnyPolicy5subCACRL.crl", |
| 4550 | "third_party/nist-pkits/crls/inhibitAnyPolicy5subsubCACRL.crl", |
| 4551 | "third_party/nist-pkits/crls/inhibitPolicyMapping0CACRL.crl", |
| 4552 | "third_party/nist-pkits/crls/inhibitPolicyMapping0subCACRL.crl", |
| 4553 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12CACRL.crl", |
| 4554 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCACRL.crl", |
| 4555 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCAIPM5CRL.crl", |
| 4556 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCACRL.crl", |
| 4557 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCAIPM5CRL.crl", |
| 4558 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P1CACRL.crl", |
| 4559 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subCACRL.crl", |
| 4560 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subsubCACRL.crl", |
| 4561 | "third_party/nist-pkits/crls/inhibitPolicyMapping5CACRL.crl", |
| 4562 | "third_party/nist-pkits/crls/inhibitPolicyMapping5subCACRL.crl", |
| 4563 | "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubCACRL.crl", |
| 4564 | "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubsubCACRL.crl", |
| 4565 | "third_party/nist-pkits/crls/keyUsageCriticalcRLSignFalseCACRL.crl", |
| 4566 | "third_party/nist-pkits/crls/keyUsageCriticalkeyCertSignFalseCACRL.crl", |
| 4567 | "third_party/nist-pkits/crls/keyUsageNotCriticalCACRL.crl", |
| 4568 | "third_party/nist-pkits/crls/keyUsageNotCriticalcRLSignFalseCACRL.crl", |
| 4569 | "third_party/nist-pkits/crls/keyUsageNotCriticalkeyCertSignFalseCACRL.crl", |
| 4570 | "third_party/nist-pkits/crls/nameConstraintsDN1CACRL.crl", |
| 4571 | "third_party/nist-pkits/crls/nameConstraintsDN1subCA1CRL.crl", |
| 4572 | "third_party/nist-pkits/crls/nameConstraintsDN1subCA2CRL.crl", |
| 4573 | "third_party/nist-pkits/crls/nameConstraintsDN1subCA3CRL.crl", |
| 4574 | "third_party/nist-pkits/crls/nameConstraintsDN2CACRL.crl", |
| 4575 | "third_party/nist-pkits/crls/nameConstraintsDN3CACRL.crl", |
| 4576 | "third_party/nist-pkits/crls/nameConstraintsDN3subCA1CRL.crl", |
| 4577 | "third_party/nist-pkits/crls/nameConstraintsDN3subCA2CRL.crl", |
| 4578 | "third_party/nist-pkits/crls/nameConstraintsDN4CACRL.crl", |
| 4579 | "third_party/nist-pkits/crls/nameConstraintsDN5CACRL.crl", |
| 4580 | "third_party/nist-pkits/crls/nameConstraintsDNS1CACRL.crl", |
| 4581 | "third_party/nist-pkits/crls/nameConstraintsDNS2CACRL.crl", |
| 4582 | "third_party/nist-pkits/crls/nameConstraintsRFC822CA1CRL.crl", |
| 4583 | "third_party/nist-pkits/crls/nameConstraintsRFC822CA2CRL.crl", |
| 4584 | "third_party/nist-pkits/crls/nameConstraintsRFC822CA3CRL.crl", |
| 4585 | "third_party/nist-pkits/crls/nameConstraintsURI1CACRL.crl", |
| 4586 | "third_party/nist-pkits/crls/nameConstraintsURI2CACRL.crl", |
| 4587 | "third_party/nist-pkits/crls/onlyContainsAttributeCertsCACRL.crl", |
| 4588 | "third_party/nist-pkits/crls/onlyContainsCACertsCACRL.crl", |
| 4589 | "third_party/nist-pkits/crls/onlyContainsUserCertsCACRL.crl", |
| 4590 | "third_party/nist-pkits/crls/onlySomeReasonsCA1compromiseCRL.crl", |
| 4591 | "third_party/nist-pkits/crls/onlySomeReasonsCA1otherreasonsCRL.crl", |
| 4592 | "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL1.crl", |
| 4593 | "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL2.crl", |
| 4594 | "third_party/nist-pkits/crls/onlySomeReasonsCA3compromiseCRL.crl", |
| 4595 | "third_party/nist-pkits/crls/onlySomeReasonsCA3otherreasonsCRL.crl", |
| 4596 | "third_party/nist-pkits/crls/onlySomeReasonsCA4compromiseCRL.crl", |
| 4597 | "third_party/nist-pkits/crls/onlySomeReasonsCA4otherreasonsCRL.crl", |
| 4598 | "third_party/nist-pkits/crls/pathLenConstraint0CACRL.crl", |
| 4599 | "third_party/nist-pkits/crls/pathLenConstraint0subCA2CRL.crl", |
| 4600 | "third_party/nist-pkits/crls/pathLenConstraint0subCACRL.crl", |
| 4601 | "third_party/nist-pkits/crls/pathLenConstraint1CACRL.crl", |
| 4602 | "third_party/nist-pkits/crls/pathLenConstraint1subCACRL.crl", |
| 4603 | "third_party/nist-pkits/crls/pathLenConstraint6CACRL.crl", |
| 4604 | "third_party/nist-pkits/crls/pathLenConstraint6subCA0CRL.crl", |
| 4605 | "third_party/nist-pkits/crls/pathLenConstraint6subCA1CRL.crl", |
| 4606 | "third_party/nist-pkits/crls/pathLenConstraint6subCA4CRL.crl", |
| 4607 | "third_party/nist-pkits/crls/pathLenConstraint6subsubCA00CRL.crl", |
| 4608 | "third_party/nist-pkits/crls/pathLenConstraint6subsubCA11CRL.crl", |
| 4609 | "third_party/nist-pkits/crls/pathLenConstraint6subsubCA41CRL.crl", |
| 4610 | "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA11XCRL.crl", |
| 4611 | "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA41XCRL.crl", |
| 4612 | "third_party/nist-pkits/crls/pre2000CRLnextUpdateCACRL.crl", |
| 4613 | "third_party/nist-pkits/crls/requireExplicitPolicy0CACRL.crl", |
| 4614 | "third_party/nist-pkits/crls/requireExplicitPolicy0subCACRL.crl", |
| 4615 | "third_party/nist-pkits/crls/requireExplicitPolicy0subsubCACRL.crl", |
| 4616 | "third_party/nist-pkits/crls/requireExplicitPolicy0subsubsubCACRL.crl", |
| 4617 | "third_party/nist-pkits/crls/requireExplicitPolicy10CACRL.crl", |
| 4618 | "third_party/nist-pkits/crls/requireExplicitPolicy10subCACRL.crl", |
| 4619 | "third_party/nist-pkits/crls/requireExplicitPolicy10subsubCACRL.crl", |
| 4620 | "third_party/nist-pkits/crls/requireExplicitPolicy10subsubsubCACRL.crl", |
| 4621 | "third_party/nist-pkits/crls/requireExplicitPolicy2CACRL.crl", |
| 4622 | "third_party/nist-pkits/crls/requireExplicitPolicy2subCACRL.crl", |
| 4623 | "third_party/nist-pkits/crls/requireExplicitPolicy4CACRL.crl", |
| 4624 | "third_party/nist-pkits/crls/requireExplicitPolicy4subCACRL.crl", |
| 4625 | "third_party/nist-pkits/crls/requireExplicitPolicy4subsubCACRL.crl", |
| 4626 | "third_party/nist-pkits/crls/requireExplicitPolicy4subsubsubCACRL.crl", |
| 4627 | "third_party/nist-pkits/crls/requireExplicitPolicy5CACRL.crl", |
| 4628 | "third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl", |
| 4629 | "third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl", |
| 4630 | "third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl", |
| 4631 | "third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl", |
| 4632 | "third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl", |
| 4633 | "third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl", |
| 4634 | "third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.crl", |
| 4635 | ] |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 4636 | outputs = [ |
| 4637 | "{{bundle_resources_dir}}/" + |
| 4638 | "{{source_root_relative_dir}}/{{source_file_part}}", |
| 4639 | ] |
| 4640 | } |
| 4641 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4642 | test("net_unittests") { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4643 | sources = [ |
| 4644 | "android/cellular_signal_strength_unittest.cc", |
| 4645 | "android/dummy_spnego_authenticator.cc", |
| 4646 | "android/dummy_spnego_authenticator.h", |
| 4647 | "android/http_auth_negotiate_android_unittest.cc", |
| 4648 | "android/network_change_notifier_android_unittest.cc", |
| 4649 | "android/network_library_unittest.cc", |
| 4650 | "android/traffic_stats_unittest.cc", |
| 4651 | "base/address_family_unittest.cc", |
| 4652 | "base/address_list_unittest.cc", |
| 4653 | "base/address_tracker_linux_unittest.cc", |
| 4654 | "base/arena_unittest.cc", |
| 4655 | "base/backoff_entry_serializer_unittest.cc", |
| 4656 | "base/backoff_entry_unittest.cc", |
| 4657 | "base/chunked_upload_data_stream_unittest.cc", |
| 4658 | "base/data_url_unittest.cc", |
| 4659 | "base/directory_lister_unittest.cc", |
| 4660 | "base/directory_listing_unittest.cc", |
| 4661 | "base/elements_upload_data_stream_unittest.cc", |
| 4662 | "base/escape_unittest.cc", |
| 4663 | "base/expiring_cache_unittest.cc", |
| 4664 | "base/file_stream_unittest.cc", |
| 4665 | "base/filename_util_unittest.cc", |
Bence Béky | d5c16edf | 2017-08-04 17:32:30 | [diff] [blame] | 4666 | "base/hex_utils_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4667 | "base/host_mapping_rules_unittest.cc", |
| 4668 | "base/host_port_pair_unittest.cc", |
| 4669 | "base/int128_unittest.cc", |
fayang | baec8ff5 | 2017-01-28 03:26:12 | [diff] [blame] | 4670 | "base/interval_set_test.cc", |
| 4671 | "base/interval_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4672 | "base/ip_address_unittest.cc", |
| 4673 | "base/ip_endpoint_unittest.cc", |
| 4674 | "base/ip_pattern_unittest.cc", |
| 4675 | "base/layered_network_delegate_unittest.cc", |
| 4676 | "base/lookup_string_in_fixed_set_unittest.cc", |
| 4677 | "base/mime_sniffer_unittest.cc", |
| 4678 | "base/mime_util_unittest.cc", |
Zentaro Kavanagh | a02f1da | 2017-09-26 23:56:06 | [diff] [blame] | 4679 | "base/net_string_util_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4680 | "base/network_activity_monitor_unittest.cc", |
| 4681 | "base/network_change_notifier_unittest.cc", |
| 4682 | "base/network_change_notifier_win_unittest.cc", |
Sergey Ulanov | 5c33235ae | 2017-07-06 23:55:07 | [diff] [blame] | 4683 | "base/network_interfaces_getifaddrs_unittest.cc", |
Sergey Ulanov | 5bb07d3 | 2017-07-12 04:14:54 | [diff] [blame] | 4684 | "base/network_interfaces_linux_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4685 | "base/network_interfaces_unittest.cc", |
Sergey Ulanov | 5bb07d3 | 2017-07-12 04:14:54 | [diff] [blame] | 4686 | "base/network_interfaces_win_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4687 | "base/network_throttle_manager_impl_unittest.cc", |
| 4688 | "base/parse_number_unittest.cc", |
| 4689 | "base/percentile_estimator_unittest.cc", |
| 4690 | "base/port_util_unittest.cc", |
| 4691 | "base/prioritized_dispatcher_unittest.cc", |
| 4692 | "base/priority_queue_unittest.cc", |
| 4693 | "base/registry_controlled_domains/registry_controlled_domain_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4694 | "base/static_cookie_policy_unittest.cc", |
| 4695 | "base/test_completion_callback_unittest.cc", |
| 4696 | "base/test_proxy_delegate.cc", |
| 4697 | "base/test_proxy_delegate.h", |
| 4698 | "base/upload_bytes_element_reader_unittest.cc", |
| 4699 | "base/upload_file_element_reader_unittest.cc", |
| 4700 | "base/url_util_unittest.cc", |
| 4701 | "cert/caching_cert_verifier_unittest.cc", |
| 4702 | "cert/cert_verifier_unittest.cc", |
estark | d91e0b2 | 2017-01-31 01:10:28 | [diff] [blame] | 4703 | "cert/cert_verify_proc_android_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4704 | "cert/cert_verify_proc_ios_unittest.cc", |
eroman | ce65aff | 2017-02-04 00:05:32 | [diff] [blame] | 4705 | "cert/cert_verify_proc_mac_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4706 | "cert/cert_verify_proc_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4707 | "cert/crl_set_unittest.cc", |
| 4708 | "cert/ct_known_logs_unittest.cc", |
| 4709 | "cert/ct_log_response_parser_unittest.cc", |
| 4710 | "cert/ct_log_verifier_unittest.cc", |
| 4711 | "cert/ct_objects_extractor_unittest.cc", |
| 4712 | "cert/ct_policy_enforcer_unittest.cc", |
| 4713 | "cert/ct_serialization_unittest.cc", |
| 4714 | "cert/ev_root_ca_metadata_unittest.cc", |
| 4715 | "cert/internal/cert_issuer_source_aia_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4716 | "cert/internal/cert_issuer_source_static_unittest.cc", |
| 4717 | "cert/internal/cert_issuer_source_sync_unittest.h", |
| 4718 | "cert/internal/certificate_policies_unittest.cc", |
| 4719 | "cert/internal/extended_key_usage_unittest.cc", |
Matt Mueller | 9e3ad303 | 2017-09-14 19:29:31 | [diff] [blame] | 4720 | "cert/internal/general_names_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4721 | "cert/internal/name_constraints_unittest.cc", |
eroman | c95383ac | 2017-05-26 19:37:30 | [diff] [blame] | 4722 | "cert/internal/nist_pkits_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4723 | "cert/internal/nist_pkits_unittest.h", |
Eric Roman | a2f6f55d | 2017-09-07 23:34:57 | [diff] [blame] | 4724 | "cert/internal/ocsp_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4725 | "cert/internal/parse_certificate_unittest.cc", |
| 4726 | "cert/internal/parse_name_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4727 | "cert/internal/parsed_certificate_unittest.cc", |
| 4728 | "cert/internal/path_builder_pkits_unittest.cc", |
| 4729 | "cert/internal/path_builder_unittest.cc", |
| 4730 | "cert/internal/path_builder_verify_certificate_chain_unittest.cc", |
Eric Roman | cc56d16f | 2017-10-11 23:04:26 | [diff] [blame] | 4731 | "cert/internal/revocation_checker_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4732 | "cert/internal/signature_algorithm_unittest.cc", |
Eric Roman | 5431d70 | 2017-07-26 01:58:18 | [diff] [blame] | 4733 | "cert/internal/simple_path_builder_delegate_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4734 | "cert/internal/test_helpers.cc", |
| 4735 | "cert/internal/test_helpers.h", |
| 4736 | "cert/internal/trust_store_collection_unittest.cc", |
mattm | ea4ed823 | 2017-02-28 23:13:23 | [diff] [blame] | 4737 | "cert/internal/trust_store_mac_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4738 | "cert/internal/trust_store_nss_unittest.cc", |
| 4739 | "cert/internal/verify_certificate_chain_pkits_unittest.cc", |
| 4740 | "cert/internal/verify_certificate_chain_typed_unittest.h", |
| 4741 | "cert/internal/verify_certificate_chain_unittest.cc", |
| 4742 | "cert/internal/verify_name_match_unittest.cc", |
| 4743 | "cert/internal/verify_signed_data_unittest.cc", |
| 4744 | "cert/jwk_serializer_unittest.cc", |
Ryan Sleevi | 19a7bde | 2017-11-22 06:51:39 | [diff] [blame] | 4745 | "cert/known_roots_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4746 | "cert/merkle_audit_proof_unittest.cc", |
| 4747 | "cert/merkle_tree_leaf_unittest.cc", |
| 4748 | "cert/multi_log_ct_verifier_unittest.cc", |
| 4749 | "cert/multi_threaded_cert_verifier_unittest.cc", |
| 4750 | "cert/nss_cert_database_chromeos_unittest.cc", |
| 4751 | "cert/nss_cert_database_unittest.cc", |
| 4752 | "cert/nss_profile_filter_chromeos_unittest.cc", |
| 4753 | "cert/pem_tokenizer_unittest.cc", |
| 4754 | "cert/signed_certificate_timestamp_unittest.cc", |
| 4755 | "cert/sth_distributor_unittest.cc", |
Emily Stark | d29cdae | 2017-09-16 01:59:34 | [diff] [blame] | 4756 | "cert/symantec_certs_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4757 | "cert/test_root_certs_unittest.cc", |
| 4758 | "cert/x509_cert_types_unittest.cc", |
| 4759 | "cert/x509_certificate_unittest.cc", |
mattm | 1a07e63 | 2017-05-16 05:55:50 | [diff] [blame] | 4760 | "cert/x509_util_ios_and_mac_unittest.cc", |
Matt Mueller | 10684c9 | 2017-08-09 07:24:09 | [diff] [blame] | 4761 | "cert/x509_util_nss_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4762 | "cert/x509_util_unittest.cc", |
| 4763 | "cert_net/cert_net_fetcher_impl_unittest.cc", |
| 4764 | "cert_net/nss_ocsp_unittest.cc", |
| 4765 | "cookies/canonical_cookie_unittest.cc", |
| 4766 | "cookies/cookie_constants_unittest.cc", |
| 4767 | "cookies/cookie_monster_unittest.cc", |
| 4768 | "cookies/cookie_store_unittest.cc", |
| 4769 | "cookies/cookie_util_unittest.cc", |
| 4770 | "cookies/parsed_cookie_unittest.cc", |
| 4771 | "der/encode_values_unittest.cc", |
| 4772 | "der/input_unittest.cc", |
| 4773 | "der/parse_values_unittest.cc", |
| 4774 | "der/parser_unittest.cc", |
Maks Orlovich | 036fd1f | 2017-08-07 17:51:11 | [diff] [blame] | 4775 | "disk_cache/backend_cleanup_tracker_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4776 | "disk_cache/backend_unittest.cc", |
| 4777 | "disk_cache/blockfile/addr_unittest.cc", |
| 4778 | "disk_cache/blockfile/bitmap_unittest.cc", |
| 4779 | "disk_cache/blockfile/block_files_unittest.cc", |
| 4780 | "disk_cache/blockfile/mapped_file_unittest.cc", |
| 4781 | "disk_cache/blockfile/stats_unittest.cc", |
| 4782 | "disk_cache/blockfile/storage_block_unittest.cc", |
| 4783 | "disk_cache/cache_util_unittest.cc", |
| 4784 | "disk_cache/entry_unittest.cc", |
| 4785 | "disk_cache/simple/simple_experiment_unittest.cc", |
Maks Orlovich | f378b3a | 2017-10-31 16:27:30 | [diff] [blame] | 4786 | "disk_cache/simple/simple_file_tracker_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4787 | "disk_cache/simple/simple_index_file_unittest.cc", |
| 4788 | "disk_cache/simple/simple_index_unittest.cc", |
| 4789 | "disk_cache/simple/simple_test_util.cc", |
| 4790 | "disk_cache/simple/simple_test_util.h", |
| 4791 | "disk_cache/simple/simple_util_unittest.cc", |
| 4792 | "disk_cache/simple/simple_version_upgrade_unittest.cc", |
| 4793 | "dns/address_sorter_posix_unittest.cc", |
| 4794 | "dns/address_sorter_unittest.cc", |
| 4795 | "dns/dns_config_service_posix_unittest.cc", |
| 4796 | "dns/dns_config_service_unittest.cc", |
| 4797 | "dns/dns_config_service_win_unittest.cc", |
| 4798 | "dns/dns_hosts_unittest.cc", |
| 4799 | "dns/dns_query_unittest.cc", |
| 4800 | "dns/dns_response_unittest.cc", |
| 4801 | "dns/dns_session_unittest.cc", |
juliatuttle | 8ff9d153 | 2017-01-31 17:06:31 | [diff] [blame] | 4802 | "dns/dns_socket_pool_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4803 | "dns/dns_transaction_unittest.cc", |
| 4804 | "dns/dns_util_unittest.cc", |
| 4805 | "dns/host_cache_unittest.cc", |
| 4806 | "dns/host_resolver_impl_unittest.cc", |
| 4807 | "dns/host_resolver_mojo_unittest.cc", |
| 4808 | "dns/mapped_host_resolver_unittest.cc", |
| 4809 | "dns/mdns_cache_unittest.cc", |
| 4810 | "dns/mdns_client_unittest.cc", |
| 4811 | "dns/mojo_host_resolver_impl_unittest.cc", |
| 4812 | "dns/record_parsed_unittest.cc", |
| 4813 | "dns/record_rdata_unittest.cc", |
| 4814 | "dns/serial_worker_unittest.cc", |
| 4815 | "extras/sqlite/sqlite_channel_id_store_unittest.cc", |
| 4816 | "extras/sqlite/sqlite_persistent_cookie_store_unittest.cc", |
| 4817 | "filter/brotli_source_stream_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4818 | "filter/filter_source_stream_unittest.cc", |
| 4819 | "filter/gzip_source_stream_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4820 | "ftp/ftp_auth_cache_unittest.cc", |
| 4821 | "ftp/ftp_ctrl_response_buffer_unittest.cc", |
| 4822 | "ftp/ftp_directory_listing_parser_ls_unittest.cc", |
| 4823 | "ftp/ftp_directory_listing_parser_unittest.cc", |
| 4824 | "ftp/ftp_directory_listing_parser_unittest.h", |
| 4825 | "ftp/ftp_directory_listing_parser_vms_unittest.cc", |
| 4826 | "ftp/ftp_directory_listing_parser_windows_unittest.cc", |
| 4827 | "ftp/ftp_network_transaction_unittest.cc", |
| 4828 | "ftp/ftp_util_unittest.cc", |
| 4829 | "http/bidirectional_stream_unittest.cc", |
wangyix | 64ccc57c | 2017-06-01 23:14:16 | [diff] [blame] | 4830 | "http/broken_alternative_services_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4831 | "http/http_auth_cache_unittest.cc", |
| 4832 | "http/http_auth_challenge_tokenizer_unittest.cc", |
| 4833 | "http/http_auth_controller_unittest.cc", |
| 4834 | "http/http_auth_filter_unittest.cc", |
| 4835 | "http/http_auth_gssapi_posix_unittest.cc", |
| 4836 | "http/http_auth_handler_basic_unittest.cc", |
| 4837 | "http/http_auth_handler_digest_unittest.cc", |
| 4838 | "http/http_auth_handler_factory_unittest.cc", |
| 4839 | "http/http_auth_handler_mock.cc", |
| 4840 | "http/http_auth_handler_mock.h", |
| 4841 | "http/http_auth_handler_negotiate_unittest.cc", |
zentaro | b89acda4 | 2017-07-14 01:28:57 | [diff] [blame] | 4842 | "http/http_auth_handler_ntlm_portable_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4843 | "http/http_auth_handler_unittest.cc", |
| 4844 | "http/http_auth_multi_round_parse_unittest.cc", |
| 4845 | "http/http_auth_preferences_unittest.cc", |
| 4846 | "http/http_auth_sspi_win_unittest.cc", |
| 4847 | "http/http_auth_unittest.cc", |
| 4848 | "http/http_basic_state_unittest.cc", |
| 4849 | "http/http_byte_range_unittest.cc", |
| 4850 | "http/http_cache_lookup_manager_unittest.cc", |
| 4851 | "http/http_cache_unittest.cc", |
shivanisha | c6582e1 | 2017-07-14 22:18:19 | [diff] [blame] | 4852 | "http/http_cache_writers_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4853 | "http/http_chunked_decoder_unittest.cc", |
| 4854 | "http/http_content_disposition_unittest.cc", |
| 4855 | "http/http_log_util_unittest.cc", |
| 4856 | "http/http_network_layer_unittest.cc", |
| 4857 | "http/http_network_transaction_ssl_unittest.cc", |
| 4858 | "http/http_network_transaction_unittest.cc", |
| 4859 | "http/http_proxy_client_socket_pool_unittest.cc", |
Paul Jensen | 0f49dec | 2017-12-12 23:39:58 | [diff] [blame] | 4860 | "http/http_proxy_client_socket_unittest.cc", |
Yixin Wang | d107e06 | 2017-11-10 21:57:46 | [diff] [blame] | 4861 | "http/http_proxy_client_socket_wrapper_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4862 | "http/http_request_headers_unittest.cc", |
| 4863 | "http/http_response_body_drainer_unittest.cc", |
| 4864 | "http/http_response_headers_unittest.cc", |
| 4865 | "http/http_response_info_unittest.cc", |
| 4866 | "http/http_security_headers_unittest.cc", |
| 4867 | "http/http_server_properties_impl_unittest.cc", |
| 4868 | "http/http_server_properties_manager_unittest.cc", |
| 4869 | "http/http_status_code_unittest.cc", |
| 4870 | "http/http_stream_factory_impl_job_controller_unittest.cc", |
| 4871 | "http/http_stream_factory_impl_request_unittest.cc", |
| 4872 | "http/http_stream_factory_impl_unittest.cc", |
| 4873 | "http/http_stream_parser_unittest.cc", |
| 4874 | "http/http_util_unittest.cc", |
| 4875 | "http/http_vary_data_unittest.cc", |
| 4876 | "http/mock_allow_http_auth_preferences.cc", |
| 4877 | "http/mock_allow_http_auth_preferences.h", |
| 4878 | "http/mock_gssapi_library_posix.cc", |
| 4879 | "http/mock_gssapi_library_posix.h", |
| 4880 | "http/mock_http_cache.cc", |
| 4881 | "http/mock_http_cache.h", |
| 4882 | "http/mock_sspi_library_win.cc", |
| 4883 | "http/mock_sspi_library_win.h", |
| 4884 | "http/transport_security_persister_unittest.cc", |
| 4885 | "http/transport_security_state_unittest.cc", |
| 4886 | "http/url_security_manager_unittest.cc", |
| 4887 | "http2/decoder/decode_buffer_test.cc", |
| 4888 | "http2/decoder/decode_http2_structures_test.cc", |
| 4889 | "http2/decoder/frame_decoder_state_test_util.cc", |
| 4890 | "http2/decoder/frame_decoder_state_test_util.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4891 | "http2/decoder/http2_frame_decoder_listener_test_util.cc", |
| 4892 | "http2/decoder/http2_frame_decoder_listener_test_util.h", |
| 4893 | "http2/decoder/http2_frame_decoder_test.cc", |
| 4894 | "http2/decoder/http2_structure_decoder_test.cc", |
bnc | 0f57ba2 | 2017-01-27 02:43:36 | [diff] [blame] | 4895 | "http2/decoder/http2_structure_decoder_test_util.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4896 | "http2/decoder/http2_structure_decoder_test_util.h", |
| 4897 | "http2/decoder/payload_decoders/altsvc_payload_decoder_test.cc", |
| 4898 | "http2/decoder/payload_decoders/continuation_payload_decoder_test.cc", |
| 4899 | "http2/decoder/payload_decoders/data_payload_decoder_test.cc", |
| 4900 | "http2/decoder/payload_decoders/goaway_payload_decoder_test.cc", |
| 4901 | "http2/decoder/payload_decoders/headers_payload_decoder_test.cc", |
| 4902 | "http2/decoder/payload_decoders/payload_decoder_base_test_util.cc", |
| 4903 | "http2/decoder/payload_decoders/payload_decoder_base_test_util.h", |
| 4904 | "http2/decoder/payload_decoders/ping_payload_decoder_test.cc", |
| 4905 | "http2/decoder/payload_decoders/priority_payload_decoder_test.cc", |
| 4906 | "http2/decoder/payload_decoders/push_promise_payload_decoder_test.cc", |
| 4907 | "http2/decoder/payload_decoders/rst_stream_payload_decoder_test.cc", |
| 4908 | "http2/decoder/payload_decoders/settings_payload_decoder_test.cc", |
| 4909 | "http2/decoder/payload_decoders/unknown_payload_decoder_test.cc", |
| 4910 | "http2/decoder/payload_decoders/window_update_payload_decoder_test.cc", |
| 4911 | "http2/hpack/decoder/hpack_block_collector.cc", |
| 4912 | "http2/hpack/decoder/hpack_block_collector.h", |
| 4913 | "http2/hpack/decoder/hpack_block_decoder_test.cc", |
| 4914 | "http2/hpack/decoder/hpack_decoder_state_test.cc", |
| 4915 | "http2/hpack/decoder/hpack_decoder_string_buffer_test.cc", |
| 4916 | "http2/hpack/decoder/hpack_decoder_tables_test.cc", |
Bence Béky | bad9ef9 | 2017-07-28 13:36:27 | [diff] [blame] | 4917 | "http2/hpack/decoder/hpack_decoder_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4918 | "http2/hpack/decoder/hpack_entry_collector.cc", |
| 4919 | "http2/hpack/decoder/hpack_entry_collector.h", |
| 4920 | "http2/hpack/decoder/hpack_entry_decoder_test.cc", |
| 4921 | "http2/hpack/decoder/hpack_entry_type_decoder_test.cc", |
| 4922 | "http2/hpack/decoder/hpack_string_collector.cc", |
| 4923 | "http2/hpack/decoder/hpack_string_collector.h", |
| 4924 | "http2/hpack/decoder/hpack_string_decoder_test.cc", |
| 4925 | "http2/hpack/decoder/hpack_varint_decoder_test.cc", |
| 4926 | "http2/hpack/decoder/hpack_whole_entry_buffer_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4927 | "http2/hpack/hpack_string_test.cc", |
| 4928 | "http2/hpack/http2_hpack_constants_test.cc", |
Bence Béky | d140652 | 2017-08-07 18:05:08 | [diff] [blame] | 4929 | "http2/hpack/huffman/hpack_huffman_decoder_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4930 | "http2/hpack/tools/hpack_block_builder.cc", |
| 4931 | "http2/hpack/tools/hpack_block_builder.h", |
| 4932 | "http2/hpack/tools/hpack_block_builder_test.cc", |
| 4933 | "http2/hpack/tools/hpack_example.cc", |
| 4934 | "http2/hpack/tools/hpack_example.h", |
| 4935 | "http2/http2_constants_test.cc", |
| 4936 | "http2/http2_constants_test_util.cc", |
| 4937 | "http2/http2_constants_test_util.h", |
| 4938 | "http2/http2_structures_test.cc", |
| 4939 | "http2/http2_structures_test_util.cc", |
| 4940 | "http2/http2_structures_test_util.h", |
Bence Béky | e53090e | 2017-07-12 02:58:40 | [diff] [blame] | 4941 | "http2/platform/api/http2_string_utils_test.cc", |
bnc | 85ec3b10 | 2017-03-16 22:48:28 | [diff] [blame] | 4942 | "http2/test_tools/frame_parts.cc", |
| 4943 | "http2/test_tools/frame_parts.h", |
| 4944 | "http2/test_tools/frame_parts_collector.cc", |
| 4945 | "http2/test_tools/frame_parts_collector.h", |
| 4946 | "http2/test_tools/frame_parts_collector_listener.cc", |
| 4947 | "http2/test_tools/frame_parts_collector_listener.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4948 | "http2/tools/failure.cc", |
| 4949 | "http2/tools/failure.h", |
| 4950 | "http2/tools/http2_frame_builder.cc", |
| 4951 | "http2/tools/http2_frame_builder.h", |
| 4952 | "http2/tools/http2_random.cc", |
| 4953 | "http2/tools/http2_random.h", |
| 4954 | "http2/tools/random_decoder_test.cc", |
| 4955 | "http2/tools/random_decoder_test.h", |
| 4956 | "http2/tools/random_util.cc", |
| 4957 | "http2/tools/random_util.h", |
| 4958 | "log/file_net_log_observer_unittest.cc", |
| 4959 | "log/net_log_capture_mode_unittest.cc", |
| 4960 | "log/net_log_unittest.cc", |
| 4961 | "log/net_log_util_unittest.cc", |
| 4962 | "log/trace_net_log_observer_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4963 | "nqe/effective_connection_type_unittest.cc", |
tbansal | f38471f | 2017-03-04 01:07:04 | [diff] [blame] | 4964 | "nqe/event_creator_unittest.cc", |
Tarun Bansal | cdfa34b | 2017-11-23 05:11:17 | [diff] [blame] | 4965 | "nqe/network_id_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4966 | "nqe/network_qualities_prefs_manager_unittest.cc", |
tbansal | 35bdb0b | 2017-05-04 16:23:33 | [diff] [blame] | 4967 | "nqe/network_quality_estimator_params_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4968 | "nqe/network_quality_estimator_unittest.cc", |
tbansal | 82edab4 | 2017-06-19 05:55:25 | [diff] [blame] | 4969 | "nqe/network_quality_estimator_util_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4970 | "nqe/network_quality_store_unittest.cc", |
| 4971 | "nqe/observation_buffer_unittest.cc", |
tbansal | 180587c | 2017-02-16 15:13:23 | [diff] [blame] | 4972 | "nqe/socket_watcher_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4973 | "nqe/throughput_analyzer_unittest.cc", |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 4974 | "ntlm/ntlm_buffer_reader_unittest.cc", |
| 4975 | "ntlm/ntlm_buffer_writer_unittest.cc", |
Zentaro Kavanagh | dd55661 | 2017-08-03 20:27:04 | [diff] [blame] | 4976 | "ntlm/ntlm_client_unittest.cc", |
zentaro | b89acda4 | 2017-07-14 01:28:57 | [diff] [blame] | 4977 | "ntlm/ntlm_test_data.h", |
| 4978 | "ntlm/ntlm_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4979 | "proxy/dhcp_proxy_script_adapter_fetcher_win_unittest.cc", |
| 4980 | "proxy/dhcp_proxy_script_fetcher_factory_unittest.cc", |
| 4981 | "proxy/dhcp_proxy_script_fetcher_win_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4982 | "proxy/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc", |
| 4983 | "proxy/multi_threaded_proxy_resolver_unittest.cc", |
| 4984 | "proxy/network_delegate_error_observer_unittest.cc", |
| 4985 | "proxy/proxy_bypass_rules_unittest.cc", |
| 4986 | "proxy/proxy_config_service_android_unittest.cc", |
| 4987 | "proxy/proxy_config_service_linux_unittest.cc", |
| 4988 | "proxy/proxy_config_service_win_unittest.cc", |
| 4989 | "proxy/proxy_config_unittest.cc", |
| 4990 | "proxy/proxy_info_unittest.cc", |
| 4991 | "proxy/proxy_list_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4992 | "proxy/proxy_resolver_v8_tracing_unittest.cc", |
| 4993 | "proxy/proxy_resolver_v8_tracing_wrapper_unittest.cc", |
| 4994 | "proxy/proxy_resolver_v8_unittest.cc", |
| 4995 | "proxy/proxy_script_decider_unittest.cc", |
| 4996 | "proxy/proxy_script_fetcher_impl_unittest.cc", |
| 4997 | "proxy/proxy_server_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4998 | "proxy/proxy_service_unittest.cc", |
| 4999 | "quic/chromium/bidirectional_stream_quic_impl_unittest.cc", |
| 5000 | "quic/chromium/crypto/proof_test_chromium.cc", |
| 5001 | "quic/chromium/crypto/proof_verifier_chromium_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5002 | "quic/chromium/mock_crypto_client_stream_factory.cc", |
| 5003 | "quic/chromium/mock_crypto_client_stream_factory.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5004 | "quic/chromium/mock_quic_data.cc", |
| 5005 | "quic/chromium/mock_quic_data.h", |
| 5006 | "quic/chromium/network_connection_unittest.cc", |
| 5007 | "quic/chromium/properties_based_quic_server_info_test.cc", |
| 5008 | "quic/chromium/quic_address_mismatch_test.cc", |
| 5009 | "quic/chromium/quic_chromium_alarm_factory_test.cc", |
| 5010 | "quic/chromium/quic_chromium_client_session_peer.cc", |
| 5011 | "quic/chromium/quic_chromium_client_session_peer.h", |
| 5012 | "quic/chromium/quic_chromium_client_session_test.cc", |
| 5013 | "quic/chromium/quic_chromium_client_stream_test.cc", |
| 5014 | "quic/chromium/quic_chromium_connection_helper_test.cc", |
| 5015 | "quic/chromium/quic_clock_skew_detector_test.cc", |
Zhongyi Shi | 8fff75b | 2017-11-19 21:36:36 | [diff] [blame] | 5016 | "quic/chromium/quic_connectivity_probing_manager_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5017 | "quic/chromium/quic_end_to_end_unittest.cc", |
| 5018 | "quic/chromium/quic_http_stream_test.cc", |
| 5019 | "quic/chromium/quic_http_utils_test.cc", |
| 5020 | "quic/chromium/quic_network_transaction_unittest.cc", |
Yixin Wang | 0d2c6b7e1 | 2017-08-16 21:12:55 | [diff] [blame] | 5021 | "quic/chromium/quic_proxy_client_socket_unittest.cc", |
rch | 99387f9 | 2017-04-03 21:12:04 | [diff] [blame] | 5022 | "quic/chromium/quic_stream_factory_peer.cc", |
| 5023 | "quic/chromium/quic_stream_factory_peer.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5024 | "quic/chromium/quic_stream_factory_test.cc", |
| 5025 | "quic/chromium/quic_test_packet_maker.cc", |
| 5026 | "quic/chromium/quic_test_packet_maker.h", |
| 5027 | "quic/chromium/quic_utils_chromium_test.cc", |
rch | 1e36936 | 2017-04-03 19:44:51 | [diff] [blame] | 5028 | "quic/chromium/test_task_runner.cc", |
| 5029 | "quic/chromium/test_task_runner.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5030 | "quic/core/congestion_control/bandwidth_sampler_test.cc", |
| 5031 | "quic/core/congestion_control/bbr_sender_test.cc", |
| 5032 | "quic/core/congestion_control/cubic_bytes_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5033 | "quic/core/congestion_control/general_loss_algorithm_test.cc", |
| 5034 | "quic/core/congestion_control/hybrid_slow_start_test.cc", |
| 5035 | "quic/core/congestion_control/pacing_sender_test.cc", |
| 5036 | "quic/core/congestion_control/prr_sender_test.cc", |
| 5037 | "quic/core/congestion_control/rtt_stats_test.cc", |
| 5038 | "quic/core/congestion_control/send_algorithm_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5039 | "quic/core/congestion_control/windowed_filter_test.cc", |
| 5040 | "quic/core/crypto/aes_128_gcm_12_decrypter_test.cc", |
| 5041 | "quic/core/crypto/aes_128_gcm_12_encrypter_test.cc", |
Michael Warres | 74ee3ce | 2017-10-09 15:26:37 | [diff] [blame] | 5042 | "quic/core/crypto/aes_128_gcm_decrypter_test.cc", |
| 5043 | "quic/core/crypto/aes_128_gcm_encrypter_test.cc", |
| 5044 | "quic/core/crypto/aes_256_gcm_decrypter_test.cc", |
| 5045 | "quic/core/crypto/aes_256_gcm_encrypter_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5046 | "quic/core/crypto/cert_compressor_test.cc", |
| 5047 | "quic/core/crypto/chacha20_poly1305_decrypter_test.cc", |
| 5048 | "quic/core/crypto/chacha20_poly1305_encrypter_test.cc", |
Michael Warres | 74ee3ce | 2017-10-09 15:26:37 | [diff] [blame] | 5049 | "quic/core/crypto/chacha20_poly1305_tls_decrypter_test.cc", |
| 5050 | "quic/core/crypto/chacha20_poly1305_tls_encrypter_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5051 | "quic/core/crypto/channel_id_test.cc", |
| 5052 | "quic/core/crypto/common_cert_set_test.cc", |
| 5053 | "quic/core/crypto/crypto_framer_test.cc", |
| 5054 | "quic/core/crypto/crypto_handshake_message_test.cc", |
| 5055 | "quic/core/crypto/crypto_secret_boxer_test.cc", |
| 5056 | "quic/core/crypto/crypto_server_test.cc", |
| 5057 | "quic/core/crypto/crypto_utils_test.cc", |
| 5058 | "quic/core/crypto/curve25519_key_exchange_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5059 | "quic/core/crypto/null_decrypter_test.cc", |
| 5060 | "quic/core/crypto/null_encrypter_test.cc", |
| 5061 | "quic/core/crypto/p256_key_exchange_test.cc", |
| 5062 | "quic/core/crypto/quic_compressed_certs_cache_test.cc", |
| 5063 | "quic/core/crypto/quic_crypto_client_config_test.cc", |
| 5064 | "quic/core/crypto/quic_crypto_server_config_test.cc", |
| 5065 | "quic/core/crypto/quic_random_test.cc", |
Ryan Hamilton | 8815148 | 2017-09-06 14:55:45 | [diff] [blame] | 5066 | "quic/core/crypto/quic_tls_adapter_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5067 | "quic/core/frames/quic_frames_test.cc", |
vasilvv | 8b7782e | 2017-05-12 01:52:03 | [diff] [blame] | 5068 | "quic/core/packet_number_indexed_queue_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5069 | "quic/core/quic_alarm_test.cc", |
| 5070 | "quic/core/quic_arena_scoped_ptr_test.cc", |
| 5071 | "quic/core/quic_bandwidth_test.cc", |
| 5072 | "quic/core/quic_buffered_packet_store_test.cc", |
| 5073 | "quic/core/quic_client_promised_info_test.cc", |
| 5074 | "quic/core/quic_client_push_promise_index_test.cc", |
| 5075 | "quic/core/quic_config_test.cc", |
| 5076 | "quic/core/quic_connection_test.cc", |
Fan Yang | e8220f00 | 2017-11-27 21:19:07 | [diff] [blame] | 5077 | "quic/core/quic_control_frame_manager_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5078 | "quic/core/quic_crypto_client_stream_test.cc", |
| 5079 | "quic/core/quic_crypto_server_stream_test.cc", |
| 5080 | "quic/core/quic_crypto_stream_test.cc", |
| 5081 | "quic/core/quic_data_writer_test.cc", |
| 5082 | "quic/core/quic_error_codes_test.cc", |
| 5083 | "quic/core/quic_flow_controller_test.cc", |
| 5084 | "quic/core/quic_framer_test.cc", |
| 5085 | "quic/core/quic_header_list_test.cc", |
| 5086 | "quic/core/quic_headers_stream_test.cc", |
Bin Wu | de3943c | 2017-11-09 22:44:48 | [diff] [blame] | 5087 | "quic/core/tls_handshaker_test.cc", |
Charles 'Buck' Krasic | 9385c57 | 2017-11-29 02:21:51 | [diff] [blame] | 5088 | "quic/http/decoder/payload_decoders/quic_http_altsvc_payload_decoder_test.cc", |
| 5089 | "quic/http/decoder/payload_decoders/quic_http_continuation_payload_decoder_test.cc", |
| 5090 | "quic/http/decoder/payload_decoders/quic_http_data_payload_decoder_test.cc", |
| 5091 | "quic/http/decoder/payload_decoders/quic_http_goaway_payload_decoder_test.cc", |
| 5092 | "quic/http/decoder/payload_decoders/quic_http_headers_payload_decoder_test.cc", |
| 5093 | "quic/http/decoder/payload_decoders/quic_http_payload_decoder_base_test_util.cc", |
| 5094 | "quic/http/decoder/payload_decoders/quic_http_payload_decoder_base_test_util.h", |
| 5095 | "quic/http/decoder/payload_decoders/quic_http_ping_payload_decoder_test.cc", |
| 5096 | "quic/http/decoder/payload_decoders/quic_http_priority_payload_decoder_test.cc", |
| 5097 | "quic/http/decoder/payload_decoders/quic_http_push_promise_payload_decoder_test.cc", |
| 5098 | "quic/http/decoder/payload_decoders/quic_http_rst_stream_payload_decoder_test.cc", |
| 5099 | "quic/http/decoder/payload_decoders/quic_http_settings_payload_decoder_test.cc", |
| 5100 | "quic/http/decoder/payload_decoders/quic_http_unknown_payload_decoder_test.cc", |
| 5101 | "quic/http/decoder/payload_decoders/quic_http_window_update_payload_decoder_test.cc", |
| 5102 | "quic/http/decoder/quic_http_decode_buffer_test.cc", |
| 5103 | "quic/http/decoder/quic_http_frame_decoder_listener_test_util.cc", |
| 5104 | "quic/http/decoder/quic_http_frame_decoder_listener_test_util.h", |
| 5105 | "quic/http/decoder/quic_http_frame_decoder_state_test_util.cc", |
| 5106 | "quic/http/decoder/quic_http_frame_decoder_state_test_util.h", |
| 5107 | "quic/http/decoder/quic_http_frame_decoder_test.cc", |
| 5108 | "quic/http/decoder/quic_http_structure_decoder_test.cc", |
| 5109 | "quic/http/decoder/quic_http_structure_decoder_test_util.cc", |
| 5110 | "quic/http/decoder/quic_http_structure_decoder_test_util.h", |
| 5111 | "quic/http/quic_http_constants_test.cc", |
| 5112 | "quic/http/quic_http_constants_test_util.cc", |
| 5113 | "quic/http/quic_http_constants_test_util.h", |
| 5114 | "quic/http/quic_http_structures_test.cc", |
| 5115 | "quic/http/quic_http_structures_test_util.cc", |
| 5116 | "quic/http/quic_http_structures_test_util.h", |
| 5117 | "quic/http/test_tools/quic_http_frame_parts.cc", |
| 5118 | "quic/http/test_tools/quic_http_frame_parts.h", |
| 5119 | "quic/http/test_tools/quic_http_frame_parts_collector.cc", |
| 5120 | "quic/http/test_tools/quic_http_frame_parts_collector.h", |
| 5121 | "quic/http/test_tools/quic_http_frame_parts_collector_listener.cc", |
| 5122 | "quic/http/test_tools/quic_http_frame_parts_collector_listener.h", |
| 5123 | "quic/http/tools/quic_http_frame_builder.cc", |
| 5124 | "quic/http/tools/quic_http_frame_builder.h", |
| 5125 | "quic/http/tools/quic_http_random_decoder_test.cc", |
| 5126 | "quic/http/tools/quic_http_random_decoder_test.h", |
| 5127 | "quic/http/tools/quic_http_random_util.cc", |
| 5128 | "quic/http/tools/quic_http_random_util.h", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 5129 | "quic/test_tools/quic_test_utils_test.cc", |
| 5130 | "quic/test_tools/simulator/quic_endpoint_test.cc", |
| 5131 | "quic/test_tools/simulator/simulator_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5132 | |
| 5133 | # "quic/core/quic_multipath_received_packet_manager_test.cc", |
| 5134 | # "quic/core/quic_multipath_transmissions_map_test.cc", |
| 5135 | "quic/core/quic_one_block_arena_test.cc", |
| 5136 | "quic/core/quic_packet_creator_test.cc", |
| 5137 | "quic/core/quic_packet_generator_test.cc", |
| 5138 | "quic/core/quic_received_packet_manager_test.cc", |
| 5139 | "quic/core/quic_sent_packet_manager_test.cc", |
| 5140 | "quic/core/quic_server_id_test.cc", |
| 5141 | "quic/core/quic_server_session_base_test.cc", |
| 5142 | "quic/core/quic_session_test.cc", |
| 5143 | "quic/core/quic_simple_buffer_allocator_test.cc", |
| 5144 | "quic/core/quic_socket_address_coder_test.cc", |
| 5145 | "quic/core/quic_spdy_stream_test.cc", |
fayang | df3cb2b | 2017-07-05 15:03:38 | [diff] [blame] | 5146 | "quic/core/quic_stream_send_buffer_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5147 | "quic/core/quic_stream_sequencer_buffer_test.cc", |
| 5148 | "quic/core/quic_stream_sequencer_test.cc", |
| 5149 | "quic/core/quic_stream_test.cc", |
| 5150 | "quic/core/quic_sustained_bandwidth_recorder_test.cc", |
| 5151 | "quic/core/quic_tag_test.cc", |
| 5152 | "quic/core/quic_time_test.cc", |
| 5153 | "quic/core/quic_unacked_packet_map_test.cc", |
| 5154 | "quic/core/quic_utils_test.cc", |
| 5155 | "quic/core/quic_version_manager_test.cc", |
| 5156 | "quic/core/quic_versions_test.cc", |
| 5157 | "quic/core/quic_write_blocked_list_test.cc", |
| 5158 | "quic/core/spdy_utils_test.cc", |
fayang | e992f9f | 2017-03-03 13:38:32 | [diff] [blame] | 5159 | "quic/platform/api/quic_endian_test.cc", |
mpw | 3f85953 | 2017-02-16 20:00:31 | [diff] [blame] | 5160 | "quic/platform/api/quic_hostname_utils_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5161 | "quic/platform/api/quic_lru_cache_test.cc", |
Fan Yang | 62cae30f | 2017-09-01 20:50:51 | [diff] [blame] | 5162 | "quic/platform/api/quic_mem_slice_span_test.cc", |
| 5163 | "quic/platform/api/quic_mem_slice_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5164 | "quic/platform/api/quic_reference_counted_test.cc", |
| 5165 | "quic/platform/api/quic_str_cat_test.cc", |
Charles 'Buck' Krasic | 9385c57 | 2017-11-29 02:21:51 | [diff] [blame] | 5166 | "quic/platform/api/quic_test_random.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5167 | "quic/platform/api/quic_text_utils_test.cc", |
fayang | 32caee40 | 2017-02-13 21:00:08 | [diff] [blame] | 5168 | "quic/platform/api/quic_url_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5169 | "quic/platform/impl/quic_chromium_clock_test.cc", |
Charles 'Buck' Krasic | 9385c57 | 2017-11-29 02:21:51 | [diff] [blame] | 5170 | "quic/platform/impl/quic_test_random_impl.cc", |
| 5171 | "quic/platform/impl/quic_test_random_impl.h", |
jri | 3c1d5ca | 2017-06-02 04:52:23 | [diff] [blame] | 5172 | "quic/quartc/quartc_session_test.cc", |
| 5173 | "quic/quartc/quartc_stream_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5174 | "quic/test_tools/crypto_test_utils_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5175 | "socket/client_socket_pool_base_unittest.cc", |
| 5176 | "socket/mock_client_socket_pool_manager.cc", |
| 5177 | "socket/mock_client_socket_pool_manager.h", |
| 5178 | "socket/sequenced_socket_data_unittest.cc", |
| 5179 | "socket/socket_bio_adapter_unittest.cc", |
Paul Jensen | ec3c1112 | 2017-11-28 16:48:38 | [diff] [blame] | 5180 | "socket/socket_tag_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5181 | "socket/socks5_client_socket_unittest.cc", |
| 5182 | "socket/socks_client_socket_pool_unittest.cc", |
| 5183 | "socket/socks_client_socket_unittest.cc", |
| 5184 | "socket/ssl_client_socket_pool_unittest.cc", |
| 5185 | "socket/ssl_client_socket_unittest.cc", |
| 5186 | "socket/ssl_server_socket_unittest.cc", |
| 5187 | "socket/tcp_client_socket_unittest.cc", |
| 5188 | "socket/tcp_server_socket_unittest.cc", |
| 5189 | "socket/tcp_socket_unittest.cc", |
| 5190 | "socket/transport_client_socket_pool_test_util.cc", |
| 5191 | "socket/transport_client_socket_pool_test_util.h", |
| 5192 | "socket/transport_client_socket_pool_unittest.cc", |
| 5193 | "socket/transport_client_socket_unittest.cc", |
| 5194 | "socket/udp_socket_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5195 | "socket/websocket_endpoint_lock_manager_unittest.cc", |
| 5196 | "socket/websocket_transport_client_socket_pool_unittest.cc", |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 5197 | "spdy/chromium/bidirectional_stream_spdy_impl_unittest.cc", |
| 5198 | "spdy/chromium/buffered_spdy_framer_unittest.cc", |
| 5199 | "spdy/chromium/header_coalescer_test.cc", |
| 5200 | "spdy/chromium/http2_priority_dependencies_unittest.cc", |
Bence Béky | c2a82bdd | 2017-10-05 13:03:32 | [diff] [blame] | 5201 | "spdy/chromium/http2_push_promise_index_test.cc", |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 5202 | "spdy/chromium/spdy_buffer_unittest.cc", |
| 5203 | "spdy/chromium/spdy_http_stream_unittest.cc", |
| 5204 | "spdy/chromium/spdy_http_utils_unittest.cc", |
| 5205 | "spdy/chromium/spdy_log_util_unittest.cc", |
| 5206 | "spdy/chromium/spdy_network_transaction_unittest.cc", |
| 5207 | "spdy/chromium/spdy_proxy_client_socket_unittest.cc", |
| 5208 | "spdy/chromium/spdy_read_queue_unittest.cc", |
| 5209 | "spdy/chromium/spdy_session_pool_unittest.cc", |
| 5210 | "spdy/chromium/spdy_session_test_util.cc", |
| 5211 | "spdy/chromium/spdy_session_test_util.h", |
| 5212 | "spdy/chromium/spdy_session_unittest.cc", |
| 5213 | "spdy/chromium/spdy_stream_test_util.cc", |
| 5214 | "spdy/chromium/spdy_stream_test_util.h", |
| 5215 | "spdy/chromium/spdy_stream_unittest.cc", |
| 5216 | "spdy/chromium/spdy_write_queue_unittest.cc", |
| 5217 | "spdy/core/array_output_buffer.cc", |
| 5218 | "spdy/core/array_output_buffer.h", |
| 5219 | "spdy/core/array_output_buffer_test.cc", |
| 5220 | "spdy/core/fuzzing/hpack_fuzz_util_test.cc", |
Dianna Hu | 33dcd6c | 2017-07-24 15:01:46 | [diff] [blame] | 5221 | "spdy/core/hpack/hpack_decoder_adapter_test.cc", |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 5222 | "spdy/core/hpack/hpack_encoder_test.cc", |
| 5223 | "spdy/core/hpack/hpack_entry_test.cc", |
| 5224 | "spdy/core/hpack/hpack_header_table_test.cc", |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 5225 | "spdy/core/hpack/hpack_huffman_table_test.cc", |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 5226 | "spdy/core/hpack/hpack_output_stream_test.cc", |
| 5227 | "spdy/core/hpack/hpack_round_trip_test.cc", |
| 5228 | "spdy/core/hpack/hpack_static_table_test.cc", |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 5229 | "spdy/core/mock_spdy_framer_visitor.cc", |
| 5230 | "spdy/core/mock_spdy_framer_visitor.h", |
| 5231 | "spdy/core/priority_write_scheduler_test.cc", |
| 5232 | "spdy/core/spdy_alt_svc_wire_format_test.cc", |
| 5233 | "spdy/core/spdy_deframer_visitor.cc", |
| 5234 | "spdy/core/spdy_deframer_visitor.h", |
| 5235 | "spdy/core/spdy_deframer_visitor_test.cc", |
| 5236 | "spdy/core/spdy_frame_builder_test.cc", |
| 5237 | "spdy/core/spdy_frame_reader_test.cc", |
| 5238 | "spdy/core/spdy_framer_test.cc", |
| 5239 | "spdy/core/spdy_header_block_test.cc", |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 5240 | "spdy/core/spdy_no_op_visitor.cc", |
| 5241 | "spdy/core/spdy_no_op_visitor.h", |
| 5242 | "spdy/core/spdy_pinnable_buffer_piece_test.cc", |
| 5243 | "spdy/core/spdy_prefixed_buffer_reader_test.cc", |
| 5244 | "spdy/core/spdy_protocol_test.cc", |
| 5245 | "spdy/core/spdy_protocol_test_utils.cc", |
| 5246 | "spdy/core/spdy_protocol_test_utils.h", |
| 5247 | "spdy/core/spdy_test_utils.cc", |
| 5248 | "spdy/core/spdy_test_utils.h", |
Dianna Hu | 46254a8 | 2017-10-12 15:59:01 | [diff] [blame] | 5249 | "spdy/platform/api/spdy_mem_slice_test.cc", |
bnc | ed7be41d | 2017-03-28 17:30:24 | [diff] [blame] | 5250 | "spdy/platform/api/spdy_string_utils_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5251 | "ssl/channel_id_service_unittest.cc", |
mattm | 436ccfe | 2017-06-19 20:24:08 | [diff] [blame] | 5252 | "ssl/client_cert_identity_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5253 | "ssl/client_cert_store_mac_unittest.cc", |
| 5254 | "ssl/client_cert_store_nss_unittest.cc", |
| 5255 | "ssl/client_cert_store_unittest-inl.h", |
| 5256 | "ssl/client_cert_store_win_unittest.cc", |
| 5257 | "ssl/default_channel_id_store_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5258 | "ssl/ssl_cipher_suite_names_unittest.cc", |
| 5259 | "ssl/ssl_client_auth_cache_unittest.cc", |
| 5260 | "ssl/ssl_client_session_cache_unittest.cc", |
| 5261 | "ssl/ssl_config_service_unittest.cc", |
| 5262 | "ssl/ssl_config_unittest.cc", |
| 5263 | "ssl/ssl_connection_status_flags_unittest.cc", |
| 5264 | "ssl/ssl_platform_key_android_unittest.cc", |
| 5265 | "ssl/ssl_platform_key_mac_unittest.cc", |
| 5266 | "ssl/ssl_platform_key_nss_unittest.cc", |
| 5267 | "ssl/ssl_platform_key_util_unittest.cc", |
davidben | d6d1e4d | 2017-05-10 16:49:01 | [diff] [blame] | 5268 | "ssl/ssl_platform_key_win_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5269 | "test/embedded_test_server/embedded_test_server_unittest.cc", |
| 5270 | "test/embedded_test_server/http_request_unittest.cc", |
| 5271 | "test/embedded_test_server/http_response_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5272 | "test/run_all_unittests.cc", |
| 5273 | "third_party/nist-pkits/pkits_testcases-inl.h", |
| 5274 | "tools/content_decoder_tool/content_decoder_tool.cc", |
| 5275 | "tools/content_decoder_tool/content_decoder_tool.h", |
| 5276 | "tools/content_decoder_tool/content_decoder_tool_unittest.cc", |
| 5277 | "tools/quic/quic_simple_client_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5278 | "tools/tld_cleanup/tld_cleanup_util_unittest.cc", |
Tsuyoshi Horo | ec9880b | 2017-09-28 22:25:21 | [diff] [blame] | 5279 | "url_request/redirect_info_unittest.cc", |
Tsuyoshi Horo | 9e2ec4df | 2017-10-16 15:15:55 | [diff] [blame] | 5280 | "url_request/redirect_util_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5281 | "url_request/report_sender_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5282 | "url_request/url_fetcher_impl_unittest.cc", |
| 5283 | "url_request/url_fetcher_response_writer_unittest.cc", |
| 5284 | "url_request/url_request_context_builder_unittest.cc", |
| 5285 | "url_request/url_request_context_unittest.cc", |
| 5286 | "url_request/url_request_data_job_unittest.cc", |
| 5287 | "url_request/url_request_file_dir_job_unittest.cc", |
| 5288 | "url_request/url_request_file_job_unittest.cc", |
| 5289 | "url_request/url_request_filter_unittest.cc", |
| 5290 | "url_request/url_request_ftp_job_unittest.cc", |
| 5291 | "url_request/url_request_http_job_unittest.cc", |
| 5292 | "url_request/url_request_job_factory_impl_unittest.cc", |
| 5293 | "url_request/url_request_job_unittest.cc", |
| 5294 | "url_request/url_request_quic_unittest.cc", |
| 5295 | "url_request/url_request_simple_job_unittest.cc", |
| 5296 | "url_request/url_request_throttler_simulation_unittest.cc", |
| 5297 | "url_request/url_request_throttler_test_support.cc", |
| 5298 | "url_request/url_request_throttler_test_support.h", |
| 5299 | "url_request/url_request_throttler_unittest.cc", |
| 5300 | "url_request/url_request_unittest.cc", |
| 5301 | "url_request/view_cache_helper_unittest.cc", |
| 5302 | ] |
mattm | 1a07e63 | 2017-05-16 05:55:50 | [diff] [blame] | 5303 | net_unfiltered_sources = [] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5304 | |
Hitoshi Yoshida | f07e903 | 2017-12-08 00:41:18 | [diff] [blame] | 5305 | configs += [ "//build/config:precompiled_headers" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5306 | defines = [] |
| 5307 | |
| 5308 | deps = [ |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5309 | ":net", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 5310 | ":quic_test_tools", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5311 | ":simple_quic_tools", |
| 5312 | ":test_support", |
| 5313 | "//base", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5314 | "//base/third_party/dynamic_annotations", |
| 5315 | "//crypto", |
| 5316 | "//crypto:platform", |
| 5317 | "//crypto:test_support", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5318 | "//net/base/registry_controlled_domains", |
eranm | 9657f67 | 2017-05-05 12:25:19 | [diff] [blame] | 5319 | "//net/data/ssl/certificate_transparency:ct_log_list", |
martijn | d369e670 | 2017-03-21 18:36:45 | [diff] [blame] | 5320 | "//net/http:transport_security_state_unittest_data", |
Martijn Croonen | b1383da | 2017-10-11 11:56:35 | [diff] [blame] | 5321 | "//net/http:transport_security_state_unittest_data_default", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5322 | "//testing/gmock", |
| 5323 | "//testing/gtest", |
thomasanderson | 77bec4d | 2017-03-20 07:09:25 | [diff] [blame] | 5324 | "//third_party/protobuf:protobuf_lite", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5325 | "//third_party/zlib", |
| 5326 | "//url", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 5327 | "//url:url_features", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5328 | ] |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 5329 | |
| 5330 | if (enable_reporting) { |
| 5331 | sources += [ |
Julia Tuttle | 6c949ae | 2017-11-17 16:36:27 | [diff] [blame] | 5332 | "network_error_logging/network_error_logging_service_unittest.cc", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 5333 | "reporting/reporting_browsing_data_remover_unittest.cc", |
| 5334 | "reporting/reporting_cache_unittest.cc", |
| 5335 | "reporting/reporting_delivery_agent_unittest.cc", |
| 5336 | "reporting/reporting_endpoint_manager_unittest.cc", |
| 5337 | "reporting/reporting_garbage_collector_unittest.cc", |
| 5338 | "reporting/reporting_header_parser_unittest.cc", |
| 5339 | "reporting/reporting_network_change_observer_unittest.cc", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 5340 | "reporting/reporting_service_unittest.cc", |
| 5341 | "reporting/reporting_test_util.cc", |
| 5342 | "reporting/reporting_test_util.h", |
| 5343 | "reporting/reporting_uploader_unittest.cc", |
| 5344 | ] |
| 5345 | } |
| 5346 | |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5347 | if (!is_proto_quic) { |
| 5348 | deps += [ |
| 5349 | ":extras", |
| 5350 | "//base:i18n", |
| 5351 | "//sql", |
| 5352 | ] |
| 5353 | } else { |
| 5354 | sources -= [ |
| 5355 | "extras/sqlite/sqlite_channel_id_store_unittest.cc", |
| 5356 | "extras/sqlite/sqlite_persistent_cookie_store_unittest.cc", |
| 5357 | ] |
| 5358 | } |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5359 | |
jbudorick | 944eb92 | 2016-06-20 15:38:30 | [diff] [blame] | 5360 | data = [] |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 5361 | data_deps = [ |
| 5362 | "third_party/nist-pkits/", |
| 5363 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5364 | |
Scott Graham | be24b04f | 2017-09-21 23:27:52 | [diff] [blame] | 5365 | if (is_linux || is_mac || is_win || is_fuchsia) { |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5366 | deps += [ |
| 5367 | "//third_party/pyftpdlib/", |
| 5368 | "//third_party/pywebsocket/", |
| 5369 | "//third_party/tlslite/", |
| 5370 | ] |
mattm | 6586b43 | 2016-02-12 04:52:39 | [diff] [blame] | 5371 | data_deps += [ |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5372 | "//third_party/pyftpdlib/", |
| 5373 | "//third_party/pywebsocket/", |
| 5374 | "//third_party/tlslite/", |
| 5375 | ] |
| 5376 | data += [ |
| 5377 | "tools/testserver/", |
| 5378 | "//third_party/pyftpdlib/", |
| 5379 | "//third_party/pywebsocket/", |
| 5380 | "//third_party/tlslite/", |
| 5381 | "$root_out_dir/pyproto/google/", |
dpranke | f497c796 | 2015-07-31 19:46:23 | [diff] [blame] | 5382 | ] |
| 5383 | } |
| 5384 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5385 | if (is_desktop_linux) { |
| 5386 | deps += [ ":epoll_quic_tools" ] |
| 5387 | } |
| 5388 | if (is_linux) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5389 | sources += [ |
| 5390 | "tools/quic/chlo_extractor_test.cc", |
| 5391 | "tools/quic/end_to_end_test.cc", |
| 5392 | "tools/quic/platform/impl/quic_epoll_clock_test.cc", |
| 5393 | "tools/quic/platform/impl/quic_socket_utils_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5394 | "tools/quic/quic_client_test.cc", |
| 5395 | "tools/quic/quic_dispatcher_test.cc", |
| 5396 | "tools/quic/quic_epoll_alarm_factory_test.cc", |
| 5397 | "tools/quic/quic_epoll_connection_helper_test.cc", |
| 5398 | "tools/quic/quic_http_response_cache_test.cc", |
| 5399 | "tools/quic/quic_server_test.cc", |
| 5400 | "tools/quic/quic_simple_server_session_helper_test.cc", |
| 5401 | "tools/quic/quic_simple_server_session_test.cc", |
| 5402 | "tools/quic/quic_simple_server_stream_test.cc", |
| 5403 | "tools/quic/quic_simple_server_test.cc", |
Ryan Hamilton | c440230 | 2017-08-10 01:55:46 | [diff] [blame] | 5404 | "tools/quic/quic_spdy_client_session_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5405 | "tools/quic/quic_spdy_client_stream_test.cc", |
| 5406 | "tools/quic/quic_spdy_server_stream_base_test.cc", |
| 5407 | "tools/quic/quic_time_wait_list_manager_test.cc", |
| 5408 | "tools/quic/stateless_rejector_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5409 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5410 | deps += [ |
| 5411 | ":epoll_quic_tools", |
| 5412 | ":epoll_server", |
brettw | bc8b2a2 | 2015-07-28 18:24:42 | [diff] [blame] | 5413 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5414 | } |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 5415 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5416 | if (is_mac || is_ios) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5417 | sources += [ "base/mac/url_conversions_unittest.mm" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5418 | } |
| 5419 | |
mattm | af868e7 | 2016-09-23 23:25:20 | [diff] [blame] | 5420 | if (is_mac) { |
| 5421 | libs = [ "Security.framework" ] |
| 5422 | } |
| 5423 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5424 | if (is_chromeos) { |
| 5425 | sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] |
| 5426 | } |
| 5427 | |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5428 | if (!is_proto_quic && v8_use_external_startup_data) { |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5429 | deps += [ "//gin" ] |
| 5430 | } |
| 5431 | |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 5432 | if (is_win) { |
| 5433 | sources -= [ |
zentaro | b89acda4 | 2017-07-14 01:28:57 | [diff] [blame] | 5434 | "http/http_auth_handler_ntlm_portable_unittest.cc", |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 5435 | "ntlm/ntlm_buffer_reader_unittest.cc", |
| 5436 | "ntlm/ntlm_buffer_writer_unittest.cc", |
Zentaro Kavanagh | dd55661 | 2017-08-03 20:27:04 | [diff] [blame] | 5437 | "ntlm/ntlm_client_unittest.cc", |
zentaro | b89acda4 | 2017-07-14 01:28:57 | [diff] [blame] | 5438 | "ntlm/ntlm_test_data.h", |
| 5439 | "ntlm/ntlm_unittest.cc", |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 5440 | ] |
| 5441 | } |
| 5442 | |
Sergey Ulanov | 2a0b019 | 2017-08-31 23:09:40 | [diff] [blame] | 5443 | if (use_remote_test_server) { |
| 5444 | sources += |
| 5445 | [ "test/spawned_test_server/remote_test_server_proxy_unittests.cc" ] |
| 5446 | } |
| 5447 | |
Sergey Ulanov | ec1d3de | 2017-09-19 19:27:47 | [diff] [blame] | 5448 | if (enable_python_utils) { |
| 5449 | sources += [ "test/python_utils_unittest.cc" ] |
| 5450 | } |
| 5451 | |
Sergey Ulanov | 7c0bcaf | 2017-08-28 19:03:26 | [diff] [blame] | 5452 | if (is_fuchsia) { |
| 5453 | use_test_server = true |
| 5454 | } |
| 5455 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5456 | if (!use_nss_certs) { |
| 5457 | sources -= [ |
mattm | 9c63d44 | 2016-09-03 00:45:51 | [diff] [blame] | 5458 | "cert/internal/trust_store_nss_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5459 | "cert/nss_cert_database_unittest.cc", |
Matt Mueller | 10684c9 | 2017-08-09 07:24:09 | [diff] [blame] | 5460 | "cert/x509_util_nss_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5461 | "ssl/client_cert_store_nss_unittest.cc", |
davidben | 983d610b | 2016-12-14 19:35:40 | [diff] [blame] | 5462 | "ssl/ssl_platform_key_nss_unittest.cc", |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 5463 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5464 | if (is_chromeos) { # Already removed for all non-ChromeOS builds. |
davidben | 2bcbc6b | 2015-04-22 02:36:41 | [diff] [blame] | 5465 | sources -= [ |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5466 | "cert/nss_cert_database_chromeos_unittest.cc", |
| 5467 | "cert/nss_profile_filter_chromeos_unittest.cc", |
davidben | 2bcbc6b | 2015-04-22 02:36:41 | [diff] [blame] | 5468 | ] |
brettw | 43ae0e1 | 2015-07-14 22:12:36 | [diff] [blame] | 5469 | } |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 5470 | } |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5471 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5472 | if (use_kerberos) { |
| 5473 | defines += [ "USE_KERBEROS" ] |
| 5474 | } |
| 5475 | |
| 5476 | # These are excluded on Android, because the actual Kerberos support, which |
| 5477 | # these test, is in a separate app on Android. |
| 5478 | if (!use_kerberos || is_android) { |
| 5479 | sources -= [ |
| 5480 | "http/http_auth_gssapi_posix_unittest.cc", |
| 5481 | "http/mock_gssapi_library_posix.cc", |
| 5482 | "http/mock_gssapi_library_posix.h", |
| 5483 | ] |
| 5484 | } |
| 5485 | if (!use_kerberos) { |
| 5486 | sources -= [ "http/http_auth_handler_negotiate_unittest.cc" ] |
| 5487 | } |
| 5488 | |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 5489 | if (!use_nss_certs) { |
svaldez | a1714ab | 2016-03-18 20:47:53 | [diff] [blame] | 5490 | # Only include this test when using NSS for cert verification. |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5491 | sources -= [ "cert_net/nss_ocsp_unittest.cc" ] |
| 5492 | } |
| 5493 | |
jbudorick | 1273a84 | 2016-04-01 19:50:05 | [diff] [blame] | 5494 | if (enable_websockets) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5495 | sources += [ |
| 5496 | "server/http_connection_unittest.cc", |
| 5497 | "server/http_server_response_info_unittest.cc", |
| 5498 | "server/http_server_unittest.cc", |
| 5499 | "server/web_socket_encoder_unittest.cc", |
| 5500 | "websockets/websocket_basic_stream_test.cc", |
| 5501 | "websockets/websocket_channel_test.cc", |
| 5502 | "websockets/websocket_deflate_parameters_test.cc", |
| 5503 | "websockets/websocket_deflate_predictor_impl_test.cc", |
| 5504 | "websockets/websocket_deflate_stream_test.cc", |
| 5505 | "websockets/websocket_deflater_test.cc", |
| 5506 | "websockets/websocket_end_to_end_test.cc", |
| 5507 | "websockets/websocket_errors_test.cc", |
| 5508 | "websockets/websocket_extension_parser_test.cc", |
| 5509 | "websockets/websocket_extension_test.cc", |
| 5510 | "websockets/websocket_frame_parser_test.cc", |
| 5511 | "websockets/websocket_frame_test.cc", |
| 5512 | "websockets/websocket_handshake_challenge_test.cc", |
| 5513 | "websockets/websocket_handshake_stream_create_helper_test.cc", |
| 5514 | "websockets/websocket_inflater_test.cc", |
| 5515 | "websockets/websocket_stream_cookie_test.cc", |
| 5516 | "websockets/websocket_stream_create_test_base.cc", |
| 5517 | "websockets/websocket_stream_create_test_base.h", |
| 5518 | "websockets/websocket_stream_test.cc", |
| 5519 | "websockets/websocket_test_util.cc", |
| 5520 | "websockets/websocket_test_util.h", |
| 5521 | ] |
jbudorick | 1273a84 | 2016-04-01 19:50:05 | [diff] [blame] | 5522 | deps += [ ":http_server" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5523 | } |
| 5524 | |
| 5525 | if (disable_file_support) { |
| 5526 | sources -= [ |
| 5527 | "base/directory_lister_unittest.cc", |
Thiago Farina | d673bb12 | 2016-01-06 23:18:16 | [diff] [blame] | 5528 | "base/directory_listing_unittest.cc", |
shahriar.rostami | a8c06daf | 2016-02-12 00:07:04 | [diff] [blame] | 5529 | "url_request/url_request_file_dir_job_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5530 | "url_request/url_request_file_job_unittest.cc", |
| 5531 | ] |
| 5532 | } |
| 5533 | |
| 5534 | if (disable_ftp_support) { |
| 5535 | sources -= [ |
| 5536 | "ftp/ftp_auth_cache_unittest.cc", |
| 5537 | "ftp/ftp_ctrl_response_buffer_unittest.cc", |
| 5538 | "ftp/ftp_directory_listing_parser_ls_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5539 | "ftp/ftp_directory_listing_parser_unittest.cc", |
| 5540 | "ftp/ftp_directory_listing_parser_unittest.h", |
| 5541 | "ftp/ftp_directory_listing_parser_vms_unittest.cc", |
| 5542 | "ftp/ftp_directory_listing_parser_windows_unittest.cc", |
| 5543 | "ftp/ftp_network_transaction_unittest.cc", |
| 5544 | "ftp/ftp_util_unittest.cc", |
| 5545 | "url_request/url_request_ftp_job_unittest.cc", |
| 5546 | ] |
| 5547 | } |
| 5548 | |
| 5549 | if (!enable_built_in_dns) { |
| 5550 | sources -= [ |
| 5551 | "dns/address_sorter_posix_unittest.cc", |
| 5552 | "dns/address_sorter_unittest.cc", |
| 5553 | ] |
| 5554 | } |
| 5555 | |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 5556 | if (use_v8_in_net) { |
mmenke | e2ad992 | 2017-06-08 20:27:36 | [diff] [blame] | 5557 | deps += [ ":net_with_v8" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5558 | } else { |
| 5559 | sources -= [ |
| 5560 | "proxy/proxy_resolver_v8_tracing_unittest.cc", |
| 5561 | "proxy/proxy_resolver_v8_tracing_wrapper_unittest.cc", |
| 5562 | "proxy/proxy_resolver_v8_unittest.cc", |
| 5563 | ] |
| 5564 | } |
| 5565 | |
mmenke | 93be9ca | 2017-05-23 16:29:13 | [diff] [blame] | 5566 | if (enable_net_mojo) { |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5567 | deps += [ |
| 5568 | ":net_browser_services", |
| 5569 | ":net_utility_services", |
rockot | c637caf9b | 2016-02-10 09:57:08 | [diff] [blame] | 5570 | "//mojo/edk/system", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5571 | ] |
| 5572 | } else { |
| 5573 | sources -= [ |
| 5574 | "dns/host_resolver_mojo_unittest.cc", |
| 5575 | "dns/mojo_host_resolver_impl_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5576 | "proxy/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5577 | ] |
| 5578 | } |
| 5579 | |
| 5580 | if (!enable_mdns) { |
| 5581 | sources -= [ |
| 5582 | "dns/mdns_cache_unittest.cc", |
| 5583 | "dns/mdns_client_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5584 | ] |
| 5585 | } |
| 5586 | |
| 5587 | if (is_ios) { |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5588 | sources -= [ |
| 5589 | # TODO(droger): The following tests are disabled because the |
| 5590 | # implementation is missing or incomplete. |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5591 | "disk_cache/backend_unittest.cc", |
| 5592 | "disk_cache/blockfile/block_files_unittest.cc", |
| 5593 | |
| 5594 | # Need to read input data files. |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5595 | "socket/ssl_server_socket_unittest.cc", |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 5596 | "spdy/core/fuzzing/hpack_fuzz_util_test.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5597 | |
| 5598 | # Need TestServer. |
| 5599 | "cert_net/cert_net_fetcher_impl_unittest.cc", |
| 5600 | "proxy/proxy_script_fetcher_impl_unittest.cc", |
| 5601 | "socket/ssl_client_socket_unittest.cc", |
| 5602 | "url_request/url_fetcher_impl_unittest.cc", |
| 5603 | "url_request/url_request_context_builder_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5604 | ] |
mattm | 1a07e63 | 2017-05-16 05:55:50 | [diff] [blame] | 5605 | net_unfiltered_sources += [ "cert/x509_util_ios_and_mac_unittest.cc" ] |
rsesek | 7d4ab4bc | 2016-07-22 17:35:13 | [diff] [blame] | 5606 | |
| 5607 | bundle_deps = [ ":net_unittests_bundle_data" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5608 | } |
| 5609 | |
Sergey Ulanov | 21dea15 | 2017-09-13 00:50:50 | [diff] [blame] | 5610 | if (enable_unix_sockets) { |
| 5611 | sources += [ |
| 5612 | "socket/unix_domain_client_socket_posix_unittest.cc", |
| 5613 | "socket/unix_domain_server_socket_posix_unittest.cc", |
| 5614 | ] |
| 5615 | } |
| 5616 | |
Sergey Ulanov | 2beef3d | 2017-10-19 21:53:53 | [diff] [blame] | 5617 | # Use getifaddrs() on POSIX platforms, except Linux, Android and Fuchsia. |
| 5618 | if (!is_posix || is_linux || is_android || is_fuchsia) { |
Sergey Ulanov | 5c33235ae | 2017-07-06 23:55:07 | [diff] [blame] | 5619 | sources -= [ "base/network_interfaces_getifaddrs_unittest.cc" ] |
| 5620 | } |
| 5621 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 5622 | # Unit tests that aren't supported by the current ICU alternatives on Android. |
| 5623 | if (is_android && use_platform_icu_alternatives) { |
| 5624 | sources -= [ |
| 5625 | "base/filename_util_unittest.cc", |
| 5626 | "base/url_util_unittest.cc", |
| 5627 | "cert/x509_certificate_unittest.cc", |
| 5628 | "proxy/proxy_resolver_v8_unittest.cc", |
| 5629 | "url_request/url_request_job_unittest.cc", |
| 5630 | ] |
| 5631 | } |
| 5632 | |
| 5633 | # Unit tests that are not supported by the current ICU alternatives on iOS. |
| 5634 | if (is_ios && use_platform_icu_alternatives) { |
| 5635 | sources -= [ |
| 5636 | "base/filename_util_unittest.cc", |
| 5637 | "base/url_util_unittest.cc", |
| 5638 | "cert/x509_certificate_unittest.cc", |
| 5639 | "http/http_auth_handler_basic_unittest.cc", |
| 5640 | "http/http_auth_handler_digest_unittest.cc", |
| 5641 | "http/http_auth_handler_factory_unittest.cc", |
| 5642 | "http/http_auth_unittest.cc", |
| 5643 | "http/http_content_disposition_unittest.cc", |
| 5644 | "http/http_network_transaction_unittest.cc", |
| 5645 | "http/http_proxy_client_socket_pool_unittest.cc", |
| 5646 | "socket/ssl_client_socket_pool_unittest.cc", |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 5647 | "spdy/chromium/spdy_network_transaction_unittest.cc", |
| 5648 | "spdy/chromium/spdy_proxy_client_socket_unittest.cc", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 5649 | "url_request/url_request_job_unittest.cc", |
| 5650 | "url_request/url_request_unittest.cc", |
| 5651 | ] |
| 5652 | } |
| 5653 | |
| 5654 | # Exclude brotli test if the support for brotli is disabled. |
xunjieli | f54f24a0 | 2016-11-04 15:51:54 | [diff] [blame] | 5655 | if (disable_brotli_filter) { |
xunjieli | 084a929 | 2016-09-23 18:15:04 | [diff] [blame] | 5656 | sources -= [ "filter/brotli_source_stream_unittest.cc" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 5657 | } |
| 5658 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5659 | if (is_android) { |
agrieve | 732db3a | 2016-04-26 19:18:19 | [diff] [blame] | 5660 | data_deps += [ "//net/tools/testserver:testserver_py" ] |
agrieve | 9717636 | 2015-12-01 16:36:19 | [diff] [blame] | 5661 | deps += [ |
| 5662 | ":net_test_jni_headers", |
agrieve | a5517aa | 2015-10-23 03:03:45 | [diff] [blame] | 5663 | "//base:base_java_unittest_support", |
| 5664 | "//net/android:net_java", |
agrieve | a5517aa | 2015-10-23 03:03:45 | [diff] [blame] | 5665 | "//net/android:net_java_test_support", |
Yipeng Wang | ff2db2d | 2017-06-16 13:54:52 | [diff] [blame] | 5666 | "//net/android:net_java_test_support_provider", |
agrieve | 9717636 | 2015-12-01 16:36:19 | [diff] [blame] | 5667 | "//net/android:net_javatests", |
agrieve | a5517aa | 2015-10-23 03:03:45 | [diff] [blame] | 5668 | "//net/android:net_unittests_apk_resources", |
agrieve | 9717636 | 2015-12-01 16:36:19 | [diff] [blame] | 5669 | |
| 5670 | # TODO(mmenke): This depends on test_support_base, which depends on |
| 5671 | # icu. Figure out a way to remove that dependency. |
| 5672 | "//testing/android/native_test:native_test_native_code", |
pkotwicz | 8c7027d | 2015-11-11 06:30:07 | [diff] [blame] | 5673 | "//v8:v8_external_startup_data_assets", |
agrieve | a5517aa | 2015-10-23 03:03:45 | [diff] [blame] | 5674 | ] |
| 5675 | android_manifest = "//net/android/unittest_support/AndroidManifest.xml" |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5676 | set_sources_assignment_filter([]) |
Sergey Ulanov | 5bb07d3 | 2017-07-12 04:14:54 | [diff] [blame] | 5677 | sources += [ |
| 5678 | "base/address_tracker_linux_unittest.cc", |
| 5679 | "base/network_interfaces_linux_unittest.cc", |
| 5680 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5681 | set_sources_assignment_filter(sources_assignment_filter) |
agrieve | 3ac557f0 | 2016-04-12 15:52:00 | [diff] [blame] | 5682 | shard_timeout = 300 |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5683 | } |
| 5684 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5685 | # Symbols for crashes when running tests on swarming. |
| 5686 | if (symbol_level > 0) { |
| 5687 | if (is_win) { |
| 5688 | data += [ "$root_out_dir/net_unittests.exe.pdb" ] |
| 5689 | } else if (is_mac) { |
dpranke | de2945b8 | 2016-04-15 22:14:13 | [diff] [blame] | 5690 | # TODO(crbug.com/330301): make this conditional on mac_strip_release. |
| 5691 | # data += [ "$root_out_dir/net_unittests.dSYM/" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5692 | } |
| 5693 | } |
maksim.sisov | c69619d | 2016-05-20 19:23:55 | [diff] [blame] | 5694 | |
| 5695 | if (is_win) { |
davidben | d6d1e4d | 2017-05-10 16:49:01 | [diff] [blame] | 5696 | libs = [ |
| 5697 | "iphlpapi.lib", |
| 5698 | "ncrypt.lib", |
| 5699 | ] |
maksim.sisov | c69619d | 2016-05-20 19:23:55 | [diff] [blame] | 5700 | } |
davidben | 983d610b | 2016-12-14 19:35:40 | [diff] [blame] | 5701 | |
| 5702 | if (is_chromecast && use_nss_certs) { |
mattm | 436ccfe | 2017-06-19 20:24:08 | [diff] [blame] | 5703 | sources -= [ |
| 5704 | "ssl/client_cert_store_nss_unittest.cc", |
| 5705 | "ssl/ssl_platform_key_nss_unittest.cc", |
| 5706 | ] |
davidben | 983d610b | 2016-12-14 19:35:40 | [diff] [blame] | 5707 | } |
martijn | b9aca9d | 2017-03-31 19:56:15 | [diff] [blame] | 5708 | |
| 5709 | # Include transport_security_state_generator tests. |
| 5710 | if (host_toolchain == current_toolchain) { |
| 5711 | deps += [ "//net/tools/transport_security_state_generator:transport_security_state_generator_test_sources" ] |
| 5712 | } |
mattm | 1a07e63 | 2017-05-16 05:55:50 | [diff] [blame] | 5713 | |
| 5714 | # Add back some sources that were otherwise filtered out. |
| 5715 | set_sources_assignment_filter([]) |
| 5716 | sources += net_unfiltered_sources |
| 5717 | set_sources_assignment_filter(sources_assignment_filter) |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5718 | } |
| 5719 | |
| 5720 | # !is_android && !is_win && !is_mac |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5721 | if (!is_ios && !is_proto_quic) { |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5722 | # TODO(crbug.com/594965): this should be converted to "app" template and |
| 5723 | # enabled on iOS too. |
| 5724 | executable("net_perftests") { |
| 5725 | testonly = true |
| 5726 | sources = [ |
| 5727 | "base/mime_sniffer_perftest.cc", |
| 5728 | "cookies/cookie_monster_perftest.cc", |
gavinp | c28fe112 | 2016-05-13 17:49:05 | [diff] [blame] | 5729 | "disk_cache/disk_cache_perftest.cc", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5730 | "extras/sqlite/sqlite_persistent_cookie_store_perftest.cc", |
tfarina | 5dd13c2 | 2016-11-16 12:08:26 | [diff] [blame] | 5731 | "socket/udp_socket_perftest.cc", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 5732 | "url_request/url_request_quic_perftest.cc", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5733 | ] |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 5734 | |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5735 | deps = [ |
| 5736 | ":extras", |
| 5737 | ":net", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 5738 | ":quic_test_tools", |
| 5739 | ":simple_quic_tools", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5740 | ":test_support", |
| 5741 | "//base", |
| 5742 | "//base:i18n", |
| 5743 | "//base/test:test_support_perf", |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 5744 | "//build/config:exe_and_shlib_deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 5745 | "//build/win:default_exe_manifest", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5746 | "//testing/gtest", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 5747 | "//testing/perf", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5748 | "//url", |
| 5749 | ] |
xunjieli | 5a86684 | 2017-06-09 18:16:20 | [diff] [blame] | 5750 | data = [ |
| 5751 | # Needed for isolate script to execute. |
| 5752 | "//testing/scripts/common.py", |
| 5753 | "//testing/xvfb.py", |
| 5754 | "//testing/scripts/run_gtest_perf_test.py", |
| 5755 | "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 5756 | ] |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5757 | if (enable_websockets) { |
| 5758 | sources += [ "websockets/websocket_frame_perftest.cc" ] |
| 5759 | } |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 5760 | |
sebmarchand | a6de346 | 2016-12-14 21:14:01 | [diff] [blame] | 5761 | # Some linker failures have been observed for this target on the Win64 |
| 5762 | # continuous builder, see crbug.com/659369. |
| 5763 | # TODO(sebmarchand): Remove this once we have some data. |
| 5764 | if (is_win && linkrepro_root_dir != "") { |
| 5765 | ldflags = [ "/LINKREPRO:" + linkrepro_root_dir + "/" + target_name ] |
| 5766 | } |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 5767 | } |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 5768 | } |
mef | ff34b82 | 2016-01-11 15:28:08 | [diff] [blame] | 5769 | |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5770 | # Fuzzers |
| 5771 | |
mmenke | 35a3001 | 2016-07-15 19:20:12 | [diff] [blame] | 5772 | # This has a global (InitGlobals) that must always be linked in, so |
| 5773 | # must be a source set instead of a static library. |
| 5774 | source_set("net_fuzzer_test_support") { |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5775 | testonly = true |
| 5776 | |
| 5777 | sources = [ |
csharrison | 37ef985 | 2016-08-23 19:00:19 | [diff] [blame] | 5778 | "base/fuzzer_test_support.cc", |
mmenke | a7da071 | 2016-11-21 21:12:31 | [diff] [blame] | 5779 | "dns/fuzzed_host_resolver.cc", |
| 5780 | "dns/fuzzed_host_resolver.h", |
xunjieli | 7583733 | 2016-10-31 16:51:26 | [diff] [blame] | 5781 | "filter/fuzzed_source_stream.cc", |
| 5782 | "filter/fuzzed_source_stream.h", |
tfarina | 5dd13c2 | 2016-11-16 12:08:26 | [diff] [blame] | 5783 | "socket/fuzzed_datagram_client_socket.cc", |
| 5784 | "socket/fuzzed_datagram_client_socket.h", |
morlovich | 5e6e19b | 2017-01-30 14:38:16 | [diff] [blame] | 5785 | "socket/fuzzed_server_socket.cc", |
| 5786 | "socket/fuzzed_server_socket.h", |
mmenke | 99b5717 | 2016-04-14 20:44:33 | [diff] [blame] | 5787 | "socket/fuzzed_socket.cc", |
| 5788 | "socket/fuzzed_socket.h", |
mmenke | c951d41 | 2016-04-28 19:05:22 | [diff] [blame] | 5789 | "socket/fuzzed_socket_factory.cc", |
| 5790 | "socket/fuzzed_socket_factory.h", |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5791 | ] |
csharrison | f30fc95f | 2016-08-19 21:43:44 | [diff] [blame] | 5792 | public_deps = [ |
| 5793 | "//base/test:test_support", |
| 5794 | ] |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5795 | deps = [ |
| 5796 | "//base", |
| 5797 | "//base:i18n", |
mmenke | 99b5717 | 2016-04-14 20:44:33 | [diff] [blame] | 5798 | "//net", |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5799 | ] |
| 5800 | } |
| 5801 | |
csharrison | aa314dc | 2016-04-29 20:15:37 | [diff] [blame] | 5802 | fuzzer_test("net_data_job_fuzzer") { |
| 5803 | sources = [ |
| 5804 | "url_request/url_request_data_job_fuzzer.cc", |
| 5805 | ] |
| 5806 | deps = [ |
| 5807 | ":net_fuzzer_test_support", |
| 5808 | ":test_support", |
| 5809 | "//base", |
| 5810 | "//net", |
| 5811 | ] |
| 5812 | } |
| 5813 | |
mmenke | 5552a6a | 2016-03-28 23:11:59 | [diff] [blame] | 5814 | fuzzer_test("net_mime_sniffer_fuzzer") { |
| 5815 | sources = [ |
| 5816 | "base/mime_sniffer_fuzzer.cc", |
| 5817 | ] |
| 5818 | deps = [ |
| 5819 | ":net_fuzzer_test_support", |
| 5820 | "//base", |
| 5821 | "//net", |
| 5822 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5823 | dict = "data/fuzzer_dictionaries/net_mime_sniffer_fuzzer.dict" |
mmenke | 5552a6a | 2016-03-28 23:11:59 | [diff] [blame] | 5824 | } |
| 5825 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5826 | fuzzer_test("net_parse_proxy_list_pac_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5827 | sources = [ |
| 5828 | "proxy/parse_proxy_list_pac_fuzzer.cc", |
| 5829 | ] |
| 5830 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5831 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5832 | "//net", |
| 5833 | ] |
| 5834 | } |
| 5835 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5836 | fuzzer_test("net_parse_proxy_list_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5837 | sources = [ |
| 5838 | "proxy/parse_proxy_list_fuzzer.cc", |
| 5839 | ] |
| 5840 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5841 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5842 | "//net", |
| 5843 | ] |
| 5844 | } |
| 5845 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5846 | fuzzer_test("net_parse_proxy_bypass_rules_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5847 | sources = [ |
| 5848 | "proxy/parse_proxy_bypass_rules_fuzzer.cc", |
| 5849 | ] |
| 5850 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5851 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5852 | "//net", |
| 5853 | ] |
| 5854 | } |
| 5855 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5856 | fuzzer_test("net_parse_proxy_rules_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5857 | sources = [ |
| 5858 | "proxy/parse_proxy_rules_fuzzer.cc", |
| 5859 | ] |
| 5860 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5861 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5862 | "//net", |
| 5863 | ] |
metzman | 31db75e | 2016-08-03 22:33:27 | [diff] [blame] | 5864 | dict = "data/fuzzer_dictionaries/net_parse_proxy_bypass_rules_fuzzer.dict" |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5865 | } |
| 5866 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5867 | fuzzer_test("net_parse_data_url_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5868 | sources = [ |
| 5869 | "base/parse_data_url_fuzzer.cc", |
| 5870 | ] |
| 5871 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5872 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5873 | "//base", |
| 5874 | "//net", |
| 5875 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5876 | dict = "data/fuzzer_dictionaries/net_parse_data_url_fuzzer.dict" |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5877 | } |
| 5878 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5879 | fuzzer_test("net_parse_ip_pattern_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5880 | sources = [ |
| 5881 | "base/parse_ip_pattern_fuzzer.cc", |
| 5882 | ] |
| 5883 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5884 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5885 | "//net", |
| 5886 | ] |
| 5887 | } |
| 5888 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5889 | fuzzer_test("net_get_domain_and_registry_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5890 | sources = [ |
| 5891 | "base/registry_controlled_domains/get_domain_and_registry_fuzzer.cc", |
| 5892 | ] |
| 5893 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5894 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5895 | "//base", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5896 | "//net", |
| 5897 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5898 | dict = "data/fuzzer_dictionaries/net_get_domain_and_registry_fuzzer.dict" |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5899 | } |
| 5900 | |
mattm | afe43b8 | 2016-04-28 20:40:54 | [diff] [blame] | 5901 | fuzzer_test("net_cert_verify_name_match_fuzzer") { |
| 5902 | sources = [ |
| 5903 | "cert/internal/verify_name_match_fuzzer.cc", |
| 5904 | ] |
| 5905 | deps = [ |
| 5906 | ":net_fuzzer_test_support", |
| 5907 | "//base", |
| 5908 | "//net", |
| 5909 | ] |
| 5910 | } |
| 5911 | |
mattm | 2c637da4 | 2016-04-28 02:55:59 | [diff] [blame] | 5912 | fuzzer_test("net_cert_normalize_name_fuzzer") { |
| 5913 | sources = [ |
| 5914 | "cert/internal/verify_name_match_normalizename_fuzzer.cc", |
| 5915 | ] |
| 5916 | deps = [ |
| 5917 | "//base", |
| 5918 | "//net", |
| 5919 | ] |
| 5920 | } |
| 5921 | |
mattm | afe43b8 | 2016-04-28 20:40:54 | [diff] [blame] | 5922 | fuzzer_test("net_cert_verify_name_in_subtree_fuzzer") { |
| 5923 | sources = [ |
| 5924 | "cert/internal/verify_name_match_verifynameinsubtree_fuzzer.cc", |
| 5925 | ] |
| 5926 | deps = [ |
| 5927 | ":net_fuzzer_test_support", |
| 5928 | "//base", |
| 5929 | "//net", |
| 5930 | ] |
| 5931 | } |
| 5932 | |
nharper | 85d3b6f | 2016-04-28 20:58:19 | [diff] [blame] | 5933 | fuzzer_test("net_cert_parse_certificate_fuzzer") { |
| 5934 | sources = [ |
| 5935 | "cert/internal/parse_certificate_fuzzer.cc", |
| 5936 | ] |
| 5937 | deps = [ |
| 5938 | "//base", |
| 5939 | "//net", |
| 5940 | ] |
| 5941 | } |
| 5942 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5943 | fuzzer_test("net_parse_cookie_line_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5944 | sources = [ |
| 5945 | "cookies/parse_cookie_line_fuzzer.cc", |
| 5946 | ] |
| 5947 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5948 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5949 | "//net", |
| 5950 | ] |
| 5951 | } |
| 5952 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5953 | fuzzer_test("net_dns_record_fuzzer") { |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5954 | sources = [ |
| 5955 | "dns/dns_record_fuzzer.cc", |
| 5956 | ] |
| 5957 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5958 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5959 | "//base", |
| 5960 | "//net", |
| 5961 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5962 | dict = "data/fuzzer_dictionaries/net_dns_record_fuzzer.dict" |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5963 | } |
| 5964 | |
zhongyi | 273af9f | 2016-04-28 18:46:34 | [diff] [blame] | 5965 | fuzzer_test("net_dns_hosts_parse_fuzzer") { |
| 5966 | sources = [ |
| 5967 | "dns/dns_hosts_parse_fuzzer.cc", |
| 5968 | ] |
| 5969 | deps = [ |
| 5970 | ":net_fuzzer_test_support", |
| 5971 | "//base", |
| 5972 | "//net", |
| 5973 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5974 | dict = "data/fuzzer_dictionaries/net_dns_hosts_parse_fuzzer.dict" |
zhongyi | 273af9f | 2016-04-28 18:46:34 | [diff] [blame] | 5975 | } |
| 5976 | |
mmenke | 91c1716 | 2016-06-02 16:03:23 | [diff] [blame] | 5977 | fuzzer_test("net_host_resolver_impl_fuzzer") { |
| 5978 | sources = [ |
mmenke | 91c1716 | 2016-06-02 16:03:23 | [diff] [blame] | 5979 | "dns/host_resolver_impl_fuzzer.cc", |
| 5980 | ] |
| 5981 | deps = [ |
| 5982 | ":net_fuzzer_test_support", |
| 5983 | ":test_support", |
| 5984 | "//base", |
| 5985 | "//net", |
| 5986 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5987 | dict = "data/fuzzer_dictionaries/net_host_resolver_impl_fuzzer.dict" |
mmenke | 91c1716 | 2016-06-02 16:03:23 | [diff] [blame] | 5988 | } |
| 5989 | |
mmenke | 44e8e9c | 2016-03-29 18:38:57 | [diff] [blame] | 5990 | fuzzer_test("net_http_stream_parser_fuzzer") { |
| 5991 | sources = [ |
| 5992 | "http/http_stream_parser_fuzzer.cc", |
| 5993 | ] |
| 5994 | deps = [ |
| 5995 | ":net_fuzzer_test_support", |
| 5996 | ":test_support", |
| 5997 | "//base", |
| 5998 | "//net", |
| 5999 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 6000 | dict = "data/fuzzer_dictionaries/net_http_stream_parser_fuzzer.dict" |
mmenke | 44e8e9c | 2016-03-29 18:38:57 | [diff] [blame] | 6001 | } |
| 6002 | |
Zentaro Kavanagh | dd55661 | 2017-08-03 20:27:04 | [diff] [blame] | 6003 | fuzzer_test("net_ntlm_ntlm_client_fuzzer") { |
| 6004 | sources = [ |
| 6005 | "ntlm/ntlm_client_fuzzer.cc", |
| 6006 | ] |
| 6007 | deps = [ |
| 6008 | ":net_fuzzer_test_support", |
| 6009 | ":test_support", |
| 6010 | "//base", |
| 6011 | "//net", |
| 6012 | "//net:net_unittests", |
| 6013 | ] |
| 6014 | dict = "data/fuzzer_dictionaries/net_ntlm_ntlm_client_fuzzer.dict" |
| 6015 | seed_corpus = "data/fuzzer_data/ntlm_client_fuzzer/" |
| 6016 | } |
| 6017 | |
xunjieli | d5ffeaf | 2016-11-01 15:22:00 | [diff] [blame] | 6018 | if (!disable_brotli_filter) { |
| 6019 | fuzzer_test("net_brotli_source_stream_fuzzer") { |
| 6020 | sources = [ |
| 6021 | "filter/brotli_source_stream_fuzzer.cc", |
| 6022 | ] |
| 6023 | deps = [ |
| 6024 | ":net_fuzzer_test_support", |
| 6025 | ":test_support", |
| 6026 | "//base", |
| 6027 | "//net", |
| 6028 | ] |
| 6029 | } |
| 6030 | } |
| 6031 | |
xunjieli | 7583733 | 2016-10-31 16:51:26 | [diff] [blame] | 6032 | fuzzer_test("net_gzip_source_stream_fuzzer") { |
| 6033 | sources = [ |
| 6034 | "filter/gzip_source_stream_fuzzer.cc", |
| 6035 | ] |
| 6036 | deps = [ |
| 6037 | ":net_fuzzer_test_support", |
| 6038 | ":test_support", |
| 6039 | "//base", |
| 6040 | "//net", |
| 6041 | ] |
| 6042 | } |
| 6043 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 6044 | fuzzer_test("net_ftp_ctrl_response_fuzzer") { |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6045 | sources = [ |
| 6046 | "ftp/ftp_ctrl_response_fuzzer.cc", |
| 6047 | ] |
| 6048 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6049 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6050 | "//base", |
| 6051 | "//net", |
| 6052 | ] |
| 6053 | } |
| 6054 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 6055 | fuzzer_test("net_ftp_directory_listing_fuzzer") { |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6056 | sources = [ |
| 6057 | "ftp/ftp_directory_listing_fuzzer.cc", |
| 6058 | ] |
| 6059 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6060 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6061 | "//base", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6062 | "//net", |
| 6063 | ] |
| 6064 | } |
| 6065 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 6066 | fuzzer_test("net_unescape_url_component_fuzzer") { |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6067 | sources = [ |
| 6068 | "base/unescape_url_component_fuzzer.cc", |
| 6069 | ] |
| 6070 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6071 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6072 | "//base", |
| 6073 | "//net", |
| 6074 | ] |
mmoroz | 34eb008 | 2016-03-11 14:32:01 | [diff] [blame] | 6075 | dict = "base/unescape_url_component_fuzzer.dict" |
mmoroz | 062a4a6 | 2016-04-12 09:02:33 | [diff] [blame] | 6076 | libfuzzer_options = [ "max_len = 2048" ] |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6077 | } |
| 6078 | |
ricea | 7b870e7 | 2016-09-01 04:41:04 | [diff] [blame] | 6079 | fuzzer_test("net_websocket_deflate_stream_fuzzer") { |
| 6080 | sources = [ |
| 6081 | "websockets/websocket_deflate_stream_fuzzer.cc", |
| 6082 | ] |
| 6083 | deps = [ |
| 6084 | ":net_fuzzer_test_support", |
| 6085 | "//net", |
| 6086 | ] |
| 6087 | dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict" |
| 6088 | libfuzzer_options = [ "max_len=512" ] |
| 6089 | } |
| 6090 | |
ricea | f9dcc09 | 2016-09-13 12:42:00 | [diff] [blame] | 6091 | fuzzer_test("net_websocket_extension_parser_fuzzer") { |
| 6092 | sources = [ |
| 6093 | "websockets/websocket_extension_parser_fuzzer.cc", |
| 6094 | ] |
| 6095 | deps = [ |
| 6096 | ":net_fuzzer_test_support", |
| 6097 | "//net", |
| 6098 | ] |
| 6099 | dict = "data/fuzzer_dictionaries/net_websocket_extension_parser_fuzzer.dict" |
| 6100 | libfuzzer_options = [ "max_len = 256" ] |
| 6101 | } |
| 6102 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 6103 | fuzzer_test("net_websocket_frame_parser_fuzzer") { |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6104 | sources = [ |
| 6105 | "websockets/websocket_frame_parser_fuzzer.cc", |
| 6106 | ] |
| 6107 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6108 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6109 | "//net", |
| 6110 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 6111 | dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict" |
ricea | 105ae61 | 2016-09-08 08:00:07 | [diff] [blame] | 6112 | libfuzzer_options = [ "max_len=256" ] |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6113 | } |
| 6114 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 6115 | fuzzer_test("net_http_chunked_decoder_fuzzer") { |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6116 | sources = [ |
| 6117 | "http/http_chunked_decoder_fuzzer.cc", |
| 6118 | ] |
| 6119 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6120 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6121 | "//net", |
| 6122 | ] |
| 6123 | } |
| 6124 | |
mmenke | 8e9314bc | 2016-04-15 21:45:02 | [diff] [blame] | 6125 | fuzzer_test("net_http_proxy_client_socket_fuzzer") { |
| 6126 | sources = [ |
| 6127 | "http/http_proxy_client_socket_fuzzer.cc", |
| 6128 | ] |
| 6129 | deps = [ |
| 6130 | ":net_fuzzer_test_support", |
| 6131 | ":test_support", |
| 6132 | "//base", |
| 6133 | "//net", |
| 6134 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 6135 | dict = "data/fuzzer_dictionaries/net_http_proxy_client_socket_fuzzer.dict" |
mmenke | 8e9314bc | 2016-04-15 21:45:02 | [diff] [blame] | 6136 | } |
| 6137 | |
mmoroz | 9299ef9b | 2016-09-01 17:37:09 | [diff] [blame] | 6138 | fuzzer_test("net_parse_url_hostname_to_address_fuzzer") { |
| 6139 | sources = [ |
| 6140 | "base/parse_url_hostname_to_address_fuzzer.cc", |
| 6141 | ] |
| 6142 | deps = [ |
| 6143 | ":net_fuzzer_test_support", |
| 6144 | "//base", |
| 6145 | "//net", |
| 6146 | ] |
| 6147 | libfuzzer_options = [ "max_len=512" ] |
| 6148 | seed_corpus = "data/fuzzer_data/hostnames/" |
| 6149 | } |
| 6150 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 6151 | fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6152 | sources = [ |
rch | d4db7c15 | 2016-07-29 21:58:12 | [diff] [blame] | 6153 | "quic/core/quic_crypto_framer_parse_message_fuzzer.cc", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6154 | ] |
| 6155 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 6156 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 6157 | "//base", |
| 6158 | "//net", |
| 6159 | ] |
| 6160 | } |
mmenke | 99b5717 | 2016-04-14 20:44:33 | [diff] [blame] | 6161 | |
| 6162 | fuzzer_test("net_socks_client_socket_fuzzer") { |
| 6163 | sources = [ |
| 6164 | "socket/socks_client_socket_fuzzer.cc", |
| 6165 | ] |
| 6166 | deps = [ |
| 6167 | ":net_fuzzer_test_support", |
| 6168 | ":test_support", |
| 6169 | "//base", |
| 6170 | "//net", |
| 6171 | ] |
| 6172 | } |
| 6173 | |
| 6174 | fuzzer_test("net_socks5_client_socket_fuzzer") { |
| 6175 | sources = [ |
| 6176 | "socket/socks5_client_socket_fuzzer.cc", |
| 6177 | ] |
| 6178 | deps = [ |
| 6179 | ":net_fuzzer_test_support", |
| 6180 | ":test_support", |
| 6181 | "//base", |
| 6182 | "//net", |
| 6183 | ] |
| 6184 | } |
mmenke | c951d41 | 2016-04-28 19:05:22 | [diff] [blame] | 6185 | |
mmenke | a7da071 | 2016-11-21 21:12:31 | [diff] [blame] | 6186 | fuzzer_test("net_url_request_ftp_fuzzer") { |
| 6187 | sources = [ |
| 6188 | "url_request/url_request_ftp_fuzzer.cc", |
| 6189 | ] |
| 6190 | deps = [ |
| 6191 | ":net_fuzzer_test_support", |
| 6192 | ":test_support", |
| 6193 | "//base", |
| 6194 | "//net", |
| 6195 | ] |
| 6196 | dict = "data/fuzzer_dictionaries/net_url_request_ftp_fuzzer.dict" |
| 6197 | seed_corpus = "data/fuzzer_data/net_url_request_ftp_fuzzer/" |
| 6198 | } |
| 6199 | |
mmenke | c951d41 | 2016-04-28 19:05:22 | [diff] [blame] | 6200 | fuzzer_test("net_url_request_fuzzer") { |
| 6201 | sources = [ |
| 6202 | "url_request/url_request_fuzzer.cc", |
| 6203 | ] |
| 6204 | deps = [ |
| 6205 | ":net_fuzzer_test_support", |
| 6206 | ":test_support", |
| 6207 | "//base", |
| 6208 | "//net", |
| 6209 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 6210 | dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" |
mmenke | c951d41 | 2016-04-28 19:05:22 | [diff] [blame] | 6211 | } |
csharrison | 88d2a61 | 2016-09-09 16:58:54 | [diff] [blame] | 6212 | |
| 6213 | fuzzer_test("net_auth_challenge_tokenizer_fuzzer") { |
| 6214 | sources = [ |
| 6215 | "http/http_auth_challenge_tokenizer_fuzzer.cc", |
| 6216 | ] |
| 6217 | deps = [ |
| 6218 | ":net_fuzzer_test_support", |
| 6219 | ":test_support", |
| 6220 | "//base", |
| 6221 | "//net", |
| 6222 | ] |
| 6223 | } |
martijn | db9ad4f | 2016-10-26 18:34:09 | [diff] [blame] | 6224 | |
estark | a57e816 | 2017-04-21 18:01:05 | [diff] [blame] | 6225 | fuzzer_test("net_http_security_headers_expect_ct_fuzzer") { |
| 6226 | sources = [ |
| 6227 | "http/http_security_headers_expect_ct_fuzzer.cc", |
| 6228 | ] |
| 6229 | deps = [ |
| 6230 | ":net_fuzzer_test_support", |
| 6231 | "//base", |
| 6232 | "//net", |
| 6233 | "//url", |
| 6234 | ] |
| 6235 | dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
| 6236 | seed_corpus = "data/fuzzer_data/http_security_headers/" |
| 6237 | } |
| 6238 | |
martijn | db9ad4f | 2016-10-26 18:34:09 | [diff] [blame] | 6239 | fuzzer_test("net_http_security_headers_hsts_fuzzer") { |
| 6240 | sources = [ |
| 6241 | "http/http_security_headers_hsts_fuzzer.cc", |
| 6242 | ] |
| 6243 | deps = [ |
| 6244 | "//base", |
| 6245 | "//net", |
| 6246 | ] |
| 6247 | dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
estark | a57e816 | 2017-04-21 18:01:05 | [diff] [blame] | 6248 | seed_corpus = "data/fuzzer_data/http_security_headers/" |
martijn | db9ad4f | 2016-10-26 18:34:09 | [diff] [blame] | 6249 | } |
| 6250 | |
| 6251 | fuzzer_test("net_http_security_headers_hpkp_fuzzer") { |
| 6252 | sources = [ |
| 6253 | "http/http_security_headers_hpkp_fuzzer.cc", |
| 6254 | ] |
| 6255 | deps = [ |
martijn | 15387afb | 2016-10-27 22:21:04 | [diff] [blame] | 6256 | ":net_fuzzer_test_support", |
martijn | db9ad4f | 2016-10-26 18:34:09 | [diff] [blame] | 6257 | "//base", |
| 6258 | "//net", |
| 6259 | "//url", |
| 6260 | ] |
| 6261 | dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
estark | a57e816 | 2017-04-21 18:01:05 | [diff] [blame] | 6262 | seed_corpus = "data/fuzzer_data/http_security_headers/" |
martijn | db9ad4f | 2016-10-26 18:34:09 | [diff] [blame] | 6263 | } |
| 6264 | |
| 6265 | fuzzer_test("net_http_security_headers_hpkp_report_only_fuzzer") { |
| 6266 | sources = [ |
| 6267 | "http/http_security_headers_hpkp_report_only_fuzzer.cc", |
| 6268 | ] |
| 6269 | deps = [ |
martijn | 15387afb | 2016-10-27 22:21:04 | [diff] [blame] | 6270 | ":net_fuzzer_test_support", |
martijn | db9ad4f | 2016-10-26 18:34:09 | [diff] [blame] | 6271 | "//base", |
| 6272 | "//net", |
| 6273 | "//url", |
| 6274 | ] |
| 6275 | dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
| 6276 | } |
martijn | 40db4b76 | 2016-12-14 00:26:45 | [diff] [blame] | 6277 | |
martijn | da94079 | 2016-12-29 01:36:51 | [diff] [blame] | 6278 | fuzzer_test("net_http_transport_security_state_static_fuzzer") { |
| 6279 | sources = [ |
| 6280 | "http/transport_security_state_static_fuzzer.cc", |
| 6281 | ] |
| 6282 | deps = [ |
| 6283 | ":net_fuzzer_test_support", |
| 6284 | "//net", |
| 6285 | ] |
| 6286 | dict = |
| 6287 | "data/fuzzer_dictionaries/net_http_transport_security_state_fuzzer.dict" |
| 6288 | } |
| 6289 | |
morlovich | 5e6e19b | 2017-01-30 14:38:16 | [diff] [blame] | 6290 | fuzzer_test("net_http_server_fuzzer") { |
| 6291 | sources = [ |
| 6292 | "server/http_server_fuzzer.cc", |
| 6293 | ] |
| 6294 | deps = [ |
| 6295 | ":http_server", |
| 6296 | ":net_fuzzer_test_support", |
| 6297 | ":test_support", |
| 6298 | "//base", |
| 6299 | "//net", |
| 6300 | ] |
| 6301 | dict = "data/fuzzer_dictionaries/net_http_server_fuzzer.dict" |
| 6302 | seed_corpus = "data/fuzzer_data/http_server_requests/" |
| 6303 | } |
| 6304 | |
morlovich | 833190ec | 2017-02-10 16:53:04 | [diff] [blame] | 6305 | fuzzer_test("net_spdy_session_fuzzer") { |
| 6306 | sources = [ |
bnc | 8f8f7d30 | 2017-04-24 18:08:06 | [diff] [blame] | 6307 | "spdy/chromium/spdy_session_fuzzer.cc", |
morlovich | 833190ec | 2017-02-10 16:53:04 | [diff] [blame] | 6308 | ] |
| 6309 | deps = [ |
| 6310 | ":net_fuzzer_test_support", |
| 6311 | ":test_support", |
| 6312 | "//base", |
| 6313 | "//net", |
Ryan Hamilton | e3e592e | 2017-11-16 04:49:09 | [diff] [blame] | 6314 | "//net/data/ssl/certificates:generate_fuzzer_cert_includes", |
morlovich | 833190ec | 2017-02-10 16:53:04 | [diff] [blame] | 6315 | ] |
| 6316 | dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 6317 | seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 6318 | } |
Patrick Meenan | 6a970137 | 2017-10-03 21:33:41 | [diff] [blame] | 6319 | |
| 6320 | fuzzer_test("net_http2_frame_decoder_fuzzer") { |
| 6321 | sources = [ |
| 6322 | "http2/decoder/http2_frame_decoder_fuzzer.cc", |
| 6323 | ] |
| 6324 | deps = [ |
| 6325 | ":net_fuzzer_test_support", |
| 6326 | ":test_support", |
| 6327 | "//base", |
| 6328 | "//net", |
| 6329 | ] |
| 6330 | } |
Patrick Meenan | 73b497a | 2017-10-05 22:40:44 | [diff] [blame] | 6331 | |
| 6332 | fuzzer_test("net_hpack_decoder_fuzzer") { |
| 6333 | sources = [ |
| 6334 | "http2/hpack/decoder/hpack_decoder_fuzzer.cc", |
| 6335 | ] |
| 6336 | deps = [ |
| 6337 | ":net_fuzzer_test_support", |
| 6338 | ":test_support", |
| 6339 | "//base", |
| 6340 | "//net", |
| 6341 | ] |
| 6342 | } |
Max Moroz | 592f4c6 | 2017-11-01 01:10:32 | [diff] [blame] | 6343 | |
| 6344 | proto_library("reporting_policy_proto") { |
| 6345 | import_dirs = [ "//testing/libfuzzer/proto/" ] |
| 6346 | sources = [ |
| 6347 | "reporting/reporting_policy.proto", |
| 6348 | ] |
| 6349 | deps = [ |
| 6350 | "//testing/libfuzzer/proto:json_proto", |
| 6351 | ] |
| 6352 | } |
| 6353 | |
| 6354 | fuzzer_test("net_reporting_header_parser_fuzzer") { |
| 6355 | sources = [ |
| 6356 | "reporting/reporting_header_parser_fuzzer.cc", |
Max Moroz | 592f4c6 | 2017-11-01 01:10:32 | [diff] [blame] | 6357 | "reporting/reporting_test_util.cc", |
Jana Iyengar | 1468369 | 2017-11-03 05:43:42 | [diff] [blame] | 6358 | "reporting/reporting_test_util.h", |
Max Moroz | 592f4c6 | 2017-11-01 01:10:32 | [diff] [blame] | 6359 | ] |
| 6360 | |
| 6361 | deps = [ |
| 6362 | ":net_fuzzer_test_support", |
| 6363 | ":reporting_policy_proto", |
| 6364 | ":test_support", |
| 6365 | "//base", |
| 6366 | "//net", |
| 6367 | "//testing/libfuzzer/proto:json_proto", |
| 6368 | "//testing/libfuzzer/proto:json_proto_converter", |
| 6369 | "//third_party/libprotobuf-mutator", |
| 6370 | ] |
| 6371 | } |
Ned Williamson | 3d55bbb | 2017-11-07 22:58:13 | [diff] [blame] | 6372 | |
| 6373 | fuzzer_test("net_quic_stream_factory_fuzzer") { |
| 6374 | sources = [ |
| 6375 | "quic/chromium/mock_crypto_client_stream_factory.cc", |
| 6376 | "quic/chromium/mock_crypto_client_stream_factory.h", |
| 6377 | "quic/chromium/quic_stream_factory_fuzzer.cc", |
| 6378 | "quic/chromium/test_task_runner.cc", |
| 6379 | "quic/chromium/test_task_runner.h", |
| 6380 | ] |
| 6381 | |
| 6382 | deps = [ |
| 6383 | ":net_fuzzer_test_support", |
| 6384 | ":quic_test_tools", |
| 6385 | ":test_support", |
| 6386 | "//net", |
Ryan Hamilton | e3e592e | 2017-11-16 04:49:09 | [diff] [blame] | 6387 | "//net/data/ssl/certificates:generate_fuzzer_cert_includes", |
Ned Williamson | 3d55bbb | 2017-11-07 22:58:13 | [diff] [blame] | 6388 | ] |
| 6389 | } |