[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 | |
brettw | a1228ebb | 2016-10-28 03:51:34 | [diff] [blame] | 40 | buildflag_header("features") { |
| 41 | header = "net_features.h" |
| 42 | flags = [ |
| 43 | "POSIX_AVOID_MMAP=$posix_avoid_mmap", |
| 44 | "DISABLE_FILE_SUPPORT=$disable_file_support", |
| 45 | "DISABLE_FTP_SUPPORT=$disable_ftp_support", |
brettw | 5224a18 | 2016-10-28 22:13:02 | [diff] [blame] | 46 | "ENABLE_MDNS=$enable_mdns", |
brettw | a1228ebb | 2016-10-28 03:51:34 | [diff] [blame] | 47 | "ENABLE_WEBSOCKETS=$enable_websockets", |
| 48 | ] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 49 | } |
| 50 | |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 51 | config("net_internal_config") { |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 52 | defines = [ |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 53 | "DLOPEN_KERBEROS", |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 54 | "NET_IMPLEMENTATION", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 55 | ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 56 | |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 57 | if (use_kerberos) { |
| 58 | defines += [ "USE_KERBEROS" ] |
| 59 | if (is_android) { |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 60 | include_dirs = [ "/usr/include/kerberosV" ] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 61 | } |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | if (enable_built_in_dns) { |
| 65 | defines += [ "ENABLE_BUILT_IN_DNS" ] |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 66 | } |
| 67 | } |
| 68 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 69 | net_configs = [ |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 70 | ":net_internal_config", |
| 71 | "//build/config:precompiled_headers", |
| 72 | |
| 73 | # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 74 | "//build/config/compiler:no_size_t_to_int_warning", |
rsesek | 99679aa | 2016-06-28 21:24:17 | [diff] [blame] | 75 | "//build/config/compiler:wexit_time_destructors", |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 76 | ] |
| 77 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 78 | if (use_glib && use_gconf && !is_chromeos) { |
agrieve | 95ba444 | 2016-04-25 15:47:13 | [diff] [blame] | 79 | net_configs += [ "//build/config/linux/gconf" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 80 | } |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 81 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 82 | if (is_linux) { |
| 83 | net_configs += [ "//build/config/linux:libresolv" ] |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 84 | } |
| 85 | |
xunjieli | 0b7f5b6 | 2016-12-06 20:43:48 | [diff] [blame] | 86 | source_set("constants") { |
| 87 | sources = [ |
| 88 | "base/trace_constants.cc", |
| 89 | "base/trace_constants.h", |
| 90 | ] |
| 91 | deps = [ |
| 92 | "//base", |
| 93 | ] |
| 94 | } |
| 95 | |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 96 | component("net") { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 97 | sources = [ |
| 98 | "base/address_family.cc", |
| 99 | "base/address_family.h", |
| 100 | "base/address_list.cc", |
| 101 | "base/address_list.h", |
| 102 | "base/arena.cc", |
| 103 | "base/arena.h", |
| 104 | "base/auth.cc", |
| 105 | "base/auth.h", |
| 106 | "base/completion_callback.h", |
| 107 | "base/escape.cc", |
| 108 | "base/escape.h", |
| 109 | "base/hash_value.cc", |
| 110 | "base/hash_value.h", |
| 111 | "base/host_port_pair.cc", |
| 112 | "base/host_port_pair.h", |
fayang | baec8ff5 | 2017-01-28 03:26:12 | [diff] [blame] | 113 | "base/interval.h", |
| 114 | "base/interval_set.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 115 | "base/io_buffer.cc", |
| 116 | "base/io_buffer.h", |
| 117 | "base/ip_address.cc", |
| 118 | "base/ip_address.h", |
| 119 | "base/ip_endpoint.cc", |
| 120 | "base/ip_endpoint.h", |
| 121 | "base/linked_hash_map.h", |
| 122 | "base/load_timing_info.cc", |
| 123 | "base/load_timing_info.h", |
| 124 | "base/lookup_string_in_fixed_set.cc", |
| 125 | "base/lookup_string_in_fixed_set.h", |
| 126 | "base/net_error_details.h", |
| 127 | "base/net_error_list.h", |
| 128 | "base/net_errors.cc", |
| 129 | "base/net_errors.h", |
| 130 | "base/net_errors_posix.cc", |
| 131 | "base/net_export.h", |
| 132 | "base/net_module.cc", |
| 133 | "base/net_module.h", |
| 134 | "base/net_string_util.h", |
| 135 | "base/network_interfaces.cc", |
| 136 | "base/network_interfaces.h", |
| 137 | "base/network_interfaces_posix.cc", |
| 138 | "base/parse_number.cc", |
| 139 | "base/parse_number.h", |
| 140 | "base/port_util.cc", |
| 141 | "base/port_util.h", |
| 142 | "base/rand_callback.h", |
| 143 | "base/registry_controlled_domains/registry_controlled_domain.cc", |
| 144 | "base/registry_controlled_domains/registry_controlled_domain.h", |
| 145 | "base/sockaddr_storage.cc", |
| 146 | "base/sockaddr_storage.h", |
| 147 | "base/sys_addrinfo.h", |
| 148 | "base/url_util.cc", |
| 149 | "base/url_util.h", |
| 150 | "base/zap.cc", |
| 151 | "base/zap.h", |
| 152 | "cert/asn1_util.cc", |
| 153 | "cert/asn1_util.h", |
| 154 | "cert/cert_database.cc", |
| 155 | "cert/cert_database.h", |
| 156 | "cert/cert_database_openssl.cc", |
| 157 | "cert/cert_status_flags.cc", |
| 158 | "cert/cert_status_flags.h", |
| 159 | "cert/cert_verifier.cc", |
| 160 | "cert/cert_verifier.h", |
| 161 | "cert/cert_verify_result.cc", |
| 162 | "cert/cert_verify_result.h", |
| 163 | "cert/client_cert_verifier.h", |
| 164 | "cert/crl_set.cc", |
| 165 | "cert/crl_set.h", |
| 166 | "cert/ct_known_logs.cc", |
| 167 | "cert/ct_known_logs.h", |
| 168 | "cert/ct_known_logs_static-inc.h", |
| 169 | "cert/ct_policy_enforcer.cc", |
| 170 | "cert/ct_policy_enforcer.h", |
| 171 | "cert/ct_policy_status.h", |
| 172 | "cert/ct_verifier.h", |
| 173 | "cert/ct_verify_result.cc", |
| 174 | "cert/ct_verify_result.h", |
| 175 | "cert/do_nothing_ct_verifier.cc", |
| 176 | "cert/do_nothing_ct_verifier.h", |
| 177 | "cert/internal/cert_error_id.cc", |
| 178 | "cert/internal/cert_error_id.h", |
| 179 | "cert/internal/cert_error_params.cc", |
| 180 | "cert/internal/cert_error_params.h", |
| 181 | "cert/internal/cert_error_scoper.cc", |
| 182 | "cert/internal/cert_error_scoper.h", |
| 183 | "cert/internal/cert_errors.cc", |
| 184 | "cert/internal/cert_errors.h", |
| 185 | "cert/internal/cert_issuer_source.h", |
| 186 | "cert/internal/cert_issuer_source_aia.cc", |
| 187 | "cert/internal/cert_issuer_source_aia.h", |
| 188 | "cert/internal/cert_issuer_source_static.cc", |
| 189 | "cert/internal/cert_issuer_source_static.h", |
| 190 | "cert/internal/certificate_policies.cc", |
| 191 | "cert/internal/certificate_policies.h", |
| 192 | "cert/internal/extended_key_usage.cc", |
| 193 | "cert/internal/extended_key_usage.h", |
| 194 | "cert/internal/name_constraints.cc", |
| 195 | "cert/internal/name_constraints.h", |
| 196 | "cert/internal/parse_certificate.cc", |
| 197 | "cert/internal/parse_certificate.h", |
| 198 | "cert/internal/parse_name.cc", |
| 199 | "cert/internal/parse_name.h", |
| 200 | "cert/internal/parse_ocsp.cc", |
| 201 | "cert/internal/parse_ocsp.h", |
| 202 | "cert/internal/parsed_certificate.cc", |
| 203 | "cert/internal/parsed_certificate.h", |
| 204 | "cert/internal/path_builder.cc", |
| 205 | "cert/internal/path_builder.h", |
| 206 | "cert/internal/signature_algorithm.cc", |
| 207 | "cert/internal/signature_algorithm.h", |
| 208 | "cert/internal/signature_policy.cc", |
| 209 | "cert/internal/signature_policy.h", |
| 210 | "cert/internal/trust_store.cc", |
| 211 | "cert/internal/trust_store.h", |
| 212 | "cert/internal/trust_store_collection.cc", |
| 213 | "cert/internal/trust_store_collection.h", |
| 214 | "cert/internal/trust_store_in_memory.cc", |
| 215 | "cert/internal/trust_store_in_memory.h", |
| 216 | "cert/internal/verify_certificate_chain.cc", |
| 217 | "cert/internal/verify_certificate_chain.h", |
| 218 | "cert/internal/verify_name_match.cc", |
| 219 | "cert/internal/verify_name_match.h", |
| 220 | "cert/internal/verify_signed_data.cc", |
| 221 | "cert/internal/verify_signed_data.h", |
| 222 | "cert/ocsp_revocation_status.h", |
| 223 | "cert/ocsp_verify_result.cc", |
| 224 | "cert/ocsp_verify_result.h", |
| 225 | "cert/pem_tokenizer.cc", |
| 226 | "cert/pem_tokenizer.h", |
| 227 | "cert/sct_status_flags.cc", |
| 228 | "cert/sct_status_flags.h", |
| 229 | "cert/signed_certificate_timestamp.cc", |
| 230 | "cert/signed_certificate_timestamp.h", |
| 231 | "cert/signed_certificate_timestamp_and_status.cc", |
| 232 | "cert/signed_certificate_timestamp_and_status.h", |
| 233 | "cert/signed_tree_head.cc", |
| 234 | "cert/signed_tree_head.h", |
| 235 | "cert/sth_distributor.cc", |
| 236 | "cert/sth_distributor.h", |
| 237 | "cert/sth_observer.h", |
| 238 | "cert/sth_reporter.h", |
| 239 | "cert/x509_cert_types.cc", |
| 240 | "cert/x509_cert_types.h", |
| 241 | "cert/x509_certificate.cc", |
| 242 | "cert/x509_certificate.h", |
| 243 | "cert/x509_certificate_net_log_param.cc", |
| 244 | "cert/x509_certificate_net_log_param.h", |
| 245 | "cert/x509_certificate_openssl.cc", |
| 246 | "cert/x509_util.cc", |
| 247 | "cert/x509_util.h", |
| 248 | "cert/x509_util_openssl.cc", |
| 249 | "cert/x509_util_openssl.h", |
| 250 | "der/encode_values.cc", |
| 251 | "der/encode_values.h", |
| 252 | "der/input.cc", |
| 253 | "der/input.h", |
| 254 | "der/parse_values.cc", |
| 255 | "der/parse_values.h", |
| 256 | "der/parser.cc", |
| 257 | "der/parser.h", |
| 258 | "der/tag.cc", |
| 259 | "der/tag.h", |
| 260 | "dns/dns_util.cc", |
| 261 | "dns/dns_util.h", |
| 262 | "http/http_auth_challenge_tokenizer.cc", |
| 263 | "http/http_auth_challenge_tokenizer.h", |
| 264 | "http/http_auth_scheme.cc", |
| 265 | "http/http_auth_scheme.h", |
| 266 | "http/http_byte_range.cc", |
| 267 | "http/http_byte_range.h", |
| 268 | "http/http_log_util.cc", |
| 269 | "http/http_log_util.h", |
| 270 | "http/http_request_headers.cc", |
| 271 | "http/http_request_headers.h", |
| 272 | "http/http_response_headers.cc", |
| 273 | "http/http_response_headers.h", |
| 274 | "http/http_response_info.cc", |
| 275 | "http/http_response_info.h", |
| 276 | "http/http_security_headers.cc", |
| 277 | "http/http_security_headers.h", |
| 278 | "http/http_util.cc", |
| 279 | "http/http_util.h", |
| 280 | "http/http_vary_data.cc", |
| 281 | "http/http_vary_data.h", |
| 282 | "http/transport_security_state.cc", |
| 283 | "http/transport_security_state.h", |
| 284 | "log/net_log.cc", |
| 285 | "log/net_log.h", |
| 286 | "log/net_log_capture_mode.cc", |
| 287 | "log/net_log_capture_mode.h", |
| 288 | "log/net_log_entry.cc", |
| 289 | "log/net_log_entry.h", |
| 290 | "log/net_log_event_type_list.h", |
| 291 | "log/net_log_source.cc", |
| 292 | "log/net_log_source.h", |
| 293 | "log/net_log_source_type_list.h", |
| 294 | "log/net_log_with_source.cc", |
| 295 | "log/net_log_with_source.h", |
| 296 | "socket/client_socket_handle.cc", |
| 297 | "socket/client_socket_handle.h", |
| 298 | "socket/connection_attempts.h", |
| 299 | "socket/next_proto.cc", |
| 300 | "socket/next_proto.h", |
| 301 | "socket/socket.h", |
| 302 | "socket/socket_bio_adapter.cc", |
| 303 | "socket/socket_bio_adapter.h", |
| 304 | "socket/socket_performance_watcher.h", |
| 305 | "socket/socket_performance_watcher_factory.h", |
| 306 | "socket/ssl_client_socket.cc", |
| 307 | "socket/ssl_client_socket.h", |
| 308 | "socket/ssl_client_socket_impl.cc", |
| 309 | "socket/ssl_client_socket_impl.h", |
| 310 | "socket/ssl_socket.h", |
| 311 | "spdy/spdy_header_block.cc", |
| 312 | "spdy/spdy_header_block.h", |
| 313 | "ssl/channel_id_service.cc", |
| 314 | "ssl/channel_id_service.h", |
| 315 | "ssl/channel_id_store.cc", |
| 316 | "ssl/channel_id_store.h", |
| 317 | "ssl/client_key_store.cc", |
| 318 | "ssl/client_key_store.h", |
| 319 | "ssl/default_channel_id_store.cc", |
| 320 | "ssl/default_channel_id_store.h", |
| 321 | "ssl/openssl_client_key_store.cc", |
| 322 | "ssl/openssl_client_key_store.h", |
| 323 | "ssl/openssl_ssl_util.cc", |
| 324 | "ssl/openssl_ssl_util.h", |
| 325 | "ssl/ssl_cert_request_info.cc", |
| 326 | "ssl/ssl_cert_request_info.h", |
| 327 | "ssl/ssl_cipher_suite_names.cc", |
| 328 | "ssl/ssl_cipher_suite_names.h", |
| 329 | "ssl/ssl_client_auth_cache.cc", |
| 330 | "ssl/ssl_client_auth_cache.h", |
| 331 | "ssl/ssl_client_cert_type.h", |
| 332 | "ssl/ssl_client_session_cache.cc", |
| 333 | "ssl/ssl_client_session_cache.h", |
| 334 | "ssl/ssl_config.cc", |
| 335 | "ssl/ssl_config.h", |
| 336 | "ssl/ssl_config_service.cc", |
| 337 | "ssl/ssl_config_service.h", |
| 338 | "ssl/ssl_connection_status_flags.h", |
| 339 | "ssl/ssl_info.cc", |
| 340 | "ssl/ssl_info.h", |
| 341 | "ssl/ssl_private_key.h", |
| 342 | "ssl/ssl_server_config.cc", |
| 343 | "ssl/ssl_server_config.h", |
| 344 | "ssl/token_binding.cc", |
| 345 | "ssl/token_binding.h", |
| 346 | ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 347 | net_unfiltered_sources = [] |
| 348 | |
| 349 | deps = [ |
xunjieli | 0b7f5b6 | 2016-12-06 20:43:48 | [diff] [blame] | 350 | ":constants", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 351 | ":net_resources", |
| 352 | "//base", |
| 353 | "//net/base/registry_controlled_domains", |
rsleevi | a491218 | 2017-01-27 00:38:25 | [diff] [blame] | 354 | "//net/data/ssl/wosign:wosign_domains", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 355 | "//third_party/protobuf:protobuf_lite", |
| 356 | "//url:url_features", |
| 357 | ] |
| 358 | |
| 359 | public_deps = [ |
| 360 | ":net_quic_proto", |
rhalavati | a9b551d | 2017-02-09 12:03:00 | [diff] [blame] | 361 | ":traffic_annotation", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 362 | "//crypto", |
| 363 | "//crypto:platform", |
| 364 | ] |
| 365 | |
| 366 | if (!is_nacl) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 367 | sources += [ |
| 368 | "android/cellular_signal_strength.cc", |
| 369 | "android/cellular_signal_strength.h", |
| 370 | "android/cert_verify_result_android.cc", |
| 371 | "android/cert_verify_result_android.h", |
| 372 | "android/gurl_utils.cc", |
| 373 | "android/gurl_utils.h", |
| 374 | "android/http_auth_negotiate_android.cc", |
| 375 | "android/http_auth_negotiate_android.h", |
| 376 | "android/keystore.cc", |
| 377 | "android/keystore.h", |
| 378 | "android/legacy_openssl.h", |
| 379 | "android/net_jni_registrar.cc", |
| 380 | "android/net_jni_registrar.h", |
| 381 | "android/network_change_notifier_android.cc", |
| 382 | "android/network_change_notifier_android.h", |
| 383 | "android/network_change_notifier_delegate_android.cc", |
| 384 | "android/network_change_notifier_delegate_android.h", |
| 385 | "android/network_change_notifier_factory_android.cc", |
| 386 | "android/network_change_notifier_factory_android.h", |
| 387 | "android/network_library.cc", |
| 388 | "android/network_library.h", |
| 389 | "android/traffic_stats.cc", |
| 390 | "android/traffic_stats.h", |
| 391 | "base/address_tracker_linux.cc", |
| 392 | "base/address_tracker_linux.h", |
| 393 | "base/backoff_entry.cc", |
| 394 | "base/backoff_entry.h", |
| 395 | "base/backoff_entry_serializer.cc", |
| 396 | "base/backoff_entry_serializer.h", |
| 397 | "base/cache_type.h", |
| 398 | "base/chunked_upload_data_stream.cc", |
| 399 | "base/chunked_upload_data_stream.h", |
| 400 | "base/crypto_module.h", |
| 401 | "base/crypto_module_nss.cc", |
| 402 | "base/crypto_module_openssl.cc", |
| 403 | "base/data_url.cc", |
| 404 | "base/data_url.h", |
| 405 | "base/elements_upload_data_stream.cc", |
| 406 | "base/elements_upload_data_stream.h", |
| 407 | "base/expiring_cache.h", |
| 408 | "base/file_stream.cc", |
| 409 | "base/file_stream.h", |
| 410 | "base/file_stream_context.cc", |
| 411 | "base/file_stream_context.h", |
| 412 | "base/file_stream_context_posix.cc", |
| 413 | "base/file_stream_context_win.cc", |
| 414 | "base/filename_util.cc", |
| 415 | "base/filename_util.h", |
| 416 | "base/filename_util_internal.cc", |
| 417 | "base/filename_util_internal.h", |
| 418 | "base/host_mapping_rules.cc", |
| 419 | "base/host_mapping_rules.h", |
| 420 | "base/int128.cc", |
| 421 | "base/int128.h", |
| 422 | "base/iovec.h", |
| 423 | "base/ip_pattern.cc", |
| 424 | "base/ip_pattern.h", |
| 425 | "base/layered_network_delegate.cc", |
| 426 | "base/layered_network_delegate.h", |
| 427 | "base/load_flags.h", |
| 428 | "base/load_flags_list.h", |
| 429 | "base/load_states.h", |
| 430 | "base/load_states_list.h", |
| 431 | "base/logging_network_change_observer.cc", |
| 432 | "base/logging_network_change_observer.h", |
| 433 | "base/mime_extension_chromeos.cc", |
| 434 | "base/mime_extension_chromeos.h", |
| 435 | "base/mime_sniffer.cc", |
| 436 | "base/mime_sniffer.h", |
| 437 | "base/mime_util.cc", |
| 438 | "base/mime_util.h", |
| 439 | "base/net_errors_win.cc", |
| 440 | "base/net_info_source_list.h", |
| 441 | "base/network_activity_monitor.cc", |
| 442 | "base/network_activity_monitor.h", |
| 443 | "base/network_change_notifier.cc", |
| 444 | "base/network_change_notifier.h", |
| 445 | "base/network_change_notifier_factory.h", |
| 446 | "base/network_change_notifier_linux.cc", |
| 447 | "base/network_change_notifier_linux.h", |
| 448 | "base/network_change_notifier_mac.cc", |
| 449 | "base/network_change_notifier_mac.h", |
| 450 | "base/network_change_notifier_win.cc", |
| 451 | "base/network_change_notifier_win.h", |
| 452 | "base/network_config_watcher_mac.cc", |
| 453 | "base/network_config_watcher_mac.h", |
| 454 | "base/network_delegate.cc", |
| 455 | "base/network_delegate.h", |
| 456 | "base/network_delegate_impl.cc", |
| 457 | "base/network_delegate_impl.h", |
| 458 | "base/network_interfaces_linux.cc", |
| 459 | "base/network_interfaces_mac.cc", |
| 460 | "base/network_interfaces_win.cc", |
| 461 | "base/network_throttle_manager.h", |
| 462 | "base/network_throttle_manager_impl.cc", |
| 463 | "base/network_throttle_manager_impl.h", |
| 464 | "base/percentile_estimator.cc", |
| 465 | "base/percentile_estimator.h", |
| 466 | "base/platform_mime_util.h", |
| 467 | "base/platform_mime_util_linux.cc", |
| 468 | "base/platform_mime_util_mac.mm", |
| 469 | "base/platform_mime_util_win.cc", |
| 470 | "base/prioritized_dispatcher.cc", |
| 471 | "base/prioritized_dispatcher.h", |
| 472 | "base/priority_queue.h", |
| 473 | "base/proxy_delegate.h", |
| 474 | "base/request_priority.cc", |
| 475 | "base/request_priority.h", |
| 476 | "base/sdch_dictionary.cc", |
| 477 | "base/sdch_dictionary.h", |
| 478 | "base/sdch_manager.cc", |
| 479 | "base/sdch_manager.h", |
| 480 | "base/sdch_net_log_params.cc", |
| 481 | "base/sdch_net_log_params.h", |
| 482 | "base/sdch_observer.cc", |
| 483 | "base/sdch_observer.h", |
| 484 | "base/sdch_problem_code_list.h", |
| 485 | "base/sdch_problem_codes.h", |
| 486 | "base/static_cookie_policy.cc", |
| 487 | "base/static_cookie_policy.h", |
| 488 | "base/test_data_stream.cc", |
| 489 | "base/test_data_stream.h", |
| 490 | "base/upload_bytes_element_reader.cc", |
| 491 | "base/upload_bytes_element_reader.h", |
| 492 | "base/upload_data_stream.cc", |
| 493 | "base/upload_data_stream.h", |
| 494 | "base/upload_element_reader.cc", |
| 495 | "base/upload_element_reader.h", |
| 496 | "base/upload_file_element_reader.cc", |
| 497 | "base/upload_file_element_reader.h", |
| 498 | "base/upload_progress.h", |
| 499 | "base/winsock_init.cc", |
| 500 | "base/winsock_init.h", |
| 501 | "base/winsock_util.cc", |
| 502 | "base/winsock_util.h", |
| 503 | "cert/caching_cert_verifier.cc", |
| 504 | "cert/caching_cert_verifier.h", |
| 505 | "cert/cert_database_android.cc", |
| 506 | "cert/cert_database_ios.cc", |
| 507 | "cert/cert_database_mac.cc", |
| 508 | "cert/cert_database_nss.cc", |
| 509 | "cert/cert_database_win.cc", |
| 510 | "cert/cert_net_fetcher.h", |
| 511 | "cert/cert_verify_proc.cc", |
| 512 | "cert/cert_verify_proc.h", |
| 513 | "cert/cert_verify_proc_android.cc", |
| 514 | "cert/cert_verify_proc_android.h", |
| 515 | "cert/cert_verify_proc_ios.cc", |
| 516 | "cert/cert_verify_proc_ios.h", |
| 517 | "cert/cert_verify_proc_mac.cc", |
| 518 | "cert/cert_verify_proc_mac.h", |
| 519 | "cert/cert_verify_proc_nss.cc", |
| 520 | "cert/cert_verify_proc_nss.h", |
| 521 | "cert/cert_verify_proc_openssl.cc", |
| 522 | "cert/cert_verify_proc_openssl.h", |
| 523 | "cert/cert_verify_proc_whitelist.cc", |
| 524 | "cert/cert_verify_proc_whitelist.h", |
| 525 | "cert/cert_verify_proc_win.cc", |
| 526 | "cert/cert_verify_proc_win.h", |
| 527 | "cert/crl_set_storage.cc", |
| 528 | "cert/crl_set_storage.h", |
| 529 | "cert/ct_ev_whitelist.h", |
| 530 | "cert/ct_log_response_parser.cc", |
| 531 | "cert/ct_log_response_parser.h", |
| 532 | "cert/ct_log_verifier.cc", |
| 533 | "cert/ct_log_verifier.h", |
| 534 | "cert/ct_log_verifier_util.cc", |
| 535 | "cert/ct_log_verifier_util.h", |
| 536 | "cert/ct_objects_extractor.cc", |
| 537 | "cert/ct_objects_extractor.h", |
| 538 | "cert/ct_sct_to_string.cc", |
| 539 | "cert/ct_sct_to_string.h", |
| 540 | "cert/ct_serialization.cc", |
| 541 | "cert/ct_serialization.h", |
| 542 | "cert/ct_signed_certificate_timestamp_log_param.cc", |
| 543 | "cert/ct_signed_certificate_timestamp_log_param.h", |
| 544 | "cert/ev_root_ca_metadata.cc", |
| 545 | "cert/ev_root_ca_metadata.h", |
| 546 | "cert/internal/cert_issuer_source_nss.cc", |
| 547 | "cert/internal/cert_issuer_source_nss.h", |
| 548 | "cert/internal/trust_store_nss.cc", |
| 549 | "cert/internal/trust_store_nss.h", |
| 550 | "cert/jwk_serializer.cc", |
| 551 | "cert/jwk_serializer.h", |
| 552 | "cert/merkle_audit_proof.cc", |
| 553 | "cert/merkle_audit_proof.h", |
| 554 | "cert/merkle_consistency_proof.cc", |
| 555 | "cert/merkle_consistency_proof.h", |
| 556 | "cert/merkle_tree_leaf.cc", |
| 557 | "cert/merkle_tree_leaf.h", |
| 558 | "cert/multi_log_ct_verifier.cc", |
| 559 | "cert/multi_log_ct_verifier.h", |
| 560 | "cert/multi_threaded_cert_verifier.cc", |
| 561 | "cert/multi_threaded_cert_verifier.h", |
| 562 | "cert/nss_cert_database.cc", |
| 563 | "cert/nss_cert_database.h", |
| 564 | "cert/nss_cert_database_chromeos.cc", |
| 565 | "cert/nss_cert_database_chromeos.h", |
| 566 | "cert/nss_profile_filter_chromeos.cc", |
| 567 | "cert/nss_profile_filter_chromeos.h", |
| 568 | "cert/test_keychain_search_list_mac.cc", |
| 569 | "cert/test_keychain_search_list_mac.h", |
| 570 | "cert/test_root_certs.cc", |
| 571 | "cert/test_root_certs.h", |
| 572 | "cert/test_root_certs_android.cc", |
| 573 | "cert/test_root_certs_mac.cc", |
| 574 | "cert/test_root_certs_nss.cc", |
| 575 | "cert/test_root_certs_openssl.cc", |
| 576 | "cert/test_root_certs_win.cc", |
| 577 | "cert/x509_cert_types_mac.cc", |
| 578 | "cert/x509_cert_types_win.cc", |
| 579 | "cert/x509_certificate_ios.cc", |
| 580 | "cert/x509_certificate_mac.cc", |
| 581 | "cert/x509_certificate_nss.cc", |
| 582 | "cert/x509_certificate_win.cc", |
| 583 | "cert/x509_util_android.cc", |
| 584 | "cert/x509_util_android.h", |
| 585 | "cert/x509_util_mac.cc", |
| 586 | "cert/x509_util_mac.h", |
| 587 | "cert/x509_util_nss.cc", |
| 588 | "cert/x509_util_nss.h", |
| 589 | "cert_net/cert_net_fetcher_impl.cc", |
| 590 | "cert_net/cert_net_fetcher_impl.h", |
| 591 | "cert_net/nss_ocsp.cc", |
| 592 | "cert_net/nss_ocsp.h", |
| 593 | "cookies/canonical_cookie.cc", |
| 594 | "cookies/canonical_cookie.h", |
| 595 | "cookies/cookie_constants.cc", |
| 596 | "cookies/cookie_constants.h", |
| 597 | "cookies/cookie_monster.cc", |
| 598 | "cookies/cookie_monster.h", |
| 599 | "cookies/cookie_options.cc", |
| 600 | "cookies/cookie_options.h", |
| 601 | "cookies/cookie_store.cc", |
| 602 | "cookies/cookie_store.h", |
| 603 | "cookies/cookie_util.cc", |
| 604 | "cookies/cookie_util.h", |
| 605 | "cookies/parsed_cookie.cc", |
| 606 | "cookies/parsed_cookie.h", |
| 607 | "disk_cache/blockfile/addr.cc", |
| 608 | "disk_cache/blockfile/addr.h", |
| 609 | "disk_cache/blockfile/backend_impl.cc", |
| 610 | "disk_cache/blockfile/backend_impl.h", |
| 611 | "disk_cache/blockfile/bitmap.cc", |
| 612 | "disk_cache/blockfile/bitmap.h", |
| 613 | "disk_cache/blockfile/block_files.cc", |
| 614 | "disk_cache/blockfile/block_files.h", |
| 615 | "disk_cache/blockfile/disk_format.cc", |
| 616 | "disk_cache/blockfile/disk_format.h", |
| 617 | "disk_cache/blockfile/disk_format_base.h", |
| 618 | "disk_cache/blockfile/entry_impl.cc", |
| 619 | "disk_cache/blockfile/entry_impl.h", |
| 620 | "disk_cache/blockfile/errors.h", |
| 621 | "disk_cache/blockfile/eviction.cc", |
| 622 | "disk_cache/blockfile/eviction.h", |
| 623 | "disk_cache/blockfile/experiments.h", |
| 624 | "disk_cache/blockfile/file.cc", |
| 625 | "disk_cache/blockfile/file.h", |
| 626 | "disk_cache/blockfile/file_block.h", |
| 627 | "disk_cache/blockfile/file_ios.cc", |
| 628 | "disk_cache/blockfile/file_lock.cc", |
| 629 | "disk_cache/blockfile/file_lock.h", |
| 630 | "disk_cache/blockfile/file_posix.cc", |
| 631 | "disk_cache/blockfile/file_win.cc", |
| 632 | "disk_cache/blockfile/histogram_macros.h", |
| 633 | "disk_cache/blockfile/in_flight_backend_io.cc", |
| 634 | "disk_cache/blockfile/in_flight_backend_io.h", |
| 635 | "disk_cache/blockfile/in_flight_io.cc", |
| 636 | "disk_cache/blockfile/in_flight_io.h", |
| 637 | "disk_cache/blockfile/mapped_file.cc", |
| 638 | "disk_cache/blockfile/mapped_file.h", |
| 639 | "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc", |
| 640 | "disk_cache/blockfile/mapped_file_posix.cc", |
| 641 | "disk_cache/blockfile/mapped_file_win.cc", |
| 642 | "disk_cache/blockfile/rankings.cc", |
| 643 | "disk_cache/blockfile/rankings.h", |
| 644 | "disk_cache/blockfile/sparse_control.cc", |
| 645 | "disk_cache/blockfile/sparse_control.h", |
| 646 | "disk_cache/blockfile/stats.cc", |
| 647 | "disk_cache/blockfile/stats.h", |
| 648 | "disk_cache/blockfile/storage_block-inl.h", |
| 649 | "disk_cache/blockfile/storage_block.h", |
| 650 | "disk_cache/blockfile/stress_support.h", |
| 651 | "disk_cache/blockfile/trace.cc", |
| 652 | "disk_cache/blockfile/trace.h", |
| 653 | "disk_cache/blockfile/webfonts_histogram.cc", |
| 654 | "disk_cache/blockfile/webfonts_histogram.h", |
| 655 | "disk_cache/cache_util.cc", |
| 656 | "disk_cache/cache_util.h", |
| 657 | "disk_cache/cache_util_posix.cc", |
| 658 | "disk_cache/cache_util_win.cc", |
| 659 | "disk_cache/disk_cache.cc", |
| 660 | "disk_cache/disk_cache.h", |
| 661 | "disk_cache/memory/mem_backend_impl.cc", |
| 662 | "disk_cache/memory/mem_backend_impl.h", |
| 663 | "disk_cache/memory/mem_entry_impl.cc", |
| 664 | "disk_cache/memory/mem_entry_impl.h", |
| 665 | "disk_cache/net_log_parameters.cc", |
| 666 | "disk_cache/net_log_parameters.h", |
| 667 | "disk_cache/simple/simple_backend_impl.cc", |
| 668 | "disk_cache/simple/simple_backend_impl.h", |
| 669 | "disk_cache/simple/simple_backend_version.h", |
| 670 | "disk_cache/simple/simple_entry_format.cc", |
| 671 | "disk_cache/simple/simple_entry_format.h", |
| 672 | "disk_cache/simple/simple_entry_format_history.h", |
| 673 | "disk_cache/simple/simple_entry_impl.cc", |
| 674 | "disk_cache/simple/simple_entry_impl.h", |
| 675 | "disk_cache/simple/simple_entry_operation.cc", |
| 676 | "disk_cache/simple/simple_entry_operation.h", |
| 677 | "disk_cache/simple/simple_experiment.cc", |
| 678 | "disk_cache/simple/simple_experiment.h", |
| 679 | "disk_cache/simple/simple_histogram_macros.h", |
| 680 | "disk_cache/simple/simple_index.cc", |
| 681 | "disk_cache/simple/simple_index.h", |
| 682 | "disk_cache/simple/simple_index_delegate.h", |
| 683 | "disk_cache/simple/simple_index_file.cc", |
| 684 | "disk_cache/simple/simple_index_file.h", |
| 685 | "disk_cache/simple/simple_index_file_posix.cc", |
| 686 | "disk_cache/simple/simple_index_file_win.cc", |
| 687 | "disk_cache/simple/simple_net_log_parameters.cc", |
| 688 | "disk_cache/simple/simple_net_log_parameters.h", |
| 689 | "disk_cache/simple/simple_synchronous_entry.cc", |
| 690 | "disk_cache/simple/simple_synchronous_entry.h", |
| 691 | "disk_cache/simple/simple_util.cc", |
| 692 | "disk_cache/simple/simple_util.h", |
| 693 | "disk_cache/simple/simple_util_posix.cc", |
| 694 | "disk_cache/simple/simple_util_win.cc", |
| 695 | "disk_cache/simple/simple_version_upgrade.cc", |
| 696 | "disk_cache/simple/simple_version_upgrade.h", |
| 697 | "dns/address_sorter.h", |
| 698 | "dns/address_sorter_posix.cc", |
| 699 | "dns/address_sorter_posix.h", |
| 700 | "dns/address_sorter_win.cc", |
| 701 | "dns/dns_client.cc", |
| 702 | "dns/dns_client.h", |
| 703 | "dns/dns_config_service.cc", |
| 704 | "dns/dns_config_service.h", |
| 705 | "dns/dns_config_service_posix.cc", |
| 706 | "dns/dns_config_service_posix.h", |
| 707 | "dns/dns_config_service_win.cc", |
| 708 | "dns/dns_config_service_win.h", |
| 709 | "dns/dns_config_watcher_mac.cc", |
| 710 | "dns/dns_config_watcher_mac.h", |
| 711 | "dns/dns_hosts.cc", |
| 712 | "dns/dns_hosts.h", |
| 713 | "dns/dns_protocol.h", |
| 714 | "dns/dns_query.cc", |
| 715 | "dns/dns_query.h", |
| 716 | "dns/dns_reloader.cc", |
| 717 | "dns/dns_reloader.h", |
| 718 | "dns/dns_response.cc", |
| 719 | "dns/dns_response.h", |
| 720 | "dns/dns_session.cc", |
| 721 | "dns/dns_session.h", |
| 722 | "dns/dns_socket_pool.cc", |
| 723 | "dns/dns_socket_pool.h", |
| 724 | "dns/dns_transaction.cc", |
| 725 | "dns/dns_transaction.h", |
| 726 | "dns/host_cache.cc", |
| 727 | "dns/host_cache.h", |
| 728 | "dns/host_resolver.cc", |
| 729 | "dns/host_resolver.h", |
| 730 | "dns/host_resolver_impl.cc", |
| 731 | "dns/host_resolver_impl.h", |
| 732 | "dns/host_resolver_proc.cc", |
| 733 | "dns/host_resolver_proc.h", |
| 734 | "dns/mapped_host_resolver.cc", |
| 735 | "dns/mapped_host_resolver.h", |
| 736 | "dns/mdns_cache.cc", |
| 737 | "dns/mdns_cache.h", |
| 738 | "dns/mdns_client.cc", |
| 739 | "dns/mdns_client.h", |
| 740 | "dns/mdns_client_impl.cc", |
| 741 | "dns/mdns_client_impl.h", |
| 742 | "dns/notify_watcher_mac.cc", |
| 743 | "dns/notify_watcher_mac.h", |
| 744 | "dns/record_parsed.cc", |
| 745 | "dns/record_parsed.h", |
| 746 | "dns/record_rdata.cc", |
| 747 | "dns/record_rdata.h", |
| 748 | "dns/serial_worker.cc", |
| 749 | "dns/serial_worker.h", |
| 750 | "filter/filter_source_stream.cc", |
| 751 | "filter/filter_source_stream.h", |
| 752 | "filter/gzip_header.cc", |
| 753 | "filter/gzip_header.h", |
| 754 | "filter/gzip_source_stream.cc", |
| 755 | "filter/gzip_source_stream.h", |
| 756 | "filter/sdch_policy_delegate.cc", |
| 757 | "filter/sdch_policy_delegate.h", |
| 758 | "filter/sdch_source_stream.cc", |
| 759 | "filter/sdch_source_stream.h", |
| 760 | "filter/source_stream.cc", |
| 761 | "filter/source_stream.h", |
| 762 | "filter/source_stream_type_list.h", |
| 763 | "http/bidirectional_stream.cc", |
| 764 | "http/bidirectional_stream.h", |
| 765 | "http/bidirectional_stream_impl.cc", |
| 766 | "http/bidirectional_stream_impl.h", |
| 767 | "http/bidirectional_stream_request_info.cc", |
| 768 | "http/bidirectional_stream_request_info.h", |
| 769 | "http/des.cc", |
| 770 | "http/des.h", |
| 771 | "http/disk_cache_based_quic_server_info.cc", |
| 772 | "http/disk_cache_based_quic_server_info.h", |
| 773 | "http/failing_http_transaction_factory.cc", |
| 774 | "http/failing_http_transaction_factory.h", |
| 775 | "http/http_auth.cc", |
| 776 | "http/http_auth.h", |
| 777 | "http/http_auth_cache.cc", |
| 778 | "http/http_auth_cache.h", |
| 779 | "http/http_auth_controller.cc", |
| 780 | "http/http_auth_controller.h", |
| 781 | "http/http_auth_filter.cc", |
| 782 | "http/http_auth_filter.h", |
| 783 | "http/http_auth_filter_win.h", |
| 784 | "http/http_auth_gssapi_posix.cc", |
| 785 | "http/http_auth_gssapi_posix.h", |
| 786 | "http/http_auth_handler.cc", |
| 787 | "http/http_auth_handler.h", |
| 788 | "http/http_auth_handler_basic.cc", |
| 789 | "http/http_auth_handler_basic.h", |
| 790 | "http/http_auth_handler_digest.cc", |
| 791 | "http/http_auth_handler_digest.h", |
| 792 | "http/http_auth_handler_factory.cc", |
| 793 | "http/http_auth_handler_factory.h", |
| 794 | "http/http_auth_handler_negotiate.cc", |
| 795 | "http/http_auth_handler_negotiate.h", |
| 796 | "http/http_auth_handler_ntlm.cc", |
| 797 | "http/http_auth_handler_ntlm.h", |
| 798 | "http/http_auth_handler_ntlm_portable.cc", |
| 799 | "http/http_auth_handler_ntlm_win.cc", |
| 800 | "http/http_auth_multi_round_parse.cc", |
| 801 | "http/http_auth_multi_round_parse.h", |
| 802 | "http/http_auth_preferences.cc", |
| 803 | "http/http_auth_preferences.h", |
| 804 | "http/http_auth_sspi_win.cc", |
| 805 | "http/http_auth_sspi_win.h", |
| 806 | "http/http_basic_state.cc", |
| 807 | "http/http_basic_state.h", |
| 808 | "http/http_basic_stream.cc", |
| 809 | "http/http_basic_stream.h", |
| 810 | "http/http_cache.cc", |
| 811 | "http/http_cache.h", |
| 812 | "http/http_cache_lookup_manager.cc", |
| 813 | "http/http_cache_lookup_manager.h", |
| 814 | "http/http_cache_transaction.cc", |
| 815 | "http/http_cache_transaction.h", |
| 816 | "http/http_chunked_decoder.cc", |
| 817 | "http/http_chunked_decoder.h", |
| 818 | "http/http_content_disposition.cc", |
| 819 | "http/http_content_disposition.h", |
| 820 | "http/http_network_layer.cc", |
| 821 | "http/http_network_layer.h", |
| 822 | "http/http_network_session.cc", |
| 823 | "http/http_network_session.h", |
| 824 | "http/http_network_session_peer.cc", |
| 825 | "http/http_network_session_peer.h", |
| 826 | "http/http_network_transaction.cc", |
| 827 | "http/http_network_transaction.h", |
| 828 | "http/http_proxy_client_socket.cc", |
| 829 | "http/http_proxy_client_socket.h", |
| 830 | "http/http_proxy_client_socket_pool.cc", |
| 831 | "http/http_proxy_client_socket_pool.h", |
| 832 | "http/http_proxy_client_socket_wrapper.cc", |
| 833 | "http/http_proxy_client_socket_wrapper.h", |
| 834 | "http/http_request_info.cc", |
| 835 | "http/http_request_info.h", |
| 836 | "http/http_response_body_drainer.cc", |
| 837 | "http/http_response_body_drainer.h", |
| 838 | "http/http_server_properties.cc", |
| 839 | "http/http_server_properties.h", |
| 840 | "http/http_server_properties_impl.cc", |
| 841 | "http/http_server_properties_impl.h", |
| 842 | "http/http_server_properties_manager.cc", |
| 843 | "http/http_server_properties_manager.h", |
| 844 | "http/http_status_code.cc", |
| 845 | "http/http_status_code.h", |
| 846 | "http/http_stream.h", |
| 847 | "http/http_stream_factory.cc", |
| 848 | "http/http_stream_factory.h", |
| 849 | "http/http_stream_factory_impl.cc", |
| 850 | "http/http_stream_factory_impl.h", |
| 851 | "http/http_stream_factory_impl_job.cc", |
| 852 | "http/http_stream_factory_impl_job.h", |
| 853 | "http/http_stream_factory_impl_job_controller.cc", |
| 854 | "http/http_stream_factory_impl_job_controller.h", |
| 855 | "http/http_stream_factory_impl_request.cc", |
| 856 | "http/http_stream_factory_impl_request.h", |
| 857 | "http/http_stream_parser.cc", |
| 858 | "http/http_stream_parser.h", |
| 859 | "http/http_transaction.h", |
| 860 | "http/http_transaction_factory.h", |
| 861 | "http/http_version.h", |
| 862 | "http/md4.cc", |
| 863 | "http/md4.h", |
| 864 | "http/partial_data.cc", |
| 865 | "http/partial_data.h", |
| 866 | "http/proxy_client_socket.cc", |
| 867 | "http/proxy_client_socket.h", |
| 868 | "http/proxy_connect_redirect_http_stream.cc", |
| 869 | "http/proxy_connect_redirect_http_stream.h", |
| 870 | "http/transport_security_persister.cc", |
| 871 | "http/transport_security_persister.h", |
| 872 | "http/transport_security_state_static.h", |
| 873 | "http/url_security_manager.cc", |
| 874 | "http/url_security_manager.h", |
| 875 | "http/url_security_manager_posix.cc", |
| 876 | "http/url_security_manager_win.cc", |
| 877 | "http2/decoder/decode_buffer.cc", |
| 878 | "http2/decoder/decode_buffer.h", |
| 879 | "http2/decoder/decode_http2_structures.cc", |
| 880 | "http2/decoder/decode_http2_structures.h", |
| 881 | "http2/decoder/decode_status.cc", |
| 882 | "http2/decoder/decode_status.h", |
| 883 | "http2/decoder/frame_decoder_state.cc", |
| 884 | "http2/decoder/frame_decoder_state.h", |
| 885 | "http2/decoder/http2_frame_decoder.cc", |
| 886 | "http2/decoder/http2_frame_decoder.h", |
| 887 | "http2/decoder/http2_frame_decoder_listener.cc", |
| 888 | "http2/decoder/http2_frame_decoder_listener.h", |
| 889 | "http2/decoder/http2_structure_decoder.cc", |
| 890 | "http2/decoder/http2_structure_decoder.h", |
| 891 | "http2/decoder/payload_decoders/altsvc_payload_decoder.cc", |
| 892 | "http2/decoder/payload_decoders/altsvc_payload_decoder.h", |
| 893 | "http2/decoder/payload_decoders/continuation_payload_decoder.cc", |
| 894 | "http2/decoder/payload_decoders/continuation_payload_decoder.h", |
| 895 | "http2/decoder/payload_decoders/data_payload_decoder.cc", |
| 896 | "http2/decoder/payload_decoders/data_payload_decoder.h", |
| 897 | "http2/decoder/payload_decoders/goaway_payload_decoder.cc", |
| 898 | "http2/decoder/payload_decoders/goaway_payload_decoder.h", |
| 899 | "http2/decoder/payload_decoders/headers_payload_decoder.cc", |
| 900 | "http2/decoder/payload_decoders/headers_payload_decoder.h", |
| 901 | "http2/decoder/payload_decoders/ping_payload_decoder.cc", |
| 902 | "http2/decoder/payload_decoders/ping_payload_decoder.h", |
| 903 | "http2/decoder/payload_decoders/priority_payload_decoder.cc", |
| 904 | "http2/decoder/payload_decoders/priority_payload_decoder.h", |
| 905 | "http2/decoder/payload_decoders/push_promise_payload_decoder.cc", |
| 906 | "http2/decoder/payload_decoders/push_promise_payload_decoder.h", |
| 907 | "http2/decoder/payload_decoders/rst_stream_payload_decoder.cc", |
| 908 | "http2/decoder/payload_decoders/rst_stream_payload_decoder.h", |
| 909 | "http2/decoder/payload_decoders/settings_payload_decoder.cc", |
| 910 | "http2/decoder/payload_decoders/settings_payload_decoder.h", |
| 911 | "http2/decoder/payload_decoders/unknown_payload_decoder.cc", |
| 912 | "http2/decoder/payload_decoders/unknown_payload_decoder.h", |
| 913 | "http2/decoder/payload_decoders/window_update_payload_decoder.cc", |
| 914 | "http2/decoder/payload_decoders/window_update_payload_decoder.h", |
| 915 | "http2/hpack/decoder/hpack_block_decoder.cc", |
| 916 | "http2/hpack/decoder/hpack_block_decoder.h", |
| 917 | "http2/hpack/decoder/hpack_decoder_listener.cc", |
| 918 | "http2/hpack/decoder/hpack_decoder_listener.h", |
| 919 | "http2/hpack/decoder/hpack_decoder_state.cc", |
| 920 | "http2/hpack/decoder/hpack_decoder_state.h", |
| 921 | "http2/hpack/decoder/hpack_decoder_string_buffer.cc", |
| 922 | "http2/hpack/decoder/hpack_decoder_string_buffer.h", |
| 923 | "http2/hpack/decoder/hpack_decoder_tables.cc", |
| 924 | "http2/hpack/decoder/hpack_decoder_tables.h", |
| 925 | "http2/hpack/decoder/hpack_entry_decoder.cc", |
| 926 | "http2/hpack/decoder/hpack_entry_decoder.h", |
| 927 | "http2/hpack/decoder/hpack_entry_decoder_listener.cc", |
| 928 | "http2/hpack/decoder/hpack_entry_decoder_listener.h", |
| 929 | "http2/hpack/decoder/hpack_entry_type_decoder.cc", |
| 930 | "http2/hpack/decoder/hpack_entry_type_decoder.h", |
| 931 | "http2/hpack/decoder/hpack_string_decoder.cc", |
| 932 | "http2/hpack/decoder/hpack_string_decoder.h", |
| 933 | "http2/hpack/decoder/hpack_string_decoder_listener.cc", |
| 934 | "http2/hpack/decoder/hpack_string_decoder_listener.h", |
| 935 | "http2/hpack/decoder/hpack_varint_decoder.cc", |
| 936 | "http2/hpack/decoder/hpack_varint_decoder.h", |
| 937 | "http2/hpack/decoder/hpack_whole_entry_buffer.cc", |
| 938 | "http2/hpack/decoder/hpack_whole_entry_buffer.h", |
| 939 | "http2/hpack/decoder/hpack_whole_entry_listener.cc", |
| 940 | "http2/hpack/decoder/hpack_whole_entry_listener.h", |
| 941 | "http2/hpack/decoder/http2_hpack_decoder.cc", |
| 942 | "http2/hpack/decoder/http2_hpack_decoder.h", |
| 943 | "http2/hpack/hpack_static_table_entries.inc", |
| 944 | "http2/hpack/hpack_string.cc", |
| 945 | "http2/hpack/hpack_string.h", |
| 946 | "http2/hpack/http2_hpack_constants.cc", |
| 947 | "http2/hpack/http2_hpack_constants.h", |
| 948 | "http2/hpack/huffman/http2_hpack_huffman_decoder.cc", |
| 949 | "http2/hpack/huffman/http2_hpack_huffman_decoder.h", |
| 950 | "http2/http2_constants.cc", |
| 951 | "http2/http2_constants.h", |
| 952 | "http2/http2_structures.cc", |
| 953 | "http2/http2_structures.h", |
bnc | 7c36d9b | 2017-02-09 20:35:43 | [diff] [blame] | 954 | "http2/platform/api/http2_reconstruct_object.h", |
| 955 | "http2/platform/impl/http2_reconstruct_object_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 956 | "http2/tools/http2_bug_tracker.h", |
| 957 | "log/file_net_log_observer.cc", |
| 958 | "log/file_net_log_observer.h", |
| 959 | "log/net_log_util.cc", |
| 960 | "log/net_log_util.h", |
| 961 | "log/trace_net_log_observer.cc", |
| 962 | "log/trace_net_log_observer.h", |
| 963 | "log/write_to_file_net_log_observer.cc", |
| 964 | "log/write_to_file_net_log_observer.h", |
| 965 | "nqe/cached_network_quality.cc", |
| 966 | "nqe/cached_network_quality.h", |
| 967 | "nqe/effective_connection_type.cc", |
| 968 | "nqe/effective_connection_type.h", |
| 969 | "nqe/event_creator.cc", |
| 970 | "nqe/event_creator.h", |
| 971 | "nqe/external_estimate_provider.h", |
| 972 | "nqe/network_id.h", |
| 973 | "nqe/network_qualities_prefs_manager.cc", |
| 974 | "nqe/network_qualities_prefs_manager.h", |
| 975 | "nqe/network_quality.cc", |
| 976 | "nqe/network_quality.h", |
| 977 | "nqe/network_quality_estimator.cc", |
| 978 | "nqe/network_quality_estimator.h", |
| 979 | "nqe/network_quality_estimator_params.cc", |
| 980 | "nqe/network_quality_estimator_params.h", |
| 981 | "nqe/network_quality_observation.h", |
| 982 | "nqe/network_quality_observation_source.h", |
| 983 | "nqe/network_quality_store.cc", |
| 984 | "nqe/network_quality_store.h", |
| 985 | "nqe/observation_buffer.h", |
| 986 | "nqe/socket_watcher.cc", |
| 987 | "nqe/socket_watcher.h", |
| 988 | "nqe/socket_watcher_factory.cc", |
| 989 | "nqe/socket_watcher_factory.h", |
| 990 | "nqe/throughput_analyzer.cc", |
| 991 | "nqe/throughput_analyzer.h", |
| 992 | "nqe/weighted_observation.h", |
| 993 | "proxy/dhcp_proxy_script_adapter_fetcher_win.cc", |
| 994 | "proxy/dhcp_proxy_script_adapter_fetcher_win.h", |
| 995 | "proxy/dhcp_proxy_script_fetcher.cc", |
| 996 | "proxy/dhcp_proxy_script_fetcher.h", |
| 997 | "proxy/dhcp_proxy_script_fetcher_factory.cc", |
| 998 | "proxy/dhcp_proxy_script_fetcher_factory.h", |
| 999 | "proxy/dhcp_proxy_script_fetcher_win.cc", |
| 1000 | "proxy/dhcp_proxy_script_fetcher_win.h", |
| 1001 | "proxy/dhcpcsvc_init_win.cc", |
| 1002 | "proxy/dhcpcsvc_init_win.h", |
| 1003 | "proxy/multi_threaded_proxy_resolver.cc", |
| 1004 | "proxy/multi_threaded_proxy_resolver.h", |
| 1005 | "proxy/network_delegate_error_observer.cc", |
| 1006 | "proxy/network_delegate_error_observer.h", |
| 1007 | "proxy/polling_proxy_config_service.cc", |
| 1008 | "proxy/polling_proxy_config_service.h", |
| 1009 | "proxy/proxy_bypass_rules.cc", |
| 1010 | "proxy/proxy_bypass_rules.h", |
| 1011 | "proxy/proxy_config.cc", |
| 1012 | "proxy/proxy_config.h", |
| 1013 | "proxy/proxy_config_service.h", |
| 1014 | "proxy/proxy_config_service_android.cc", |
| 1015 | "proxy/proxy_config_service_android.h", |
| 1016 | "proxy/proxy_config_service_fixed.cc", |
| 1017 | "proxy/proxy_config_service_fixed.h", |
| 1018 | "proxy/proxy_config_service_ios.cc", |
| 1019 | "proxy/proxy_config_service_ios.h", |
| 1020 | "proxy/proxy_config_service_linux.cc", |
| 1021 | "proxy/proxy_config_service_linux.h", |
| 1022 | "proxy/proxy_config_service_mac.cc", |
| 1023 | "proxy/proxy_config_service_mac.h", |
| 1024 | "proxy/proxy_config_service_win.cc", |
| 1025 | "proxy/proxy_config_service_win.h", |
| 1026 | "proxy/proxy_config_source.cc", |
| 1027 | "proxy/proxy_config_source.h", |
| 1028 | "proxy/proxy_info.cc", |
| 1029 | "proxy/proxy_info.h", |
| 1030 | "proxy/proxy_list.cc", |
| 1031 | "proxy/proxy_list.h", |
| 1032 | "proxy/proxy_resolver.h", |
| 1033 | "proxy/proxy_resolver_error_observer.h", |
| 1034 | "proxy/proxy_resolver_factory.cc", |
| 1035 | "proxy/proxy_resolver_factory.h", |
| 1036 | "proxy/proxy_resolver_mac.cc", |
| 1037 | "proxy/proxy_resolver_mac.h", |
| 1038 | "proxy/proxy_resolver_script.h", |
| 1039 | "proxy/proxy_resolver_script_data.cc", |
| 1040 | "proxy/proxy_resolver_script_data.h", |
| 1041 | "proxy/proxy_resolver_winhttp.cc", |
| 1042 | "proxy/proxy_resolver_winhttp.h", |
| 1043 | "proxy/proxy_retry_info.h", |
| 1044 | "proxy/proxy_script_decider.cc", |
| 1045 | "proxy/proxy_script_decider.h", |
| 1046 | "proxy/proxy_script_fetcher.h", |
| 1047 | "proxy/proxy_script_fetcher_impl.cc", |
| 1048 | "proxy/proxy_script_fetcher_impl.h", |
| 1049 | "proxy/proxy_server.cc", |
| 1050 | "proxy/proxy_server.h", |
| 1051 | "proxy/proxy_server_mac.cc", |
| 1052 | "proxy/proxy_service.cc", |
| 1053 | "proxy/proxy_service.h", |
| 1054 | "quic/chromium/bidirectional_stream_quic_impl.cc", |
| 1055 | "quic/chromium/bidirectional_stream_quic_impl.h", |
| 1056 | "quic/chromium/crypto/channel_id_chromium.cc", |
| 1057 | "quic/chromium/crypto/channel_id_chromium.h", |
| 1058 | "quic/chromium/crypto/proof_source_chromium.cc", |
| 1059 | "quic/chromium/crypto/proof_source_chromium.h", |
| 1060 | "quic/chromium/crypto/proof_verifier_chromium.cc", |
| 1061 | "quic/chromium/crypto/proof_verifier_chromium.h", |
| 1062 | "quic/chromium/network_connection.cc", |
| 1063 | "quic/chromium/network_connection.h", |
| 1064 | "quic/chromium/properties_based_quic_server_info.cc", |
| 1065 | "quic/chromium/properties_based_quic_server_info.h", |
| 1066 | "quic/chromium/quic_address_mismatch.cc", |
| 1067 | "quic/chromium/quic_address_mismatch.h", |
| 1068 | "quic/chromium/quic_chromium_alarm_factory.cc", |
| 1069 | "quic/chromium/quic_chromium_alarm_factory.h", |
| 1070 | "quic/chromium/quic_chromium_client_session.cc", |
| 1071 | "quic/chromium/quic_chromium_client_session.h", |
| 1072 | "quic/chromium/quic_chromium_client_stream.cc", |
| 1073 | "quic/chromium/quic_chromium_client_stream.h", |
| 1074 | "quic/chromium/quic_chromium_connection_helper.cc", |
| 1075 | "quic/chromium/quic_chromium_connection_helper.h", |
| 1076 | "quic/chromium/quic_chromium_packet_reader.cc", |
| 1077 | "quic/chromium/quic_chromium_packet_reader.h", |
| 1078 | "quic/chromium/quic_chromium_packet_writer.cc", |
| 1079 | "quic/chromium/quic_chromium_packet_writer.h", |
| 1080 | "quic/chromium/quic_clock_skew_detector.cc", |
| 1081 | "quic/chromium/quic_clock_skew_detector.h", |
| 1082 | "quic/chromium/quic_connection_logger.cc", |
| 1083 | "quic/chromium/quic_connection_logger.h", |
| 1084 | "quic/chromium/quic_crypto_client_stream_factory.cc", |
| 1085 | "quic/chromium/quic_crypto_client_stream_factory.h", |
| 1086 | "quic/chromium/quic_http_stream.cc", |
| 1087 | "quic/chromium/quic_http_stream.h", |
| 1088 | "quic/chromium/quic_http_utils.cc", |
| 1089 | "quic/chromium/quic_http_utils.h", |
| 1090 | "quic/chromium/quic_server_info.cc", |
| 1091 | "quic/chromium/quic_server_info.h", |
| 1092 | "quic/chromium/quic_stream_factory.cc", |
| 1093 | "quic/chromium/quic_stream_factory.h", |
| 1094 | "quic/chromium/quic_utils_chromium.cc", |
| 1095 | "quic/chromium/quic_utils_chromium.h", |
| 1096 | "quic/core/congestion_control/bandwidth_sampler.cc", |
| 1097 | "quic/core/congestion_control/bandwidth_sampler.h", |
| 1098 | "quic/core/congestion_control/bbr_sender.cc", |
| 1099 | "quic/core/congestion_control/bbr_sender.h", |
| 1100 | "quic/core/congestion_control/cubic.cc", |
| 1101 | "quic/core/congestion_control/cubic.h", |
| 1102 | "quic/core/congestion_control/cubic_bytes.cc", |
| 1103 | "quic/core/congestion_control/cubic_bytes.h", |
| 1104 | "quic/core/congestion_control/general_loss_algorithm.cc", |
| 1105 | "quic/core/congestion_control/general_loss_algorithm.h", |
| 1106 | "quic/core/congestion_control/hybrid_slow_start.cc", |
| 1107 | "quic/core/congestion_control/hybrid_slow_start.h", |
| 1108 | "quic/core/congestion_control/loss_detection_interface.h", |
| 1109 | "quic/core/congestion_control/pacing_sender.cc", |
| 1110 | "quic/core/congestion_control/pacing_sender.h", |
| 1111 | "quic/core/congestion_control/prr_sender.cc", |
| 1112 | "quic/core/congestion_control/prr_sender.h", |
| 1113 | "quic/core/congestion_control/rtt_stats.cc", |
| 1114 | "quic/core/congestion_control/rtt_stats.h", |
| 1115 | "quic/core/congestion_control/send_algorithm_interface.cc", |
| 1116 | "quic/core/congestion_control/send_algorithm_interface.h", |
| 1117 | "quic/core/congestion_control/tcp_cubic_sender_base.cc", |
| 1118 | "quic/core/congestion_control/tcp_cubic_sender_base.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1119 | "quic/core/congestion_control/tcp_cubic_sender_bytes.cc", |
ckrasic | b07e160 | 2017-01-26 01:39:02 | [diff] [blame] | 1120 | "quic/core/congestion_control/tcp_cubic_sender_bytes.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1121 | "quic/core/congestion_control/tcp_cubic_sender_packets.cc", |
| 1122 | "quic/core/congestion_control/tcp_cubic_sender_packets.h", |
| 1123 | "quic/core/congestion_control/windowed_filter.h", |
| 1124 | "quic/core/crypto/aead_base_decrypter.cc", |
| 1125 | "quic/core/crypto/aead_base_decrypter.h", |
| 1126 | "quic/core/crypto/aead_base_encrypter.cc", |
| 1127 | "quic/core/crypto/aead_base_encrypter.h", |
| 1128 | "quic/core/crypto/aes_128_gcm_12_decrypter.cc", |
| 1129 | "quic/core/crypto/aes_128_gcm_12_decrypter.h", |
| 1130 | "quic/core/crypto/aes_128_gcm_12_encrypter.cc", |
| 1131 | "quic/core/crypto/aes_128_gcm_12_encrypter.h", |
| 1132 | "quic/core/crypto/cert_compressor.cc", |
| 1133 | "quic/core/crypto/cert_compressor.h", |
| 1134 | "quic/core/crypto/chacha20_poly1305_decrypter.cc", |
| 1135 | "quic/core/crypto/chacha20_poly1305_decrypter.h", |
| 1136 | "quic/core/crypto/chacha20_poly1305_encrypter.cc", |
| 1137 | "quic/core/crypto/chacha20_poly1305_encrypter.h", |
| 1138 | "quic/core/crypto/channel_id.cc", |
| 1139 | "quic/core/crypto/channel_id.h", |
| 1140 | "quic/core/crypto/common_cert_set.cc", |
| 1141 | "quic/core/crypto/common_cert_set.h", |
| 1142 | "quic/core/crypto/crypto_framer.cc", |
| 1143 | "quic/core/crypto/crypto_framer.h", |
| 1144 | "quic/core/crypto/crypto_handshake.cc", |
| 1145 | "quic/core/crypto/crypto_handshake.h", |
| 1146 | "quic/core/crypto/crypto_handshake_message.cc", |
| 1147 | "quic/core/crypto/crypto_handshake_message.h", |
| 1148 | "quic/core/crypto/crypto_protocol.h", |
| 1149 | "quic/core/crypto/crypto_secret_boxer.cc", |
| 1150 | "quic/core/crypto/crypto_secret_boxer.h", |
| 1151 | "quic/core/crypto/crypto_server_config_protobuf.cc", |
| 1152 | "quic/core/crypto/crypto_server_config_protobuf.h", |
| 1153 | "quic/core/crypto/crypto_utils.cc", |
| 1154 | "quic/core/crypto/crypto_utils.h", |
| 1155 | "quic/core/crypto/curve25519_key_exchange.cc", |
| 1156 | "quic/core/crypto/curve25519_key_exchange.h", |
| 1157 | "quic/core/crypto/ephemeral_key_source.h", |
| 1158 | "quic/core/crypto/key_exchange.h", |
| 1159 | "quic/core/crypto/local_strike_register_client.cc", |
| 1160 | "quic/core/crypto/local_strike_register_client.h", |
| 1161 | "quic/core/crypto/null_decrypter.cc", |
| 1162 | "quic/core/crypto/null_decrypter.h", |
| 1163 | "quic/core/crypto/null_encrypter.cc", |
| 1164 | "quic/core/crypto/null_encrypter.h", |
| 1165 | "quic/core/crypto/p256_key_exchange.cc", |
| 1166 | "quic/core/crypto/p256_key_exchange.h", |
| 1167 | "quic/core/crypto/proof_source.cc", |
| 1168 | "quic/core/crypto/proof_source.h", |
| 1169 | "quic/core/crypto/proof_verifier.h", |
| 1170 | "quic/core/crypto/quic_compressed_certs_cache.cc", |
| 1171 | "quic/core/crypto/quic_compressed_certs_cache.h", |
| 1172 | "quic/core/crypto/quic_crypto_client_config.cc", |
| 1173 | "quic/core/crypto/quic_crypto_client_config.h", |
| 1174 | "quic/core/crypto/quic_crypto_proof.cc", |
| 1175 | "quic/core/crypto/quic_crypto_proof.h", |
| 1176 | "quic/core/crypto/quic_crypto_server_config.cc", |
| 1177 | "quic/core/crypto/quic_crypto_server_config.h", |
| 1178 | "quic/core/crypto/quic_decrypter.cc", |
| 1179 | "quic/core/crypto/quic_decrypter.h", |
| 1180 | "quic/core/crypto/quic_encrypter.cc", |
| 1181 | "quic/core/crypto/quic_encrypter.h", |
| 1182 | "quic/core/crypto/quic_random.cc", |
| 1183 | "quic/core/crypto/quic_random.h", |
| 1184 | "quic/core/crypto/scoped_evp_aead_ctx.cc", |
| 1185 | "quic/core/crypto/scoped_evp_aead_ctx.h", |
| 1186 | "quic/core/crypto/strike_register.cc", |
| 1187 | "quic/core/crypto/strike_register.h", |
| 1188 | "quic/core/crypto/strike_register_client.h", |
| 1189 | "quic/core/frames/quic_ack_frame.cc", |
| 1190 | "quic/core/frames/quic_ack_frame.h", |
| 1191 | "quic/core/frames/quic_blocked_frame.cc", |
| 1192 | "quic/core/frames/quic_blocked_frame.h", |
| 1193 | "quic/core/frames/quic_connection_close_frame.cc", |
| 1194 | "quic/core/frames/quic_connection_close_frame.h", |
| 1195 | "quic/core/frames/quic_frame.cc", |
| 1196 | "quic/core/frames/quic_frame.h", |
| 1197 | "quic/core/frames/quic_goaway_frame.cc", |
| 1198 | "quic/core/frames/quic_goaway_frame.h", |
| 1199 | "quic/core/frames/quic_mtu_discovery_frame.h", |
| 1200 | "quic/core/frames/quic_padding_frame.cc", |
| 1201 | "quic/core/frames/quic_padding_frame.h", |
| 1202 | "quic/core/frames/quic_path_close_frame.cc", |
| 1203 | "quic/core/frames/quic_path_close_frame.h", |
| 1204 | "quic/core/frames/quic_ping_frame.h", |
| 1205 | "quic/core/frames/quic_rst_stream_frame.cc", |
| 1206 | "quic/core/frames/quic_rst_stream_frame.h", |
| 1207 | "quic/core/frames/quic_stop_waiting_frame.cc", |
| 1208 | "quic/core/frames/quic_stop_waiting_frame.h", |
| 1209 | "quic/core/frames/quic_stream_frame.cc", |
| 1210 | "quic/core/frames/quic_stream_frame.h", |
| 1211 | "quic/core/frames/quic_window_update_frame.cc", |
| 1212 | "quic/core/frames/quic_window_update_frame.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1213 | "quic/core/quic_ack_listener_interface.cc", |
| 1214 | "quic/core/quic_ack_listener_interface.h", |
| 1215 | "quic/core/quic_alarm.cc", |
| 1216 | "quic/core/quic_alarm.h", |
ckrasic | b07e160 | 2017-01-26 01:39:02 | [diff] [blame] | 1217 | "quic/core/quic_alarm_factory.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1218 | "quic/core/quic_arena_scoped_ptr.h", |
| 1219 | "quic/core/quic_bandwidth.cc", |
| 1220 | "quic/core/quic_bandwidth.h", |
| 1221 | "quic/core/quic_blocked_writer_interface.h", |
| 1222 | "quic/core/quic_buffer_allocator.cc", |
| 1223 | "quic/core/quic_buffer_allocator.h", |
| 1224 | "quic/core/quic_buffered_packet_store.cc", |
| 1225 | "quic/core/quic_buffered_packet_store.h", |
| 1226 | "quic/core/quic_client_promised_info.cc", |
| 1227 | "quic/core/quic_client_promised_info.h", |
| 1228 | "quic/core/quic_client_push_promise_index.cc", |
| 1229 | "quic/core/quic_client_push_promise_index.h", |
| 1230 | "quic/core/quic_client_session_base.cc", |
| 1231 | "quic/core/quic_client_session_base.h", |
| 1232 | "quic/core/quic_config.cc", |
| 1233 | "quic/core/quic_config.h", |
| 1234 | "quic/core/quic_connection.cc", |
| 1235 | "quic/core/quic_connection.h", |
| 1236 | "quic/core/quic_connection_close_delegate_interface.h", |
| 1237 | "quic/core/quic_connection_stats.cc", |
| 1238 | "quic/core/quic_connection_stats.h", |
| 1239 | "quic/core/quic_constants.cc", |
| 1240 | "quic/core/quic_constants.h", |
| 1241 | "quic/core/quic_crypto_client_stream.cc", |
| 1242 | "quic/core/quic_crypto_client_stream.h", |
| 1243 | "quic/core/quic_crypto_server_stream.cc", |
| 1244 | "quic/core/quic_crypto_server_stream.h", |
| 1245 | "quic/core/quic_crypto_stream.cc", |
| 1246 | "quic/core/quic_crypto_stream.h", |
| 1247 | "quic/core/quic_data_reader.cc", |
| 1248 | "quic/core/quic_data_reader.h", |
| 1249 | "quic/core/quic_data_writer.cc", |
| 1250 | "quic/core/quic_data_writer.h", |
| 1251 | "quic/core/quic_error_codes.cc", |
| 1252 | "quic/core/quic_error_codes.h", |
| 1253 | "quic/core/quic_flags.cc", |
| 1254 | "quic/core/quic_flags.h", |
ckrasic | b07e160 | 2017-01-26 01:39:02 | [diff] [blame] | 1255 | "quic/core/quic_flags_list.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1256 | "quic/core/quic_flow_controller.cc", |
| 1257 | "quic/core/quic_flow_controller.h", |
| 1258 | "quic/core/quic_framer.cc", |
| 1259 | "quic/core/quic_framer.h", |
| 1260 | "quic/core/quic_header_list.cc", |
| 1261 | "quic/core/quic_header_list.h", |
| 1262 | "quic/core/quic_headers_stream.cc", |
| 1263 | "quic/core/quic_headers_stream.h", |
| 1264 | "quic/core/quic_iovector.h", |
| 1265 | "quic/core/quic_multipath_received_packet_manager.cc", |
| 1266 | "quic/core/quic_multipath_received_packet_manager.h", |
| 1267 | "quic/core/quic_multipath_transmissions_map.cc", |
| 1268 | "quic/core/quic_multipath_transmissions_map.h", |
| 1269 | "quic/core/quic_one_block_arena.h", |
| 1270 | "quic/core/quic_packet_creator.cc", |
| 1271 | "quic/core/quic_packet_creator.h", |
| 1272 | "quic/core/quic_packet_generator.cc", |
| 1273 | "quic/core/quic_packet_generator.h", |
| 1274 | "quic/core/quic_packet_writer.h", |
| 1275 | "quic/core/quic_packets.cc", |
| 1276 | "quic/core/quic_packets.h", |
| 1277 | "quic/core/quic_pending_retransmission.h", |
| 1278 | "quic/core/quic_received_packet_manager.cc", |
| 1279 | "quic/core/quic_received_packet_manager.h", |
| 1280 | "quic/core/quic_sent_packet_manager.cc", |
| 1281 | "quic/core/quic_sent_packet_manager.h", |
| 1282 | "quic/core/quic_server_id.cc", |
| 1283 | "quic/core/quic_server_id.h", |
| 1284 | "quic/core/quic_server_session_base.cc", |
| 1285 | "quic/core/quic_server_session_base.h", |
| 1286 | "quic/core/quic_session.cc", |
| 1287 | "quic/core/quic_session.h", |
| 1288 | "quic/core/quic_simple_buffer_allocator.cc", |
| 1289 | "quic/core/quic_simple_buffer_allocator.h", |
| 1290 | "quic/core/quic_socket_address_coder.cc", |
| 1291 | "quic/core/quic_socket_address_coder.h", |
| 1292 | "quic/core/quic_spdy_session.cc", |
| 1293 | "quic/core/quic_spdy_session.h", |
| 1294 | "quic/core/quic_spdy_stream.cc", |
| 1295 | "quic/core/quic_spdy_stream.h", |
| 1296 | "quic/core/quic_stream.cc", |
| 1297 | "quic/core/quic_stream.h", |
| 1298 | "quic/core/quic_stream_sequencer.cc", |
| 1299 | "quic/core/quic_stream_sequencer.h", |
| 1300 | "quic/core/quic_stream_sequencer_buffer.cc", |
| 1301 | "quic/core/quic_stream_sequencer_buffer.h", |
| 1302 | "quic/core/quic_sustained_bandwidth_recorder.cc", |
| 1303 | "quic/core/quic_sustained_bandwidth_recorder.h", |
| 1304 | "quic/core/quic_tag.cc", |
| 1305 | "quic/core/quic_tag.h", |
| 1306 | "quic/core/quic_time.cc", |
| 1307 | "quic/core/quic_time.h", |
| 1308 | "quic/core/quic_transmission_info.cc", |
| 1309 | "quic/core/quic_transmission_info.h", |
| 1310 | "quic/core/quic_types.cc", |
| 1311 | "quic/core/quic_types.h", |
| 1312 | "quic/core/quic_unacked_packet_map.cc", |
| 1313 | "quic/core/quic_unacked_packet_map.h", |
| 1314 | "quic/core/quic_utils.cc", |
| 1315 | "quic/core/quic_utils.h", |
| 1316 | "quic/core/quic_version_manager.cc", |
| 1317 | "quic/core/quic_version_manager.h", |
| 1318 | "quic/core/quic_versions.cc", |
| 1319 | "quic/core/quic_versions.h", |
| 1320 | "quic/core/quic_write_blocked_list.cc", |
| 1321 | "quic/core/quic_write_blocked_list.h", |
| 1322 | "quic/core/spdy_utils.cc", |
| 1323 | "quic/core/spdy_utils.h", |
| 1324 | "quic/platform/api/quic_aligned.h", |
| 1325 | "quic/platform/api/quic_bug_tracker.h", |
| 1326 | "quic/platform/api/quic_clock.cc", |
| 1327 | "quic/platform/api/quic_clock.h", |
fayang | baec8ff5 | 2017-01-28 03:26:12 | [diff] [blame] | 1328 | "quic/platform/api/quic_containers.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1329 | "quic/platform/api/quic_export.h", |
vasilvv | 93dc0c3 | 2017-02-24 23:53:51 | [diff] [blame^] | 1330 | "quic/platform/api/quic_flag_utils.h", |
mpw | 3f85953 | 2017-02-16 20:00:31 | [diff] [blame] | 1331 | "quic/platform/api/quic_hostname_utils.cc", |
| 1332 | "quic/platform/api/quic_hostname_utils.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1333 | "quic/platform/api/quic_ip_address.cc", |
| 1334 | "quic/platform/api/quic_ip_address.h", |
| 1335 | "quic/platform/api/quic_ip_address_family.h", |
| 1336 | "quic/platform/api/quic_logging.h", |
| 1337 | "quic/platform/api/quic_lru_cache.h", |
ckrasic | b07e160 | 2017-01-26 01:39:02 | [diff] [blame] | 1338 | "quic/platform/api/quic_map_util.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1339 | "quic/platform/api/quic_mutex.cc", |
| 1340 | "quic/platform/api/quic_mutex.h", |
| 1341 | "quic/platform/api/quic_ptr_util.h", |
| 1342 | "quic/platform/api/quic_reference_counted.h", |
| 1343 | "quic/platform/api/quic_socket_address.cc", |
| 1344 | "quic/platform/api/quic_socket_address.h", |
ckrasic | b07e160 | 2017-01-26 01:39:02 | [diff] [blame] | 1345 | "quic/platform/api/quic_stack_trace.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1346 | "quic/platform/api/quic_str_cat.h", |
| 1347 | "quic/platform/api/quic_text_utils.h", |
fayang | 32caee40 | 2017-02-13 21:00:08 | [diff] [blame] | 1348 | "quic/platform/api/quic_url.cc", |
| 1349 | "quic/platform/api/quic_url.h", |
fayang | 527c6c30 | 2017-01-24 15:38:31 | [diff] [blame] | 1350 | "quic/platform/api/quic_url_utils.cc", |
| 1351 | "quic/platform/api/quic_url_utils.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1352 | "quic/platform/impl/quic_aligned_impl.h", |
| 1353 | "quic/platform/impl/quic_bug_tracker_impl.h", |
| 1354 | "quic/platform/impl/quic_chromium_clock.cc", |
| 1355 | "quic/platform/impl/quic_chromium_clock.h", |
fayang | baec8ff5 | 2017-01-28 03:26:12 | [diff] [blame] | 1356 | "quic/platform/impl/quic_containers_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1357 | "quic/platform/impl/quic_export_impl.h", |
vasilvv | 93dc0c3 | 2017-02-24 23:53:51 | [diff] [blame^] | 1358 | "quic/platform/impl/quic_flag_utils_impl.h", |
mpw | 3f85953 | 2017-02-16 20:00:31 | [diff] [blame] | 1359 | "quic/platform/impl/quic_hostname_utils_impl.cc", |
| 1360 | "quic/platform/impl/quic_hostname_utils_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1361 | "quic/platform/impl/quic_ip_address_impl.cc", |
| 1362 | "quic/platform/impl/quic_ip_address_impl.h", |
| 1363 | "quic/platform/impl/quic_logging_impl.h", |
| 1364 | "quic/platform/impl/quic_lru_cache_impl.h", |
ckrasic | b07e160 | 2017-01-26 01:39:02 | [diff] [blame] | 1365 | "quic/platform/impl/quic_map_util_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1366 | "quic/platform/impl/quic_mutex_impl.cc", |
| 1367 | "quic/platform/impl/quic_mutex_impl.h", |
| 1368 | "quic/platform/impl/quic_ptr_util_impl.h", |
| 1369 | "quic/platform/impl/quic_reference_counted_impl.h", |
| 1370 | "quic/platform/impl/quic_socket_address_impl.cc", |
| 1371 | "quic/platform/impl/quic_socket_address_impl.h", |
ckrasic | b07e160 | 2017-01-26 01:39:02 | [diff] [blame] | 1372 | "quic/platform/impl/quic_stack_trace_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1373 | "quic/platform/impl/quic_str_cat_impl.h", |
| 1374 | "quic/platform/impl/quic_text_utils_impl.h", |
fayang | 32caee40 | 2017-02-13 21:00:08 | [diff] [blame] | 1375 | "quic/platform/impl/quic_url_impl.cc", |
| 1376 | "quic/platform/impl/quic_url_impl.h", |
fayang | 527c6c30 | 2017-01-24 15:38:31 | [diff] [blame] | 1377 | "quic/platform/impl/quic_url_utils_impl.cc", |
| 1378 | "quic/platform/impl/quic_url_utils_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1379 | "quic/quartc/quartc_alarm_factory.cc", |
| 1380 | "quic/quartc/quartc_alarm_factory.h", |
| 1381 | "quic/quartc/quartc_factory.cc", |
| 1382 | "quic/quartc/quartc_factory.h", |
| 1383 | "quic/quartc/quartc_factory_interface.h", |
| 1384 | "quic/quartc/quartc_packet_writer.cc", |
| 1385 | "quic/quartc/quartc_packet_writer.h", |
| 1386 | "quic/quartc/quartc_session.cc", |
| 1387 | "quic/quartc/quartc_session.h", |
| 1388 | "quic/quartc/quartc_session_interface.h", |
| 1389 | "quic/quartc/quartc_stream.cc", |
| 1390 | "quic/quartc/quartc_stream.h", |
| 1391 | "quic/quartc/quartc_stream_interface.h", |
ckrasic | b07e160 | 2017-01-26 01:39:02 | [diff] [blame] | 1392 | "quic/quartc/quartc_task_runner_interface.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1393 | "sdch/sdch_owner.cc", |
| 1394 | "sdch/sdch_owner.h", |
| 1395 | "socket/client_socket_factory.cc", |
| 1396 | "socket/client_socket_factory.h", |
| 1397 | "socket/client_socket_pool.cc", |
| 1398 | "socket/client_socket_pool.h", |
| 1399 | "socket/client_socket_pool_base.cc", |
| 1400 | "socket/client_socket_pool_base.h", |
| 1401 | "socket/client_socket_pool_manager.cc", |
| 1402 | "socket/client_socket_pool_manager.h", |
| 1403 | "socket/client_socket_pool_manager_impl.cc", |
| 1404 | "socket/client_socket_pool_manager_impl.h", |
| 1405 | "socket/datagram_client_socket.h", |
| 1406 | "socket/datagram_server_socket.h", |
| 1407 | "socket/datagram_socket.h", |
| 1408 | "socket/diff_serv_code_point.h", |
| 1409 | "socket/server_socket.cc", |
| 1410 | "socket/server_socket.h", |
| 1411 | "socket/socket_descriptor.cc", |
| 1412 | "socket/socket_descriptor.h", |
| 1413 | "socket/socket_net_log_params.cc", |
| 1414 | "socket/socket_net_log_params.h", |
| 1415 | "socket/socket_posix.cc", |
| 1416 | "socket/socket_posix.h", |
| 1417 | "socket/socks5_client_socket.cc", |
| 1418 | "socket/socks5_client_socket.h", |
| 1419 | "socket/socks_client_socket.cc", |
| 1420 | "socket/socks_client_socket.h", |
| 1421 | "socket/socks_client_socket_pool.cc", |
| 1422 | "socket/socks_client_socket_pool.h", |
| 1423 | "socket/ssl_client_socket_pool.cc", |
| 1424 | "socket/ssl_client_socket_pool.h", |
| 1425 | "socket/ssl_server_socket.h", |
| 1426 | "socket/ssl_server_socket_impl.cc", |
| 1427 | "socket/ssl_server_socket_impl.h", |
| 1428 | "socket/stream_socket.cc", |
| 1429 | "socket/stream_socket.h", |
| 1430 | "socket/tcp_client_socket.cc", |
| 1431 | "socket/tcp_client_socket.h", |
| 1432 | "socket/tcp_server_socket.cc", |
| 1433 | "socket/tcp_server_socket.h", |
| 1434 | "socket/tcp_socket.cc", |
| 1435 | "socket/tcp_socket.h", |
| 1436 | "socket/tcp_socket_posix.cc", |
| 1437 | "socket/tcp_socket_posix.h", |
| 1438 | "socket/tcp_socket_win.cc", |
| 1439 | "socket/tcp_socket_win.h", |
| 1440 | "socket/transport_client_socket_pool.cc", |
| 1441 | "socket/transport_client_socket_pool.h", |
| 1442 | "socket/udp_client_socket.cc", |
| 1443 | "socket/udp_client_socket.h", |
| 1444 | "socket/udp_net_log_parameters.cc", |
| 1445 | "socket/udp_net_log_parameters.h", |
| 1446 | "socket/udp_server_socket.cc", |
| 1447 | "socket/udp_server_socket.h", |
| 1448 | "socket/udp_socket.h", |
| 1449 | "socket/udp_socket_posix.cc", |
| 1450 | "socket/udp_socket_posix.h", |
| 1451 | "socket/udp_socket_win.cc", |
| 1452 | "socket/udp_socket_win.h", |
| 1453 | "socket/unix_domain_client_socket_posix.cc", |
| 1454 | "socket/unix_domain_client_socket_posix.h", |
| 1455 | "socket/unix_domain_server_socket_posix.cc", |
| 1456 | "socket/unix_domain_server_socket_posix.h", |
| 1457 | "socket/websocket_endpoint_lock_manager.cc", |
| 1458 | "socket/websocket_endpoint_lock_manager.h", |
| 1459 | "socket/websocket_transport_client_socket_pool.cc", |
| 1460 | "socket/websocket_transport_client_socket_pool.h", |
| 1461 | "socket/websocket_transport_connect_sub_job.cc", |
| 1462 | "socket/websocket_transport_connect_sub_job.h", |
| 1463 | "spdy/bidirectional_stream_spdy_impl.cc", |
| 1464 | "spdy/bidirectional_stream_spdy_impl.h", |
| 1465 | "spdy/buffered_spdy_framer.cc", |
| 1466 | "spdy/buffered_spdy_framer.h", |
| 1467 | "spdy/fuzzing/hpack_fuzz_util.cc", |
| 1468 | "spdy/fuzzing/hpack_fuzz_util.h", |
| 1469 | "spdy/header_coalescer.cc", |
| 1470 | "spdy/header_coalescer.h", |
| 1471 | "spdy/hpack/hpack_constants.cc", |
| 1472 | "spdy/hpack/hpack_constants.h", |
| 1473 | "spdy/hpack/hpack_decoder.cc", |
| 1474 | "spdy/hpack/hpack_decoder.h", |
| 1475 | "spdy/hpack/hpack_decoder2.cc", |
| 1476 | "spdy/hpack/hpack_decoder2.h", |
| 1477 | "spdy/hpack/hpack_decoder3.cc", |
| 1478 | "spdy/hpack/hpack_decoder3.h", |
| 1479 | "spdy/hpack/hpack_decoder_interface.h", |
| 1480 | "spdy/hpack/hpack_encoder.cc", |
| 1481 | "spdy/hpack/hpack_encoder.h", |
| 1482 | "spdy/hpack/hpack_entry.cc", |
| 1483 | "spdy/hpack/hpack_entry.h", |
| 1484 | "spdy/hpack/hpack_header_table.cc", |
| 1485 | "spdy/hpack/hpack_header_table.h", |
| 1486 | "spdy/hpack/hpack_huffman_decoder.cc", |
| 1487 | "spdy/hpack/hpack_huffman_decoder.h", |
| 1488 | "spdy/hpack/hpack_huffman_table.cc", |
| 1489 | "spdy/hpack/hpack_huffman_table.h", |
| 1490 | "spdy/hpack/hpack_input_stream.cc", |
| 1491 | "spdy/hpack/hpack_input_stream.h", |
| 1492 | "spdy/hpack/hpack_output_stream.cc", |
| 1493 | "spdy/hpack/hpack_output_stream.h", |
| 1494 | "spdy/hpack/hpack_static_table.cc", |
| 1495 | "spdy/hpack/hpack_static_table.h", |
| 1496 | "spdy/http2_frame_decoder_adapter.cc", |
| 1497 | "spdy/http2_frame_decoder_adapter.h", |
| 1498 | "spdy/http2_priority_dependencies.cc", |
| 1499 | "spdy/http2_priority_dependencies.h", |
| 1500 | "spdy/http2_write_scheduler.h", |
| 1501 | "spdy/multiplexed_http_stream.cc", |
| 1502 | "spdy/multiplexed_http_stream.h", |
| 1503 | "spdy/multiplexed_session.cc", |
| 1504 | "spdy/multiplexed_session.h", |
bnc | 8078c9db | 2017-02-09 20:06:38 | [diff] [blame] | 1505 | "spdy/platform/api/spdy_estimate_memory_usage.h", |
| 1506 | "spdy/platform/impl/spdy_estimate_memory_usage_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1507 | "spdy/priority_write_scheduler.h", |
| 1508 | "spdy/server_push_delegate.h", |
| 1509 | "spdy/spdy_alt_svc_wire_format.cc", |
| 1510 | "spdy/spdy_alt_svc_wire_format.h", |
| 1511 | "spdy/spdy_bitmasks.h", |
| 1512 | "spdy/spdy_buffer.cc", |
| 1513 | "spdy/spdy_buffer.h", |
| 1514 | "spdy/spdy_buffer_producer.cc", |
| 1515 | "spdy/spdy_buffer_producer.h", |
| 1516 | "spdy/spdy_bug_tracker.h", |
| 1517 | "spdy/spdy_flags.cc", |
| 1518 | "spdy/spdy_flags.h", |
| 1519 | "spdy/spdy_frame_builder.cc", |
| 1520 | "spdy/spdy_frame_builder.h", |
| 1521 | "spdy/spdy_frame_reader.cc", |
| 1522 | "spdy/spdy_frame_reader.h", |
| 1523 | "spdy/spdy_framer.cc", |
| 1524 | "spdy/spdy_framer.h", |
| 1525 | "spdy/spdy_framer_decoder_adapter.cc", |
| 1526 | "spdy/spdy_framer_decoder_adapter.h", |
| 1527 | "spdy/spdy_header_indexing.cc", |
| 1528 | "spdy/spdy_header_indexing.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1529 | "spdy/spdy_headers_handler_interface.h", |
| 1530 | "spdy/spdy_http_stream.cc", |
| 1531 | "spdy/spdy_http_stream.h", |
| 1532 | "spdy/spdy_http_utils.cc", |
| 1533 | "spdy/spdy_http_utils.h", |
| 1534 | "spdy/spdy_pinnable_buffer_piece.cc", |
| 1535 | "spdy/spdy_pinnable_buffer_piece.h", |
| 1536 | "spdy/spdy_prefixed_buffer_reader.cc", |
| 1537 | "spdy/spdy_prefixed_buffer_reader.h", |
| 1538 | "spdy/spdy_protocol.cc", |
| 1539 | "spdy/spdy_protocol.h", |
| 1540 | "spdy/spdy_proxy_client_socket.cc", |
| 1541 | "spdy/spdy_proxy_client_socket.h", |
| 1542 | "spdy/spdy_read_queue.cc", |
| 1543 | "spdy/spdy_read_queue.h", |
| 1544 | "spdy/spdy_session.cc", |
| 1545 | "spdy/spdy_session.h", |
| 1546 | "spdy/spdy_session_key.cc", |
| 1547 | "spdy/spdy_session_key.h", |
| 1548 | "spdy/spdy_session_pool.cc", |
| 1549 | "spdy/spdy_session_pool.h", |
| 1550 | "spdy/spdy_stream.cc", |
| 1551 | "spdy/spdy_stream.h", |
| 1552 | "spdy/spdy_write_queue.cc", |
| 1553 | "spdy/spdy_write_queue.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1554 | "spdy/write_scheduler.h", |
yasong | 40c43d4 | 2017-02-13 22:23:29 | [diff] [blame] | 1555 | "spdy/zero_copy_output_buffer.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1556 | "ssl/client_cert_store.h", |
| 1557 | "ssl/client_cert_store_mac.cc", |
| 1558 | "ssl/client_cert_store_mac.h", |
| 1559 | "ssl/client_cert_store_nss.cc", |
| 1560 | "ssl/client_cert_store_nss.h", |
| 1561 | "ssl/client_cert_store_win.cc", |
| 1562 | "ssl/client_cert_store_win.h", |
| 1563 | "ssl/ssl_config_service_defaults.cc", |
| 1564 | "ssl/ssl_config_service_defaults.h", |
| 1565 | "ssl/ssl_key_logger.cc", |
| 1566 | "ssl/ssl_key_logger.h", |
| 1567 | "ssl/ssl_platform_key.h", |
| 1568 | "ssl/ssl_platform_key_android.cc", |
| 1569 | "ssl/ssl_platform_key_mac.cc", |
| 1570 | "ssl/ssl_platform_key_nss.cc", |
| 1571 | "ssl/ssl_platform_key_util.cc", |
| 1572 | "ssl/ssl_platform_key_util.h", |
| 1573 | "ssl/ssl_platform_key_win.cc", |
| 1574 | "ssl/test_ssl_private_key.cc", |
| 1575 | "ssl/test_ssl_private_key.h", |
| 1576 | "ssl/threaded_ssl_private_key.cc", |
| 1577 | "ssl/threaded_ssl_private_key.h", |
| 1578 | "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp", |
| 1579 | "third_party/mozilla_security_manager/nsNSSCertificateDB.h", |
| 1580 | "third_party/mozilla_security_manager/nsPKCS12Blob.cpp", |
| 1581 | "third_party/mozilla_security_manager/nsPKCS12Blob.h", |
| 1582 | "url_request/data_protocol_handler.cc", |
| 1583 | "url_request/data_protocol_handler.h", |
| 1584 | "url_request/http_user_agent_settings.h", |
| 1585 | "url_request/redirect_info.cc", |
| 1586 | "url_request/redirect_info.h", |
| 1587 | "url_request/report_sender.cc", |
| 1588 | "url_request/report_sender.h", |
| 1589 | "url_request/sdch_dictionary_fetcher.cc", |
| 1590 | "url_request/sdch_dictionary_fetcher.h", |
| 1591 | "url_request/static_http_user_agent_settings.cc", |
| 1592 | "url_request/static_http_user_agent_settings.h", |
| 1593 | "url_request/url_fetcher.cc", |
| 1594 | "url_request/url_fetcher.h", |
| 1595 | "url_request/url_fetcher_core.cc", |
| 1596 | "url_request/url_fetcher_core.h", |
| 1597 | "url_request/url_fetcher_delegate.cc", |
| 1598 | "url_request/url_fetcher_delegate.h", |
| 1599 | "url_request/url_fetcher_factory.h", |
| 1600 | "url_request/url_fetcher_impl.cc", |
| 1601 | "url_request/url_fetcher_impl.h", |
| 1602 | "url_request/url_fetcher_response_writer.cc", |
| 1603 | "url_request/url_fetcher_response_writer.h", |
| 1604 | "url_request/url_range_request_job.cc", |
| 1605 | "url_request/url_range_request_job.h", |
| 1606 | "url_request/url_request.cc", |
| 1607 | "url_request/url_request.h", |
| 1608 | "url_request/url_request_context.cc", |
| 1609 | "url_request/url_request_context.h", |
| 1610 | "url_request/url_request_context_builder.cc", |
| 1611 | "url_request/url_request_context_builder.h", |
| 1612 | "url_request/url_request_context_getter.cc", |
| 1613 | "url_request/url_request_context_getter.h", |
| 1614 | "url_request/url_request_context_getter_observer.h", |
| 1615 | "url_request/url_request_context_storage.cc", |
| 1616 | "url_request/url_request_context_storage.h", |
| 1617 | "url_request/url_request_data_job.cc", |
| 1618 | "url_request/url_request_data_job.h", |
| 1619 | "url_request/url_request_error_job.cc", |
| 1620 | "url_request/url_request_error_job.h", |
| 1621 | "url_request/url_request_filter.cc", |
| 1622 | "url_request/url_request_filter.h", |
| 1623 | "url_request/url_request_http_job.cc", |
| 1624 | "url_request/url_request_http_job.h", |
| 1625 | "url_request/url_request_intercepting_job_factory.cc", |
| 1626 | "url_request/url_request_intercepting_job_factory.h", |
| 1627 | "url_request/url_request_interceptor.cc", |
| 1628 | "url_request/url_request_interceptor.h", |
| 1629 | "url_request/url_request_job.cc", |
| 1630 | "url_request/url_request_job.h", |
| 1631 | "url_request/url_request_job_factory.cc", |
| 1632 | "url_request/url_request_job_factory.h", |
| 1633 | "url_request/url_request_job_factory_impl.cc", |
| 1634 | "url_request/url_request_job_factory_impl.h", |
| 1635 | "url_request/url_request_job_manager.cc", |
| 1636 | "url_request/url_request_job_manager.h", |
| 1637 | "url_request/url_request_netlog_params.cc", |
| 1638 | "url_request/url_request_netlog_params.h", |
| 1639 | "url_request/url_request_redirect_job.cc", |
| 1640 | "url_request/url_request_redirect_job.h", |
| 1641 | "url_request/url_request_simple_job.cc", |
| 1642 | "url_request/url_request_simple_job.h", |
| 1643 | "url_request/url_request_status.cc", |
| 1644 | "url_request/url_request_status.h", |
| 1645 | "url_request/url_request_test_job.cc", |
| 1646 | "url_request/url_request_test_job.h", |
| 1647 | "url_request/url_request_throttler_entry.cc", |
| 1648 | "url_request/url_request_throttler_entry.h", |
| 1649 | "url_request/url_request_throttler_entry_interface.h", |
| 1650 | "url_request/url_request_throttler_manager.cc", |
| 1651 | "url_request/url_request_throttler_manager.h", |
| 1652 | "url_request/view_cache_helper.cc", |
| 1653 | "url_request/view_cache_helper.h", |
| 1654 | "url_request/websocket_handshake_userdata_key.cc", |
| 1655 | "url_request/websocket_handshake_userdata_key.h", |
| 1656 | "websockets/websocket_handshake_request_info.h", |
| 1657 | "websockets/websocket_handshake_response_info.h", |
| 1658 | "websockets/websocket_handshake_stream_base.h", |
| 1659 | "websockets/websocket_stream.h", |
| 1660 | ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1661 | deps += [ |
| 1662 | "//base/third_party/dynamic_annotations", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1663 | "//sdch", |
| 1664 | "//third_party/zlib", |
| 1665 | ] |
| 1666 | |
| 1667 | if (!use_kerberos) { |
| 1668 | sources -= [ |
| 1669 | "http/http_auth_handler_negotiate.cc", |
| 1670 | "http/http_auth_handler_negotiate.h", |
| 1671 | ] |
| 1672 | } |
| 1673 | |
| 1674 | if (is_posix) { |
| 1675 | if (posix_avoid_mmap) { |
| 1676 | sources -= [ "disk_cache/blockfile/mapped_file_posix.cc" ] |
| 1677 | } else { |
| 1678 | sources -= [ "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc" ] |
| 1679 | } |
| 1680 | } |
| 1681 | |
| 1682 | if (!enable_built_in_dns) { |
| 1683 | sources -= [ |
| 1684 | "dns/address_sorter_posix.cc", |
| 1685 | "dns/address_sorter_posix.h", |
| 1686 | "dns/dns_client.cc", |
| 1687 | ] |
| 1688 | } |
| 1689 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1690 | if (!use_openssl_certs) { |
| 1691 | sources -= [ |
| 1692 | "base/crypto_module_openssl.cc", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1693 | "cert/cert_database_openssl.cc", |
| 1694 | "cert/cert_verify_proc_openssl.cc", |
| 1695 | "cert/cert_verify_proc_openssl.h", |
| 1696 | "cert/test_root_certs_openssl.cc", |
| 1697 | "cert/x509_certificate_openssl.cc", |
| 1698 | "ssl/openssl_client_key_store.cc", |
| 1699 | "ssl/openssl_client_key_store.h", |
| 1700 | ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1701 | } else { |
| 1702 | if (is_android) { |
| 1703 | # Android doesn't use these even when using OpenSSL. |
| 1704 | sources -= [ |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1705 | "cert/cert_database_openssl.cc", |
| 1706 | "cert/cert_verify_proc_openssl.cc", |
| 1707 | "cert/test_root_certs_openssl.cc", |
| 1708 | ] |
| 1709 | } |
| 1710 | } |
| 1711 | |
| 1712 | if (!use_kerberos || is_android) { |
| 1713 | sources -= [ |
| 1714 | "http/http_auth_gssapi_posix.cc", |
| 1715 | "http/http_auth_gssapi_posix.h", |
| 1716 | ] |
| 1717 | } |
| 1718 | |
mostynb | 75e8d63 | 2016-08-02 16:46:53 | [diff] [blame] | 1719 | if (use_gio) { |
dsinclair | 8490e05 | 2016-05-04 15:33:33 | [diff] [blame] | 1720 | deps += [ "//build/linux/libgio" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1721 | } |
| 1722 | |
| 1723 | if (!use_nss_certs) { |
| 1724 | sources -= [ |
| 1725 | "base/crypto_module_nss.cc", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1726 | "cert/cert_database_nss.cc", |
mattm | 4abbcdbf | 2016-11-30 20:23:13 | [diff] [blame] | 1727 | "cert/internal/cert_issuer_source_nss.cc", |
| 1728 | "cert/internal/cert_issuer_source_nss.h", |
mattm | 9c63d44 | 2016-09-03 00:45:51 | [diff] [blame] | 1729 | "cert/internal/trust_store_nss.cc", |
| 1730 | "cert/internal/trust_store_nss.h", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1731 | "cert/nss_cert_database.cc", |
| 1732 | "cert/nss_cert_database.h", |
| 1733 | "cert/x509_certificate_nss.cc", |
| 1734 | "ssl/client_cert_store_nss.cc", |
| 1735 | "ssl/client_cert_store_nss.h", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1736 | "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp", |
| 1737 | "third_party/mozilla_security_manager/nsNSSCertificateDB.h", |
| 1738 | "third_party/mozilla_security_manager/nsPKCS12Blob.cpp", |
| 1739 | "third_party/mozilla_security_manager/nsPKCS12Blob.h", |
| 1740 | ] |
| 1741 | if (is_chromeos) { |
| 1742 | # These were already removed on non-ChromeOS. |
| 1743 | sources -= [ |
| 1744 | "cert/nss_cert_database_chromeos.cc", |
| 1745 | "cert/nss_cert_database_chromeos.h", |
| 1746 | "cert/nss_profile_filter_chromeos.cc", |
| 1747 | "cert/nss_profile_filter_chromeos.h", |
| 1748 | ] |
| 1749 | } |
| 1750 | sources -= [ |
| 1751 | "ssl/client_key_store.cc", |
| 1752 | "ssl/client_key_store.h", |
| 1753 | "ssl/ssl_platform_key_nss.cc", |
| 1754 | ] |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 1755 | } else { |
davidben | 8d569f5 | 2016-07-29 16:03:18 | [diff] [blame] | 1756 | sources += [ |
| 1757 | "third_party/nss/ssl/cmpcert.cc", |
| 1758 | "third_party/nss/ssl/cmpcert.h", |
| 1759 | ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1760 | } |
| 1761 | |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 1762 | if (!use_nss_certs) { |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1763 | # These files are part of the partial implementation of NSS for |
| 1764 | # cert verification, so keep them in that case. |
| 1765 | sources -= [ |
| 1766 | "cert/cert_verify_proc_nss.cc", |
| 1767 | "cert/cert_verify_proc_nss.h", |
| 1768 | "cert/test_root_certs_nss.cc", |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 1769 | "cert/x509_util_nss.cc", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1770 | "cert_net/nss_ocsp.cc", |
| 1771 | "cert_net/nss_ocsp.h", |
| 1772 | ] |
| 1773 | } |
| 1774 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1775 | if (is_chromecast && use_nss_certs) { |
| 1776 | sources += [ "ssl/ssl_platform_key_chromecast.cc" ] |
| 1777 | sources -= [ "ssl/ssl_platform_key_nss.cc" ] |
| 1778 | } |
| 1779 | |
| 1780 | if (!enable_mdns) { |
| 1781 | sources -= [ |
| 1782 | "dns/mdns_cache.cc", |
| 1783 | "dns/mdns_cache.h", |
| 1784 | "dns/mdns_client.cc", |
| 1785 | "dns/mdns_client.h", |
| 1786 | "dns/mdns_client_impl.cc", |
| 1787 | "dns/mdns_client_impl.h", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1788 | ] |
| 1789 | } |
| 1790 | |
| 1791 | if (is_win) { |
| 1792 | sources -= [ "http/http_auth_handler_ntlm_portable.cc" ] |
| 1793 | } else { # !is_win |
| 1794 | sources -= [ |
| 1795 | "base/winsock_init.cc", |
| 1796 | "base/winsock_init.h", |
| 1797 | "base/winsock_util.cc", |
| 1798 | "base/winsock_util.h", |
| 1799 | "proxy/proxy_resolver_winhttp.cc", |
| 1800 | "proxy/proxy_resolver_winhttp.h", |
| 1801 | ] |
| 1802 | } |
| 1803 | |
| 1804 | if (is_ios) { |
| 1805 | # Add back some sources that were otherwise filtered out. |
| 1806 | # iOS needs some Mac files. |
| 1807 | net_unfiltered_sources += [ |
| 1808 | "base/mac/url_conversions.h", |
| 1809 | "base/mac/url_conversions.mm", |
| 1810 | "base/network_change_notifier_mac.cc", |
| 1811 | "base/network_config_watcher_mac.cc", |
| 1812 | "base/network_interfaces_mac.cc", |
| 1813 | "base/network_interfaces_mac.h", |
| 1814 | "base/platform_mime_util_mac.mm", |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 1815 | "cert/test_root_certs_mac.cc", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1816 | "proxy/proxy_resolver_mac.cc", |
| 1817 | "proxy/proxy_server_mac.cc", |
| 1818 | ] |
| 1819 | |
| 1820 | sources -= [ "disk_cache/blockfile/file_posix.cc" ] |
| 1821 | } |
| 1822 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1823 | if (is_ios || is_mac) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1824 | sources += [ |
| 1825 | "base/mac/url_conversions.h", |
| 1826 | "base/mac/url_conversions.mm", |
| 1827 | ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1828 | } |
| 1829 | |
| 1830 | if (is_android) { |
| 1831 | deps += [ ":net_jni_headers" ] |
| 1832 | |
| 1833 | # Add some Linux sources that were excluded by the filter, but which |
| 1834 | # are needed. |
| 1835 | net_unfiltered_sources += [ |
| 1836 | "base/address_tracker_linux.cc", |
| 1837 | "base/address_tracker_linux.h", |
| 1838 | "base/network_interfaces_linux.cc", |
| 1839 | "base/network_interfaces_linux.h", |
| 1840 | "base/platform_mime_util_linux.cc", |
| 1841 | ] |
| 1842 | } |
| 1843 | } else { |
| 1844 | public_deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
| 1845 | } |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 1846 | |
| 1847 | # Add back some sources that were otherwise filtered out. |
| 1848 | set_sources_assignment_filter([]) |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1849 | sources += net_unfiltered_sources |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 1850 | set_sources_assignment_filter(sources_assignment_filter) |
| 1851 | |
| 1852 | cflags = [] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1853 | configs += net_configs |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 1854 | |
brettw | a1228ebb | 2016-10-28 03:51:34 | [diff] [blame] | 1855 | public_deps += [ |
| 1856 | ":features", |
| 1857 | "//url", |
| 1858 | ] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 1859 | |
| 1860 | if (is_mac) { |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 1861 | libs = [ |
rsesek | 02aa51c | 2016-05-11 02:13:57 | [diff] [blame] | 1862 | "CFNetwork.framework", |
| 1863 | "CoreServices.framework", |
[email protected] | ab9ce6e | 2014-04-17 20:33:19 | [diff] [blame] | 1864 | "Foundation.framework", |
| 1865 | "Security.framework", |
| 1866 | "SystemConfiguration.framework", |
| 1867 | "resolv", |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 1868 | ] |
| 1869 | } |
| 1870 | |
| 1871 | if (is_ios) { |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 1872 | libs = [ |
[email protected] | ab9ce6e | 2014-04-17 20:33:19 | [diff] [blame] | 1873 | "CFNetwork.framework", |
| 1874 | "MobileCoreServices.framework", |
| 1875 | "Security.framework", |
| 1876 | "SystemConfiguration.framework", |
| 1877 | "resolv", |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 1878 | ] |
xunjieli | 06d9398 | 2015-08-27 17:13:02 | [diff] [blame] | 1879 | } |
xunjieli | 4c8c692 | 2015-08-27 16:02:40 | [diff] [blame] | 1880 | |
jam | 5332a63 | 2016-04-01 22:36:05 | [diff] [blame] | 1881 | if (is_win) { |
| 1882 | libs = [ |
| 1883 | "crypt32.lib", |
| 1884 | "dhcpcsvc.lib", |
| 1885 | "iphlpapi.lib", |
davidben | 6239919 | 2016-09-13 01:54:22 | [diff] [blame] | 1886 | "ncrypt.lib", |
jam | 5332a63 | 2016-04-01 22:36:05 | [diff] [blame] | 1887 | "rpcrt4.lib", |
| 1888 | "secur32.lib", |
| 1889 | "urlmon.lib", |
| 1890 | "winhttp.lib", |
| 1891 | ] |
| 1892 | } |
| 1893 | |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 1894 | if (!is_nacl) { |
| 1895 | if (!disable_file_support) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1896 | sources += [ |
| 1897 | "base/directory_lister.cc", |
| 1898 | "base/directory_lister.h", |
| 1899 | "base/directory_listing.cc", |
| 1900 | "base/directory_listing.h", |
| 1901 | "url_request/file_protocol_handler.cc", |
| 1902 | "url_request/file_protocol_handler.h", |
| 1903 | "url_request/url_request_file_dir_job.cc", |
| 1904 | "url_request/url_request_file_dir_job.h", |
| 1905 | "url_request/url_request_file_job.cc", |
| 1906 | "url_request/url_request_file_job.h", |
| 1907 | ] |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 1908 | } |
xunjieli | 06d9398 | 2015-08-27 17:13:02 | [diff] [blame] | 1909 | |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 1910 | if (!disable_ftp_support) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1911 | sources += [ |
| 1912 | "ftp/ftp_auth_cache.cc", |
| 1913 | "ftp/ftp_auth_cache.h", |
| 1914 | "ftp/ftp_ctrl_response_buffer.cc", |
| 1915 | "ftp/ftp_ctrl_response_buffer.h", |
| 1916 | "ftp/ftp_directory_listing_parser.cc", |
| 1917 | "ftp/ftp_directory_listing_parser.h", |
| 1918 | "ftp/ftp_directory_listing_parser_ls.cc", |
| 1919 | "ftp/ftp_directory_listing_parser_ls.h", |
| 1920 | "ftp/ftp_directory_listing_parser_vms.cc", |
| 1921 | "ftp/ftp_directory_listing_parser_vms.h", |
| 1922 | "ftp/ftp_directory_listing_parser_windows.cc", |
| 1923 | "ftp/ftp_directory_listing_parser_windows.h", |
| 1924 | "ftp/ftp_network_layer.cc", |
| 1925 | "ftp/ftp_network_layer.h", |
| 1926 | "ftp/ftp_network_session.cc", |
| 1927 | "ftp/ftp_network_session.h", |
| 1928 | "ftp/ftp_network_transaction.cc", |
| 1929 | "ftp/ftp_network_transaction.h", |
| 1930 | "ftp/ftp_request_info.h", |
| 1931 | "ftp/ftp_response_info.cc", |
| 1932 | "ftp/ftp_response_info.h", |
| 1933 | "ftp/ftp_server_type_histograms.cc", |
| 1934 | "ftp/ftp_server_type_histograms.h", |
| 1935 | "ftp/ftp_transaction.h", |
| 1936 | "ftp/ftp_transaction_factory.h", |
| 1937 | "ftp/ftp_util.cc", |
| 1938 | "ftp/ftp_util.h", |
| 1939 | "url_request/ftp_protocol_handler.cc", |
| 1940 | "url_request/ftp_protocol_handler.h", |
| 1941 | "url_request/url_request_ftp_job.cc", |
| 1942 | "url_request/url_request_ftp_job.h", |
| 1943 | ] |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 1944 | } |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 1945 | |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 1946 | if (enable_websockets) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1947 | sources += [ |
| 1948 | "websockets/websocket_basic_handshake_stream.cc", |
| 1949 | "websockets/websocket_basic_handshake_stream.h", |
| 1950 | "websockets/websocket_basic_stream.cc", |
| 1951 | "websockets/websocket_basic_stream.h", |
| 1952 | "websockets/websocket_channel.cc", |
| 1953 | "websockets/websocket_channel.h", |
| 1954 | "websockets/websocket_deflate_parameters.cc", |
| 1955 | "websockets/websocket_deflate_parameters.h", |
| 1956 | "websockets/websocket_deflate_predictor.h", |
| 1957 | "websockets/websocket_deflate_predictor_impl.cc", |
| 1958 | "websockets/websocket_deflate_predictor_impl.h", |
| 1959 | "websockets/websocket_deflate_stream.cc", |
| 1960 | "websockets/websocket_deflate_stream.h", |
| 1961 | "websockets/websocket_deflater.cc", |
| 1962 | "websockets/websocket_deflater.h", |
| 1963 | "websockets/websocket_errors.cc", |
| 1964 | "websockets/websocket_errors.h", |
| 1965 | "websockets/websocket_extension.cc", |
| 1966 | "websockets/websocket_extension.h", |
| 1967 | "websockets/websocket_extension_parser.cc", |
| 1968 | "websockets/websocket_extension_parser.h", |
| 1969 | "websockets/websocket_frame.cc", |
| 1970 | "websockets/websocket_frame.h", |
| 1971 | "websockets/websocket_frame_parser.cc", |
| 1972 | "websockets/websocket_frame_parser.h", |
| 1973 | "websockets/websocket_handshake_challenge.cc", |
| 1974 | "websockets/websocket_handshake_challenge.h", |
| 1975 | "websockets/websocket_handshake_constants.cc", |
| 1976 | "websockets/websocket_handshake_constants.h", |
| 1977 | "websockets/websocket_handshake_request_info.cc", |
| 1978 | "websockets/websocket_handshake_request_info.h", |
| 1979 | "websockets/websocket_handshake_response_info.cc", |
| 1980 | "websockets/websocket_handshake_response_info.h", |
| 1981 | "websockets/websocket_handshake_stream_base.h", |
| 1982 | "websockets/websocket_handshake_stream_create_helper.cc", |
| 1983 | "websockets/websocket_handshake_stream_create_helper.h", |
| 1984 | "websockets/websocket_inflater.cc", |
| 1985 | "websockets/websocket_inflater.h", |
| 1986 | "websockets/websocket_stream.cc", |
| 1987 | "websockets/websocket_stream.h", |
| 1988 | ] |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 1989 | } |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 1990 | |
sergeyu | 99d83f9 | 2015-09-14 23:03:33 | [diff] [blame] | 1991 | # ICU support. |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1992 | if (use_platform_icu_alternatives) { |
| 1993 | if (is_android) { |
| 1994 | # Use ICU alternative on Android. |
torne | d8b7d925 | 2016-08-04 19:41:45 | [diff] [blame] | 1995 | sources += [ "base/net_string_util_icu_alternatives_android.cc" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1996 | deps += [ ":net_jni_headers" ] |
| 1997 | } else if (is_ios) { |
| 1998 | # Use ICU alternative on iOS. |
| 1999 | sources += [ "base/net_string_util_icu_alternatives_ios.mm" ] |
| 2000 | } else { |
| 2001 | assert(false, |
| 2002 | "ICU alternative is not implemented for platform: " + target_os) |
| 2003 | } |
| 2004 | } else { |
| 2005 | # Use ICU. |
| 2006 | deps += [ |
| 2007 | "//base:i18n", |
| 2008 | "//third_party/icu", |
| 2009 | ] |
| 2010 | sources += [ |
| 2011 | "base/filename_util_icu.cc", |
| 2012 | "base/net_string_util_icu.cc", |
| 2013 | ] |
| 2014 | } |
eustas | fbec913 | 2015-12-30 14:56:51 | [diff] [blame] | 2015 | |
| 2016 | # Brotli support. |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2017 | if (!disable_brotli_filter) { |
xunjieli | 084a929 | 2016-09-23 18:15:04 | [diff] [blame] | 2018 | sources += [ "filter/brotli_source_stream.cc" ] |
eustas | 6ed4c41 | 2016-12-14 13:53:34 | [diff] [blame] | 2019 | deps += [ "//third_party/brotli:dec" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2020 | } else { |
xunjieli | 084a929 | 2016-09-23 18:15:04 | [diff] [blame] | 2021 | sources += [ "filter/brotli_source_stream_disabled.cc" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2022 | } |
[email protected] | 85191ed | 2014-05-15 00:41:49 | [diff] [blame] | 2023 | } |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2024 | } |
| 2025 | |
| 2026 | grit("net_resources") { |
| 2027 | source = "base/net_resources.grd" |
[email protected] | 7ae5290 | 2014-08-18 22:36:01 | [diff] [blame] | 2028 | use_qualified_include = true |
[email protected] | b89c5384 | 2014-07-23 16:32:32 | [diff] [blame] | 2029 | outputs = [ |
| 2030 | "grit/net_resources.h", |
| 2031 | "net_resources.pak", |
[email protected] | b89c5384 | 2014-07-23 16:32:32 | [diff] [blame] | 2032 | ] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2033 | } |
| 2034 | |
rtenneti | b6f1c0d | 2015-04-03 17:52:06 | [diff] [blame] | 2035 | proto_library("net_quic_proto") { |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 2036 | visibility = [ ":net" ] |
brettw | 2e7db0a | 2015-04-24 22:59:17 | [diff] [blame] | 2037 | |
rtenneti | b6f1c0d | 2015-04-03 17:52:06 | [diff] [blame] | 2038 | sources = [ |
rch | d4db7c15 | 2016-07-29 21:58:12 | [diff] [blame] | 2039 | "quic/core/proto/cached_network_parameters.proto", |
| 2040 | "quic/core/proto/source_address_token.proto", |
rtenneti | b6f1c0d | 2015-04-03 17:52:06 | [diff] [blame] | 2041 | ] |
| 2042 | cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:" |
| 2043 | cc_include = "net/base/net_export.h" |
brettw | 7ef8045 | 2016-06-30 00:43:18 | [diff] [blame] | 2044 | component_build_force_source_set = true |
rtenneti | b6f1c0d | 2015-04-03 17:52:06 | [diff] [blame] | 2045 | |
| 2046 | defines = [ "NET_IMPLEMENTATION" ] |
| 2047 | |
| 2048 | extra_configs = [ "//build/config/compiler:wexit_time_destructors" ] |
| 2049 | } |
| 2050 | |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2051 | if (!is_proto_quic) { |
| 2052 | static_library("extras") { |
| 2053 | sources = [ |
| 2054 | "extras/sqlite/cookie_crypto_delegate.h", |
| 2055 | "extras/sqlite/sqlite_channel_id_store.cc", |
| 2056 | "extras/sqlite/sqlite_channel_id_store.h", |
| 2057 | "extras/sqlite/sqlite_persistent_cookie_store.cc", |
| 2058 | "extras/sqlite/sqlite_persistent_cookie_store.h", |
| 2059 | ] |
| 2060 | configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 2061 | deps = [ |
| 2062 | ":net", |
| 2063 | "//base", |
| 2064 | "//sql:sql", |
| 2065 | ] |
| 2066 | } |
mef | 327a8e4 | 2014-08-29 17:10:03 | [diff] [blame] | 2067 | } |
| 2068 | |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 2069 | static_library("http_server") { |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2070 | sources = [ |
| 2071 | "server/http_connection.cc", |
| 2072 | "server/http_connection.h", |
| 2073 | "server/http_server.cc", |
| 2074 | "server/http_server.h", |
| 2075 | "server/http_server_request_info.cc", |
| 2076 | "server/http_server_request_info.h", |
| 2077 | "server/http_server_response_info.cc", |
| 2078 | "server/http_server_response_info.h", |
| 2079 | "server/web_socket.cc", |
| 2080 | "server/web_socket.h", |
dgozman | a6e7009 | 2014-12-12 14:46:21 | [diff] [blame] | 2081 | "server/web_socket_encoder.cc", |
| 2082 | "server/web_socket_encoder.h", |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2083 | ] |
jam | bc6cc8e | 2014-11-14 17:56:29 | [diff] [blame] | 2084 | configs += [ |
brettw | d1c719a | 2015-02-19 23:17:04 | [diff] [blame] | 2085 | "//build/config/compiler:no_size_t_to_int_warning", |
jam | bc6cc8e | 2014-11-14 17:56:29 | [diff] [blame] | 2086 | "//build/config/compiler:wexit_time_destructors", |
jam | bc6cc8e | 2014-11-14 17:56:29 | [diff] [blame] | 2087 | ] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2088 | deps = [ |
| 2089 | ":net", |
| 2090 | "//base", |
| 2091 | ] |
| 2092 | } |
| 2093 | |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 2094 | if (!is_ios) { |
| 2095 | executable("dump_cache") { |
| 2096 | testonly = true |
| 2097 | sources = [ |
| 2098 | "tools/dump_cache/dump_cache.cc", |
| 2099 | "tools/dump_cache/dump_files.cc", |
| 2100 | "tools/dump_cache/dump_files.h", |
| 2101 | ] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 2102 | |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 2103 | # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 2104 | configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2105 | |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 2106 | deps = [ |
| 2107 | ":net", |
| 2108 | ":test_support", |
| 2109 | "//base", |
| 2110 | "//build/config/sanitizers:deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2111 | "//build/win:default_exe_manifest", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 2112 | ] |
| 2113 | } |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2114 | } |
| 2115 | |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 2116 | bundle_data("test_support_bundle_data") { |
sdefresne | 04f9114 | 2016-04-21 08:41:59 | [diff] [blame] | 2117 | visibility = [ ":test_support" ] |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 2118 | testonly = true |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2119 | sources = [ |
| 2120 | "data/ssl/certificates/1024-rsa-ee-by-1024-rsa-intermediate.pem", |
| 2121 | "data/ssl/certificates/1024-rsa-ee-by-2048-rsa-intermediate.pem", |
| 2122 | "data/ssl/certificates/1024-rsa-ee-by-768-rsa-intermediate.pem", |
| 2123 | "data/ssl/certificates/1024-rsa-ee-by-prime256v1-ecdsa-intermediate.pem", |
| 2124 | "data/ssl/certificates/1024-rsa-intermediate.pem", |
| 2125 | "data/ssl/certificates/10_year_validity.pem", |
| 2126 | "data/ssl/certificates/11_year_validity.pem", |
| 2127 | "data/ssl/certificates/2029_globalsign_com_cert.pem", |
| 2128 | "data/ssl/certificates/2048-rsa-ee-by-1024-rsa-intermediate.pem", |
| 2129 | "data/ssl/certificates/2048-rsa-ee-by-2048-rsa-intermediate.pem", |
| 2130 | "data/ssl/certificates/2048-rsa-ee-by-768-rsa-intermediate.pem", |
| 2131 | "data/ssl/certificates/2048-rsa-ee-by-prime256v1-ecdsa-intermediate.pem", |
| 2132 | "data/ssl/certificates/2048-rsa-intermediate.pem", |
| 2133 | "data/ssl/certificates/2048-rsa-root.pem", |
| 2134 | "data/ssl/certificates/39_months_after_2015_04.pem", |
| 2135 | "data/ssl/certificates/40_months_after_2015_04.pem", |
| 2136 | "data/ssl/certificates/60_months_after_2012_07.pem", |
| 2137 | "data/ssl/certificates/61_months_after_2012_07.pem", |
| 2138 | "data/ssl/certificates/768-rsa-ee-by-1024-rsa-intermediate.pem", |
| 2139 | "data/ssl/certificates/768-rsa-ee-by-2048-rsa-intermediate.pem", |
| 2140 | "data/ssl/certificates/768-rsa-ee-by-768-rsa-intermediate.pem", |
| 2141 | "data/ssl/certificates/768-rsa-ee-by-prime256v1-ecdsa-intermediate.pem", |
| 2142 | "data/ssl/certificates/768-rsa-intermediate.pem", |
| 2143 | "data/ssl/certificates/aia-cert.pem", |
| 2144 | "data/ssl/certificates/aia-intermediate.der", |
| 2145 | "data/ssl/certificates/aia-root.pem", |
| 2146 | "data/ssl/certificates/bad_validity.pem", |
| 2147 | "data/ssl/certificates/client-empty-password.p12", |
| 2148 | "data/ssl/certificates/client-nokey.p12", |
| 2149 | "data/ssl/certificates/client-null-password.p12", |
| 2150 | "data/ssl/certificates/client.p12", |
| 2151 | "data/ssl/certificates/client_1.key", |
| 2152 | "data/ssl/certificates/client_1.pem", |
| 2153 | "data/ssl/certificates/client_1.pk8", |
| 2154 | "data/ssl/certificates/client_1_ca.pem", |
| 2155 | "data/ssl/certificates/client_2.key", |
| 2156 | "data/ssl/certificates/client_2.pem", |
| 2157 | "data/ssl/certificates/client_2.pk8", |
| 2158 | "data/ssl/certificates/client_2_ca.pem", |
| 2159 | "data/ssl/certificates/client_3.key", |
| 2160 | "data/ssl/certificates/client_3.pem", |
| 2161 | "data/ssl/certificates/client_3.pk8", |
| 2162 | "data/ssl/certificates/client_3_ca.pem", |
| 2163 | "data/ssl/certificates/client_4.key", |
| 2164 | "data/ssl/certificates/client_4.pem", |
| 2165 | "data/ssl/certificates/client_4.pk8", |
| 2166 | "data/ssl/certificates/client_4_ca.pem", |
| 2167 | "data/ssl/certificates/client_5.key", |
| 2168 | "data/ssl/certificates/client_5.pem", |
| 2169 | "data/ssl/certificates/client_5.pk8", |
| 2170 | "data/ssl/certificates/client_5_ca.pem", |
| 2171 | "data/ssl/certificates/client_6.key", |
| 2172 | "data/ssl/certificates/client_6.pem", |
| 2173 | "data/ssl/certificates/client_6.pk8", |
| 2174 | "data/ssl/certificates/client_6_ca.pem", |
| 2175 | "data/ssl/certificates/client_root_ca.pem", |
| 2176 | "data/ssl/certificates/comodo.chain.pem", |
| 2177 | "data/ssl/certificates/crit-codeSigning-chain.pem", |
| 2178 | "data/ssl/certificates/crlset_by_intermediate_serial.raw", |
| 2179 | "data/ssl/certificates/crlset_by_leaf_spki.raw", |
| 2180 | "data/ssl/certificates/crlset_by_root_serial.raw", |
| 2181 | "data/ssl/certificates/cross-signed-leaf.pem", |
| 2182 | "data/ssl/certificates/cross-signed-root-md5.pem", |
| 2183 | "data/ssl/certificates/cross-signed-root-sha256.pem", |
| 2184 | "data/ssl/certificates/ct-test-embedded-cert.pem", |
| 2185 | "data/ssl/certificates/ct-test-embedded-with-intermediate-chain.pem", |
| 2186 | "data/ssl/certificates/ct-test-embedded-with-intermediate-preca-chain.pem", |
| 2187 | "data/ssl/certificates/ct-test-embedded-with-preca-chain.pem", |
| 2188 | "data/ssl/certificates/diginotar_cyber_ca.pem", |
| 2189 | "data/ssl/certificates/diginotar_pkioverheid.pem", |
| 2190 | "data/ssl/certificates/diginotar_pkioverheid_g2.pem", |
| 2191 | "data/ssl/certificates/diginotar_public_ca_2025.pem", |
| 2192 | "data/ssl/certificates/diginotar_root_ca.pem", |
| 2193 | "data/ssl/certificates/diginotar_services_1024_ca.pem", |
| 2194 | "data/ssl/certificates/dod_ca_13_cert.der", |
| 2195 | "data/ssl/certificates/dod_ca_17_cert.der", |
| 2196 | "data/ssl/certificates/dod_root_ca_2_cert.der", |
| 2197 | "data/ssl/certificates/duplicate_cn_1.p12", |
| 2198 | "data/ssl/certificates/duplicate_cn_1.pem", |
| 2199 | "data/ssl/certificates/duplicate_cn_2.p12", |
| 2200 | "data/ssl/certificates/duplicate_cn_2.pem", |
| 2201 | "data/ssl/certificates/eku-test-root.pem", |
| 2202 | "data/ssl/certificates/empty_subject_cert.der", |
| 2203 | "data/ssl/certificates/expired_cert.pem", |
| 2204 | "data/ssl/certificates/explicit-policy-chain.pem", |
| 2205 | "data/ssl/certificates/foaf.me.chromium-test-cert.der", |
| 2206 | "data/ssl/certificates/google.binary.p7b", |
| 2207 | "data/ssl/certificates/google.chain.pem", |
| 2208 | "data/ssl/certificates/google.pem_cert.p7b", |
| 2209 | "data/ssl/certificates/google.pem_pkcs7.p7b", |
| 2210 | "data/ssl/certificates/google.single.der", |
| 2211 | "data/ssl/certificates/google.single.pem", |
| 2212 | "data/ssl/certificates/google_diginotar.pem", |
| 2213 | "data/ssl/certificates/googlenew.chain.pem", |
| 2214 | "data/ssl/certificates/intermediate_ca_cert.pem", |
| 2215 | "data/ssl/certificates/invalid_key_usage_cert.der", |
| 2216 | "data/ssl/certificates/large_key.pem", |
| 2217 | "data/ssl/certificates/localhost_cert.pem", |
| 2218 | "data/ssl/certificates/mit.davidben.der", |
| 2219 | "data/ssl/certificates/multi-root-A-by-B.pem", |
| 2220 | "data/ssl/certificates/multi-root-B-by-C.pem", |
| 2221 | "data/ssl/certificates/multi-root-B-by-F.pem", |
| 2222 | "data/ssl/certificates/multi-root-BFE.keychain", |
| 2223 | "data/ssl/certificates/multi-root-C-by-D.pem", |
| 2224 | "data/ssl/certificates/multi-root-C-by-E.pem", |
| 2225 | "data/ssl/certificates/multi-root-D-by-D.pem", |
| 2226 | "data/ssl/certificates/multi-root-E-by-E.pem", |
| 2227 | "data/ssl/certificates/multi-root-F-by-E.pem", |
| 2228 | "data/ssl/certificates/multi-root-chain1.pem", |
| 2229 | "data/ssl/certificates/multi-root-chain2.pem", |
| 2230 | "data/ssl/certificates/multi-root-crlset-C.raw", |
| 2231 | "data/ssl/certificates/multi-root-crlset-CD-and-FE.raw", |
| 2232 | "data/ssl/certificates/multi-root-crlset-D-and-E.raw", |
| 2233 | "data/ssl/certificates/multi-root-crlset-E.raw", |
| 2234 | "data/ssl/certificates/multi-root-crlset-unrelated.raw", |
| 2235 | "data/ssl/certificates/multivalue_rdn.pem", |
| 2236 | "data/ssl/certificates/name_constraint_bad.pem", |
| 2237 | "data/ssl/certificates/name_constraint_good.pem", |
| 2238 | "data/ssl/certificates/ndn.ca.crt", |
| 2239 | "data/ssl/certificates/nist.der", |
| 2240 | "data/ssl/certificates/no_subject_common_name_cert.pem", |
| 2241 | "data/ssl/certificates/non-crit-codeSigning-chain.pem", |
| 2242 | "data/ssl/certificates/ocsp-test-root.pem", |
| 2243 | "data/ssl/certificates/ok_cert.pem", |
| 2244 | "data/ssl/certificates/ok_cert_by_intermediate.pem", |
| 2245 | "data/ssl/certificates/post_june_2016.pem", |
| 2246 | "data/ssl/certificates/pre_br_validity_bad_121.pem", |
| 2247 | "data/ssl/certificates/pre_br_validity_bad_2020.pem", |
| 2248 | "data/ssl/certificates/pre_br_validity_ok.pem", |
| 2249 | "data/ssl/certificates/pre_june_2016.pem", |
| 2250 | "data/ssl/certificates/prime256v1-ecdsa-ee-by-1024-rsa-intermediate.pem", |
| 2251 | "data/ssl/certificates/prime256v1-ecdsa-ee-by-2048-rsa-intermediate.pem", |
| 2252 | "data/ssl/certificates/prime256v1-ecdsa-ee-by-768-rsa-intermediate.pem", |
| 2253 | "data/ssl/certificates/prime256v1-ecdsa-ee-by-prime256v1-ecdsa-intermediate.pem", |
| 2254 | "data/ssl/certificates/prime256v1-ecdsa-intermediate.pem", |
| 2255 | "data/ssl/certificates/punycodetest.pem", |
| 2256 | "data/ssl/certificates/quic_chain.crt", |
| 2257 | "data/ssl/certificates/quic_intermediate.crt", |
| 2258 | "data/ssl/certificates/quic_intermediate.key", |
| 2259 | "data/ssl/certificates/quic_root.crt", |
| 2260 | "data/ssl/certificates/quic_root.key", |
| 2261 | "data/ssl/certificates/quic_test.example.com.crt", |
| 2262 | "data/ssl/certificates/quic_test.example.com.key", |
| 2263 | "data/ssl/certificates/quic_test.example.com.key.pkcs8", |
| 2264 | "data/ssl/certificates/quic_test.example.com.key.sct", |
| 2265 | "data/ssl/certificates/quic_test_ecc.example.com.crt", |
| 2266 | "data/ssl/certificates/quic_test_ecc.example.com.key", |
| 2267 | "data/ssl/certificates/quic_test_ecc.example.com.sct", |
| 2268 | "data/ssl/certificates/redundant-server-chain.pem", |
| 2269 | "data/ssl/certificates/redundant-validated-chain-root.pem", |
| 2270 | "data/ssl/certificates/redundant-validated-chain.pem", |
| 2271 | "data/ssl/certificates/reject_intranet_hosts.pem", |
| 2272 | "data/ssl/certificates/root_ca_cert.pem", |
| 2273 | "data/ssl/certificates/salesforce_com_test.pem", |
| 2274 | "data/ssl/certificates/self-signed-invalid-name.pem", |
| 2275 | "data/ssl/certificates/self-signed-invalid-sig.pem", |
| 2276 | "data/ssl/certificates/sha1_2016.pem", |
| 2277 | "data/ssl/certificates/sha1_dec_2015.pem", |
| 2278 | "data/ssl/certificates/sha1_jan_2016.pem", |
| 2279 | "data/ssl/certificates/spdy_pooling.pem", |
| 2280 | "data/ssl/certificates/start_after_expiry.pem", |
| 2281 | "data/ssl/certificates/subjectAltName_sanity_check.pem", |
| 2282 | "data/ssl/certificates/test_mail_google_com.pem", |
| 2283 | "data/ssl/certificates/thawte.single.pem", |
| 2284 | "data/ssl/certificates/tls_feature_extension.pem", |
| 2285 | "data/ssl/certificates/tripadvisor-verisign-chain.pem", |
| 2286 | "data/ssl/certificates/twitter-chain.pem", |
| 2287 | "data/ssl/certificates/unescaped.pem", |
| 2288 | "data/ssl/certificates/unittest.key.bin", |
| 2289 | "data/ssl/certificates/unittest.originbound.der", |
| 2290 | "data/ssl/certificates/unittest.originbound.key.der", |
| 2291 | "data/ssl/certificates/unittest.selfsigned.der", |
| 2292 | "data/ssl/certificates/verisign_class3_g5_crosssigned-trusted.keychain", |
| 2293 | "data/ssl/certificates/verisign_class3_g5_crosssigned.pem", |
| 2294 | "data/ssl/certificates/verisign_intermediate_ca_2011.pem", |
| 2295 | "data/ssl/certificates/verisign_intermediate_ca_2016.pem", |
| 2296 | "data/ssl/certificates/weak_digest_md2_ee.pem", |
| 2297 | "data/ssl/certificates/weak_digest_md2_intermediate.pem", |
| 2298 | "data/ssl/certificates/weak_digest_md2_root.pem", |
| 2299 | "data/ssl/certificates/weak_digest_md4_ee.pem", |
| 2300 | "data/ssl/certificates/weak_digest_md4_intermediate.pem", |
| 2301 | "data/ssl/certificates/weak_digest_md4_root.pem", |
| 2302 | "data/ssl/certificates/weak_digest_md5_ee.pem", |
| 2303 | "data/ssl/certificates/weak_digest_md5_intermediate.pem", |
| 2304 | "data/ssl/certificates/weak_digest_md5_root.pem", |
| 2305 | "data/ssl/certificates/weak_digest_sha1_ee.pem", |
| 2306 | "data/ssl/certificates/weak_digest_sha1_intermediate.pem", |
| 2307 | "data/ssl/certificates/weak_digest_sha1_root.pem", |
| 2308 | "data/ssl/certificates/websocket_cacert.pem", |
| 2309 | "data/ssl/certificates/websocket_client_cert.p12", |
| 2310 | "data/ssl/certificates/wildcard.pem", |
| 2311 | "data/ssl/certificates/wosign_after_oct_21.pem", |
| 2312 | "data/ssl/certificates/wosign_before_oct_21.pem", |
| 2313 | "data/ssl/certificates/www_us_army_mil_cert.der", |
| 2314 | "data/ssl/certificates/x509_verify_results.chain.pem", |
| 2315 | ] |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 2316 | outputs = [ |
| 2317 | "{{bundle_resources_dir}}/" + |
| 2318 | "{{source_root_relative_dir}}/{{source_file_part}}", |
| 2319 | ] |
| 2320 | } |
| 2321 | |
brettw | 3871f52 | 2016-07-14 22:08:34 | [diff] [blame] | 2322 | static_library("test_support") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2323 | testonly = true |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2324 | sources = [ |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2325 | "base/load_timing_info_test_util.cc", |
| 2326 | "base/load_timing_info_test_util.h", |
| 2327 | "base/mock_file_stream.cc", |
| 2328 | "base/mock_file_stream.h", |
| 2329 | "base/test_completion_callback.cc", |
| 2330 | "base/test_completion_callback.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2331 | "cert/mock_cert_verifier.cc", |
| 2332 | "cert/mock_cert_verifier.h", |
ryanchung | 987b2ff | 2016-02-19 00:17:12 | [diff] [blame] | 2333 | "cert/mock_client_cert_verifier.cc", |
| 2334 | "cert/mock_client_cert_verifier.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2335 | "cookies/cookie_monster_store_test.cc", |
| 2336 | "cookies/cookie_monster_store_test.h", |
| 2337 | "cookies/cookie_store_test_callbacks.cc", |
| 2338 | "cookies/cookie_store_test_callbacks.h", |
| 2339 | "cookies/cookie_store_test_helpers.cc", |
| 2340 | "cookies/cookie_store_test_helpers.h", |
droger | fd8b277 | 2015-12-04 14:34:56 | [diff] [blame] | 2341 | "cookies/cookie_store_unittest.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2342 | "disk_cache/disk_cache_test_base.cc", |
| 2343 | "disk_cache/disk_cache_test_base.h", |
| 2344 | "disk_cache/disk_cache_test_util.cc", |
| 2345 | "disk_cache/disk_cache_test_util.h", |
| 2346 | "dns/dns_test_util.cc", |
| 2347 | "dns/dns_test_util.h", |
| 2348 | "dns/mock_host_resolver.cc", |
| 2349 | "dns/mock_host_resolver.h", |
| 2350 | "dns/mock_mdns_socket_factory.cc", |
| 2351 | "dns/mock_mdns_socket_factory.h", |
xunjieli | 6cc8b84b | 2016-11-08 15:23:39 | [diff] [blame] | 2352 | "filter/mock_source_stream.cc", |
| 2353 | "filter/mock_source_stream.h", |
zhongyi | 3c41298 | 2016-06-18 00:34:30 | [diff] [blame] | 2354 | "http/http_stream_factory_test_util.cc", |
| 2355 | "http/http_stream_factory_test_util.h", |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 2356 | "http/http_transaction_test_util.cc", |
| 2357 | "http/http_transaction_test_util.h", |
vishal.b | 62985ca9 | 2015-04-17 08:45:51 | [diff] [blame] | 2358 | "log/test_net_log.cc", |
| 2359 | "log/test_net_log.h", |
mmenke | 43758e6 | 2015-05-04 21:09:46 | [diff] [blame] | 2360 | "log/test_net_log_entry.cc", |
| 2361 | "log/test_net_log_entry.h", |
mmenke | 0034c54 | 2015-05-05 22:34:59 | [diff] [blame] | 2362 | "log/test_net_log_util.cc", |
mmenke | 43758e6 | 2015-05-04 21:09:46 | [diff] [blame] | 2363 | "log/test_net_log_util.h", |
tbansal | 785a6ab | 2016-10-10 20:19:28 | [diff] [blame] | 2364 | "nqe/network_quality_estimator_test_util.cc", |
| 2365 | "nqe/network_quality_estimator_test_util.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2366 | "proxy/mock_proxy_resolver.cc", |
| 2367 | "proxy/mock_proxy_resolver.h", |
| 2368 | "proxy/mock_proxy_script_fetcher.cc", |
| 2369 | "proxy/mock_proxy_script_fetcher.h", |
| 2370 | "proxy/proxy_config_service_common_unittest.cc", |
| 2371 | "proxy/proxy_config_service_common_unittest.h", |
| 2372 | "socket/socket_test_util.cc", |
| 2373 | "socket/socket_test_util.h", |
morlovich | 833190ec | 2017-02-10 16:53:04 | [diff] [blame] | 2374 | "spdy/spdy_test_util_common.cc", |
| 2375 | "spdy/spdy_test_util_common.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2376 | "test/cert_test_util.cc", |
| 2377 | "test/cert_test_util.h", |
[email protected] | 83e1ae3 | 2014-07-18 10:57:07 | [diff] [blame] | 2378 | "test/cert_test_util_nss.cc", |
nharper | 2e171cf | 2015-06-01 20:29:23 | [diff] [blame] | 2379 | "test/channel_id_test_util.cc", |
| 2380 | "test/channel_id_test_util.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2381 | "test/ct_test_util.cc", |
| 2382 | "test/ct_test_util.h", |
svaldez | 7d25c56 | 2015-10-30 19:09:45 | [diff] [blame] | 2383 | "test/embedded_test_server/default_handlers.cc", |
| 2384 | "test/embedded_test_server/default_handlers.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2385 | "test/embedded_test_server/embedded_test_server.cc", |
| 2386 | "test/embedded_test_server/embedded_test_server.h", |
| 2387 | "test/embedded_test_server/http_connection.cc", |
| 2388 | "test/embedded_test_server/http_connection.h", |
| 2389 | "test/embedded_test_server/http_request.cc", |
| 2390 | "test/embedded_test_server/http_request.h", |
| 2391 | "test/embedded_test_server/http_response.cc", |
| 2392 | "test/embedded_test_server/http_response.h", |
svaldez | 6e7e82a2 | 2015-10-28 19:39:53 | [diff] [blame] | 2393 | "test/embedded_test_server/request_handler_util.cc", |
| 2394 | "test/embedded_test_server/request_handler_util.h", |
sammc | 6ac3fe5 | 2015-02-25 06:00:28 | [diff] [blame] | 2395 | "test/event_waiter.h", |
johnme | 36ae580 | 2016-05-10 15:46:24 | [diff] [blame] | 2396 | "test/gtest_util.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2397 | "test/net_test_suite.cc", |
| 2398 | "test/net_test_suite.h", |
| 2399 | "test/python_utils.cc", |
| 2400 | "test/python_utils.h", |
johnme | 36ae580 | 2016-05-10 15:46:24 | [diff] [blame] | 2401 | "test/scoped_disable_exit_on_dfatal.cc", |
| 2402 | "test/scoped_disable_exit_on_dfatal.h", |
brettw | 6315e03 | 2015-11-27 18:38:36 | [diff] [blame] | 2403 | "test/test_certificate_data.h", |
rsleevi | a69c79a | 2016-06-22 03:28:43 | [diff] [blame] | 2404 | "test/test_data_directory.cc", |
| 2405 | "test/test_data_directory.h", |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 2406 | "test/url_request/ssl_certificate_error_job.cc", |
| 2407 | "test/url_request/ssl_certificate_error_job.h", |
Brett Wilson | 32ce17a | 2014-11-10 17:45:30 | [diff] [blame] | 2408 | "test/url_request/url_request_failed_job.cc", |
| 2409 | "test/url_request/url_request_failed_job.h", |
xunjieli | 5d1f989 | 2016-05-18 20:44:34 | [diff] [blame] | 2410 | "test/url_request/url_request_hanging_read_job.cc", |
| 2411 | "test/url_request/url_request_hanging_read_job.h", |
mef | 3e826cf | 2014-12-13 18:40:40 | [diff] [blame] | 2412 | "test/url_request/url_request_mock_data_job.cc", |
| 2413 | "test/url_request/url_request_mock_data_job.h", |
jam | 8e45cd7 | 2015-01-20 16:33:44 | [diff] [blame] | 2414 | "test/url_request/url_request_slow_download_job.cc", |
| 2415 | "test/url_request/url_request_slow_download_job.h", |
rhalavati | a9b551d | 2017-02-09 12:03:00 | [diff] [blame] | 2416 | "traffic_annotation/network_traffic_annotation_test_helper.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2417 | "url_request/test_url_fetcher_factory.cc", |
| 2418 | "url_request/test_url_fetcher_factory.h", |
| 2419 | "url_request/url_request_test_util.cc", |
| 2420 | "url_request/url_request_test_util.h", |
| 2421 | ] |
sherouk | 3eee4a8 | 2015-09-01 10:42:33 | [diff] [blame] | 2422 | if (!is_ios) { |
| 2423 | sources += [ |
| 2424 | "test/spawned_test_server/base_test_server.cc", |
| 2425 | "test/spawned_test_server/base_test_server.h", |
| 2426 | "test/spawned_test_server/local_test_server.cc", |
| 2427 | "test/spawned_test_server/local_test_server.h", |
| 2428 | "test/spawned_test_server/local_test_server_posix.cc", |
| 2429 | "test/spawned_test_server/local_test_server_win.cc", |
| 2430 | "test/spawned_test_server/spawned_test_server.h", |
| 2431 | ] |
| 2432 | } |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2433 | |
brettw | bc8b2a2 | 2015-07-28 18:24:42 | [diff] [blame] | 2434 | configs += [ |
| 2435 | "//build/config:precompiled_headers", |
| 2436 | |
| 2437 | # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 2438 | "//build/config/compiler:no_size_t_to_int_warning", |
| 2439 | ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2440 | |
Brett Wilson | e5389527 | 2014-09-23 23:41:46 | [diff] [blame] | 2441 | public_deps = [ |
rhalavati | a9b551d | 2017-02-09 12:03:00 | [diff] [blame] | 2442 | ":traffic_annotation", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2443 | "//base", |
| 2444 | "//base/test:test_support", |
[email protected] | 22fe91d | 2014-08-12 17:07:12 | [diff] [blame] | 2445 | "//crypto", |
[email protected] | 59ff2d4 | 2014-04-22 22:25:23 | [diff] [blame] | 2446 | "//net", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2447 | "//net/tools/tld_cleanup", |
| 2448 | "//testing/gmock", |
| 2449 | "//testing/gtest", |
| 2450 | "//url", |
| 2451 | ] |
| 2452 | |
rsesek | 7d4ab4bc | 2016-07-22 17:35:13 | [diff] [blame] | 2453 | deps = [] |
sdefresne | 04f9114 | 2016-04-21 08:41:59 | [diff] [blame] | 2454 | |
jbudorick | 944eb92 | 2016-06-20 15:38:30 | [diff] [blame] | 2455 | data = [ |
| 2456 | "data/", |
| 2457 | ] |
| 2458 | |
rsesek | 7d4ab4bc | 2016-07-22 17:35:13 | [diff] [blame] | 2459 | if (is_ios) { |
| 2460 | deps += [ ":test_support_bundle_data" ] |
| 2461 | } else { |
jam | b533b7e | 2015-03-04 17:12:05 | [diff] [blame] | 2462 | public_deps += [ "//third_party/protobuf:py_proto" ] |
| 2463 | } |
| 2464 | |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 2465 | if (use_nss_certs) { |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2466 | public_deps += [ "//crypto:platform" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2467 | } |
| 2468 | |
sherouk | 3eee4a8 | 2015-09-01 10:42:33 | [diff] [blame] | 2469 | if (is_android) { |
| 2470 | sources += [ |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2471 | "test/spawned_test_server/remote_test_server.cc", |
| 2472 | "test/spawned_test_server/remote_test_server.h", |
| 2473 | "test/spawned_test_server/spawner_communicator.cc", |
| 2474 | "test/spawned_test_server/spawner_communicator.h", |
| 2475 | ] |
| 2476 | } |
| 2477 | |
| 2478 | if (use_v8_in_net) { |
Brett Wilson | e5389527 | 2014-09-23 23:41:46 | [diff] [blame] | 2479 | public_deps += [ ":net_with_v8" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2480 | } |
| 2481 | |
| 2482 | if (!enable_mdns) { |
| 2483 | sources -= [ |
| 2484 | "dns/mock_mdns_socket_factory.cc", |
| 2485 | "dns/mock_mdns_socket_factory.h", |
| 2486 | ] |
| 2487 | } |
| 2488 | |
davidben | 15d69d48 | 2014-09-29 18:24:08 | [diff] [blame] | 2489 | if (!use_nss_certs) { |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2490 | sources -= [ "test/cert_test_util_nss.cc" ] |
[email protected] | 83e1ae3 | 2014-07-18 10:57:07 | [diff] [blame] | 2491 | } |
xunjieli | a688820 | 2015-04-14 21:34:25 | [diff] [blame] | 2492 | |
| 2493 | if (!disable_file_support) { |
| 2494 | sources += [ |
| 2495 | "test/url_request/url_request_mock_http_job.cc", |
| 2496 | "test/url_request/url_request_mock_http_job.h", |
| 2497 | "url_request/test_url_request_interceptor.cc", |
| 2498 | "url_request/test_url_request_interceptor.h", |
| 2499 | ] |
| 2500 | } |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2501 | } |
| 2502 | |
| 2503 | if (use_v8_in_net) { |
| 2504 | component("net_with_v8") { |
| 2505 | sources = [ |
| 2506 | "proxy/proxy_resolver_v8.cc", |
| 2507 | "proxy/proxy_resolver_v8.h", |
| 2508 | "proxy/proxy_resolver_v8_tracing.cc", |
| 2509 | "proxy/proxy_resolver_v8_tracing.h", |
sammc | f2d1ea0 | 2015-06-29 02:58:47 | [diff] [blame] | 2510 | "proxy/proxy_resolver_v8_tracing_wrapper.cc", |
| 2511 | "proxy/proxy_resolver_v8_tracing_wrapper.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2512 | "proxy/proxy_service_v8.cc", |
| 2513 | "proxy/proxy_service_v8.h", |
| 2514 | ] |
| 2515 | |
| 2516 | defines = [ "NET_IMPLEMENTATION" ] |
dpranke | a22b073 | 2015-10-21 21:15:11 | [diff] [blame] | 2517 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2518 | configs += [ |
brettw | d1c719a | 2015-02-19 23:17:04 | [diff] [blame] | 2519 | "//build/config/compiler:no_size_t_to_int_warning", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2520 | "//build/config/compiler:wexit_time_destructors", |
dpranke | a22b073 | 2015-10-21 21:15:11 | [diff] [blame] | 2521 | "//v8:external_startup_data", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2522 | ] |
| 2523 | |
Brett Wilson | e5389527 | 2014-09-23 23:41:46 | [diff] [blame] | 2524 | public_deps = [ |
xunjieli | 0b7f5b6 | 2016-12-06 20:43:48 | [diff] [blame] | 2525 | ":constants", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2526 | ":net", |
Brett Wilson | e5389527 | 2014-09-23 23:41:46 | [diff] [blame] | 2527 | ] |
| 2528 | deps = [ |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2529 | "//base", |
| 2530 | "//gin", |
| 2531 | "//url", |
| 2532 | "//v8", |
| 2533 | ] |
| 2534 | } |
| 2535 | } |
| 2536 | |
jokulik | 59c6ca17 | 2017-02-10 22:07:02 | [diff] [blame] | 2537 | if (!is_ios && !is_android && !is_proto_quic) { |
amistry | 7e6ebfdc8 | 2015-02-13 04:19:11 | [diff] [blame] | 2538 | source_set("net_browser_services") { |
| 2539 | sources = [ |
| 2540 | "dns/mojo_host_resolver_impl.cc", |
| 2541 | "dns/mojo_host_resolver_impl.h", |
sammc | 1d5df4d | 2015-05-05 05:06:17 | [diff] [blame] | 2542 | "proxy/mojo_proxy_resolver_factory.h", |
eroman | dcacef2 | 2015-06-01 19:36:35 | [diff] [blame] | 2543 | "proxy/proxy_resolver_factory_mojo.cc", |
| 2544 | "proxy/proxy_resolver_factory_mojo.h", |
amistry | 6e1ed1b | 2015-03-12 05:24:01 | [diff] [blame] | 2545 | "proxy/proxy_service_mojo.cc", |
| 2546 | "proxy/proxy_service_mojo.h", |
amistry | 7e6ebfdc8 | 2015-02-13 04:19:11 | [diff] [blame] | 2547 | ] |
| 2548 | |
| 2549 | public_deps = [ |
scottmg | 5bf3420 | 2017-01-26 05:49:02 | [diff] [blame] | 2550 | ":net", |
brettw | bc44c0a9 | 2015-02-20 22:30:39 | [diff] [blame] | 2551 | "//base", |
rockot | 85dce086 | 2015-11-13 01:33:59 | [diff] [blame] | 2552 | "//mojo/public/cpp/bindings", |
amistry | 7e6ebfdc8 | 2015-02-13 04:19:11 | [diff] [blame] | 2553 | "//net/interfaces", |
amistry | 7e6ebfdc8 | 2015-02-13 04:19:11 | [diff] [blame] | 2554 | ] |
| 2555 | } |
| 2556 | |
sammc | 5403aa1d | 2015-02-25 04:59:21 | [diff] [blame] | 2557 | source_set("net_utility_services") { |
| 2558 | sources = [ |
sammc | 6ac3fe5 | 2015-02-25 06:00:28 | [diff] [blame] | 2559 | "dns/host_resolver_mojo.cc", |
| 2560 | "dns/host_resolver_mojo.h", |
sammc | 352f749 | 2015-02-25 09:45:24 | [diff] [blame] | 2561 | "proxy/mojo_proxy_resolver_factory_impl.cc", |
| 2562 | "proxy/mojo_proxy_resolver_factory_impl.h", |
sammc | 5403aa1d | 2015-02-25 04:59:21 | [diff] [blame] | 2563 | "proxy/mojo_proxy_resolver_impl.cc", |
| 2564 | "proxy/mojo_proxy_resolver_impl.h", |
sammc | a3242c9 | 2015-07-10 02:38:51 | [diff] [blame] | 2565 | "proxy/mojo_proxy_resolver_v8_tracing_bindings.h", |
sammc | 5403aa1d | 2015-02-25 04:59:21 | [diff] [blame] | 2566 | ] |
| 2567 | |
rockot | 9509ec8 | 2015-04-14 02:50:56 | [diff] [blame] | 2568 | deps = [ |
| 2569 | ":net_with_v8", |
tfarina | 8ac4d17f | 2015-12-16 02:11:11 | [diff] [blame] | 2570 | "//base", |
rockot | 9509ec8 | 2015-04-14 02:50:56 | [diff] [blame] | 2571 | ] |
| 2572 | |
sammc | 5403aa1d | 2015-02-25 04:59:21 | [diff] [blame] | 2573 | public_deps = [ |
sammc | 5403aa1d | 2015-02-25 04:59:21 | [diff] [blame] | 2574 | ":net", |
rockot | 85dce086 | 2015-11-13 01:33:59 | [diff] [blame] | 2575 | "//mojo/public/cpp/bindings", |
sammc | 5403aa1d | 2015-02-25 04:59:21 | [diff] [blame] | 2576 | "//net/interfaces", |
sammc | 5403aa1d | 2015-02-25 04:59:21 | [diff] [blame] | 2577 | ] |
| 2578 | } |
amistry | 7e6ebfdc8 | 2015-02-13 04:19:11 | [diff] [blame] | 2579 | } |
| 2580 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2581 | if (!is_ios && !is_android) { |
mattm | 36d8968 | 2016-06-08 22:22:40 | [diff] [blame] | 2582 | executable("cert_verify_tool") { |
| 2583 | testonly = true |
| 2584 | sources = [ |
| 2585 | "tools/cert_verify_tool/cert_verify_tool.cc", |
| 2586 | "tools/cert_verify_tool/cert_verify_tool_util.cc", |
| 2587 | "tools/cert_verify_tool/cert_verify_tool_util.h", |
| 2588 | "tools/cert_verify_tool/verify_using_cert_verify_proc.cc", |
| 2589 | "tools/cert_verify_tool/verify_using_cert_verify_proc.h", |
mattm | 3c66edc | 2016-07-13 22:40:42 | [diff] [blame] | 2590 | "tools/cert_verify_tool/verify_using_path_builder.cc", |
| 2591 | "tools/cert_verify_tool/verify_using_path_builder.h", |
mattm | 36d8968 | 2016-06-08 22:22:40 | [diff] [blame] | 2592 | ] |
| 2593 | |
| 2594 | # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 2595 | configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 2596 | deps = [ |
| 2597 | ":net", |
| 2598 | ":test_support", |
| 2599 | "//base", |
| 2600 | "//build/config/sanitizers:deps", |
| 2601 | "//build/win:default_exe_manifest", |
| 2602 | ] |
| 2603 | } |
| 2604 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2605 | executable("crash_cache") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2606 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2607 | sources = [ |
| 2608 | "tools/crash_cache/crash_cache.cc", |
| 2609 | ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 2610 | |
brettw | d1c719a | 2015-02-19 23:17:04 | [diff] [blame] | 2611 | # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 2612 | configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2613 | deps = [ |
| 2614 | ":net", |
[email protected] | b2b2bf5 | 2014-05-28 20:26:57 | [diff] [blame] | 2615 | ":test_support", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2616 | "//base", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 2617 | "//build/config/sanitizers:deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2618 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2619 | ] |
| 2620 | } |
| 2621 | |
| 2622 | executable("crl_set_dump") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2623 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2624 | sources = [ |
| 2625 | "tools/crl_set_dump/crl_set_dump.cc", |
| 2626 | ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 2627 | |
brettw | d1c719a | 2015-02-19 23:17:04 | [diff] [blame] | 2628 | # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 2629 | configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2630 | deps = [ |
| 2631 | ":net", |
| 2632 | "//base", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 2633 | "//build/config/sanitizers:deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2634 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2635 | ] |
| 2636 | } |
| 2637 | |
| 2638 | executable("dns_fuzz_stub") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2639 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2640 | sources = [ |
| 2641 | "tools/dns_fuzz_stub/dns_fuzz_stub.cc", |
| 2642 | ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 2643 | |
brettw | d1c719a | 2015-02-19 23:17:04 | [diff] [blame] | 2644 | # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 2645 | configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2646 | deps = [ |
| 2647 | ":net", |
| 2648 | "//base", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 2649 | "//build/config/sanitizers:deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2650 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2651 | ] |
| 2652 | } |
| 2653 | |
| 2654 | executable("gdig") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2655 | testonly = true |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2656 | sources = [ |
| 2657 | "tools/gdig/file_net_log.cc", |
| 2658 | "tools/gdig/gdig.cc", |
| 2659 | ] |
| 2660 | deps = [ |
| 2661 | ":net", |
| 2662 | "//base", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 2663 | "//build/config/sanitizers:deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2664 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2665 | ] |
| 2666 | } |
| 2667 | |
| 2668 | executable("get_server_time") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2669 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2670 | sources = [ |
| 2671 | "tools/get_server_time/get_server_time.cc", |
| 2672 | ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 2673 | |
brettw | d1c719a | 2015-02-19 23:17:04 | [diff] [blame] | 2674 | # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 2675 | configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2676 | deps = [ |
| 2677 | ":net", |
| 2678 | "//base", |
| 2679 | "//base:i18n", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 2680 | "//build/config/sanitizers:deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2681 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2682 | "//url", |
| 2683 | ] |
| 2684 | } |
| 2685 | |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 2686 | executable("hpack_example_generator") { |
| 2687 | testonly = true |
| 2688 | sources = [ |
| 2689 | "spdy/fuzzing/hpack_example_generator.cc", |
| 2690 | ] |
| 2691 | |
| 2692 | # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 2693 | configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 2694 | deps = [ |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 2695 | ":net", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 2696 | "//base", |
| 2697 | "//build/config/sanitizers:deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2698 | "//build/win:default_exe_manifest", |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 2699 | ] |
| 2700 | } |
| 2701 | |
| 2702 | executable("hpack_fuzz_mutator") { |
| 2703 | testonly = true |
| 2704 | sources = [ |
| 2705 | "spdy/fuzzing/hpack_fuzz_mutator.cc", |
| 2706 | ] |
| 2707 | |
| 2708 | # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 2709 | configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 2710 | deps = [ |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 2711 | ":net", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 2712 | "//base", |
| 2713 | "//build/config/sanitizers:deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2714 | "//build/win:default_exe_manifest", |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 2715 | ] |
| 2716 | } |
| 2717 | |
| 2718 | executable("hpack_fuzz_wrapper") { |
| 2719 | testonly = true |
| 2720 | sources = [ |
| 2721 | "spdy/fuzzing/hpack_fuzz_wrapper.cc", |
| 2722 | ] |
| 2723 | |
| 2724 | # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 2725 | configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 2726 | deps = [ |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 2727 | ":net", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 2728 | "//base", |
| 2729 | "//build/config/sanitizers:deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2730 | "//build/win:default_exe_manifest", |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 2731 | ] |
| 2732 | } |
| 2733 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2734 | if (use_v8_in_net) { |
| 2735 | executable("net_watcher") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2736 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2737 | sources = [ |
| 2738 | "tools/net_watcher/net_watcher.cc", |
| 2739 | ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2740 | deps = [ |
| 2741 | ":net", |
| 2742 | ":net_with_v8", |
| 2743 | "//base", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 2744 | "//build/config/sanitizers:deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2745 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2746 | ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2747 | } |
| 2748 | } |
| 2749 | |
| 2750 | executable("run_testserver") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2751 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2752 | sources = [ |
| 2753 | "tools/testserver/run_testserver.cc", |
| 2754 | ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2755 | deps = [ |
[email protected] | b2b2bf5 | 2014-05-28 20:26:57 | [diff] [blame] | 2756 | ":test_support", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2757 | "//base", |
| 2758 | "//base/test:test_support", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 2759 | "//build/config/sanitizers:deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2760 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2761 | "//testing/gtest", |
| 2762 | ] |
| 2763 | } |
| 2764 | |
| 2765 | executable("stress_cache") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2766 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2767 | sources = [ |
rvargas | e23fcf65 | 2015-03-04 19:59:22 | [diff] [blame] | 2768 | "tools/stress_cache/stress_cache.cc", |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2769 | ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 2770 | |
brettw | d1c719a | 2015-02-19 23:17:04 | [diff] [blame] | 2771 | # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 2772 | configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2773 | deps = [ |
| 2774 | ":net", |
[email protected] | b2b2bf5 | 2014-05-28 20:26:57 | [diff] [blame] | 2775 | ":test_support", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2776 | "//base", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 2777 | "//build/config/sanitizers:deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2778 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2779 | ] |
| 2780 | } |
| 2781 | |
| 2782 | executable("tld_cleanup") { |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2783 | sources = [ |
| 2784 | "tools/tld_cleanup/tld_cleanup.cc", |
| 2785 | ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 2786 | |
brettw | d1c719a | 2015-02-19 23:17:04 | [diff] [blame] | 2787 | # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 2788 | configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2789 | deps = [ |
| 2790 | "//base", |
| 2791 | "//base:i18n", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 2792 | "//build/config/sanitizers:deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2793 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2794 | "//net/tools/tld_cleanup", |
| 2795 | ] |
| 2796 | } |
| 2797 | } |
| 2798 | |
gabadie | 0774bee | 2016-05-12 14:02:58 | [diff] [blame] | 2799 | if (is_linux || is_mac) { |
gabadie | 64af64a | 2016-03-29 16:36:42 | [diff] [blame] | 2800 | executable("cachetool") { |
| 2801 | testonly = true |
| 2802 | sources = [ |
| 2803 | "tools/cachetool/cachetool.cc", |
| 2804 | ] |
| 2805 | deps = [ |
| 2806 | ":net", |
| 2807 | ":test_support", |
| 2808 | "//base", |
| 2809 | ] |
| 2810 | } |
| 2811 | |
| 2812 | executable("content_decoder_tool") { |
| 2813 | testonly = true |
| 2814 | sources = [ |
gabadie | 64af64a | 2016-03-29 16:36:42 | [diff] [blame] | 2815 | "tools/content_decoder_tool/content_decoder_tool.cc", |
xunjieli | bb2d9f20 | 2016-11-01 16:37:27 | [diff] [blame] | 2816 | "tools/content_decoder_tool/content_decoder_tool.h", |
| 2817 | "tools/content_decoder_tool/content_decoder_tool_bin.cc", |
gabadie | 64af64a | 2016-03-29 16:36:42 | [diff] [blame] | 2818 | ] |
| 2819 | deps = [ |
| 2820 | ":net", |
| 2821 | ":test_support", |
| 2822 | "//base", |
| 2823 | "//url", |
| 2824 | ] |
| 2825 | } |
gabadie | 0774bee | 2016-05-12 14:02:58 | [diff] [blame] | 2826 | } |
gabadie | 64af64a | 2016-03-29 16:36:42 | [diff] [blame] | 2827 | |
gabadie | 0774bee | 2016-05-12 14:02:58 | [diff] [blame] | 2828 | if (is_linux) { |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 2829 | static_library("epoll_server") { |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2830 | sources = [ |
| 2831 | "tools/epoll_server/epoll_server.cc", |
| 2832 | "tools/epoll_server/epoll_server.h", |
| 2833 | ] |
| 2834 | deps = [ |
| 2835 | ":net", |
| 2836 | "//base", |
| 2837 | ] |
| 2838 | } |
| 2839 | |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 2840 | source_set("epoll_quic_tools") { |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2841 | sources = [ |
rch | dfdb064 | 2016-12-03 03:37:20 | [diff] [blame] | 2842 | "tools/quic/platform/impl/quic_epoll_clock.cc", |
| 2843 | "tools/quic/platform/impl/quic_epoll_clock.h", |
rch | 33a6ce8 | 2016-12-06 18:41:40 | [diff] [blame] | 2844 | "tools/quic/platform/impl/quic_socket_utils.cc", |
| 2845 | "tools/quic/platform/impl/quic_socket_utils.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2846 | "tools/quic/quic_client.cc", |
| 2847 | "tools/quic/quic_client.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2848 | "tools/quic/quic_default_packet_writer.cc", |
| 2849 | "tools/quic/quic_default_packet_writer.h", |
rch | 16c74d1d | 2016-04-22 06:14:07 | [diff] [blame] | 2850 | "tools/quic/quic_epoll_alarm_factory.cc", |
| 2851 | "tools/quic/quic_epoll_alarm_factory.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2852 | "tools/quic/quic_epoll_connection_helper.cc", |
| 2853 | "tools/quic/quic_epoll_connection_helper.h", |
rtenneti | fb3fa6c | 2015-03-16 23:04:55 | [diff] [blame] | 2854 | "tools/quic/quic_packet_reader.cc", |
| 2855 | "tools/quic/quic_packet_reader.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2856 | "tools/quic/quic_packet_writer_wrapper.cc", |
| 2857 | "tools/quic/quic_packet_writer_wrapper.h", |
| 2858 | "tools/quic/quic_server.cc", |
| 2859 | "tools/quic/quic_server.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2860 | ] |
| 2861 | deps = [ |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2862 | ":epoll_server", |
| 2863 | ":net", |
tfarina | 8ac4d17f | 2015-12-16 02:11:11 | [diff] [blame] | 2864 | ":simple_quic_tools", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2865 | "//base", |
| 2866 | "//base/third_party/dynamic_annotations", |
| 2867 | "//crypto", |
[email protected] | edfd0f4 | 2014-07-22 18:20:37 | [diff] [blame] | 2868 | "//third_party/boringssl", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2869 | "//url", |
| 2870 | ] |
| 2871 | } |
| 2872 | |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 2873 | executable("epoll_quic_client") { |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2874 | sources = [ |
| 2875 | "tools/quic/quic_client_bin.cc", |
| 2876 | ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2877 | deps = [ |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 2878 | ":epoll_quic_tools", |
agrieve | d7a71c88 | 2015-11-20 19:53:28 | [diff] [blame] | 2879 | ":epoll_server", |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 2880 | ":net", |
| 2881 | ":simple_quic_tools", |
| 2882 | "//base", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 2883 | "//build/config/sanitizers:deps", |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 2884 | "//third_party/boringssl", |
| 2885 | ] |
| 2886 | } |
| 2887 | |
| 2888 | executable("epoll_quic_server") { |
| 2889 | sources = [ |
| 2890 | "tools/quic/quic_server_bin.cc", |
| 2891 | ] |
| 2892 | deps = [ |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 2893 | ":epoll_quic_tools", |
agrieve | d7a71c88 | 2015-11-20 19:53:28 | [diff] [blame] | 2894 | ":epoll_server", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2895 | ":net", |
rch | da78df5a | 2015-03-22 05:16:37 | [diff] [blame] | 2896 | ":simple_quic_tools", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2897 | "//base", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 2898 | "//build/config/sanitizers:deps", |
[email protected] | edfd0f4 | 2014-07-22 18:20:37 | [diff] [blame] | 2899 | "//third_party/boringssl", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2900 | ] |
| 2901 | } |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2902 | } |
| 2903 | |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 2904 | if (is_android) { |
| 2905 | generate_jni("net_jni_headers") { |
| 2906 | sources = [ |
tbansal | c04b7aa | 2016-07-02 06:54:37 | [diff] [blame] | 2907 | "android/java/src/org/chromium/net/AndroidCellularSignalStrength.java", |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 2908 | "android/java/src/org/chromium/net/AndroidCertVerifyResult.java", |
| 2909 | "android/java/src/org/chromium/net/AndroidKeyStore.java", |
| 2910 | "android/java/src/org/chromium/net/AndroidNetworkLibrary.java", |
tbansal | 59a1ddc | 2015-09-14 17:35:01 | [diff] [blame] | 2911 | "android/java/src/org/chromium/net/AndroidTrafficStats.java", |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 2912 | "android/java/src/org/chromium/net/GURLUtils.java", |
aberent | ec894a5 | 2015-07-09 14:45:53 | [diff] [blame] | 2913 | "android/java/src/org/chromium/net/HttpNegotiateAuthenticator.java", |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 2914 | "android/java/src/org/chromium/net/NetStringUtil.java", |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 2915 | "android/java/src/org/chromium/net/NetworkChangeNotifier.java", |
| 2916 | "android/java/src/org/chromium/net/ProxyChangeListener.java", |
| 2917 | "android/java/src/org/chromium/net/X509Util.java", |
| 2918 | ] |
| 2919 | jni_package = "net" |
| 2920 | } |
cjhopman | dad5f427 | 2014-09-05 01:00:55 | [diff] [blame] | 2921 | generate_jni("net_test_jni_headers") { |
| 2922 | sources = [ |
| 2923 | "android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java", |
mgersh | d21d6d14 | 2016-12-14 23:06:36 | [diff] [blame] | 2924 | "android/javatests/src/org/chromium/net/AndroidNetworkLibraryTestUtil.java", |
aberent | ec894a5 | 2015-07-09 14:45:53 | [diff] [blame] | 2925 | "test/android/javatests/src/org/chromium/net/test/DummySpnegoAuthenticator.java", |
jbudorick | ccffb98 | 2015-12-22 01:21:35 | [diff] [blame] | 2926 | "test/android/javatests/src/org/chromium/net/test/EmbeddedTestServerImpl.java", |
cjhopman | dad5f427 | 2014-09-05 01:00:55 | [diff] [blame] | 2927 | ] |
brettw | cdccaf0 | 2015-07-27 16:27:09 | [diff] [blame] | 2928 | jni_package = "net/test" |
cjhopman | dad5f427 | 2014-09-05 01:00:55 | [diff] [blame] | 2929 | } |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 2930 | } |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2931 | |
| 2932 | if (is_android || is_linux) { |
| 2933 | executable("disk_cache_memory_test") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2934 | testonly = true |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2935 | sources = [ |
| 2936 | "tools/disk_cache_memory_test/disk_cache_memory_test.cc", |
| 2937 | ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2938 | deps = [ |
| 2939 | ":net", |
| 2940 | "//base", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 2941 | "//build/config/sanitizers:deps", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2942 | ] |
| 2943 | } |
| 2944 | } |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 2945 | |
rch | 47ad01f | 2015-03-20 21:17:23 | [diff] [blame] | 2946 | source_set("simple_quic_tools") { |
rch | a9d12ce1 | 2015-03-19 23:06:49 | [diff] [blame] | 2947 | sources = [ |
ckrasic | a7fd124 | 2016-05-14 20:36:01 | [diff] [blame] | 2948 | "tools/quic/chlo_extractor.cc", |
| 2949 | "tools/quic/chlo_extractor.h", |
rtenneti | d67b3a72 | 2015-08-18 05:15:31 | [diff] [blame] | 2950 | "tools/quic/quic_client_base.cc", |
| 2951 | "tools/quic/quic_client_base.h", |
rch | ed113b2 | 2015-03-26 04:54:05 | [diff] [blame] | 2952 | "tools/quic/quic_client_session.cc", |
| 2953 | "tools/quic/quic_client_session.h", |
rch | c99f380c | 2015-03-26 19:50:56 | [diff] [blame] | 2954 | "tools/quic/quic_dispatcher.cc", |
| 2955 | "tools/quic/quic_dispatcher.h", |
vasilvv | 28270e8f | 2016-12-01 21:38:09 | [diff] [blame] | 2956 | "tools/quic/quic_http_response_cache.cc", |
| 2957 | "tools/quic/quic_http_response_cache.h", |
rch | c99f380c | 2015-03-26 19:50:56 | [diff] [blame] | 2958 | "tools/quic/quic_per_connection_packet_writer.cc", |
| 2959 | "tools/quic/quic_per_connection_packet_writer.h", |
brettw | 25ca892 | 2016-03-18 22:59:58 | [diff] [blame] | 2960 | "tools/quic/quic_process_packet_interface.h", |
rch | a9d12ce1 | 2015-03-19 23:06:49 | [diff] [blame] | 2961 | "tools/quic/quic_simple_client.cc", |
| 2962 | "tools/quic/quic_simple_client.h", |
ianswett | 6c7b7ed | 2016-09-13 19:35:27 | [diff] [blame] | 2963 | "tools/quic/quic_simple_crypto_server_stream_helper.cc", |
| 2964 | "tools/quic/quic_simple_crypto_server_stream_helper.h", |
alyssar | a473d6f | 2016-08-04 16:54:04 | [diff] [blame] | 2965 | "tools/quic/quic_simple_dispatcher.cc", |
| 2966 | "tools/quic/quic_simple_dispatcher.h", |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 2967 | "tools/quic/quic_simple_per_connection_packet_writer.cc", |
| 2968 | "tools/quic/quic_simple_per_connection_packet_writer.h", |
| 2969 | "tools/quic/quic_simple_server.cc", |
| 2970 | "tools/quic/quic_simple_server.h", |
| 2971 | "tools/quic/quic_simple_server_packet_writer.cc", |
| 2972 | "tools/quic/quic_simple_server_packet_writer.h", |
jokulik | c971baf9 | 2016-01-06 00:36:39 | [diff] [blame] | 2973 | "tools/quic/quic_simple_server_session.cc", |
| 2974 | "tools/quic/quic_simple_server_session.h", |
mpw | b5c8da9 | 2016-06-05 20:07:31 | [diff] [blame] | 2975 | "tools/quic/quic_simple_server_session_helper.cc", |
| 2976 | "tools/quic/quic_simple_server_session_helper.h", |
danzh | b755134 | 2015-12-18 02:06:40 | [diff] [blame] | 2977 | "tools/quic/quic_simple_server_stream.cc", |
| 2978 | "tools/quic/quic_simple_server_stream.h", |
rch | ed113b2 | 2015-03-26 04:54:05 | [diff] [blame] | 2979 | "tools/quic/quic_spdy_client_stream.cc", |
| 2980 | "tools/quic/quic_spdy_client_stream.h", |
rch | aa4ec09 | 2016-12-02 00:34:19 | [diff] [blame] | 2981 | "tools/quic/quic_spdy_server_stream_base.cc", |
| 2982 | "tools/quic/quic_spdy_server_stream_base.h", |
rch | 0e94547 | 2015-03-26 15:19:21 | [diff] [blame] | 2983 | "tools/quic/quic_time_wait_list_manager.cc", |
| 2984 | "tools/quic/quic_time_wait_list_manager.h", |
jri | d04ea36 | 2016-06-23 03:07:37 | [diff] [blame] | 2985 | "tools/quic/stateless_rejector.cc", |
| 2986 | "tools/quic/stateless_rejector.h", |
rch | da78df5a | 2015-03-22 05:16:37 | [diff] [blame] | 2987 | "tools/quic/synchronous_host_resolver.cc", |
| 2988 | "tools/quic/synchronous_host_resolver.h", |
rch | a9d12ce1 | 2015-03-19 23:06:49 | [diff] [blame] | 2989 | ] |
| 2990 | deps = [ |
| 2991 | ":net", |
| 2992 | "//base", |
rch | 47ad01f | 2015-03-20 21:17:23 | [diff] [blame] | 2993 | "//base/third_party/dynamic_annotations", |
| 2994 | "//url", |
| 2995 | ] |
| 2996 | } |
| 2997 | |
rhalavati | a9b551d | 2017-02-09 12:03:00 | [diff] [blame] | 2998 | source_set("traffic_annotation") { |
| 2999 | sources = [ |
| 3000 | "traffic_annotation/network_traffic_annotation.h", |
| 3001 | ] |
| 3002 | deps = [] |
| 3003 | } |
| 3004 | |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 3005 | if (!is_ios) { |
| 3006 | executable("quic_client") { |
| 3007 | sources = [ |
| 3008 | "tools/quic/quic_simple_client_bin.cc", |
| 3009 | ] |
| 3010 | deps = [ |
| 3011 | ":net", |
| 3012 | ":simple_quic_tools", |
| 3013 | "//base", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 3014 | "//build/config/sanitizers:deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 3015 | "//build/win:default_exe_manifest", |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 3016 | "//url", |
| 3017 | ] |
| 3018 | } |
| 3019 | executable("quic_server") { |
| 3020 | sources = [ |
| 3021 | "tools/quic/quic_simple_server_bin.cc", |
| 3022 | ] |
| 3023 | deps = [ |
| 3024 | ":net", |
| 3025 | ":simple_quic_tools", |
| 3026 | "//base", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 3027 | "//build/config/sanitizers:deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 3028 | "//build/win:default_exe_manifest", |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 3029 | "//third_party/boringssl", |
| 3030 | "//third_party/protobuf:protobuf_lite", |
| 3031 | ] |
| 3032 | } |
rch | f80f62d1 | 2016-05-11 00:47:31 | [diff] [blame] | 3033 | executable("quic_packet_printer") { |
| 3034 | sources = [ |
| 3035 | "tools/quic/quic_packet_printer_bin.cc", |
| 3036 | ] |
| 3037 | deps = [ |
| 3038 | ":net", |
| 3039 | ":simple_quic_tools", |
| 3040 | "//base", |
| 3041 | "//build/config/sanitizers:deps", |
| 3042 | "//build/win:default_exe_manifest", |
| 3043 | "//third_party/boringssl", |
| 3044 | "//third_party/protobuf:protobuf_lite", |
| 3045 | ] |
| 3046 | } |
mpw | bbea85d | 2016-08-27 14:39:21 | [diff] [blame] | 3047 | executable("quic_reject_reason_decoder") { |
| 3048 | sources = [ |
| 3049 | "tools/quic/quic_reject_reason_decoder_bin.cc", |
| 3050 | ] |
| 3051 | deps = [ |
| 3052 | ":net", |
| 3053 | ":simple_quic_tools", |
| 3054 | "//base", |
| 3055 | "//build/config/sanitizers:deps", |
| 3056 | "//build/win:default_exe_manifest", |
| 3057 | "//third_party/boringssl", |
| 3058 | "//third_party/protobuf:protobuf_lite", |
| 3059 | ] |
| 3060 | } |
danzh | 1401f0a | 2016-05-19 13:41:10 | [diff] [blame] | 3061 | executable("crypto_message_printer") { |
| 3062 | sources = [ |
| 3063 | "tools/quic/crypto_message_printer_bin.cc", |
| 3064 | ] |
| 3065 | deps = [ |
| 3066 | ":net", |
| 3067 | "//base", |
| 3068 | "//build/config/sanitizers:deps", |
| 3069 | "//build/win:default_exe_manifest", |
| 3070 | ] |
| 3071 | } |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 3072 | } |
| 3073 | |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 3074 | bundle_data("net_unittests_bundle_data") { |
| 3075 | testonly = true |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3076 | sources = [ |
| 3077 | "data/cert_issuer_source_aia_unittest/i.pem", |
| 3078 | "data/cert_issuer_source_aia_unittest/i2.pem", |
| 3079 | "data/cert_issuer_source_aia_unittest/i3.pem", |
| 3080 | "data/cert_issuer_source_aia_unittest/target_file_aia.pem", |
| 3081 | "data/cert_issuer_source_aia_unittest/target_file_and_http_aia.pem", |
| 3082 | "data/cert_issuer_source_aia_unittest/target_invalid_and_http_aia.pem", |
| 3083 | "data/cert_issuer_source_aia_unittest/target_invalid_url_aia.pem", |
| 3084 | "data/cert_issuer_source_aia_unittest/target_no_aia.pem", |
| 3085 | "data/cert_issuer_source_aia_unittest/target_one_aia.pem", |
| 3086 | "data/cert_issuer_source_aia_unittest/target_six_aia.pem", |
| 3087 | "data/cert_issuer_source_aia_unittest/target_three_aia.pem", |
| 3088 | "data/cert_issuer_source_aia_unittest/target_two_aia.pem", |
| 3089 | "data/cert_issuer_source_static_unittest/c1.pem", |
| 3090 | "data/cert_issuer_source_static_unittest/c2.pem", |
| 3091 | "data/cert_issuer_source_static_unittest/d.pem", |
| 3092 | "data/cert_issuer_source_static_unittest/e1.pem", |
| 3093 | "data/cert_issuer_source_static_unittest/e2.pem", |
| 3094 | "data/cert_issuer_source_static_unittest/i1_1.pem", |
| 3095 | "data/cert_issuer_source_static_unittest/i1_2.pem", |
| 3096 | "data/cert_issuer_source_static_unittest/i2.pem", |
| 3097 | "data/cert_issuer_source_static_unittest/i3_1.pem", |
| 3098 | "data/cert_issuer_source_static_unittest/i3_2.pem", |
| 3099 | "data/cert_issuer_source_static_unittest/root.pem", |
| 3100 | "data/certificate_policies_unittest/anypolicy.pem", |
| 3101 | "data/certificate_policies_unittest/anypolicy_with_qualifier.pem", |
| 3102 | "data/certificate_policies_unittest/invalid-anypolicy_with_custom_qualifier.pem", |
| 3103 | "data/certificate_policies_unittest/invalid-empty.pem", |
| 3104 | "data/certificate_policies_unittest/invalid-policy_1_2_3_dupe.pem", |
| 3105 | "data/certificate_policies_unittest/invalid-policy_1_2_3_policyinformation_unconsumed_data.pem", |
| 3106 | "data/certificate_policies_unittest/invalid-policy_1_2_3_policyqualifierinfo_unconsumed_data.pem", |
| 3107 | "data/certificate_policies_unittest/invalid-policy_1_2_3_with_empty_qualifiers_sequence.pem", |
| 3108 | "data/certificate_policies_unittest/invalid-policy_identifier_not_oid.pem", |
| 3109 | "data/certificate_policies_unittest/policy_1_2_3.pem", |
| 3110 | "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4.pem", |
| 3111 | "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4_with_qualifiers.pem", |
| 3112 | "data/certificate_policies_unittest/policy_1_2_3_with_custom_qualifier.pem", |
| 3113 | "data/certificate_policies_unittest/policy_1_2_3_with_qualifier.pem", |
| 3114 | "data/filter_unittests/google.br", |
| 3115 | "data/filter_unittests/google.txt", |
| 3116 | "data/name_constraints_unittest/directoryname-excludeall.pem", |
| 3117 | "data/name_constraints_unittest/directoryname-excluded.pem", |
| 3118 | "data/name_constraints_unittest/directoryname.pem", |
| 3119 | "data/name_constraints_unittest/directoryname_and_dnsname.pem", |
| 3120 | "data/name_constraints_unittest/directoryname_and_dnsname_and_ipaddress.pem", |
| 3121 | "data/name_constraints_unittest/dnsname-exclude_dot.pem", |
| 3122 | "data/name_constraints_unittest/dnsname-excludeall.pem", |
| 3123 | "data/name_constraints_unittest/dnsname-excluded.pem", |
| 3124 | "data/name_constraints_unittest/dnsname-excluded_with_leading_dot.pem", |
| 3125 | "data/name_constraints_unittest/dnsname-permitted_two_dot.pem", |
| 3126 | "data/name_constraints_unittest/dnsname-permitted_with_leading_dot.pem", |
| 3127 | "data/name_constraints_unittest/dnsname-with_max.pem", |
| 3128 | "data/name_constraints_unittest/dnsname-with_min_0.pem", |
| 3129 | "data/name_constraints_unittest/dnsname-with_min_0_and_max.pem", |
| 3130 | "data/name_constraints_unittest/dnsname-with_min_1.pem", |
| 3131 | "data/name_constraints_unittest/dnsname-with_min_1_and_max.pem", |
| 3132 | "data/name_constraints_unittest/dnsname.pem", |
| 3133 | "data/name_constraints_unittest/dnsname2.pem", |
| 3134 | "data/name_constraints_unittest/edipartyname-excluded.pem", |
| 3135 | "data/name_constraints_unittest/edipartyname-permitted.pem", |
| 3136 | "data/name_constraints_unittest/invalid-empty_excluded_subtree.pem", |
| 3137 | "data/name_constraints_unittest/invalid-empty_permitted_subtree.pem", |
| 3138 | "data/name_constraints_unittest/invalid-no_subtrees.pem", |
| 3139 | "data/name_constraints_unittest/ipaddress-excludeall.pem", |
| 3140 | "data/name_constraints_unittest/ipaddress-excluded.pem", |
| 3141 | "data/name_constraints_unittest/ipaddress-invalid_addr.pem", |
| 3142 | "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_1.pem", |
| 3143 | "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_2.pem", |
| 3144 | "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_3.pem", |
| 3145 | "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_4.pem", |
| 3146 | "data/name_constraints_unittest/ipaddress-permit_all.pem", |
| 3147 | "data/name_constraints_unittest/ipaddress-permit_prefix1.pem", |
| 3148 | "data/name_constraints_unittest/ipaddress-permit_prefix31.pem", |
| 3149 | "data/name_constraints_unittest/ipaddress-permit_singlehost.pem", |
| 3150 | "data/name_constraints_unittest/ipaddress.pem", |
| 3151 | "data/name_constraints_unittest/name-ca.pem", |
| 3152 | "data/name_constraints_unittest/name-de.pem", |
| 3153 | "data/name_constraints_unittest/name-empty.pem", |
| 3154 | "data/name_constraints_unittest/name-jp-tokyo.pem", |
| 3155 | "data/name_constraints_unittest/name-jp.pem", |
| 3156 | "data/name_constraints_unittest/name-us-arizona-1.1.1.1.pem", |
| 3157 | "data/name_constraints_unittest/name-us-arizona-192.168.1.1.pem", |
| 3158 | "data/name_constraints_unittest/name-us-arizona-email.pem", |
| 3159 | "data/name_constraints_unittest/name-us-arizona-foo.com.pem", |
| 3160 | "data/name_constraints_unittest/name-us-arizona-ipv6.pem", |
| 3161 | "data/name_constraints_unittest/name-us-arizona-permitted.example.com.pem", |
| 3162 | "data/name_constraints_unittest/name-us-arizona.pem", |
| 3163 | "data/name_constraints_unittest/name-us-california-192.168.1.1.pem", |
| 3164 | "data/name_constraints_unittest/name-us-california-mountain_view.pem", |
| 3165 | "data/name_constraints_unittest/name-us-california-permitted.example.com.pem", |
| 3166 | "data/name_constraints_unittest/name-us-california.pem", |
| 3167 | "data/name_constraints_unittest/name-us.pem", |
| 3168 | "data/name_constraints_unittest/othername-excluded.pem", |
| 3169 | "data/name_constraints_unittest/othername-permitted.pem", |
| 3170 | "data/name_constraints_unittest/registeredid-excluded.pem", |
| 3171 | "data/name_constraints_unittest/registeredid-permitted.pem", |
| 3172 | "data/name_constraints_unittest/rfc822name-excluded.pem", |
| 3173 | "data/name_constraints_unittest/rfc822name-permitted.pem", |
| 3174 | "data/name_constraints_unittest/san-edipartyname.pem", |
| 3175 | "data/name_constraints_unittest/san-excluded-directoryname.pem", |
| 3176 | "data/name_constraints_unittest/san-excluded-dnsname.pem", |
| 3177 | "data/name_constraints_unittest/san-excluded-ipaddress.pem", |
| 3178 | "data/name_constraints_unittest/san-invalid-empty.pem", |
| 3179 | "data/name_constraints_unittest/san-invalid-ipaddress.pem", |
| 3180 | "data/name_constraints_unittest/san-othername.pem", |
| 3181 | "data/name_constraints_unittest/san-permitted.pem", |
| 3182 | "data/name_constraints_unittest/san-registeredid.pem", |
| 3183 | "data/name_constraints_unittest/san-rfc822name.pem", |
| 3184 | "data/name_constraints_unittest/san-uri.pem", |
| 3185 | "data/name_constraints_unittest/san-x400address.pem", |
| 3186 | "data/name_constraints_unittest/uri-excluded.pem", |
| 3187 | "data/name_constraints_unittest/uri-permitted.pem", |
| 3188 | "data/name_constraints_unittest/x400address-excluded.pem", |
| 3189 | "data/name_constraints_unittest/x400address-permitted.pem", |
| 3190 | "data/parse_certificate_unittest/basic_constraints_ca_false.pem", |
| 3191 | "data/parse_certificate_unittest/basic_constraints_ca_no_path.pem", |
| 3192 | "data/parse_certificate_unittest/basic_constraints_ca_path_9.pem", |
| 3193 | "data/parse_certificate_unittest/basic_constraints_negative_path.pem", |
| 3194 | "data/parse_certificate_unittest/basic_constraints_not_ca.pem", |
| 3195 | "data/parse_certificate_unittest/basic_constraints_path_too_large.pem", |
| 3196 | "data/parse_certificate_unittest/basic_constraints_pathlen_255.pem", |
| 3197 | "data/parse_certificate_unittest/basic_constraints_pathlen_256.pem", |
| 3198 | "data/parse_certificate_unittest/basic_constraints_pathlen_not_ca.pem", |
| 3199 | "data/parse_certificate_unittest/basic_constraints_unconsumed_data.pem", |
| 3200 | "data/parse_certificate_unittest/cert_algorithm_not_sequence.pem", |
| 3201 | "data/parse_certificate_unittest/cert_data_after_signature.pem", |
| 3202 | "data/parse_certificate_unittest/cert_empty_sequence.pem", |
| 3203 | "data/parse_certificate_unittest/cert_missing_signature.pem", |
| 3204 | "data/parse_certificate_unittest/cert_not_sequence.pem", |
| 3205 | "data/parse_certificate_unittest/cert_signature_not_bit_string.pem", |
| 3206 | "data/parse_certificate_unittest/cert_skeleton.pem", |
| 3207 | "data/parse_certificate_unittest/cert_version3.pem", |
| 3208 | "data/parse_certificate_unittest/extended_key_usage.pem", |
| 3209 | "data/parse_certificate_unittest/extension_critical.pem", |
| 3210 | "data/parse_certificate_unittest/extension_critical_0.pem", |
| 3211 | "data/parse_certificate_unittest/extension_critical_3.pem", |
| 3212 | "data/parse_certificate_unittest/extension_not_critical.pem", |
| 3213 | "data/parse_certificate_unittest/extensions_data_after_sequence.pem", |
| 3214 | "data/parse_certificate_unittest/extensions_duplicate_key_usage.pem", |
| 3215 | "data/parse_certificate_unittest/extensions_empty_sequence.pem", |
| 3216 | "data/parse_certificate_unittest/extensions_not_sequence.pem", |
| 3217 | "data/parse_certificate_unittest/extensions_real.pem", |
| 3218 | "data/parse_certificate_unittest/key_usage.pem", |
| 3219 | "data/parse_certificate_unittest/policies.pem", |
| 3220 | "data/parse_certificate_unittest/subject_alt_name.pem", |
| 3221 | "data/parse_certificate_unittest/tbs_explicit_v1.pem", |
| 3222 | "data/parse_certificate_unittest/tbs_negative_serial_number.pem", |
| 3223 | "data/parse_certificate_unittest/tbs_serial_number_21_octets_leading_0.pem", |
| 3224 | "data/parse_certificate_unittest/tbs_serial_number_26_octets.pem", |
| 3225 | "data/parse_certificate_unittest/tbs_v1.pem", |
| 3226 | "data/parse_certificate_unittest/tbs_v1_extensions.pem", |
| 3227 | "data/parse_certificate_unittest/tbs_v2_extensions.pem", |
| 3228 | "data/parse_certificate_unittest/tbs_v2_issuer_and_subject_unique_id.pem", |
| 3229 | "data/parse_certificate_unittest/tbs_v2_issuer_unique_id.pem", |
| 3230 | "data/parse_certificate_unittest/tbs_v2_no_optionals.pem", |
| 3231 | "data/parse_certificate_unittest/tbs_v3_all_optionals.pem", |
| 3232 | "data/parse_certificate_unittest/tbs_v3_data_after_extensions.pem", |
| 3233 | "data/parse_certificate_unittest/tbs_v3_extensions.pem", |
| 3234 | "data/parse_certificate_unittest/tbs_v3_extensions_not_sequence.pem", |
| 3235 | "data/parse_certificate_unittest/tbs_v3_no_optionals.pem", |
| 3236 | "data/parse_certificate_unittest/tbs_v3_real.pem", |
| 3237 | "data/parse_certificate_unittest/tbs_v4.pem", |
| 3238 | "data/parse_certificate_unittest/tbs_validity_both_generalized_time.pem", |
| 3239 | "data/parse_certificate_unittest/tbs_validity_both_utc_time.pem", |
| 3240 | "data/parse_certificate_unittest/tbs_validity_generalized_time_and_utc_time.pem", |
| 3241 | "data/parse_certificate_unittest/tbs_validity_relaxed.pem", |
| 3242 | "data/parse_certificate_unittest/tbs_validity_utc_time_and_generalized_time.pem", |
| 3243 | "data/parse_certificate_unittest/v3_certificate_template.txt", |
| 3244 | "data/parse_ocsp_unittest/bad_ocsp_type.pem", |
| 3245 | "data/parse_ocsp_unittest/bad_signature.pem", |
| 3246 | "data/parse_ocsp_unittest/bad_status.pem", |
| 3247 | "data/parse_ocsp_unittest/good_response.pem", |
| 3248 | "data/parse_ocsp_unittest/good_response_next_update.pem", |
| 3249 | "data/parse_ocsp_unittest/has_extension.pem", |
| 3250 | "data/parse_ocsp_unittest/has_single_extension.pem", |
| 3251 | "data/parse_ocsp_unittest/has_version.pem", |
| 3252 | "data/parse_ocsp_unittest/malformed_status.pem", |
| 3253 | "data/parse_ocsp_unittest/missing_response.pem", |
| 3254 | "data/parse_ocsp_unittest/multiple_response.pem", |
| 3255 | "data/parse_ocsp_unittest/no_response.pem", |
| 3256 | "data/parse_ocsp_unittest/ocsp_extra_certs.pem", |
| 3257 | "data/parse_ocsp_unittest/ocsp_sign_bad_indirect.pem", |
| 3258 | "data/parse_ocsp_unittest/ocsp_sign_direct.pem", |
| 3259 | "data/parse_ocsp_unittest/ocsp_sign_indirect.pem", |
| 3260 | "data/parse_ocsp_unittest/ocsp_sign_indirect_missing.pem", |
| 3261 | "data/parse_ocsp_unittest/other_response.pem", |
| 3262 | "data/parse_ocsp_unittest/responder_id.pem", |
| 3263 | "data/parse_ocsp_unittest/responder_name.pem", |
| 3264 | "data/parse_ocsp_unittest/revoke_response.pem", |
| 3265 | "data/parse_ocsp_unittest/revoke_response_reason.pem", |
| 3266 | "data/parse_ocsp_unittest/unknown_response.pem", |
| 3267 | "data/test.html", |
| 3268 | "data/url_request_unittest/308-without-location-header", |
| 3269 | "data/url_request_unittest/308-without-location-header.mock-http-headers", |
| 3270 | "data/url_request_unittest/BullRunSpeech.txt", |
| 3271 | "data/url_request_unittest/content-type-normalization.html", |
| 3272 | "data/url_request_unittest/content-type-normalization.html.mock-http-headers", |
| 3273 | "data/url_request_unittest/expect-ct-header.html", |
| 3274 | "data/url_request_unittest/expect-ct-header.html.mock-http-headers", |
| 3275 | "data/url_request_unittest/filedir-sentinel", |
| 3276 | "data/url_request_unittest/gzip-encoded", |
| 3277 | "data/url_request_unittest/gzip-encoded.mock-http-headers", |
| 3278 | "data/url_request_unittest/hpkp-headers-report-only.html", |
| 3279 | "data/url_request_unittest/hpkp-headers-report-only.html.mock-http-headers", |
| 3280 | "data/url_request_unittest/hpkp-headers.html", |
| 3281 | "data/url_request_unittest/hpkp-headers.html.mock-http-headers", |
| 3282 | "data/url_request_unittest/hsts-and-hpkp-headers.html", |
| 3283 | "data/url_request_unittest/hsts-and-hpkp-headers.html.mock-http-headers", |
| 3284 | "data/url_request_unittest/hsts-and-hpkp-headers2.html", |
| 3285 | "data/url_request_unittest/hsts-and-hpkp-headers2.html.mock-http-headers", |
| 3286 | "data/url_request_unittest/hsts-headers.html", |
| 3287 | "data/url_request_unittest/hsts-headers.html.mock-http-headers", |
| 3288 | "data/url_request_unittest/hsts-multiple-headers.html", |
| 3289 | "data/url_request_unittest/hsts-multiple-headers.html.mock-http-headers", |
| 3290 | "data/url_request_unittest/redirect-test.html", |
| 3291 | "data/url_request_unittest/redirect-test.html.mock-http-headers", |
| 3292 | "data/url_request_unittest/redirect-to-data.html", |
| 3293 | "data/url_request_unittest/redirect-to-data.html.mock-http-headers", |
| 3294 | "data/url_request_unittest/redirect-to-echoall", |
| 3295 | "data/url_request_unittest/redirect-to-echoall.mock-http-headers", |
| 3296 | "data/url_request_unittest/redirect-to-file.html", |
| 3297 | "data/url_request_unittest/redirect-to-file.html.mock-http-headers", |
| 3298 | "data/url_request_unittest/redirect-to-invalid-url.html", |
| 3299 | "data/url_request_unittest/redirect-to-invalid-url.html.mock-http-headers", |
| 3300 | "data/url_request_unittest/redirect301-to-echo", |
| 3301 | "data/url_request_unittest/redirect301-to-echo.mock-http-headers", |
| 3302 | "data/url_request_unittest/redirect301-to-https", |
| 3303 | "data/url_request_unittest/redirect301-to-https.mock-http-headers", |
| 3304 | "data/url_request_unittest/redirect302-to-echo", |
| 3305 | "data/url_request_unittest/redirect302-to-echo-cacheable", |
| 3306 | "data/url_request_unittest/redirect302-to-echo-cacheable.mock-http-headers", |
| 3307 | "data/url_request_unittest/redirect302-to-echo.mock-http-headers", |
| 3308 | "data/url_request_unittest/redirect302-to-https", |
| 3309 | "data/url_request_unittest/redirect302-to-https.mock-http-headers", |
| 3310 | "data/url_request_unittest/redirect303-to-echo", |
| 3311 | "data/url_request_unittest/redirect303-to-echo.mock-http-headers", |
| 3312 | "data/url_request_unittest/redirect303-to-https", |
| 3313 | "data/url_request_unittest/redirect303-to-https.mock-http-headers", |
| 3314 | "data/url_request_unittest/redirect307-to-echo", |
| 3315 | "data/url_request_unittest/redirect307-to-echo.mock-http-headers", |
| 3316 | "data/url_request_unittest/redirect307-to-https", |
| 3317 | "data/url_request_unittest/redirect307-to-https.mock-http-headers", |
| 3318 | "data/url_request_unittest/redirect308-to-echo", |
| 3319 | "data/url_request_unittest/redirect308-to-echo.mock-http-headers", |
| 3320 | "data/url_request_unittest/redirect308-to-https", |
| 3321 | "data/url_request_unittest/redirect308-to-https.mock-http-headers", |
| 3322 | "data/url_request_unittest/simple.html", |
| 3323 | "data/url_request_unittest/simple.html.mock-http-headers", |
| 3324 | "data/url_request_unittest/two-content-lengths.html", |
| 3325 | "data/url_request_unittest/two-content-lengths.html.mock-http-headers", |
| 3326 | "data/url_request_unittest/with-headers.html", |
| 3327 | "data/url_request_unittest/with-headers.html.mock-http-headers", |
| 3328 | "data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued.pem", |
| 3329 | "data/verify_certificate_chain_unittest/constrained-non-self-signed-root.pem", |
| 3330 | "data/verify_certificate_chain_unittest/constrained-root-basic-constraints-ca-false.pem", |
| 3331 | "data/verify_certificate_chain_unittest/constrained-root-lacks-basic-constraints.pem", |
| 3332 | "data/verify_certificate_chain_unittest/expired-constrained-root.pem", |
| 3333 | "data/verify_certificate_chain_unittest/expired-intermediate.pem", |
| 3334 | "data/verify_certificate_chain_unittest/expired-target-notBefore.pem", |
| 3335 | "data/verify_certificate_chain_unittest/expired-target.pem", |
| 3336 | "data/verify_certificate_chain_unittest/expired-unconstrained-root.pem", |
| 3337 | "data/verify_certificate_chain_unittest/incorrect-trust-anchor.pem", |
| 3338 | "data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false.pem", |
| 3339 | "data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical.pem", |
| 3340 | "data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints.pem", |
| 3341 | "data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage.pem", |
| 3342 | "data/verify_certificate_chain_unittest/intermediate-signed-with-md5.pem", |
| 3343 | "data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension.pem", |
| 3344 | "data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension.pem", |
| 3345 | "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal-anchor.pem", |
| 3346 | "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal.pem", |
| 3347 | "data/verify_certificate_chain_unittest/key-rollover-longrolloverchain.pem", |
| 3348 | "data/verify_certificate_chain_unittest/key-rollover-newchain.pem", |
| 3349 | "data/verify_certificate_chain_unittest/key-rollover-oldchain.pem", |
| 3350 | "data/verify_certificate_chain_unittest/key-rollover-rolloverchain.pem", |
| 3351 | "data/verify_certificate_chain_unittest/non-self-signed-root.pem", |
| 3352 | "data/verify_certificate_chain_unittest/target-and-intermediate.pem", |
| 3353 | "data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca.pem", |
| 3354 | "data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca.pem", |
| 3355 | "data/verify_certificate_chain_unittest/target-not-end-entity.pem", |
| 3356 | "data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa.pem", |
| 3357 | "data/verify_certificate_chain_unittest/target-signed-using-ecdsa.pem", |
| 3358 | "data/verify_certificate_chain_unittest/target-signed-with-md5.pem", |
| 3359 | "data/verify_certificate_chain_unittest/target-unknown-critical-extension.pem", |
| 3360 | "data/verify_certificate_chain_unittest/target-wrong-signature.pem", |
| 3361 | "data/verify_certificate_chain_unittest/unconstrained-non-self-signed-root.pem", |
| 3362 | "data/verify_certificate_chain_unittest/unconstrained-root-basic-constraints-ca-false.pem", |
| 3363 | "data/verify_certificate_chain_unittest/unconstrained-root-lacks-basic-constraints.pem", |
| 3364 | "data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0.pem", |
| 3365 | "data/verify_certificate_chain_unittest/violates-pathlen-1-constrained-root.pem", |
| 3366 | "data/verify_certificate_chain_unittest/violates-pathlen-1-unconstrained-root.pem", |
| 3367 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-dupe_attr.pem", |
| 3368 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_attr.pem", |
| 3369 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_rdn.pem", |
| 3370 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap.pem", |
| 3371 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-dupe_attr.pem", |
| 3372 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_attr.pem", |
| 3373 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_rdn.pem", |
| 3374 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace.pem", |
| 3375 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-dupe_attr.pem", |
| 3376 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_attr.pem", |
| 3377 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_rdn.pem", |
| 3378 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled.pem", |
| 3379 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-dupe_attr.pem", |
| 3380 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_attr.pem", |
| 3381 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_rdn.pem", |
| 3382 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap.pem", |
| 3383 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-dupe_attr.pem", |
| 3384 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_attr.pem", |
| 3385 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_rdn.pem", |
| 3386 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace.pem", |
| 3387 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_1.pem", |
| 3388 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_2.pem", |
| 3389 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-dupe_attr.pem", |
| 3390 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_attr.pem", |
| 3391 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_rdn.pem", |
| 3392 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled.pem", |
| 3393 | "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-dupe_attr.pem", |
| 3394 | "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_attr.pem", |
| 3395 | "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_rdn.pem", |
| 3396 | "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap.pem", |
| 3397 | "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-dupe_attr.pem", |
| 3398 | "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_attr.pem", |
| 3399 | "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_rdn.pem", |
| 3400 | "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace.pem", |
| 3401 | "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-dupe_attr.pem", |
| 3402 | "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_attr.pem", |
| 3403 | "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_rdn.pem", |
| 3404 | "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled.pem", |
| 3405 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-dupe_attr.pem", |
| 3406 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_attr.pem", |
| 3407 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_rdn.pem", |
| 3408 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap.pem", |
| 3409 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-dupe_attr.pem", |
| 3410 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_attr.pem", |
| 3411 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_rdn.pem", |
| 3412 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace.pem", |
| 3413 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-dupe_attr.pem", |
| 3414 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_attr.pem", |
| 3415 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_rdn.pem", |
| 3416 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled.pem", |
| 3417 | "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-dupe_attr.pem", |
| 3418 | "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_attr.pem", |
| 3419 | "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_rdn.pem", |
| 3420 | "data/verify_name_match_unittest/names/ascii-UTF8-case_swap.pem", |
| 3421 | "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-dupe_attr.pem", |
| 3422 | "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_attr.pem", |
| 3423 | "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_rdn.pem", |
| 3424 | "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace.pem", |
| 3425 | "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-dupe_attr.pem", |
| 3426 | "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_attr.pem", |
| 3427 | "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_rdn.pem", |
| 3428 | "data/verify_name_match_unittest/names/ascii-UTF8-unmangled.pem", |
| 3429 | "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_1.pem", |
| 3430 | "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_2.pem", |
| 3431 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-badAttributeType.pem", |
| 3432 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-empty.pem", |
| 3433 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-extradata.pem", |
| 3434 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-onlyOneElement.pem", |
| 3435 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-setNotSequence.pem", |
| 3436 | "data/verify_name_match_unittest/names/invalid-Name-setInsteadOfSequence.pem", |
| 3437 | "data/verify_name_match_unittest/names/invalid-RDN-empty.pem", |
| 3438 | "data/verify_name_match_unittest/names/invalid-RDN-sequenceInsteadOfSet.pem", |
| 3439 | "data/verify_name_match_unittest/names/unicode-mixed-normalized.pem", |
| 3440 | "data/verify_name_match_unittest/names/unicode-mixed-unnormalized.pem", |
| 3441 | "data/verify_name_match_unittest/names/unicode_bmp-BMPSTRING-unmangled.pem", |
| 3442 | "data/verify_name_match_unittest/names/unicode_bmp-UNIVERSALSTRING-unmangled.pem", |
| 3443 | "data/verify_name_match_unittest/names/unicode_bmp-UTF8-unmangled.pem", |
| 3444 | "data/verify_name_match_unittest/names/unicode_supplementary-UNIVERSALSTRING-unmangled.pem", |
| 3445 | "data/verify_name_match_unittest/names/unicode_supplementary-UTF8-unmangled.pem", |
| 3446 | "data/verify_name_match_unittest/names/valid-Name-empty.pem", |
| 3447 | "data/verify_name_match_unittest/names/valid-minimal.pem", |
| 3448 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-spki-params-null.pem", |
| 3449 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-unused-bits-signature.pem", |
| 3450 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecdh-key.pem", |
| 3451 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecmqv-key.pem", |
| 3452 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-rsa-algorithm.pem", |
| 3453 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-wrong-signature-format.pem", |
| 3454 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512.pem", |
| 3455 | "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256-corrupted-data.pem", |
| 3456 | "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256.pem", |
| 3457 | "data/verify_signed_data_unittest/ecdsa-using-rsa-key.pem", |
| 3458 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-length.pem", |
| 3459 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-null.pem", |
| 3460 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-key-params-absent.pem", |
| 3461 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-using-pss-key-no-params.pem", |
| 3462 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-wrong-algorithm.pem", |
| 3463 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1.pem", |
| 3464 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256-key-encoded-ber.pem", |
| 3465 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256-spki-non-null-params.pem", |
| 3466 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-ecdsa-algorithm.pem", |
| 3467 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-id-ea-rsa.pem", |
| 3468 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256.pem", |
| 3469 | "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-no-params.pem", |
| 3470 | "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-with-null-params.pem", |
| 3471 | "data/verify_signed_data_unittest/rsa-pss-sha1-salt20.pem", |
| 3472 | "data/verify_signed_data_unittest/rsa-pss-sha1-wrong-salt.pem", |
| 3473 | "data/verify_signed_data_unittest/rsa-pss-sha256-mgf1-sha512-salt33.pem", |
| 3474 | "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-params.pem", |
| 3475 | "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-wrong-params.pem", |
| 3476 | "data/verify_signed_data_unittest/rsa-pss-sha256-salt10.pem", |
| 3477 | "data/verify_signed_data_unittest/rsa-using-ec-key.pem", |
| 3478 | "data/verify_signed_data_unittest/rsa2048-pkcs1-sha512.pem", |
| 3479 | "third_party/nist-pkits/certs/AllCertificatesNoPoliciesTest2EE.crt", |
| 3480 | "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest10EE.crt", |
| 3481 | "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest13EE.crt", |
| 3482 | "third_party/nist-pkits/certs/AllCertificatesanyPolicyTest11EE.crt", |
| 3483 | "third_party/nist-pkits/certs/AnyPolicyTest14EE.crt", |
| 3484 | "third_party/nist-pkits/certs/BadCRLIssuerNameCACert.crt", |
| 3485 | "third_party/nist-pkits/certs/BadCRLSignatureCACert.crt", |
| 3486 | "third_party/nist-pkits/certs/BadSignedCACert.crt", |
| 3487 | "third_party/nist-pkits/certs/BadnotAfterDateCACert.crt", |
| 3488 | "third_party/nist-pkits/certs/BadnotBeforeDateCACert.crt", |
| 3489 | "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCACert.crt", |
| 3490 | "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCRLCert.crt", |
| 3491 | "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyCACert.crt", |
| 3492 | "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyOldWithNewCACert.crt", |
| 3493 | "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyCACert.crt", |
| 3494 | "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyNewWithOldCACert.crt", |
| 3495 | "third_party/nist-pkits/certs/CPSPointerQualifierTest20EE.crt", |
| 3496 | "third_party/nist-pkits/certs/DSACACert.crt", |
| 3497 | "third_party/nist-pkits/certs/DSAParametersInheritedCACert.crt", |
| 3498 | "third_party/nist-pkits/certs/DifferentPoliciesTest12EE.crt", |
| 3499 | "third_party/nist-pkits/certs/DifferentPoliciesTest3EE.crt", |
| 3500 | "third_party/nist-pkits/certs/DifferentPoliciesTest4EE.crt", |
| 3501 | "third_party/nist-pkits/certs/DifferentPoliciesTest5EE.crt", |
| 3502 | "third_party/nist-pkits/certs/DifferentPoliciesTest7EE.crt", |
| 3503 | "third_party/nist-pkits/certs/DifferentPoliciesTest8EE.crt", |
| 3504 | "third_party/nist-pkits/certs/DifferentPoliciesTest9EE.crt", |
| 3505 | "third_party/nist-pkits/certs/GeneralizedTimeCRLnextUpdateCACert.crt", |
| 3506 | "third_party/nist-pkits/certs/GoodCACert.crt", |
| 3507 | "third_party/nist-pkits/certs/GoodsubCACert.crt", |
| 3508 | "third_party/nist-pkits/certs/GoodsubCAPanyPolicyMapping1to2CACert.crt", |
| 3509 | "third_party/nist-pkits/certs/InvalidBadCRLIssuerNameTest5EE.crt", |
| 3510 | "third_party/nist-pkits/certs/InvalidBadCRLSignatureTest4EE.crt", |
| 3511 | "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest7EE.crt", |
| 3512 | "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest8EE.crt", |
| 3513 | "third_party/nist-pkits/certs/InvalidBasicSelfIssuedNewWithOldTest5EE.crt", |
| 3514 | "third_party/nist-pkits/certs/InvalidBasicSelfIssuedOldWithNewTest2EE.crt", |
| 3515 | "third_party/nist-pkits/certs/InvalidCASignatureTest2EE.crt", |
| 3516 | "third_party/nist-pkits/certs/InvalidCAnotAfterDateTest5EE.crt", |
| 3517 | "third_party/nist-pkits/certs/InvalidCAnotBeforeDateTest1EE.crt", |
| 3518 | "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest31EE.crt", |
| 3519 | "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest33EE.crt", |
| 3520 | "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest38EE.crt", |
| 3521 | "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest28EE.crt", |
| 3522 | "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest29EE.crt", |
| 3523 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest10EE.crt", |
| 3524 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest12EE.crt", |
| 3525 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest13EE.crt", |
| 3526 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest15EE.crt", |
| 3527 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest16EE.crt", |
| 3528 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest17EE.crt", |
| 3529 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest20EE.crt", |
| 3530 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest2EE.crt", |
| 3531 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest3EE.crt", |
| 3532 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest7EE.crt", |
| 3533 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest8EE.crt", |
| 3534 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest9EE.crt", |
| 3535 | "third_party/nist-pkits/certs/InvalidDSASignatureTest6EE.crt", |
| 3536 | "third_party/nist-pkits/certs/InvalidEESignatureTest3EE.crt", |
| 3537 | "third_party/nist-pkits/certs/InvalidEEnotAfterDateTest6EE.crt", |
| 3538 | "third_party/nist-pkits/certs/InvalidEEnotBeforeDateTest2EE.crt", |
| 3539 | "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest23EE.crt", |
| 3540 | "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest26EE.crt", |
| 3541 | "third_party/nist-pkits/certs/InvalidLongSerialNumberTest18EE.crt", |
| 3542 | "third_party/nist-pkits/certs/InvalidMappingFromanyPolicyTest7EE.crt", |
| 3543 | "third_party/nist-pkits/certs/InvalidMappingToanyPolicyTest8EE.crt", |
| 3544 | "third_party/nist-pkits/certs/InvalidMissingCRLTest1EE.crt", |
| 3545 | "third_party/nist-pkits/certs/InvalidMissingbasicConstraintsTest1EE.crt", |
| 3546 | "third_party/nist-pkits/certs/InvalidNameChainingOrderTest2EE.crt", |
| 3547 | "third_party/nist-pkits/certs/InvalidNameChainingTest1EE.crt", |
| 3548 | "third_party/nist-pkits/certs/InvalidNegativeSerialNumberTest15EE.crt", |
| 3549 | "third_party/nist-pkits/certs/InvalidOldCRLnextUpdateTest11EE.crt", |
| 3550 | "third_party/nist-pkits/certs/InvalidPolicyMappingTest10EE.crt", |
| 3551 | "third_party/nist-pkits/certs/InvalidPolicyMappingTest2EE.crt", |
| 3552 | "third_party/nist-pkits/certs/InvalidPolicyMappingTest4EE.crt", |
| 3553 | "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest22EE.crt", |
| 3554 | "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest24EE.crt", |
| 3555 | "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest26EE.crt", |
| 3556 | "third_party/nist-pkits/certs/InvalidRevokedCATest2EE.crt", |
| 3557 | "third_party/nist-pkits/certs/InvalidRevokedEETest3EE.crt", |
| 3558 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest10EE.crt", |
| 3559 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest8EE.crt", |
| 3560 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest10EE.crt", |
| 3561 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest11EE.crt", |
| 3562 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest8EE.crt", |
| 3563 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest9EE.crt", |
| 3564 | "third_party/nist-pkits/certs/InvalidSelfIssuedpathLenConstraintTest16EE.crt", |
| 3565 | "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest7EE.crt", |
| 3566 | "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest8EE.crt", |
| 3567 | "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest20EE.crt", |
| 3568 | "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest21EE.crt", |
| 3569 | "third_party/nist-pkits/certs/InvalidURInameConstraintsTest35EE.crt", |
| 3570 | "third_party/nist-pkits/certs/InvalidURInameConstraintsTest37EE.crt", |
| 3571 | "third_party/nist-pkits/certs/InvalidUnknownCRLEntryExtensionTest8EE.crt", |
| 3572 | "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest10EE.crt", |
| 3573 | "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest9EE.crt", |
| 3574 | "third_party/nist-pkits/certs/InvalidUnknownCriticalCertificateExtensionTest2EE.crt", |
| 3575 | "third_party/nist-pkits/certs/InvalidWrongCRLTest6EE.crt", |
| 3576 | "third_party/nist-pkits/certs/InvalidcAFalseTest2EE.crt", |
| 3577 | "third_party/nist-pkits/certs/InvalidcAFalseTest3EE.crt", |
| 3578 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest27EE.crt", |
| 3579 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest31EE.crt", |
| 3580 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest32EE.crt", |
| 3581 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest34EE.crt", |
| 3582 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest35EE.crt", |
| 3583 | "third_party/nist-pkits/certs/InvaliddeltaCRLIndicatorNoBaseTest1EE.crt", |
| 3584 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest10EE.crt", |
| 3585 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest3EE.crt", |
| 3586 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest4EE.crt", |
| 3587 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest6EE.crt", |
| 3588 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest9EE.crt", |
| 3589 | "third_party/nist-pkits/certs/InvaliddistributionPointTest2EE.crt", |
| 3590 | "third_party/nist-pkits/certs/InvaliddistributionPointTest3EE.crt", |
| 3591 | "third_party/nist-pkits/certs/InvaliddistributionPointTest6EE.crt", |
| 3592 | "third_party/nist-pkits/certs/InvaliddistributionPointTest8EE.crt", |
| 3593 | "third_party/nist-pkits/certs/InvaliddistributionPointTest9EE.crt", |
| 3594 | "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest1EE.crt", |
| 3595 | "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest4EE.crt", |
| 3596 | "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest5EE.crt", |
| 3597 | "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest6EE.crt", |
| 3598 | "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest1EE.crt", |
| 3599 | "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest3EE.crt", |
| 3600 | "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest5EE.crt", |
| 3601 | "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest6EE.crt", |
| 3602 | "third_party/nist-pkits/certs/InvalidkeyUsageCriticalcRLSignFalseTest4EE.crt", |
| 3603 | "third_party/nist-pkits/certs/InvalidkeyUsageCriticalkeyCertSignFalseTest1EE.crt", |
| 3604 | "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalcRLSignFalseTest5EE.crt", |
| 3605 | "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalkeyCertSignFalseTest2EE.crt", |
| 3606 | "third_party/nist-pkits/certs/InvalidonlyContainsAttributeCertsTest14EE.crt", |
| 3607 | "third_party/nist-pkits/certs/InvalidonlyContainsCACertsTest12EE.crt", |
| 3608 | "third_party/nist-pkits/certs/InvalidonlyContainsUserCertsTest11EE.crt", |
| 3609 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest15EE.crt", |
| 3610 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest16EE.crt", |
| 3611 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest17EE.crt", |
| 3612 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest20EE.crt", |
| 3613 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest21EE.crt", |
| 3614 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest10EE.crt", |
| 3615 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest11EE.crt", |
| 3616 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest12EE.crt", |
| 3617 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest5EE.crt", |
| 3618 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest6EE.crt", |
| 3619 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest9EE.crt", |
| 3620 | "third_party/nist-pkits/certs/Invalidpre2000CRLnextUpdateTest12EE.crt", |
| 3621 | "third_party/nist-pkits/certs/Invalidpre2000UTCEEnotAfterDateTest7EE.crt", |
| 3622 | "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest3EE.crt", |
| 3623 | "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest5EE.crt", |
| 3624 | "third_party/nist-pkits/certs/LongSerialNumberCACert.crt", |
| 3625 | "third_party/nist-pkits/certs/Mapping1to2CACert.crt", |
| 3626 | "third_party/nist-pkits/certs/MappingFromanyPolicyCACert.crt", |
| 3627 | "third_party/nist-pkits/certs/MappingToanyPolicyCACert.crt", |
| 3628 | "third_party/nist-pkits/certs/MissingbasicConstraintsCACert.crt", |
| 3629 | "third_party/nist-pkits/certs/NameOrderingCACert.crt", |
| 3630 | "third_party/nist-pkits/certs/NegativeSerialNumberCACert.crt", |
| 3631 | "third_party/nist-pkits/certs/NoCRLCACert.crt", |
| 3632 | "third_party/nist-pkits/certs/NoPoliciesCACert.crt", |
| 3633 | "third_party/nist-pkits/certs/NoissuingDistributionPointCACert.crt", |
| 3634 | "third_party/nist-pkits/certs/OldCRLnextUpdateCACert.crt", |
| 3635 | "third_party/nist-pkits/certs/OverlappingPoliciesTest6EE.crt", |
| 3636 | "third_party/nist-pkits/certs/P12Mapping1to3CACert.crt", |
| 3637 | "third_party/nist-pkits/certs/P12Mapping1to3subCACert.crt", |
| 3638 | "third_party/nist-pkits/certs/P12Mapping1to3subsubCACert.crt", |
| 3639 | "third_party/nist-pkits/certs/P1Mapping1to234CACert.crt", |
| 3640 | "third_party/nist-pkits/certs/P1Mapping1to234subCACert.crt", |
| 3641 | "third_party/nist-pkits/certs/P1anyPolicyMapping1to2CACert.crt", |
| 3642 | "third_party/nist-pkits/certs/PanyPolicyMapping1to2CACert.crt", |
| 3643 | "third_party/nist-pkits/certs/PoliciesP1234CACert.crt", |
| 3644 | "third_party/nist-pkits/certs/PoliciesP1234subCAP123Cert.crt", |
| 3645 | "third_party/nist-pkits/certs/PoliciesP1234subsubCAP123P12Cert.crt", |
| 3646 | "third_party/nist-pkits/certs/PoliciesP123CACert.crt", |
| 3647 | "third_party/nist-pkits/certs/PoliciesP123subCAP12Cert.crt", |
| 3648 | "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P1Cert.crt", |
| 3649 | "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P2Cert.crt", |
| 3650 | "third_party/nist-pkits/certs/PoliciesP123subsubsubCAP12P2P1Cert.crt", |
| 3651 | "third_party/nist-pkits/certs/PoliciesP12CACert.crt", |
| 3652 | "third_party/nist-pkits/certs/PoliciesP12subCAP1Cert.crt", |
| 3653 | "third_party/nist-pkits/certs/PoliciesP12subsubCAP1P2Cert.crt", |
| 3654 | "third_party/nist-pkits/certs/PoliciesP2subCA2Cert.crt", |
| 3655 | "third_party/nist-pkits/certs/PoliciesP2subCACert.crt", |
| 3656 | "third_party/nist-pkits/certs/PoliciesP3CACert.crt", |
| 3657 | "third_party/nist-pkits/certs/RFC3280MandatoryAttributeTypesCACert.crt", |
| 3658 | "third_party/nist-pkits/certs/RFC3280OptionalAttributeTypesCACert.crt", |
| 3659 | "third_party/nist-pkits/certs/RevokedsubCACert.crt", |
| 3660 | "third_party/nist-pkits/certs/RolloverfromPrintableStringtoUTF8StringCACert.crt", |
| 3661 | "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CRLSigningCert.crt", |
| 3662 | "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CertificateSigningCACert.crt", |
| 3663 | "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCRLSigningCert.crt", |
| 3664 | "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCertificateSigningCACert.crt", |
| 3665 | "third_party/nist-pkits/certs/TrustAnchorRootCertificate.crt", |
| 3666 | "third_party/nist-pkits/certs/TwoCRLsCACert.crt", |
| 3667 | "third_party/nist-pkits/certs/UIDCACert.crt", |
| 3668 | "third_party/nist-pkits/certs/UTF8StringCaseInsensitiveMatchCACert.crt", |
| 3669 | "third_party/nist-pkits/certs/UTF8StringEncodedNamesCACert.crt", |
| 3670 | "third_party/nist-pkits/certs/UnknownCRLEntryExtensionCACert.crt", |
| 3671 | "third_party/nist-pkits/certs/UnknownCRLExtensionCACert.crt", |
| 3672 | "third_party/nist-pkits/certs/UserNoticeQualifierTest15EE.crt", |
| 3673 | "third_party/nist-pkits/certs/UserNoticeQualifierTest16EE.crt", |
| 3674 | "third_party/nist-pkits/certs/UserNoticeQualifierTest17EE.crt", |
| 3675 | "third_party/nist-pkits/certs/UserNoticeQualifierTest18EE.crt", |
| 3676 | "third_party/nist-pkits/certs/UserNoticeQualifierTest19EE.crt", |
| 3677 | "third_party/nist-pkits/certs/ValidBasicSelfIssuedCRLSigningKeyTest6EE.crt", |
| 3678 | "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest3EE.crt", |
| 3679 | "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest4EE.crt", |
| 3680 | "third_party/nist-pkits/certs/ValidBasicSelfIssuedOldWithNewTest1EE.crt", |
| 3681 | "third_party/nist-pkits/certs/ValidCertificatePathTest1EE.crt", |
| 3682 | "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest30EE.crt", |
| 3683 | "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest32EE.crt", |
| 3684 | "third_party/nist-pkits/certs/ValidDNandRFC822nameConstraintsTest27EE.crt", |
| 3685 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest11EE.crt", |
| 3686 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest14EE.crt", |
| 3687 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest18EE.crt", |
| 3688 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest19EE.crt", |
| 3689 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest1EE.crt", |
| 3690 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest4EE.crt", |
| 3691 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest5EE.crt", |
| 3692 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest6EE.crt", |
| 3693 | "third_party/nist-pkits/certs/ValidDSAParameterInheritanceTest5EE.crt", |
| 3694 | "third_party/nist-pkits/certs/ValidDSASignaturesTest4EE.crt", |
| 3695 | "third_party/nist-pkits/certs/ValidGeneralizedTimeCRLnextUpdateTest13EE.crt", |
| 3696 | "third_party/nist-pkits/certs/ValidGeneralizedTimenotAfterDateTest8EE.crt", |
| 3697 | "third_party/nist-pkits/certs/ValidGeneralizedTimenotBeforeDateTest4EE.crt", |
| 3698 | "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest22EE.crt", |
| 3699 | "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest24EE.crt", |
| 3700 | "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest25EE.crt", |
| 3701 | "third_party/nist-pkits/certs/ValidLongSerialNumberTest16EE.crt", |
| 3702 | "third_party/nist-pkits/certs/ValidLongSerialNumberTest17EE.crt", |
| 3703 | "third_party/nist-pkits/certs/ValidNameChainingCapitalizationTest5EE.crt", |
| 3704 | "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest3EE.crt", |
| 3705 | "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest4EE.crt", |
| 3706 | "third_party/nist-pkits/certs/ValidNameUIDsTest6EE.crt", |
| 3707 | "third_party/nist-pkits/certs/ValidNegativeSerialNumberTest14EE.crt", |
| 3708 | "third_party/nist-pkits/certs/ValidNoissuingDistributionPointTest10EE.crt", |
| 3709 | "third_party/nist-pkits/certs/ValidPolicyMappingTest11EE.crt", |
| 3710 | "third_party/nist-pkits/certs/ValidPolicyMappingTest12EE.crt", |
| 3711 | "third_party/nist-pkits/certs/ValidPolicyMappingTest13EE.crt", |
| 3712 | "third_party/nist-pkits/certs/ValidPolicyMappingTest14EE.crt", |
| 3713 | "third_party/nist-pkits/certs/ValidPolicyMappingTest1EE.crt", |
| 3714 | "third_party/nist-pkits/certs/ValidPolicyMappingTest3EE.crt", |
| 3715 | "third_party/nist-pkits/certs/ValidPolicyMappingTest5EE.crt", |
| 3716 | "third_party/nist-pkits/certs/ValidPolicyMappingTest6EE.crt", |
| 3717 | "third_party/nist-pkits/certs/ValidPolicyMappingTest9EE.crt", |
| 3718 | "third_party/nist-pkits/certs/ValidRFC3280MandatoryAttributeTypesTest7EE.crt", |
| 3719 | "third_party/nist-pkits/certs/ValidRFC3280OptionalAttributeTypesTest8EE.crt", |
| 3720 | "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest21EE.crt", |
| 3721 | "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest23EE.crt", |
| 3722 | "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest25EE.crt", |
| 3723 | "third_party/nist-pkits/certs/ValidRolloverfromPrintableStringtoUTF8StringTest10EE.crt", |
| 3724 | "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest7EE.crt", |
| 3725 | "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest9EE.crt", |
| 3726 | "third_party/nist-pkits/certs/ValidSelfIssuedinhibitPolicyMappingTest7EE.crt", |
| 3727 | "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest15EE.crt", |
| 3728 | "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest17EE.crt", |
| 3729 | "third_party/nist-pkits/certs/ValidSelfIssuedrequireExplicitPolicyTest6EE.crt", |
| 3730 | "third_party/nist-pkits/certs/ValidSeparateCertificateandCRLKeysTest19EE.crt", |
| 3731 | "third_party/nist-pkits/certs/ValidTwoCRLsTest7EE.crt", |
| 3732 | "third_party/nist-pkits/certs/ValidURInameConstraintsTest34EE.crt", |
| 3733 | "third_party/nist-pkits/certs/ValidURInameConstraintsTest36EE.crt", |
| 3734 | "third_party/nist-pkits/certs/ValidUTF8StringCaseInsensitiveMatchTest11EE.crt", |
| 3735 | "third_party/nist-pkits/certs/ValidUTF8StringEncodedNamesTest9EE.crt", |
| 3736 | "third_party/nist-pkits/certs/ValidUnknownNotCriticalCertificateExtensionTest1EE.crt", |
| 3737 | "third_party/nist-pkits/certs/ValidbasicConstraintsNotCriticalTest4EE.crt", |
| 3738 | "third_party/nist-pkits/certs/ValidcRLIssuerTest28EE.crt", |
| 3739 | "third_party/nist-pkits/certs/ValidcRLIssuerTest29EE.crt", |
| 3740 | "third_party/nist-pkits/certs/ValidcRLIssuerTest30EE.crt", |
| 3741 | "third_party/nist-pkits/certs/ValidcRLIssuerTest33EE.crt", |
| 3742 | "third_party/nist-pkits/certs/ValiddeltaCRLTest2EE.crt", |
| 3743 | "third_party/nist-pkits/certs/ValiddeltaCRLTest5EE.crt", |
| 3744 | "third_party/nist-pkits/certs/ValiddeltaCRLTest7EE.crt", |
| 3745 | "third_party/nist-pkits/certs/ValiddeltaCRLTest8EE.crt", |
| 3746 | "third_party/nist-pkits/certs/ValiddistributionPointTest1EE.crt", |
| 3747 | "third_party/nist-pkits/certs/ValiddistributionPointTest4EE.crt", |
| 3748 | "third_party/nist-pkits/certs/ValiddistributionPointTest5EE.crt", |
| 3749 | "third_party/nist-pkits/certs/ValiddistributionPointTest7EE.crt", |
| 3750 | "third_party/nist-pkits/certs/ValidinhibitAnyPolicyTest2EE.crt", |
| 3751 | "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest2EE.crt", |
| 3752 | "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest4EE.crt", |
| 3753 | "third_party/nist-pkits/certs/ValidkeyUsageNotCriticalTest3EE.crt", |
| 3754 | "third_party/nist-pkits/certs/ValidonlyContainsCACertsTest13EE.crt", |
| 3755 | "third_party/nist-pkits/certs/ValidonlySomeReasonsTest18EE.crt", |
| 3756 | "third_party/nist-pkits/certs/ValidonlySomeReasonsTest19EE.crt", |
| 3757 | "third_party/nist-pkits/certs/ValidpathLenConstraintTest13EE.crt", |
| 3758 | "third_party/nist-pkits/certs/ValidpathLenConstraintTest14EE.crt", |
| 3759 | "third_party/nist-pkits/certs/ValidpathLenConstraintTest7EE.crt", |
| 3760 | "third_party/nist-pkits/certs/ValidpathLenConstraintTest8EE.crt", |
| 3761 | "third_party/nist-pkits/certs/Validpre2000UTCnotBeforeDateTest3EE.crt", |
| 3762 | "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest1EE.crt", |
| 3763 | "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest2EE.crt", |
| 3764 | "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest4EE.crt", |
| 3765 | "third_party/nist-pkits/certs/WrongCRLCACert.crt", |
| 3766 | "third_party/nist-pkits/certs/anyPolicyCACert.crt", |
| 3767 | "third_party/nist-pkits/certs/basicConstraintsCriticalcAFalseCACert.crt", |
| 3768 | "third_party/nist-pkits/certs/basicConstraintsNotCriticalCACert.crt", |
| 3769 | "third_party/nist-pkits/certs/basicConstraintsNotCriticalcAFalseCACert.crt", |
| 3770 | "third_party/nist-pkits/certs/deltaCRLCA1Cert.crt", |
| 3771 | "third_party/nist-pkits/certs/deltaCRLCA2Cert.crt", |
| 3772 | "third_party/nist-pkits/certs/deltaCRLCA3Cert.crt", |
| 3773 | "third_party/nist-pkits/certs/deltaCRLIndicatorNoBaseCACert.crt", |
| 3774 | "third_party/nist-pkits/certs/distributionPoint1CACert.crt", |
| 3775 | "third_party/nist-pkits/certs/distributionPoint2CACert.crt", |
| 3776 | "third_party/nist-pkits/certs/indirectCRLCA1Cert.crt", |
| 3777 | "third_party/nist-pkits/certs/indirectCRLCA2Cert.crt", |
| 3778 | "third_party/nist-pkits/certs/indirectCRLCA3Cert.crt", |
| 3779 | "third_party/nist-pkits/certs/indirectCRLCA3cRLIssuerCert.crt", |
| 3780 | "third_party/nist-pkits/certs/indirectCRLCA4Cert.crt", |
| 3781 | "third_party/nist-pkits/certs/indirectCRLCA4cRLIssuerCert.crt", |
| 3782 | "third_party/nist-pkits/certs/indirectCRLCA5Cert.crt", |
| 3783 | "third_party/nist-pkits/certs/indirectCRLCA6Cert.crt", |
| 3784 | "third_party/nist-pkits/certs/inhibitAnyPolicy0CACert.crt", |
| 3785 | "third_party/nist-pkits/certs/inhibitAnyPolicy1CACert.crt", |
| 3786 | "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedCACert.crt", |
| 3787 | "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedsubCA2Cert.crt", |
| 3788 | "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA1Cert.crt", |
| 3789 | "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA2Cert.crt", |
| 3790 | "third_party/nist-pkits/certs/inhibitAnyPolicy1subCAIAP5Cert.crt", |
| 3791 | "third_party/nist-pkits/certs/inhibitAnyPolicy1subsubCA2Cert.crt", |
| 3792 | "third_party/nist-pkits/certs/inhibitAnyPolicy5CACert.crt", |
| 3793 | "third_party/nist-pkits/certs/inhibitAnyPolicy5subCACert.crt", |
| 3794 | "third_party/nist-pkits/certs/inhibitAnyPolicy5subsubCACert.crt", |
| 3795 | "third_party/nist-pkits/certs/inhibitAnyPolicyTest3EE.crt", |
| 3796 | "third_party/nist-pkits/certs/inhibitPolicyMapping0CACert.crt", |
| 3797 | "third_party/nist-pkits/certs/inhibitPolicyMapping0subCACert.crt", |
| 3798 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12CACert.crt", |
| 3799 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCACert.crt", |
| 3800 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCAIPM5Cert.crt", |
| 3801 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCACert.crt", |
| 3802 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCAIPM5Cert.crt", |
| 3803 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1CACert.crt", |
| 3804 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedCACert.crt", |
| 3805 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedsubCACert.crt", |
| 3806 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subCACert.crt", |
| 3807 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subsubCACert.crt", |
| 3808 | "third_party/nist-pkits/certs/inhibitPolicyMapping5CACert.crt", |
| 3809 | "third_party/nist-pkits/certs/inhibitPolicyMapping5subCACert.crt", |
| 3810 | "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubCACert.crt", |
| 3811 | "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubsubCACert.crt", |
| 3812 | "third_party/nist-pkits/certs/keyUsageCriticalcRLSignFalseCACert.crt", |
| 3813 | "third_party/nist-pkits/certs/keyUsageCriticalkeyCertSignFalseCACert.crt", |
| 3814 | "third_party/nist-pkits/certs/keyUsageNotCriticalCACert.crt", |
| 3815 | "third_party/nist-pkits/certs/keyUsageNotCriticalcRLSignFalseCACert.crt", |
| 3816 | "third_party/nist-pkits/certs/keyUsageNotCriticalkeyCertSignFalseCACert.crt", |
| 3817 | "third_party/nist-pkits/certs/nameConstraintsDN1CACert.crt", |
| 3818 | "third_party/nist-pkits/certs/nameConstraintsDN1SelfIssuedCACert.crt", |
| 3819 | "third_party/nist-pkits/certs/nameConstraintsDN1subCA1Cert.crt", |
| 3820 | "third_party/nist-pkits/certs/nameConstraintsDN1subCA2Cert.crt", |
| 3821 | "third_party/nist-pkits/certs/nameConstraintsDN1subCA3Cert.crt", |
| 3822 | "third_party/nist-pkits/certs/nameConstraintsDN2CACert.crt", |
| 3823 | "third_party/nist-pkits/certs/nameConstraintsDN3CACert.crt", |
| 3824 | "third_party/nist-pkits/certs/nameConstraintsDN3subCA1Cert.crt", |
| 3825 | "third_party/nist-pkits/certs/nameConstraintsDN3subCA2Cert.crt", |
| 3826 | "third_party/nist-pkits/certs/nameConstraintsDN4CACert.crt", |
| 3827 | "third_party/nist-pkits/certs/nameConstraintsDN5CACert.crt", |
| 3828 | "third_party/nist-pkits/certs/nameConstraintsDNS1CACert.crt", |
| 3829 | "third_party/nist-pkits/certs/nameConstraintsDNS2CACert.crt", |
| 3830 | "third_party/nist-pkits/certs/nameConstraintsRFC822CA1Cert.crt", |
| 3831 | "third_party/nist-pkits/certs/nameConstraintsRFC822CA2Cert.crt", |
| 3832 | "third_party/nist-pkits/certs/nameConstraintsRFC822CA3Cert.crt", |
| 3833 | "third_party/nist-pkits/certs/nameConstraintsURI1CACert.crt", |
| 3834 | "third_party/nist-pkits/certs/nameConstraintsURI2CACert.crt", |
| 3835 | "third_party/nist-pkits/certs/onlyContainsAttributeCertsCACert.crt", |
| 3836 | "third_party/nist-pkits/certs/onlyContainsCACertsCACert.crt", |
| 3837 | "third_party/nist-pkits/certs/onlyContainsUserCertsCACert.crt", |
| 3838 | "third_party/nist-pkits/certs/onlySomeReasonsCA1Cert.crt", |
| 3839 | "third_party/nist-pkits/certs/onlySomeReasonsCA2Cert.crt", |
| 3840 | "third_party/nist-pkits/certs/onlySomeReasonsCA3Cert.crt", |
| 3841 | "third_party/nist-pkits/certs/onlySomeReasonsCA4Cert.crt", |
| 3842 | "third_party/nist-pkits/certs/pathLenConstraint0CACert.crt", |
| 3843 | "third_party/nist-pkits/certs/pathLenConstraint0SelfIssuedCACert.crt", |
| 3844 | "third_party/nist-pkits/certs/pathLenConstraint0subCA2Cert.crt", |
| 3845 | "third_party/nist-pkits/certs/pathLenConstraint0subCACert.crt", |
| 3846 | "third_party/nist-pkits/certs/pathLenConstraint1CACert.crt", |
| 3847 | "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedCACert.crt", |
| 3848 | "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedsubCACert.crt", |
| 3849 | "third_party/nist-pkits/certs/pathLenConstraint1subCACert.crt", |
| 3850 | "third_party/nist-pkits/certs/pathLenConstraint6CACert.crt", |
| 3851 | "third_party/nist-pkits/certs/pathLenConstraint6subCA0Cert.crt", |
| 3852 | "third_party/nist-pkits/certs/pathLenConstraint6subCA1Cert.crt", |
| 3853 | "third_party/nist-pkits/certs/pathLenConstraint6subCA4Cert.crt", |
| 3854 | "third_party/nist-pkits/certs/pathLenConstraint6subsubCA00Cert.crt", |
| 3855 | "third_party/nist-pkits/certs/pathLenConstraint6subsubCA11Cert.crt", |
| 3856 | "third_party/nist-pkits/certs/pathLenConstraint6subsubCA41Cert.crt", |
| 3857 | "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA11XCert.crt", |
| 3858 | "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA41XCert.crt", |
| 3859 | "third_party/nist-pkits/certs/pre2000CRLnextUpdateCACert.crt", |
| 3860 | "third_party/nist-pkits/certs/requireExplicitPolicy0CACert.crt", |
| 3861 | "third_party/nist-pkits/certs/requireExplicitPolicy0subCACert.crt", |
| 3862 | "third_party/nist-pkits/certs/requireExplicitPolicy0subsubCACert.crt", |
| 3863 | "third_party/nist-pkits/certs/requireExplicitPolicy0subsubsubCACert.crt", |
| 3864 | "third_party/nist-pkits/certs/requireExplicitPolicy10CACert.crt", |
| 3865 | "third_party/nist-pkits/certs/requireExplicitPolicy10subCACert.crt", |
| 3866 | "third_party/nist-pkits/certs/requireExplicitPolicy10subsubCACert.crt", |
| 3867 | "third_party/nist-pkits/certs/requireExplicitPolicy10subsubsubCACert.crt", |
| 3868 | "third_party/nist-pkits/certs/requireExplicitPolicy2CACert.crt", |
| 3869 | "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedCACert.crt", |
| 3870 | "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedsubCACert.crt", |
| 3871 | "third_party/nist-pkits/certs/requireExplicitPolicy2subCACert.crt", |
| 3872 | "third_party/nist-pkits/certs/requireExplicitPolicy4CACert.crt", |
| 3873 | "third_party/nist-pkits/certs/requireExplicitPolicy4subCACert.crt", |
| 3874 | "third_party/nist-pkits/certs/requireExplicitPolicy4subsubCACert.crt", |
| 3875 | "third_party/nist-pkits/certs/requireExplicitPolicy4subsubsubCACert.crt", |
| 3876 | "third_party/nist-pkits/certs/requireExplicitPolicy5CACert.crt", |
| 3877 | "third_party/nist-pkits/certs/requireExplicitPolicy5subCACert.crt", |
| 3878 | "third_party/nist-pkits/certs/requireExplicitPolicy5subsubCACert.crt", |
| 3879 | "third_party/nist-pkits/certs/requireExplicitPolicy5subsubsubCACert.crt", |
| 3880 | "third_party/nist-pkits/certs/requireExplicitPolicy7CACert.crt", |
| 3881 | "third_party/nist-pkits/certs/requireExplicitPolicy7subCARE2Cert.crt", |
| 3882 | "third_party/nist-pkits/certs/requireExplicitPolicy7subsubCARE2RE4Cert.crt", |
| 3883 | "third_party/nist-pkits/certs/requireExplicitPolicy7subsubsubCARE2RE4Cert.crt", |
| 3884 | "third_party/nist-pkits/crls/BadCRLIssuerNameCACRL.crl", |
| 3885 | "third_party/nist-pkits/crls/BadCRLSignatureCACRL.crl", |
| 3886 | "third_party/nist-pkits/crls/BadSignedCACRL.crl", |
| 3887 | "third_party/nist-pkits/crls/BadnotAfterDateCACRL.crl", |
| 3888 | "third_party/nist-pkits/crls/BadnotBeforeDateCACRL.crl", |
| 3889 | "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCACRL.crl", |
| 3890 | "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCRLCertCRL.crl", |
| 3891 | "third_party/nist-pkits/crls/BasicSelfIssuedNewKeyCACRL.crl", |
| 3892 | "third_party/nist-pkits/crls/BasicSelfIssuedOldKeyCACRL.crl", |
| 3893 | "third_party/nist-pkits/crls/BasicSelfIssuedOldKeySelfIssuedCertCRL.crl", |
| 3894 | "third_party/nist-pkits/crls/DSACACRL.crl", |
| 3895 | "third_party/nist-pkits/crls/DSAParametersInheritedCACRL.crl", |
| 3896 | "third_party/nist-pkits/crls/GeneralizedTimeCRLnextUpdateCACRL.crl", |
| 3897 | "third_party/nist-pkits/crls/GoodCACRL.crl", |
| 3898 | "third_party/nist-pkits/crls/GoodsubCACRL.crl", |
| 3899 | "third_party/nist-pkits/crls/GoodsubCAPanyPolicyMapping1to2CACRL.crl", |
| 3900 | "third_party/nist-pkits/crls/LongSerialNumberCACRL.crl", |
| 3901 | "third_party/nist-pkits/crls/Mapping1to2CACRL.crl", |
| 3902 | "third_party/nist-pkits/crls/MappingFromanyPolicyCACRL.crl", |
| 3903 | "third_party/nist-pkits/crls/MappingToanyPolicyCACRL.crl", |
| 3904 | "third_party/nist-pkits/crls/MissingbasicConstraintsCACRL.crl", |
| 3905 | "third_party/nist-pkits/crls/NameOrderCACRL.crl", |
| 3906 | "third_party/nist-pkits/crls/NegativeSerialNumberCACRL.crl", |
| 3907 | "third_party/nist-pkits/crls/NoPoliciesCACRL.crl", |
| 3908 | "third_party/nist-pkits/crls/NoissuingDistributionPointCACRL.crl", |
| 3909 | "third_party/nist-pkits/crls/OldCRLnextUpdateCACRL.crl", |
| 3910 | "third_party/nist-pkits/crls/P12Mapping1to3CACRL.crl", |
| 3911 | "third_party/nist-pkits/crls/P12Mapping1to3subCACRL.crl", |
| 3912 | "third_party/nist-pkits/crls/P12Mapping1to3subsubCACRL.crl", |
| 3913 | "third_party/nist-pkits/crls/P1Mapping1to234CACRL.crl", |
| 3914 | "third_party/nist-pkits/crls/P1Mapping1to234subCACRL.crl", |
| 3915 | "third_party/nist-pkits/crls/P1anyPolicyMapping1to2CACRL.crl", |
| 3916 | "third_party/nist-pkits/crls/PanyPolicyMapping1to2CACRL.crl", |
| 3917 | "third_party/nist-pkits/crls/PoliciesP1234CACRL.crl", |
| 3918 | "third_party/nist-pkits/crls/PoliciesP1234subCAP123CRL.crl", |
| 3919 | "third_party/nist-pkits/crls/PoliciesP1234subsubCAP123P12CRL.crl", |
| 3920 | "third_party/nist-pkits/crls/PoliciesP123CACRL.crl", |
| 3921 | "third_party/nist-pkits/crls/PoliciesP123subCAP12CRL.crl", |
| 3922 | "third_party/nist-pkits/crls/PoliciesP123subsubCAP12P1CRL.crl", |
| 3923 | "third_party/nist-pkits/crls/PoliciesP123subsubCAP2P2CRL.crl", |
| 3924 | "third_party/nist-pkits/crls/PoliciesP123subsubsubCAP12P2P1CRL.crl", |
| 3925 | "third_party/nist-pkits/crls/PoliciesP12CACRL.crl", |
| 3926 | "third_party/nist-pkits/crls/PoliciesP12subCAP1CRL.crl", |
| 3927 | "third_party/nist-pkits/crls/PoliciesP12subsubCAP1P2CRL.crl", |
| 3928 | "third_party/nist-pkits/crls/PoliciesP2subCA2CRL.crl", |
| 3929 | "third_party/nist-pkits/crls/PoliciesP2subCACRL.crl", |
| 3930 | "third_party/nist-pkits/crls/PoliciesP3CACRL.crl", |
| 3931 | "third_party/nist-pkits/crls/RFC3280MandatoryAttributeTypesCACRL.crl", |
| 3932 | "third_party/nist-pkits/crls/RFC3280OptionalAttributeTypesCACRL.crl", |
| 3933 | "third_party/nist-pkits/crls/RevokedsubCACRL.crl", |
| 3934 | "third_party/nist-pkits/crls/RolloverfromPrintableStringtoUTF8StringCACRL.crl", |
| 3935 | "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCA2CRL.crl", |
| 3936 | "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCRL.crl", |
| 3937 | "third_party/nist-pkits/crls/TrustAnchorRootCRL.crl", |
| 3938 | "third_party/nist-pkits/crls/TwoCRLsCABadCRL.crl", |
| 3939 | "third_party/nist-pkits/crls/TwoCRLsCAGoodCRL.crl", |
| 3940 | "third_party/nist-pkits/crls/UIDCACRL.crl", |
| 3941 | "third_party/nist-pkits/crls/UTF8StringCaseInsensitiveMatchCACRL.crl", |
| 3942 | "third_party/nist-pkits/crls/UTF8StringEncodedNamesCACRL.crl", |
| 3943 | "third_party/nist-pkits/crls/UnknownCRLEntryExtensionCACRL.crl", |
| 3944 | "third_party/nist-pkits/crls/UnknownCRLExtensionCACRL.crl", |
| 3945 | "third_party/nist-pkits/crls/WrongCRLCACRL.crl", |
| 3946 | "third_party/nist-pkits/crls/anyPolicyCACRL.crl", |
| 3947 | "third_party/nist-pkits/crls/basicConstraintsCriticalcAFalseCACRL.crl", |
| 3948 | "third_party/nist-pkits/crls/basicConstraintsNotCriticalCACRL.crl", |
| 3949 | "third_party/nist-pkits/crls/basicConstraintsNotCriticalcAFalseCACRL.crl", |
| 3950 | "third_party/nist-pkits/crls/deltaCRLCA1CRL.crl", |
| 3951 | "third_party/nist-pkits/crls/deltaCRLCA1deltaCRL.crl", |
| 3952 | "third_party/nist-pkits/crls/deltaCRLCA2CRL.crl", |
| 3953 | "third_party/nist-pkits/crls/deltaCRLCA2deltaCRL.crl", |
| 3954 | "third_party/nist-pkits/crls/deltaCRLCA3CRL.crl", |
| 3955 | "third_party/nist-pkits/crls/deltaCRLCA3deltaCRL.crl", |
| 3956 | "third_party/nist-pkits/crls/deltaCRLIndicatorNoBaseCACRL.crl", |
| 3957 | "third_party/nist-pkits/crls/distributionPoint1CACRL.crl", |
| 3958 | "third_party/nist-pkits/crls/distributionPoint2CACRL.crl", |
| 3959 | "third_party/nist-pkits/crls/indirectCRLCA1CRL.crl", |
| 3960 | "third_party/nist-pkits/crls/indirectCRLCA3CRL.crl", |
| 3961 | "third_party/nist-pkits/crls/indirectCRLCA3cRLIssuerCRL.crl", |
| 3962 | "third_party/nist-pkits/crls/indirectCRLCA4cRLIssuerCRL.crl", |
| 3963 | "third_party/nist-pkits/crls/indirectCRLCA5CRL.crl", |
| 3964 | "third_party/nist-pkits/crls/inhibitAnyPolicy0CACRL.crl", |
| 3965 | "third_party/nist-pkits/crls/inhibitAnyPolicy1CACRL.crl", |
| 3966 | "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA1CRL.crl", |
| 3967 | "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA2CRL.crl", |
| 3968 | "third_party/nist-pkits/crls/inhibitAnyPolicy1subCAIAP5CRL.crl", |
| 3969 | "third_party/nist-pkits/crls/inhibitAnyPolicy1subsubCA2CRL.crl", |
| 3970 | "third_party/nist-pkits/crls/inhibitAnyPolicy5CACRL.crl", |
| 3971 | "third_party/nist-pkits/crls/inhibitAnyPolicy5subCACRL.crl", |
| 3972 | "third_party/nist-pkits/crls/inhibitAnyPolicy5subsubCACRL.crl", |
| 3973 | "third_party/nist-pkits/crls/inhibitPolicyMapping0CACRL.crl", |
| 3974 | "third_party/nist-pkits/crls/inhibitPolicyMapping0subCACRL.crl", |
| 3975 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12CACRL.crl", |
| 3976 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCACRL.crl", |
| 3977 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCAIPM5CRL.crl", |
| 3978 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCACRL.crl", |
| 3979 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCAIPM5CRL.crl", |
| 3980 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P1CACRL.crl", |
| 3981 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subCACRL.crl", |
| 3982 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subsubCACRL.crl", |
| 3983 | "third_party/nist-pkits/crls/inhibitPolicyMapping5CACRL.crl", |
| 3984 | "third_party/nist-pkits/crls/inhibitPolicyMapping5subCACRL.crl", |
| 3985 | "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubCACRL.crl", |
| 3986 | "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubsubCACRL.crl", |
| 3987 | "third_party/nist-pkits/crls/keyUsageCriticalcRLSignFalseCACRL.crl", |
| 3988 | "third_party/nist-pkits/crls/keyUsageCriticalkeyCertSignFalseCACRL.crl", |
| 3989 | "third_party/nist-pkits/crls/keyUsageNotCriticalCACRL.crl", |
| 3990 | "third_party/nist-pkits/crls/keyUsageNotCriticalcRLSignFalseCACRL.crl", |
| 3991 | "third_party/nist-pkits/crls/keyUsageNotCriticalkeyCertSignFalseCACRL.crl", |
| 3992 | "third_party/nist-pkits/crls/nameConstraintsDN1CACRL.crl", |
| 3993 | "third_party/nist-pkits/crls/nameConstraintsDN1subCA1CRL.crl", |
| 3994 | "third_party/nist-pkits/crls/nameConstraintsDN1subCA2CRL.crl", |
| 3995 | "third_party/nist-pkits/crls/nameConstraintsDN1subCA3CRL.crl", |
| 3996 | "third_party/nist-pkits/crls/nameConstraintsDN2CACRL.crl", |
| 3997 | "third_party/nist-pkits/crls/nameConstraintsDN3CACRL.crl", |
| 3998 | "third_party/nist-pkits/crls/nameConstraintsDN3subCA1CRL.crl", |
| 3999 | "third_party/nist-pkits/crls/nameConstraintsDN3subCA2CRL.crl", |
| 4000 | "third_party/nist-pkits/crls/nameConstraintsDN4CACRL.crl", |
| 4001 | "third_party/nist-pkits/crls/nameConstraintsDN5CACRL.crl", |
| 4002 | "third_party/nist-pkits/crls/nameConstraintsDNS1CACRL.crl", |
| 4003 | "third_party/nist-pkits/crls/nameConstraintsDNS2CACRL.crl", |
| 4004 | "third_party/nist-pkits/crls/nameConstraintsRFC822CA1CRL.crl", |
| 4005 | "third_party/nist-pkits/crls/nameConstraintsRFC822CA2CRL.crl", |
| 4006 | "third_party/nist-pkits/crls/nameConstraintsRFC822CA3CRL.crl", |
| 4007 | "third_party/nist-pkits/crls/nameConstraintsURI1CACRL.crl", |
| 4008 | "third_party/nist-pkits/crls/nameConstraintsURI2CACRL.crl", |
| 4009 | "third_party/nist-pkits/crls/onlyContainsAttributeCertsCACRL.crl", |
| 4010 | "third_party/nist-pkits/crls/onlyContainsCACertsCACRL.crl", |
| 4011 | "third_party/nist-pkits/crls/onlyContainsUserCertsCACRL.crl", |
| 4012 | "third_party/nist-pkits/crls/onlySomeReasonsCA1compromiseCRL.crl", |
| 4013 | "third_party/nist-pkits/crls/onlySomeReasonsCA1otherreasonsCRL.crl", |
| 4014 | "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL1.crl", |
| 4015 | "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL2.crl", |
| 4016 | "third_party/nist-pkits/crls/onlySomeReasonsCA3compromiseCRL.crl", |
| 4017 | "third_party/nist-pkits/crls/onlySomeReasonsCA3otherreasonsCRL.crl", |
| 4018 | "third_party/nist-pkits/crls/onlySomeReasonsCA4compromiseCRL.crl", |
| 4019 | "third_party/nist-pkits/crls/onlySomeReasonsCA4otherreasonsCRL.crl", |
| 4020 | "third_party/nist-pkits/crls/pathLenConstraint0CACRL.crl", |
| 4021 | "third_party/nist-pkits/crls/pathLenConstraint0subCA2CRL.crl", |
| 4022 | "third_party/nist-pkits/crls/pathLenConstraint0subCACRL.crl", |
| 4023 | "third_party/nist-pkits/crls/pathLenConstraint1CACRL.crl", |
| 4024 | "third_party/nist-pkits/crls/pathLenConstraint1subCACRL.crl", |
| 4025 | "third_party/nist-pkits/crls/pathLenConstraint6CACRL.crl", |
| 4026 | "third_party/nist-pkits/crls/pathLenConstraint6subCA0CRL.crl", |
| 4027 | "third_party/nist-pkits/crls/pathLenConstraint6subCA1CRL.crl", |
| 4028 | "third_party/nist-pkits/crls/pathLenConstraint6subCA4CRL.crl", |
| 4029 | "third_party/nist-pkits/crls/pathLenConstraint6subsubCA00CRL.crl", |
| 4030 | "third_party/nist-pkits/crls/pathLenConstraint6subsubCA11CRL.crl", |
| 4031 | "third_party/nist-pkits/crls/pathLenConstraint6subsubCA41CRL.crl", |
| 4032 | "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA11XCRL.crl", |
| 4033 | "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA41XCRL.crl", |
| 4034 | "third_party/nist-pkits/crls/pre2000CRLnextUpdateCACRL.crl", |
| 4035 | "third_party/nist-pkits/crls/requireExplicitPolicy0CACRL.crl", |
| 4036 | "third_party/nist-pkits/crls/requireExplicitPolicy0subCACRL.crl", |
| 4037 | "third_party/nist-pkits/crls/requireExplicitPolicy0subsubCACRL.crl", |
| 4038 | "third_party/nist-pkits/crls/requireExplicitPolicy0subsubsubCACRL.crl", |
| 4039 | "third_party/nist-pkits/crls/requireExplicitPolicy10CACRL.crl", |
| 4040 | "third_party/nist-pkits/crls/requireExplicitPolicy10subCACRL.crl", |
| 4041 | "third_party/nist-pkits/crls/requireExplicitPolicy10subsubCACRL.crl", |
| 4042 | "third_party/nist-pkits/crls/requireExplicitPolicy10subsubsubCACRL.crl", |
| 4043 | "third_party/nist-pkits/crls/requireExplicitPolicy2CACRL.crl", |
| 4044 | "third_party/nist-pkits/crls/requireExplicitPolicy2subCACRL.crl", |
| 4045 | "third_party/nist-pkits/crls/requireExplicitPolicy4CACRL.crl", |
| 4046 | "third_party/nist-pkits/crls/requireExplicitPolicy4subCACRL.crl", |
| 4047 | "third_party/nist-pkits/crls/requireExplicitPolicy4subsubCACRL.crl", |
| 4048 | "third_party/nist-pkits/crls/requireExplicitPolicy4subsubsubCACRL.crl", |
| 4049 | "third_party/nist-pkits/crls/requireExplicitPolicy5CACRL.crl", |
| 4050 | "third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl", |
| 4051 | "third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl", |
| 4052 | "third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl", |
| 4053 | "third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl", |
| 4054 | "third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl", |
| 4055 | "third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl", |
| 4056 | "third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.crl", |
| 4057 | ] |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 4058 | outputs = [ |
| 4059 | "{{bundle_resources_dir}}/" + |
| 4060 | "{{source_root_relative_dir}}/{{source_file_part}}", |
| 4061 | ] |
| 4062 | } |
| 4063 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4064 | test("net_unittests") { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4065 | sources = [ |
| 4066 | "android/cellular_signal_strength_unittest.cc", |
| 4067 | "android/dummy_spnego_authenticator.cc", |
| 4068 | "android/dummy_spnego_authenticator.h", |
| 4069 | "android/http_auth_negotiate_android_unittest.cc", |
| 4070 | "android/network_change_notifier_android_unittest.cc", |
| 4071 | "android/network_library_unittest.cc", |
| 4072 | "android/traffic_stats_unittest.cc", |
| 4073 | "base/address_family_unittest.cc", |
| 4074 | "base/address_list_unittest.cc", |
| 4075 | "base/address_tracker_linux_unittest.cc", |
| 4076 | "base/arena_unittest.cc", |
| 4077 | "base/backoff_entry_serializer_unittest.cc", |
| 4078 | "base/backoff_entry_unittest.cc", |
| 4079 | "base/chunked_upload_data_stream_unittest.cc", |
| 4080 | "base/data_url_unittest.cc", |
| 4081 | "base/directory_lister_unittest.cc", |
| 4082 | "base/directory_listing_unittest.cc", |
| 4083 | "base/elements_upload_data_stream_unittest.cc", |
| 4084 | "base/escape_unittest.cc", |
| 4085 | "base/expiring_cache_unittest.cc", |
| 4086 | "base/file_stream_unittest.cc", |
| 4087 | "base/filename_util_unittest.cc", |
| 4088 | "base/host_mapping_rules_unittest.cc", |
| 4089 | "base/host_port_pair_unittest.cc", |
| 4090 | "base/int128_unittest.cc", |
fayang | baec8ff5 | 2017-01-28 03:26:12 | [diff] [blame] | 4091 | "base/interval_set_test.cc", |
| 4092 | "base/interval_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4093 | "base/ip_address_unittest.cc", |
| 4094 | "base/ip_endpoint_unittest.cc", |
| 4095 | "base/ip_pattern_unittest.cc", |
| 4096 | "base/layered_network_delegate_unittest.cc", |
| 4097 | "base/lookup_string_in_fixed_set_unittest.cc", |
| 4098 | "base/mime_sniffer_unittest.cc", |
| 4099 | "base/mime_util_unittest.cc", |
| 4100 | "base/network_activity_monitor_unittest.cc", |
| 4101 | "base/network_change_notifier_unittest.cc", |
| 4102 | "base/network_change_notifier_win_unittest.cc", |
| 4103 | "base/network_interfaces_unittest.cc", |
| 4104 | "base/network_throttle_manager_impl_unittest.cc", |
| 4105 | "base/parse_number_unittest.cc", |
| 4106 | "base/percentile_estimator_unittest.cc", |
| 4107 | "base/port_util_unittest.cc", |
| 4108 | "base/prioritized_dispatcher_unittest.cc", |
| 4109 | "base/priority_queue_unittest.cc", |
| 4110 | "base/registry_controlled_domains/registry_controlled_domain_unittest.cc", |
| 4111 | "base/sdch_dictionary_unittest.cc", |
| 4112 | "base/sdch_manager_unittest.cc", |
| 4113 | "base/static_cookie_policy_unittest.cc", |
| 4114 | "base/test_completion_callback_unittest.cc", |
| 4115 | "base/test_proxy_delegate.cc", |
| 4116 | "base/test_proxy_delegate.h", |
| 4117 | "base/upload_bytes_element_reader_unittest.cc", |
| 4118 | "base/upload_file_element_reader_unittest.cc", |
| 4119 | "base/url_util_unittest.cc", |
| 4120 | "cert/caching_cert_verifier_unittest.cc", |
| 4121 | "cert/cert_verifier_unittest.cc", |
estark | d91e0b2 | 2017-01-31 01:10:28 | [diff] [blame] | 4122 | "cert/cert_verify_proc_android_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4123 | "cert/cert_verify_proc_ios_unittest.cc", |
eroman | ce65aff | 2017-02-04 00:05:32 | [diff] [blame] | 4124 | "cert/cert_verify_proc_mac_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4125 | "cert/cert_verify_proc_unittest.cc", |
| 4126 | "cert/cert_verify_proc_whitelist_unittest.cc", |
| 4127 | "cert/crl_set_unittest.cc", |
| 4128 | "cert/ct_known_logs_unittest.cc", |
| 4129 | "cert/ct_log_response_parser_unittest.cc", |
| 4130 | "cert/ct_log_verifier_unittest.cc", |
| 4131 | "cert/ct_objects_extractor_unittest.cc", |
| 4132 | "cert/ct_policy_enforcer_unittest.cc", |
| 4133 | "cert/ct_serialization_unittest.cc", |
| 4134 | "cert/ev_root_ca_metadata_unittest.cc", |
| 4135 | "cert/internal/cert_issuer_source_aia_unittest.cc", |
| 4136 | "cert/internal/cert_issuer_source_nss_unittest.cc", |
| 4137 | "cert/internal/cert_issuer_source_static_unittest.cc", |
| 4138 | "cert/internal/cert_issuer_source_sync_unittest.h", |
| 4139 | "cert/internal/certificate_policies_unittest.cc", |
| 4140 | "cert/internal/extended_key_usage_unittest.cc", |
| 4141 | "cert/internal/name_constraints_unittest.cc", |
| 4142 | "cert/internal/nist_pkits_unittest.h", |
| 4143 | "cert/internal/parse_certificate_unittest.cc", |
| 4144 | "cert/internal/parse_name_unittest.cc", |
| 4145 | "cert/internal/parse_ocsp_unittest.cc", |
| 4146 | "cert/internal/parsed_certificate_unittest.cc", |
| 4147 | "cert/internal/path_builder_pkits_unittest.cc", |
| 4148 | "cert/internal/path_builder_unittest.cc", |
| 4149 | "cert/internal/path_builder_verify_certificate_chain_unittest.cc", |
| 4150 | "cert/internal/signature_algorithm_unittest.cc", |
| 4151 | "cert/internal/test_helpers.cc", |
| 4152 | "cert/internal/test_helpers.h", |
| 4153 | "cert/internal/trust_store_collection_unittest.cc", |
| 4154 | "cert/internal/trust_store_nss_unittest.cc", |
| 4155 | "cert/internal/verify_certificate_chain_pkits_unittest.cc", |
| 4156 | "cert/internal/verify_certificate_chain_typed_unittest.h", |
| 4157 | "cert/internal/verify_certificate_chain_unittest.cc", |
| 4158 | "cert/internal/verify_name_match_unittest.cc", |
| 4159 | "cert/internal/verify_signed_data_unittest.cc", |
| 4160 | "cert/jwk_serializer_unittest.cc", |
| 4161 | "cert/merkle_audit_proof_unittest.cc", |
| 4162 | "cert/merkle_tree_leaf_unittest.cc", |
| 4163 | "cert/multi_log_ct_verifier_unittest.cc", |
| 4164 | "cert/multi_threaded_cert_verifier_unittest.cc", |
| 4165 | "cert/nss_cert_database_chromeos_unittest.cc", |
| 4166 | "cert/nss_cert_database_unittest.cc", |
| 4167 | "cert/nss_profile_filter_chromeos_unittest.cc", |
| 4168 | "cert/pem_tokenizer_unittest.cc", |
| 4169 | "cert/signed_certificate_timestamp_unittest.cc", |
| 4170 | "cert/sth_distributor_unittest.cc", |
| 4171 | "cert/test_root_certs_unittest.cc", |
| 4172 | "cert/x509_cert_types_unittest.cc", |
| 4173 | "cert/x509_certificate_unittest.cc", |
| 4174 | "cert/x509_util_unittest.cc", |
| 4175 | "cert_net/cert_net_fetcher_impl_unittest.cc", |
| 4176 | "cert_net/nss_ocsp_unittest.cc", |
| 4177 | "cookies/canonical_cookie_unittest.cc", |
| 4178 | "cookies/cookie_constants_unittest.cc", |
| 4179 | "cookies/cookie_monster_unittest.cc", |
| 4180 | "cookies/cookie_store_unittest.cc", |
| 4181 | "cookies/cookie_util_unittest.cc", |
| 4182 | "cookies/parsed_cookie_unittest.cc", |
| 4183 | "der/encode_values_unittest.cc", |
| 4184 | "der/input_unittest.cc", |
| 4185 | "der/parse_values_unittest.cc", |
| 4186 | "der/parser_unittest.cc", |
| 4187 | "disk_cache/backend_unittest.cc", |
| 4188 | "disk_cache/blockfile/addr_unittest.cc", |
| 4189 | "disk_cache/blockfile/bitmap_unittest.cc", |
| 4190 | "disk_cache/blockfile/block_files_unittest.cc", |
| 4191 | "disk_cache/blockfile/mapped_file_unittest.cc", |
| 4192 | "disk_cache/blockfile/stats_unittest.cc", |
| 4193 | "disk_cache/blockfile/storage_block_unittest.cc", |
| 4194 | "disk_cache/cache_util_unittest.cc", |
| 4195 | "disk_cache/entry_unittest.cc", |
| 4196 | "disk_cache/simple/simple_experiment_unittest.cc", |
| 4197 | "disk_cache/simple/simple_index_file_unittest.cc", |
| 4198 | "disk_cache/simple/simple_index_unittest.cc", |
| 4199 | "disk_cache/simple/simple_test_util.cc", |
| 4200 | "disk_cache/simple/simple_test_util.h", |
| 4201 | "disk_cache/simple/simple_util_unittest.cc", |
| 4202 | "disk_cache/simple/simple_version_upgrade_unittest.cc", |
| 4203 | "dns/address_sorter_posix_unittest.cc", |
| 4204 | "dns/address_sorter_unittest.cc", |
| 4205 | "dns/dns_config_service_posix_unittest.cc", |
| 4206 | "dns/dns_config_service_unittest.cc", |
| 4207 | "dns/dns_config_service_win_unittest.cc", |
| 4208 | "dns/dns_hosts_unittest.cc", |
| 4209 | "dns/dns_query_unittest.cc", |
| 4210 | "dns/dns_response_unittest.cc", |
| 4211 | "dns/dns_session_unittest.cc", |
juliatuttle | 8ff9d153 | 2017-01-31 17:06:31 | [diff] [blame] | 4212 | "dns/dns_socket_pool_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4213 | "dns/dns_transaction_unittest.cc", |
| 4214 | "dns/dns_util_unittest.cc", |
| 4215 | "dns/host_cache_unittest.cc", |
| 4216 | "dns/host_resolver_impl_unittest.cc", |
| 4217 | "dns/host_resolver_mojo_unittest.cc", |
| 4218 | "dns/mapped_host_resolver_unittest.cc", |
| 4219 | "dns/mdns_cache_unittest.cc", |
| 4220 | "dns/mdns_client_unittest.cc", |
| 4221 | "dns/mojo_host_resolver_impl_unittest.cc", |
| 4222 | "dns/record_parsed_unittest.cc", |
| 4223 | "dns/record_rdata_unittest.cc", |
| 4224 | "dns/serial_worker_unittest.cc", |
| 4225 | "extras/sqlite/sqlite_channel_id_store_unittest.cc", |
| 4226 | "extras/sqlite/sqlite_persistent_cookie_store_unittest.cc", |
| 4227 | "filter/brotli_source_stream_unittest.cc", |
| 4228 | "filter/filter_source_stream_test_util.cc", |
| 4229 | "filter/filter_source_stream_test_util.h", |
| 4230 | "filter/filter_source_stream_unittest.cc", |
| 4231 | "filter/gzip_source_stream_unittest.cc", |
| 4232 | "filter/sdch_policy_delegate_unittest.cc", |
| 4233 | "filter/sdch_source_stream_unittest.cc", |
| 4234 | "ftp/ftp_auth_cache_unittest.cc", |
| 4235 | "ftp/ftp_ctrl_response_buffer_unittest.cc", |
| 4236 | "ftp/ftp_directory_listing_parser_ls_unittest.cc", |
| 4237 | "ftp/ftp_directory_listing_parser_unittest.cc", |
| 4238 | "ftp/ftp_directory_listing_parser_unittest.h", |
| 4239 | "ftp/ftp_directory_listing_parser_vms_unittest.cc", |
| 4240 | "ftp/ftp_directory_listing_parser_windows_unittest.cc", |
| 4241 | "ftp/ftp_network_transaction_unittest.cc", |
| 4242 | "ftp/ftp_util_unittest.cc", |
| 4243 | "http/bidirectional_stream_unittest.cc", |
| 4244 | "http/des_unittest.cc", |
| 4245 | "http/disk_cache_based_quic_server_info_unittest.cc", |
| 4246 | "http/http_auth_cache_unittest.cc", |
| 4247 | "http/http_auth_challenge_tokenizer_unittest.cc", |
| 4248 | "http/http_auth_controller_unittest.cc", |
| 4249 | "http/http_auth_filter_unittest.cc", |
| 4250 | "http/http_auth_gssapi_posix_unittest.cc", |
| 4251 | "http/http_auth_handler_basic_unittest.cc", |
| 4252 | "http/http_auth_handler_digest_unittest.cc", |
| 4253 | "http/http_auth_handler_factory_unittest.cc", |
| 4254 | "http/http_auth_handler_mock.cc", |
| 4255 | "http/http_auth_handler_mock.h", |
| 4256 | "http/http_auth_handler_negotiate_unittest.cc", |
| 4257 | "http/http_auth_handler_unittest.cc", |
| 4258 | "http/http_auth_multi_round_parse_unittest.cc", |
| 4259 | "http/http_auth_preferences_unittest.cc", |
| 4260 | "http/http_auth_sspi_win_unittest.cc", |
| 4261 | "http/http_auth_unittest.cc", |
| 4262 | "http/http_basic_state_unittest.cc", |
| 4263 | "http/http_byte_range_unittest.cc", |
| 4264 | "http/http_cache_lookup_manager_unittest.cc", |
| 4265 | "http/http_cache_unittest.cc", |
| 4266 | "http/http_chunked_decoder_unittest.cc", |
| 4267 | "http/http_content_disposition_unittest.cc", |
| 4268 | "http/http_log_util_unittest.cc", |
| 4269 | "http/http_network_layer_unittest.cc", |
| 4270 | "http/http_network_transaction_ssl_unittest.cc", |
| 4271 | "http/http_network_transaction_unittest.cc", |
| 4272 | "http/http_proxy_client_socket_pool_unittest.cc", |
| 4273 | "http/http_request_headers_unittest.cc", |
| 4274 | "http/http_response_body_drainer_unittest.cc", |
| 4275 | "http/http_response_headers_unittest.cc", |
| 4276 | "http/http_response_info_unittest.cc", |
| 4277 | "http/http_security_headers_unittest.cc", |
| 4278 | "http/http_server_properties_impl_unittest.cc", |
| 4279 | "http/http_server_properties_manager_unittest.cc", |
| 4280 | "http/http_status_code_unittest.cc", |
| 4281 | "http/http_stream_factory_impl_job_controller_unittest.cc", |
| 4282 | "http/http_stream_factory_impl_request_unittest.cc", |
| 4283 | "http/http_stream_factory_impl_unittest.cc", |
| 4284 | "http/http_stream_parser_unittest.cc", |
| 4285 | "http/http_util_unittest.cc", |
| 4286 | "http/http_vary_data_unittest.cc", |
| 4287 | "http/mock_allow_http_auth_preferences.cc", |
| 4288 | "http/mock_allow_http_auth_preferences.h", |
| 4289 | "http/mock_gssapi_library_posix.cc", |
| 4290 | "http/mock_gssapi_library_posix.h", |
| 4291 | "http/mock_http_cache.cc", |
| 4292 | "http/mock_http_cache.h", |
| 4293 | "http/mock_sspi_library_win.cc", |
| 4294 | "http/mock_sspi_library_win.h", |
| 4295 | "http/transport_security_persister_unittest.cc", |
| 4296 | "http/transport_security_state_unittest.cc", |
| 4297 | "http/url_security_manager_unittest.cc", |
| 4298 | "http2/decoder/decode_buffer_test.cc", |
| 4299 | "http2/decoder/decode_http2_structures_test.cc", |
| 4300 | "http2/decoder/frame_decoder_state_test_util.cc", |
| 4301 | "http2/decoder/frame_decoder_state_test_util.h", |
| 4302 | "http2/decoder/frame_parts.cc", |
| 4303 | "http2/decoder/frame_parts.h", |
| 4304 | "http2/decoder/frame_parts_collector.cc", |
| 4305 | "http2/decoder/frame_parts_collector.h", |
| 4306 | "http2/decoder/frame_parts_collector_listener.cc", |
| 4307 | "http2/decoder/frame_parts_collector_listener.h", |
| 4308 | "http2/decoder/http2_frame_decoder_listener_test_util.cc", |
| 4309 | "http2/decoder/http2_frame_decoder_listener_test_util.h", |
| 4310 | "http2/decoder/http2_frame_decoder_test.cc", |
| 4311 | "http2/decoder/http2_structure_decoder_test.cc", |
bnc | 0f57ba2 | 2017-01-27 02:43:36 | [diff] [blame] | 4312 | "http2/decoder/http2_structure_decoder_test_util.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4313 | "http2/decoder/http2_structure_decoder_test_util.h", |
| 4314 | "http2/decoder/payload_decoders/altsvc_payload_decoder_test.cc", |
| 4315 | "http2/decoder/payload_decoders/continuation_payload_decoder_test.cc", |
| 4316 | "http2/decoder/payload_decoders/data_payload_decoder_test.cc", |
| 4317 | "http2/decoder/payload_decoders/goaway_payload_decoder_test.cc", |
| 4318 | "http2/decoder/payload_decoders/headers_payload_decoder_test.cc", |
| 4319 | "http2/decoder/payload_decoders/payload_decoder_base_test_util.cc", |
| 4320 | "http2/decoder/payload_decoders/payload_decoder_base_test_util.h", |
| 4321 | "http2/decoder/payload_decoders/ping_payload_decoder_test.cc", |
| 4322 | "http2/decoder/payload_decoders/priority_payload_decoder_test.cc", |
| 4323 | "http2/decoder/payload_decoders/push_promise_payload_decoder_test.cc", |
| 4324 | "http2/decoder/payload_decoders/rst_stream_payload_decoder_test.cc", |
| 4325 | "http2/decoder/payload_decoders/settings_payload_decoder_test.cc", |
| 4326 | "http2/decoder/payload_decoders/unknown_payload_decoder_test.cc", |
| 4327 | "http2/decoder/payload_decoders/window_update_payload_decoder_test.cc", |
| 4328 | "http2/hpack/decoder/hpack_block_collector.cc", |
| 4329 | "http2/hpack/decoder/hpack_block_collector.h", |
| 4330 | "http2/hpack/decoder/hpack_block_decoder_test.cc", |
| 4331 | "http2/hpack/decoder/hpack_decoder_state_test.cc", |
| 4332 | "http2/hpack/decoder/hpack_decoder_string_buffer_test.cc", |
| 4333 | "http2/hpack/decoder/hpack_decoder_tables_test.cc", |
| 4334 | "http2/hpack/decoder/hpack_entry_collector.cc", |
| 4335 | "http2/hpack/decoder/hpack_entry_collector.h", |
| 4336 | "http2/hpack/decoder/hpack_entry_decoder_test.cc", |
| 4337 | "http2/hpack/decoder/hpack_entry_type_decoder_test.cc", |
| 4338 | "http2/hpack/decoder/hpack_string_collector.cc", |
| 4339 | "http2/hpack/decoder/hpack_string_collector.h", |
| 4340 | "http2/hpack/decoder/hpack_string_decoder_test.cc", |
| 4341 | "http2/hpack/decoder/hpack_varint_decoder_test.cc", |
| 4342 | "http2/hpack/decoder/hpack_whole_entry_buffer_test.cc", |
| 4343 | "http2/hpack/decoder/http2_hpack_decoder_test.cc", |
| 4344 | "http2/hpack/hpack_string_test.cc", |
| 4345 | "http2/hpack/http2_hpack_constants_test.cc", |
| 4346 | "http2/hpack/huffman/http2_hpack_huffman_decoder_test.cc", |
| 4347 | "http2/hpack/tools/hpack_block_builder.cc", |
| 4348 | "http2/hpack/tools/hpack_block_builder.h", |
| 4349 | "http2/hpack/tools/hpack_block_builder_test.cc", |
| 4350 | "http2/hpack/tools/hpack_example.cc", |
| 4351 | "http2/hpack/tools/hpack_example.h", |
| 4352 | "http2/http2_constants_test.cc", |
| 4353 | "http2/http2_constants_test_util.cc", |
| 4354 | "http2/http2_constants_test_util.h", |
| 4355 | "http2/http2_structures_test.cc", |
| 4356 | "http2/http2_structures_test_util.cc", |
| 4357 | "http2/http2_structures_test_util.h", |
| 4358 | "http2/tools/failure.cc", |
| 4359 | "http2/tools/failure.h", |
| 4360 | "http2/tools/http2_frame_builder.cc", |
| 4361 | "http2/tools/http2_frame_builder.h", |
| 4362 | "http2/tools/http2_random.cc", |
| 4363 | "http2/tools/http2_random.h", |
| 4364 | "http2/tools/random_decoder_test.cc", |
| 4365 | "http2/tools/random_decoder_test.h", |
| 4366 | "http2/tools/random_util.cc", |
| 4367 | "http2/tools/random_util.h", |
| 4368 | "log/file_net_log_observer_unittest.cc", |
| 4369 | "log/net_log_capture_mode_unittest.cc", |
| 4370 | "log/net_log_unittest.cc", |
| 4371 | "log/net_log_util_unittest.cc", |
| 4372 | "log/trace_net_log_observer_unittest.cc", |
| 4373 | "log/write_to_file_net_log_observer_unittest.cc", |
| 4374 | "nqe/effective_connection_type_unittest.cc", |
| 4375 | "nqe/network_qualities_prefs_manager_unittest.cc", |
| 4376 | "nqe/network_quality_estimator_unittest.cc", |
| 4377 | "nqe/network_quality_store_unittest.cc", |
| 4378 | "nqe/observation_buffer_unittest.cc", |
tbansal | 180587c | 2017-02-16 15:13:23 | [diff] [blame] | 4379 | "nqe/socket_watcher_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4380 | "nqe/throughput_analyzer_unittest.cc", |
| 4381 | "proxy/dhcp_proxy_script_adapter_fetcher_win_unittest.cc", |
| 4382 | "proxy/dhcp_proxy_script_fetcher_factory_unittest.cc", |
| 4383 | "proxy/dhcp_proxy_script_fetcher_win_unittest.cc", |
| 4384 | "proxy/mojo_proxy_resolver_factory_impl_unittest.cc", |
| 4385 | "proxy/mojo_proxy_resolver_impl_unittest.cc", |
| 4386 | "proxy/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc", |
| 4387 | "proxy/multi_threaded_proxy_resolver_unittest.cc", |
| 4388 | "proxy/network_delegate_error_observer_unittest.cc", |
| 4389 | "proxy/proxy_bypass_rules_unittest.cc", |
| 4390 | "proxy/proxy_config_service_android_unittest.cc", |
| 4391 | "proxy/proxy_config_service_linux_unittest.cc", |
| 4392 | "proxy/proxy_config_service_win_unittest.cc", |
| 4393 | "proxy/proxy_config_unittest.cc", |
| 4394 | "proxy/proxy_info_unittest.cc", |
| 4395 | "proxy/proxy_list_unittest.cc", |
| 4396 | "proxy/proxy_resolver_factory_mojo_unittest.cc", |
| 4397 | "proxy/proxy_resolver_v8_tracing_unittest.cc", |
| 4398 | "proxy/proxy_resolver_v8_tracing_wrapper_unittest.cc", |
| 4399 | "proxy/proxy_resolver_v8_unittest.cc", |
| 4400 | "proxy/proxy_script_decider_unittest.cc", |
| 4401 | "proxy/proxy_script_fetcher_impl_unittest.cc", |
| 4402 | "proxy/proxy_server_unittest.cc", |
| 4403 | "proxy/proxy_service_mojo_unittest.cc", |
| 4404 | "proxy/proxy_service_unittest.cc", |
| 4405 | "quic/chromium/bidirectional_stream_quic_impl_unittest.cc", |
| 4406 | "quic/chromium/crypto/proof_test_chromium.cc", |
| 4407 | "quic/chromium/crypto/proof_verifier_chromium_test.cc", |
| 4408 | "quic/chromium/crypto_test_utils_chromium.cc", |
| 4409 | "quic/chromium/mock_crypto_client_stream_factory.cc", |
| 4410 | "quic/chromium/mock_crypto_client_stream_factory.h", |
| 4411 | "quic/chromium/mock_network_change_notifier.cc", |
| 4412 | "quic/chromium/mock_network_change_notifier.h", |
| 4413 | "quic/chromium/mock_quic_data.cc", |
| 4414 | "quic/chromium/mock_quic_data.h", |
| 4415 | "quic/chromium/network_connection_unittest.cc", |
| 4416 | "quic/chromium/properties_based_quic_server_info_test.cc", |
| 4417 | "quic/chromium/quic_address_mismatch_test.cc", |
| 4418 | "quic/chromium/quic_chromium_alarm_factory_test.cc", |
| 4419 | "quic/chromium/quic_chromium_client_session_peer.cc", |
| 4420 | "quic/chromium/quic_chromium_client_session_peer.h", |
| 4421 | "quic/chromium/quic_chromium_client_session_test.cc", |
| 4422 | "quic/chromium/quic_chromium_client_stream_test.cc", |
| 4423 | "quic/chromium/quic_chromium_connection_helper_test.cc", |
| 4424 | "quic/chromium/quic_clock_skew_detector_test.cc", |
| 4425 | "quic/chromium/quic_end_to_end_unittest.cc", |
| 4426 | "quic/chromium/quic_http_stream_test.cc", |
| 4427 | "quic/chromium/quic_http_utils_test.cc", |
| 4428 | "quic/chromium/quic_network_transaction_unittest.cc", |
| 4429 | "quic/chromium/quic_stream_factory_test.cc", |
| 4430 | "quic/chromium/quic_test_packet_maker.cc", |
| 4431 | "quic/chromium/quic_test_packet_maker.h", |
| 4432 | "quic/chromium/quic_utils_chromium_test.cc", |
| 4433 | "quic/core/congestion_control/bandwidth_sampler_test.cc", |
| 4434 | "quic/core/congestion_control/bbr_sender_test.cc", |
| 4435 | "quic/core/congestion_control/cubic_bytes_test.cc", |
| 4436 | "quic/core/congestion_control/cubic_test.cc", |
| 4437 | "quic/core/congestion_control/general_loss_algorithm_test.cc", |
| 4438 | "quic/core/congestion_control/hybrid_slow_start_test.cc", |
| 4439 | "quic/core/congestion_control/pacing_sender_test.cc", |
| 4440 | "quic/core/congestion_control/prr_sender_test.cc", |
| 4441 | "quic/core/congestion_control/rtt_stats_test.cc", |
| 4442 | "quic/core/congestion_control/send_algorithm_test.cc", |
| 4443 | "quic/core/congestion_control/tcp_cubic_sender_bytes_test.cc", |
| 4444 | "quic/core/congestion_control/tcp_cubic_sender_packets_test.cc", |
| 4445 | "quic/core/congestion_control/windowed_filter_test.cc", |
| 4446 | "quic/core/crypto/aes_128_gcm_12_decrypter_test.cc", |
| 4447 | "quic/core/crypto/aes_128_gcm_12_encrypter_test.cc", |
| 4448 | "quic/core/crypto/cert_compressor_test.cc", |
| 4449 | "quic/core/crypto/chacha20_poly1305_decrypter_test.cc", |
| 4450 | "quic/core/crypto/chacha20_poly1305_encrypter_test.cc", |
| 4451 | "quic/core/crypto/channel_id_test.cc", |
| 4452 | "quic/core/crypto/common_cert_set_test.cc", |
| 4453 | "quic/core/crypto/crypto_framer_test.cc", |
| 4454 | "quic/core/crypto/crypto_handshake_message_test.cc", |
| 4455 | "quic/core/crypto/crypto_secret_boxer_test.cc", |
| 4456 | "quic/core/crypto/crypto_server_test.cc", |
| 4457 | "quic/core/crypto/crypto_utils_test.cc", |
| 4458 | "quic/core/crypto/curve25519_key_exchange_test.cc", |
| 4459 | "quic/core/crypto/local_strike_register_client_test.cc", |
| 4460 | "quic/core/crypto/null_decrypter_test.cc", |
| 4461 | "quic/core/crypto/null_encrypter_test.cc", |
| 4462 | "quic/core/crypto/p256_key_exchange_test.cc", |
| 4463 | "quic/core/crypto/quic_compressed_certs_cache_test.cc", |
| 4464 | "quic/core/crypto/quic_crypto_client_config_test.cc", |
| 4465 | "quic/core/crypto/quic_crypto_server_config_test.cc", |
| 4466 | "quic/core/crypto/quic_random_test.cc", |
| 4467 | "quic/core/crypto/strike_register_test.cc", |
| 4468 | "quic/core/frames/quic_frames_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4469 | "quic/core/quic_alarm_test.cc", |
| 4470 | "quic/core/quic_arena_scoped_ptr_test.cc", |
| 4471 | "quic/core/quic_bandwidth_test.cc", |
| 4472 | "quic/core/quic_buffered_packet_store_test.cc", |
| 4473 | "quic/core/quic_client_promised_info_test.cc", |
| 4474 | "quic/core/quic_client_push_promise_index_test.cc", |
| 4475 | "quic/core/quic_config_test.cc", |
| 4476 | "quic/core/quic_connection_test.cc", |
| 4477 | "quic/core/quic_crypto_client_stream_test.cc", |
| 4478 | "quic/core/quic_crypto_server_stream_test.cc", |
| 4479 | "quic/core/quic_crypto_stream_test.cc", |
| 4480 | "quic/core/quic_data_writer_test.cc", |
| 4481 | "quic/core/quic_error_codes_test.cc", |
| 4482 | "quic/core/quic_flow_controller_test.cc", |
| 4483 | "quic/core/quic_framer_test.cc", |
| 4484 | "quic/core/quic_header_list_test.cc", |
| 4485 | "quic/core/quic_headers_stream_test.cc", |
| 4486 | |
| 4487 | # "quic/core/quic_multipath_received_packet_manager_test.cc", |
| 4488 | # "quic/core/quic_multipath_transmissions_map_test.cc", |
| 4489 | "quic/core/quic_one_block_arena_test.cc", |
| 4490 | "quic/core/quic_packet_creator_test.cc", |
| 4491 | "quic/core/quic_packet_generator_test.cc", |
| 4492 | "quic/core/quic_received_packet_manager_test.cc", |
| 4493 | "quic/core/quic_sent_packet_manager_test.cc", |
| 4494 | "quic/core/quic_server_id_test.cc", |
| 4495 | "quic/core/quic_server_session_base_test.cc", |
| 4496 | "quic/core/quic_session_test.cc", |
| 4497 | "quic/core/quic_simple_buffer_allocator_test.cc", |
| 4498 | "quic/core/quic_socket_address_coder_test.cc", |
| 4499 | "quic/core/quic_spdy_stream_test.cc", |
| 4500 | "quic/core/quic_stream_sequencer_buffer_test.cc", |
| 4501 | "quic/core/quic_stream_sequencer_test.cc", |
| 4502 | "quic/core/quic_stream_test.cc", |
| 4503 | "quic/core/quic_sustained_bandwidth_recorder_test.cc", |
| 4504 | "quic/core/quic_tag_test.cc", |
| 4505 | "quic/core/quic_time_test.cc", |
| 4506 | "quic/core/quic_unacked_packet_map_test.cc", |
| 4507 | "quic/core/quic_utils_test.cc", |
| 4508 | "quic/core/quic_version_manager_test.cc", |
| 4509 | "quic/core/quic_versions_test.cc", |
| 4510 | "quic/core/quic_write_blocked_list_test.cc", |
| 4511 | "quic/core/spdy_utils_test.cc", |
xunjieli | 16e6ce7a | 2017-02-10 15:42:51 | [diff] [blame] | 4512 | "quic/platform/api/quic_estimate_memory_usage.h", |
mpw | 3f85953 | 2017-02-16 20:00:31 | [diff] [blame] | 4513 | "quic/platform/api/quic_hostname_utils_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4514 | "quic/platform/api/quic_lru_cache_test.cc", |
| 4515 | "quic/platform/api/quic_reference_counted_test.cc", |
| 4516 | "quic/platform/api/quic_str_cat_test.cc", |
| 4517 | "quic/platform/api/quic_text_utils_test.cc", |
fayang | 32caee40 | 2017-02-13 21:00:08 | [diff] [blame] | 4518 | "quic/platform/api/quic_url_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4519 | "quic/platform/impl/quic_chromium_clock_test.cc", |
xunjieli | 16e6ce7a | 2017-02-10 15:42:51 | [diff] [blame] | 4520 | "quic/platform/impl/quic_estimate_memory_usage_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4521 | "quic/quartc/quartc_alarm_factory_test.cc", |
| 4522 | "quic/quartc/quartc_session_test.cc", |
| 4523 | "quic/quartc/quartc_stream_test.cc", |
| 4524 | "quic/test_tools/crypto_test_utils.cc", |
| 4525 | "quic/test_tools/crypto_test_utils.h", |
| 4526 | "quic/test_tools/crypto_test_utils_test.cc", |
| 4527 | "quic/test_tools/delayed_verify_strike_register_client.cc", |
| 4528 | "quic/test_tools/delayed_verify_strike_register_client.h", |
| 4529 | "quic/test_tools/failing_proof_source.cc", |
| 4530 | "quic/test_tools/failing_proof_source.h", |
| 4531 | "quic/test_tools/fake_proof_source.cc", |
| 4532 | "quic/test_tools/fake_proof_source.h", |
| 4533 | "quic/test_tools/mock_clock.cc", |
| 4534 | "quic/test_tools/mock_clock.h", |
| 4535 | "quic/test_tools/mock_crypto_client_stream.cc", |
| 4536 | "quic/test_tools/mock_crypto_client_stream.h", |
| 4537 | "quic/test_tools/mock_quic_client_promised_info.cc", |
| 4538 | "quic/test_tools/mock_quic_client_promised_info.h", |
| 4539 | "quic/test_tools/mock_quic_dispatcher.cc", |
| 4540 | "quic/test_tools/mock_quic_dispatcher.h", |
| 4541 | "quic/test_tools/mock_quic_spdy_client_stream.cc", |
| 4542 | "quic/test_tools/mock_quic_spdy_client_stream.h", |
| 4543 | "quic/test_tools/mock_random.cc", |
| 4544 | "quic/test_tools/mock_random.h", |
| 4545 | "quic/test_tools/quic_buffered_packet_store_peer.cc", |
| 4546 | "quic/test_tools/quic_buffered_packet_store_peer.h", |
| 4547 | "quic/test_tools/quic_client_promised_info_peer.cc", |
| 4548 | "quic/test_tools/quic_client_promised_info_peer.h", |
| 4549 | "quic/test_tools/quic_config_peer.cc", |
| 4550 | "quic/test_tools/quic_config_peer.h", |
| 4551 | "quic/test_tools/quic_connection_peer.cc", |
| 4552 | "quic/test_tools/quic_connection_peer.h", |
| 4553 | "quic/test_tools/quic_crypto_server_config_peer.cc", |
| 4554 | "quic/test_tools/quic_crypto_server_config_peer.h", |
| 4555 | "quic/test_tools/quic_flow_controller_peer.cc", |
| 4556 | "quic/test_tools/quic_flow_controller_peer.h", |
| 4557 | "quic/test_tools/quic_framer_peer.cc", |
| 4558 | "quic/test_tools/quic_framer_peer.h", |
| 4559 | "quic/test_tools/quic_packet_creator_peer.cc", |
| 4560 | "quic/test_tools/quic_packet_creator_peer.h", |
| 4561 | "quic/test_tools/quic_packet_generator_peer.cc", |
| 4562 | "quic/test_tools/quic_packet_generator_peer.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4563 | "quic/test_tools/quic_sent_packet_manager_peer.cc", |
| 4564 | "quic/test_tools/quic_sent_packet_manager_peer.h", |
| 4565 | "quic/test_tools/quic_session_peer.cc", |
| 4566 | "quic/test_tools/quic_session_peer.h", |
| 4567 | "quic/test_tools/quic_spdy_session_peer.cc", |
| 4568 | "quic/test_tools/quic_spdy_session_peer.h", |
| 4569 | "quic/test_tools/quic_spdy_stream_peer.cc", |
| 4570 | "quic/test_tools/quic_spdy_stream_peer.h", |
| 4571 | "quic/test_tools/quic_stream_factory_peer.cc", |
| 4572 | "quic/test_tools/quic_stream_factory_peer.h", |
| 4573 | "quic/test_tools/quic_stream_peer.cc", |
| 4574 | "quic/test_tools/quic_stream_peer.h", |
| 4575 | "quic/test_tools/quic_stream_sequencer_buffer_peer.cc", |
| 4576 | "quic/test_tools/quic_stream_sequencer_buffer_peer.h", |
| 4577 | "quic/test_tools/quic_stream_sequencer_peer.cc", |
| 4578 | "quic/test_tools/quic_stream_sequencer_peer.h", |
| 4579 | "quic/test_tools/quic_sustained_bandwidth_recorder_peer.cc", |
| 4580 | "quic/test_tools/quic_sustained_bandwidth_recorder_peer.h", |
| 4581 | "quic/test_tools/quic_test_utils.cc", |
| 4582 | "quic/test_tools/quic_test_utils.h", |
| 4583 | "quic/test_tools/quic_test_utils_test.cc", |
| 4584 | "quic/test_tools/quic_time_wait_list_manager_peer.cc", |
| 4585 | "quic/test_tools/quic_time_wait_list_manager_peer.h", |
| 4586 | "quic/test_tools/rtt_stats_peer.cc", |
| 4587 | "quic/test_tools/rtt_stats_peer.h", |
| 4588 | "quic/test_tools/simple_quic_framer.cc", |
| 4589 | "quic/test_tools/simple_quic_framer.h", |
| 4590 | "quic/test_tools/simulator/actor.cc", |
| 4591 | "quic/test_tools/simulator/actor.h", |
| 4592 | "quic/test_tools/simulator/alarm_factory.cc", |
| 4593 | "quic/test_tools/simulator/alarm_factory.h", |
| 4594 | "quic/test_tools/simulator/link.cc", |
| 4595 | "quic/test_tools/simulator/link.h", |
| 4596 | "quic/test_tools/simulator/packet_filter.cc", |
| 4597 | "quic/test_tools/simulator/packet_filter.h", |
| 4598 | "quic/test_tools/simulator/port.cc", |
| 4599 | "quic/test_tools/simulator/port.h", |
| 4600 | "quic/test_tools/simulator/queue.cc", |
| 4601 | "quic/test_tools/simulator/queue.h", |
| 4602 | "quic/test_tools/simulator/quic_endpoint.cc", |
| 4603 | "quic/test_tools/simulator/quic_endpoint.h", |
| 4604 | "quic/test_tools/simulator/quic_endpoint_test.cc", |
| 4605 | "quic/test_tools/simulator/simulator.cc", |
| 4606 | "quic/test_tools/simulator/simulator.h", |
| 4607 | "quic/test_tools/simulator/simulator_test.cc", |
| 4608 | "quic/test_tools/simulator/switch.cc", |
| 4609 | "quic/test_tools/simulator/switch.h", |
| 4610 | "quic/test_tools/simulator/traffic_policer.cc", |
| 4611 | "quic/test_tools/simulator/traffic_policer.h", |
| 4612 | "quic/test_tools/test_task_runner.cc", |
| 4613 | "quic/test_tools/test_task_runner.h", |
| 4614 | "sdch/sdch_owner_unittest.cc", |
| 4615 | "socket/client_socket_pool_base_unittest.cc", |
| 4616 | "socket/mock_client_socket_pool_manager.cc", |
| 4617 | "socket/mock_client_socket_pool_manager.h", |
| 4618 | "socket/sequenced_socket_data_unittest.cc", |
| 4619 | "socket/socket_bio_adapter_unittest.cc", |
| 4620 | "socket/socks5_client_socket_unittest.cc", |
| 4621 | "socket/socks_client_socket_pool_unittest.cc", |
| 4622 | "socket/socks_client_socket_unittest.cc", |
| 4623 | "socket/ssl_client_socket_pool_unittest.cc", |
| 4624 | "socket/ssl_client_socket_unittest.cc", |
| 4625 | "socket/ssl_server_socket_unittest.cc", |
| 4626 | "socket/tcp_client_socket_unittest.cc", |
| 4627 | "socket/tcp_server_socket_unittest.cc", |
| 4628 | "socket/tcp_socket_unittest.cc", |
| 4629 | "socket/transport_client_socket_pool_test_util.cc", |
| 4630 | "socket/transport_client_socket_pool_test_util.h", |
| 4631 | "socket/transport_client_socket_pool_unittest.cc", |
| 4632 | "socket/transport_client_socket_unittest.cc", |
| 4633 | "socket/udp_socket_unittest.cc", |
| 4634 | "socket/unix_domain_client_socket_posix_unittest.cc", |
| 4635 | "socket/unix_domain_server_socket_posix_unittest.cc", |
| 4636 | "socket/websocket_endpoint_lock_manager_unittest.cc", |
| 4637 | "socket/websocket_transport_client_socket_pool_unittest.cc", |
yasong | 40c43d4 | 2017-02-13 22:23:29 | [diff] [blame] | 4638 | "spdy/array_output_buffer.cc", |
| 4639 | "spdy/array_output_buffer.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4640 | "spdy/bidirectional_stream_spdy_impl_unittest.cc", |
| 4641 | "spdy/buffered_spdy_framer_unittest.cc", |
| 4642 | "spdy/fuzzing/hpack_fuzz_util_test.cc", |
| 4643 | "spdy/header_coalescer_test.cc", |
| 4644 | "spdy/hpack/hpack_decoder2_test.cc", |
| 4645 | "spdy/hpack/hpack_decoder3_test.cc", |
| 4646 | "spdy/hpack/hpack_decoder_test.cc", |
| 4647 | "spdy/hpack/hpack_encoder_test.cc", |
| 4648 | "spdy/hpack/hpack_entry_test.cc", |
| 4649 | "spdy/hpack/hpack_header_table_test.cc", |
| 4650 | "spdy/hpack/hpack_huffman_decoder_test.cc", |
| 4651 | "spdy/hpack/hpack_huffman_table_test.cc", |
| 4652 | "spdy/hpack/hpack_input_stream_test.cc", |
| 4653 | "spdy/hpack/hpack_output_stream_test.cc", |
| 4654 | "spdy/hpack/hpack_round_trip_test.cc", |
| 4655 | "spdy/hpack/hpack_static_table_test.cc", |
| 4656 | "spdy/http2_priority_dependencies_unittest.cc", |
| 4657 | "spdy/http2_write_scheduler_test.cc", |
| 4658 | "spdy/mock_spdy_framer_visitor.cc", |
| 4659 | "spdy/mock_spdy_framer_visitor.h", |
| 4660 | "spdy/priority_write_scheduler_test.cc", |
| 4661 | "spdy/spdy_alt_svc_wire_format_test.cc", |
| 4662 | "spdy/spdy_buffer_unittest.cc", |
| 4663 | "spdy/spdy_deframer_visitor.cc", |
| 4664 | "spdy/spdy_deframer_visitor.h", |
| 4665 | "spdy/spdy_deframer_visitor_test.cc", |
| 4666 | "spdy/spdy_frame_builder_test.cc", |
| 4667 | "spdy/spdy_frame_reader_test.cc", |
| 4668 | "spdy/spdy_framer_test.cc", |
| 4669 | "spdy/spdy_header_block_test.cc", |
| 4670 | "spdy/spdy_header_indexing_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4671 | "spdy/spdy_http_stream_unittest.cc", |
| 4672 | "spdy/spdy_http_utils_unittest.cc", |
| 4673 | "spdy/spdy_network_transaction_unittest.cc", |
| 4674 | "spdy/spdy_no_op_visitor.cc", |
| 4675 | "spdy/spdy_no_op_visitor.h", |
| 4676 | "spdy/spdy_pinnable_buffer_piece_test.cc", |
| 4677 | "spdy/spdy_prefixed_buffer_reader_test.cc", |
| 4678 | "spdy/spdy_protocol_test.cc", |
| 4679 | "spdy/spdy_protocol_test_utils.cc", |
| 4680 | "spdy/spdy_protocol_test_utils.h", |
| 4681 | "spdy/spdy_proxy_client_socket_unittest.cc", |
| 4682 | "spdy/spdy_read_queue_unittest.cc", |
| 4683 | "spdy/spdy_session_pool_unittest.cc", |
| 4684 | "spdy/spdy_session_test_util.cc", |
| 4685 | "spdy/spdy_session_test_util.h", |
| 4686 | "spdy/spdy_session_unittest.cc", |
| 4687 | "spdy/spdy_stream_test_util.cc", |
| 4688 | "spdy/spdy_stream_test_util.h", |
| 4689 | "spdy/spdy_stream_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4690 | "spdy/spdy_test_utils.cc", |
| 4691 | "spdy/spdy_test_utils.h", |
| 4692 | "spdy/spdy_write_queue_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4693 | "ssl/channel_id_service_unittest.cc", |
| 4694 | "ssl/client_cert_store_mac_unittest.cc", |
| 4695 | "ssl/client_cert_store_nss_unittest.cc", |
| 4696 | "ssl/client_cert_store_unittest-inl.h", |
| 4697 | "ssl/client_cert_store_win_unittest.cc", |
| 4698 | "ssl/default_channel_id_store_unittest.cc", |
| 4699 | "ssl/openssl_client_key_store_unittest.cc", |
| 4700 | "ssl/ssl_cipher_suite_names_unittest.cc", |
| 4701 | "ssl/ssl_client_auth_cache_unittest.cc", |
| 4702 | "ssl/ssl_client_session_cache_unittest.cc", |
| 4703 | "ssl/ssl_config_service_unittest.cc", |
| 4704 | "ssl/ssl_config_unittest.cc", |
| 4705 | "ssl/ssl_connection_status_flags_unittest.cc", |
| 4706 | "ssl/ssl_platform_key_android_unittest.cc", |
| 4707 | "ssl/ssl_platform_key_mac_unittest.cc", |
| 4708 | "ssl/ssl_platform_key_nss_unittest.cc", |
| 4709 | "ssl/ssl_platform_key_util_unittest.cc", |
| 4710 | "ssl/ssl_private_key_test_util.cc", |
| 4711 | "ssl/ssl_private_key_test_util.h", |
| 4712 | "test/embedded_test_server/embedded_test_server_unittest.cc", |
| 4713 | "test/embedded_test_server/http_request_unittest.cc", |
| 4714 | "test/embedded_test_server/http_response_unittest.cc", |
| 4715 | "test/python_utils_unittest.cc", |
| 4716 | "test/run_all_unittests.cc", |
| 4717 | "third_party/nist-pkits/pkits_testcases-inl.h", |
| 4718 | "tools/content_decoder_tool/content_decoder_tool.cc", |
| 4719 | "tools/content_decoder_tool/content_decoder_tool.h", |
| 4720 | "tools/content_decoder_tool/content_decoder_tool_unittest.cc", |
| 4721 | "tools/quic/quic_simple_client_test.cc", |
fayang | 3330b07 | 2017-02-01 23:54:26 | [diff] [blame] | 4722 | "tools/quic/test_tools/mock_quic_session_visitor.cc", |
| 4723 | "tools/quic/test_tools/mock_quic_session_visitor.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4724 | "tools/tld_cleanup/tld_cleanup_util_unittest.cc", |
| 4725 | "url_request/report_sender_unittest.cc", |
| 4726 | "url_request/sdch_dictionary_fetcher_unittest.cc", |
| 4727 | "url_request/url_fetcher_impl_unittest.cc", |
| 4728 | "url_request/url_fetcher_response_writer_unittest.cc", |
| 4729 | "url_request/url_request_context_builder_unittest.cc", |
| 4730 | "url_request/url_request_context_unittest.cc", |
| 4731 | "url_request/url_request_data_job_unittest.cc", |
| 4732 | "url_request/url_request_file_dir_job_unittest.cc", |
| 4733 | "url_request/url_request_file_job_unittest.cc", |
| 4734 | "url_request/url_request_filter_unittest.cc", |
| 4735 | "url_request/url_request_ftp_job_unittest.cc", |
| 4736 | "url_request/url_request_http_job_unittest.cc", |
| 4737 | "url_request/url_request_job_factory_impl_unittest.cc", |
| 4738 | "url_request/url_request_job_unittest.cc", |
| 4739 | "url_request/url_request_quic_unittest.cc", |
| 4740 | "url_request/url_request_simple_job_unittest.cc", |
| 4741 | "url_request/url_request_throttler_simulation_unittest.cc", |
| 4742 | "url_request/url_request_throttler_test_support.cc", |
| 4743 | "url_request/url_request_throttler_test_support.h", |
| 4744 | "url_request/url_request_throttler_unittest.cc", |
| 4745 | "url_request/url_request_unittest.cc", |
| 4746 | "url_request/view_cache_helper_unittest.cc", |
| 4747 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4748 | |
| 4749 | configs += [ |
| 4750 | "//build/config:precompiled_headers", |
| 4751 | |
| 4752 | # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 4753 | "//build/config/compiler:no_size_t_to_int_warning", |
| 4754 | ] |
| 4755 | defines = [] |
| 4756 | |
| 4757 | deps = [ |
rsleevi | a491218 | 2017-01-27 00:38:25 | [diff] [blame] | 4758 | ":cert_verify_proc_whitelist_unittest_data", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4759 | ":net", |
| 4760 | ":simple_quic_tools", |
| 4761 | ":test_support", |
| 4762 | "//base", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4763 | "//base/third_party/dynamic_annotations", |
| 4764 | "//crypto", |
| 4765 | "//crypto:platform", |
| 4766 | "//crypto:test_support", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4767 | "//net/base/registry_controlled_domains", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4768 | "//testing/gmock", |
| 4769 | "//testing/gtest", |
| 4770 | "//third_party/zlib", |
| 4771 | "//url", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 4772 | "//url:url_features", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4773 | ] |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4774 | if (!is_proto_quic) { |
| 4775 | deps += [ |
| 4776 | ":extras", |
| 4777 | "//base:i18n", |
| 4778 | "//sql", |
| 4779 | ] |
| 4780 | } else { |
| 4781 | sources -= [ |
| 4782 | "extras/sqlite/sqlite_channel_id_store_unittest.cc", |
| 4783 | "extras/sqlite/sqlite_persistent_cookie_store_unittest.cc", |
| 4784 | ] |
| 4785 | } |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4786 | |
jbudorick | 944eb92 | 2016-06-20 15:38:30 | [diff] [blame] | 4787 | data = [] |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 4788 | data_deps = [ |
| 4789 | "third_party/nist-pkits/", |
| 4790 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4791 | |
| 4792 | if (is_linux || is_mac || is_win) { |
| 4793 | deps += [ |
| 4794 | "//third_party/pyftpdlib/", |
| 4795 | "//third_party/pywebsocket/", |
| 4796 | "//third_party/tlslite/", |
| 4797 | ] |
mattm | 6586b43 | 2016-02-12 04:52:39 | [diff] [blame] | 4798 | data_deps += [ |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4799 | "//third_party/pyftpdlib/", |
| 4800 | "//third_party/pywebsocket/", |
| 4801 | "//third_party/tlslite/", |
| 4802 | ] |
| 4803 | data += [ |
| 4804 | "tools/testserver/", |
| 4805 | "//third_party/pyftpdlib/", |
| 4806 | "//third_party/pywebsocket/", |
| 4807 | "//third_party/tlslite/", |
| 4808 | "$root_out_dir/pyproto/google/", |
dpranke | f497c796 | 2015-07-31 19:46:23 | [diff] [blame] | 4809 | ] |
| 4810 | } |
| 4811 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4812 | if (is_desktop_linux) { |
| 4813 | deps += [ ":epoll_quic_tools" ] |
| 4814 | } |
| 4815 | if (is_linux) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4816 | sources += [ |
| 4817 | "tools/quic/chlo_extractor_test.cc", |
| 4818 | "tools/quic/end_to_end_test.cc", |
| 4819 | "tools/quic/platform/impl/quic_epoll_clock_test.cc", |
| 4820 | "tools/quic/platform/impl/quic_socket_utils_test.cc", |
| 4821 | "tools/quic/quic_client_session_test.cc", |
| 4822 | "tools/quic/quic_client_test.cc", |
| 4823 | "tools/quic/quic_dispatcher_test.cc", |
| 4824 | "tools/quic/quic_epoll_alarm_factory_test.cc", |
| 4825 | "tools/quic/quic_epoll_connection_helper_test.cc", |
| 4826 | "tools/quic/quic_http_response_cache_test.cc", |
| 4827 | "tools/quic/quic_server_test.cc", |
| 4828 | "tools/quic/quic_simple_server_session_helper_test.cc", |
| 4829 | "tools/quic/quic_simple_server_session_test.cc", |
| 4830 | "tools/quic/quic_simple_server_stream_test.cc", |
| 4831 | "tools/quic/quic_simple_server_test.cc", |
| 4832 | "tools/quic/quic_spdy_client_stream_test.cc", |
| 4833 | "tools/quic/quic_spdy_server_stream_base_test.cc", |
| 4834 | "tools/quic/quic_time_wait_list_manager_test.cc", |
| 4835 | "tools/quic/stateless_rejector_test.cc", |
| 4836 | "tools/quic/test_tools/limited_mtu_test_writer.cc", |
| 4837 | "tools/quic/test_tools/limited_mtu_test_writer.h", |
| 4838 | "tools/quic/test_tools/mock_epoll_server.cc", |
| 4839 | "tools/quic/test_tools/mock_epoll_server.h", |
| 4840 | "tools/quic/test_tools/mock_quic_time_wait_list_manager.cc", |
| 4841 | "tools/quic/test_tools/mock_quic_time_wait_list_manager.h", |
| 4842 | "tools/quic/test_tools/packet_dropping_test_writer.cc", |
| 4843 | "tools/quic/test_tools/packet_dropping_test_writer.h", |
| 4844 | "tools/quic/test_tools/packet_reordering_writer.cc", |
| 4845 | "tools/quic/test_tools/packet_reordering_writer.h", |
| 4846 | "tools/quic/test_tools/quic_client_peer.cc", |
| 4847 | "tools/quic/test_tools/quic_client_peer.h", |
| 4848 | "tools/quic/test_tools/quic_dispatcher_peer.cc", |
| 4849 | "tools/quic/test_tools/quic_dispatcher_peer.h", |
| 4850 | "tools/quic/test_tools/quic_server_peer.cc", |
| 4851 | "tools/quic/test_tools/quic_server_peer.h", |
| 4852 | "tools/quic/test_tools/quic_test_client.cc", |
| 4853 | "tools/quic/test_tools/quic_test_client.h", |
| 4854 | "tools/quic/test_tools/quic_test_server.cc", |
| 4855 | "tools/quic/test_tools/quic_test_server.h", |
| 4856 | "tools/quic/test_tools/server_thread.cc", |
| 4857 | "tools/quic/test_tools/server_thread.h", |
| 4858 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4859 | deps += [ |
| 4860 | ":epoll_quic_tools", |
| 4861 | ":epoll_server", |
brettw | bc8b2a2 | 2015-07-28 18:24:42 | [diff] [blame] | 4862 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4863 | } |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 4864 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4865 | if (is_mac || is_ios) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4866 | sources += [ "base/mac/url_conversions_unittest.mm" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4867 | } |
| 4868 | |
mattm | af868e7 | 2016-09-23 23:25:20 | [diff] [blame] | 4869 | if (is_mac) { |
| 4870 | libs = [ "Security.framework" ] |
| 4871 | } |
| 4872 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4873 | if (is_chromeos) { |
| 4874 | sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] |
| 4875 | } |
| 4876 | |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4877 | if (!is_proto_quic && v8_use_external_startup_data) { |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4878 | deps += [ "//gin" ] |
| 4879 | } |
| 4880 | |
| 4881 | if (!use_nss_certs) { |
| 4882 | sources -= [ |
mattm | 4abbcdbf | 2016-11-30 20:23:13 | [diff] [blame] | 4883 | "cert/internal/cert_issuer_source_nss_unittest.cc", |
mattm | 9c63d44 | 2016-09-03 00:45:51 | [diff] [blame] | 4884 | "cert/internal/trust_store_nss_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4885 | "cert/nss_cert_database_unittest.cc", |
| 4886 | "ssl/client_cert_store_nss_unittest.cc", |
davidben | 983d610b | 2016-12-14 19:35:40 | [diff] [blame] | 4887 | "ssl/ssl_platform_key_nss_unittest.cc", |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 4888 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4889 | if (is_chromeos) { # Already removed for all non-ChromeOS builds. |
davidben | 2bcbc6b | 2015-04-22 02:36:41 | [diff] [blame] | 4890 | sources -= [ |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4891 | "cert/nss_cert_database_chromeos_unittest.cc", |
| 4892 | "cert/nss_profile_filter_chromeos_unittest.cc", |
davidben | 2bcbc6b | 2015-04-22 02:36:41 | [diff] [blame] | 4893 | ] |
brettw | 43ae0e1 | 2015-07-14 22:12:36 | [diff] [blame] | 4894 | } |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 4895 | } |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4896 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4897 | if (use_kerberos) { |
| 4898 | defines += [ "USE_KERBEROS" ] |
| 4899 | } |
| 4900 | |
| 4901 | # These are excluded on Android, because the actual Kerberos support, which |
| 4902 | # these test, is in a separate app on Android. |
| 4903 | if (!use_kerberos || is_android) { |
| 4904 | sources -= [ |
| 4905 | "http/http_auth_gssapi_posix_unittest.cc", |
| 4906 | "http/mock_gssapi_library_posix.cc", |
| 4907 | "http/mock_gssapi_library_posix.h", |
| 4908 | ] |
| 4909 | } |
| 4910 | if (!use_kerberos) { |
| 4911 | sources -= [ "http/http_auth_handler_negotiate_unittest.cc" ] |
| 4912 | } |
| 4913 | |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 4914 | if (!use_nss_certs) { |
svaldez | a1714ab | 2016-03-18 20:47:53 | [diff] [blame] | 4915 | # Only include this test when using NSS for cert verification. |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4916 | sources -= [ "cert_net/nss_ocsp_unittest.cc" ] |
| 4917 | } |
| 4918 | |
| 4919 | if (!use_openssl_certs) { |
| 4920 | sources -= [ "ssl/openssl_client_key_store_unittest.cc" ] |
| 4921 | } |
| 4922 | |
jbudorick | 1273a84 | 2016-04-01 19:50:05 | [diff] [blame] | 4923 | if (enable_websockets) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4924 | sources += [ |
| 4925 | "server/http_connection_unittest.cc", |
| 4926 | "server/http_server_response_info_unittest.cc", |
| 4927 | "server/http_server_unittest.cc", |
| 4928 | "server/web_socket_encoder_unittest.cc", |
| 4929 | "websockets/websocket_basic_stream_test.cc", |
| 4930 | "websockets/websocket_channel_test.cc", |
| 4931 | "websockets/websocket_deflate_parameters_test.cc", |
| 4932 | "websockets/websocket_deflate_predictor_impl_test.cc", |
| 4933 | "websockets/websocket_deflate_stream_test.cc", |
| 4934 | "websockets/websocket_deflater_test.cc", |
| 4935 | "websockets/websocket_end_to_end_test.cc", |
| 4936 | "websockets/websocket_errors_test.cc", |
| 4937 | "websockets/websocket_extension_parser_test.cc", |
| 4938 | "websockets/websocket_extension_test.cc", |
| 4939 | "websockets/websocket_frame_parser_test.cc", |
| 4940 | "websockets/websocket_frame_test.cc", |
| 4941 | "websockets/websocket_handshake_challenge_test.cc", |
| 4942 | "websockets/websocket_handshake_stream_create_helper_test.cc", |
| 4943 | "websockets/websocket_inflater_test.cc", |
| 4944 | "websockets/websocket_stream_cookie_test.cc", |
| 4945 | "websockets/websocket_stream_create_test_base.cc", |
| 4946 | "websockets/websocket_stream_create_test_base.h", |
| 4947 | "websockets/websocket_stream_test.cc", |
| 4948 | "websockets/websocket_test_util.cc", |
| 4949 | "websockets/websocket_test_util.h", |
| 4950 | ] |
jbudorick | 1273a84 | 2016-04-01 19:50:05 | [diff] [blame] | 4951 | deps += [ ":http_server" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4952 | } |
| 4953 | |
| 4954 | if (disable_file_support) { |
| 4955 | sources -= [ |
| 4956 | "base/directory_lister_unittest.cc", |
Thiago Farina | d673bb12 | 2016-01-06 23:18:16 | [diff] [blame] | 4957 | "base/directory_listing_unittest.cc", |
shahriar.rostami | a8c06daf | 2016-02-12 00:07:04 | [diff] [blame] | 4958 | "url_request/url_request_file_dir_job_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4959 | "url_request/url_request_file_job_unittest.cc", |
| 4960 | ] |
| 4961 | } |
| 4962 | |
| 4963 | if (disable_ftp_support) { |
| 4964 | sources -= [ |
| 4965 | "ftp/ftp_auth_cache_unittest.cc", |
| 4966 | "ftp/ftp_ctrl_response_buffer_unittest.cc", |
| 4967 | "ftp/ftp_directory_listing_parser_ls_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4968 | "ftp/ftp_directory_listing_parser_unittest.cc", |
| 4969 | "ftp/ftp_directory_listing_parser_unittest.h", |
| 4970 | "ftp/ftp_directory_listing_parser_vms_unittest.cc", |
| 4971 | "ftp/ftp_directory_listing_parser_windows_unittest.cc", |
| 4972 | "ftp/ftp_network_transaction_unittest.cc", |
| 4973 | "ftp/ftp_util_unittest.cc", |
| 4974 | "url_request/url_request_ftp_job_unittest.cc", |
| 4975 | ] |
| 4976 | } |
| 4977 | |
| 4978 | if (!enable_built_in_dns) { |
| 4979 | sources -= [ |
| 4980 | "dns/address_sorter_posix_unittest.cc", |
| 4981 | "dns/address_sorter_unittest.cc", |
| 4982 | ] |
| 4983 | } |
| 4984 | |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 4985 | if (use_v8_in_net) { |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4986 | deps += [ ":net_with_v8" ] |
| 4987 | } else { |
| 4988 | sources -= [ |
| 4989 | "proxy/proxy_resolver_v8_tracing_unittest.cc", |
| 4990 | "proxy/proxy_resolver_v8_tracing_wrapper_unittest.cc", |
| 4991 | "proxy/proxy_resolver_v8_unittest.cc", |
| 4992 | ] |
| 4993 | } |
| 4994 | |
| 4995 | if (use_v8_in_net && !is_android) { |
| 4996 | deps += [ |
| 4997 | ":net_browser_services", |
| 4998 | ":net_utility_services", |
rockot | c637caf9b | 2016-02-10 09:57:08 | [diff] [blame] | 4999 | "//mojo/edk/system", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5000 | ] |
| 5001 | } else { |
| 5002 | sources -= [ |
| 5003 | "dns/host_resolver_mojo_unittest.cc", |
| 5004 | "dns/mojo_host_resolver_impl_unittest.cc", |
| 5005 | "proxy/mojo_proxy_resolver_factory_impl_unittest.cc", |
| 5006 | "proxy/mojo_proxy_resolver_impl_unittest.cc", |
| 5007 | "proxy/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc", |
| 5008 | "proxy/proxy_resolver_factory_mojo_unittest.cc", |
| 5009 | "proxy/proxy_service_mojo_unittest.cc", |
| 5010 | ] |
| 5011 | } |
| 5012 | |
| 5013 | if (!enable_mdns) { |
| 5014 | sources -= [ |
| 5015 | "dns/mdns_cache_unittest.cc", |
| 5016 | "dns/mdns_client_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5017 | ] |
| 5018 | } |
| 5019 | |
| 5020 | if (is_ios) { |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5021 | sources -= [ |
| 5022 | # TODO(droger): The following tests are disabled because the |
| 5023 | # implementation is missing or incomplete. |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5024 | "disk_cache/backend_unittest.cc", |
| 5025 | "disk_cache/blockfile/block_files_unittest.cc", |
| 5026 | |
| 5027 | # Need to read input data files. |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5028 | "socket/ssl_server_socket_unittest.cc", |
| 5029 | "spdy/fuzzing/hpack_fuzz_util_test.cc", |
| 5030 | |
| 5031 | # Need TestServer. |
| 5032 | "cert_net/cert_net_fetcher_impl_unittest.cc", |
| 5033 | "proxy/proxy_script_fetcher_impl_unittest.cc", |
| 5034 | "socket/ssl_client_socket_unittest.cc", |
| 5035 | "url_request/url_fetcher_impl_unittest.cc", |
| 5036 | "url_request/url_request_context_builder_unittest.cc", |
| 5037 | |
| 5038 | # Needs GetAppOutput(). |
| 5039 | "test/python_utils_unittest.cc", |
| 5040 | |
| 5041 | # The following tests are disabled because they don't apply to |
| 5042 | # iOS. |
| 5043 | # OS is not "linux" or "freebsd" or "openbsd". |
| 5044 | "socket/unix_domain_client_socket_posix_unittest.cc", |
| 5045 | "socket/unix_domain_server_socket_posix_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5046 | ] |
rsesek | 7d4ab4bc | 2016-07-22 17:35:13 | [diff] [blame] | 5047 | |
| 5048 | bundle_deps = [ ":net_unittests_bundle_data" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5049 | } |
| 5050 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 5051 | # Unit tests that aren't supported by the current ICU alternatives on Android. |
| 5052 | if (is_android && use_platform_icu_alternatives) { |
| 5053 | sources -= [ |
| 5054 | "base/filename_util_unittest.cc", |
| 5055 | "base/url_util_unittest.cc", |
| 5056 | "cert/x509_certificate_unittest.cc", |
| 5057 | "proxy/proxy_resolver_v8_unittest.cc", |
| 5058 | "url_request/url_request_job_unittest.cc", |
| 5059 | ] |
| 5060 | } |
| 5061 | |
| 5062 | # Unit tests that are not supported by the current ICU alternatives on iOS. |
| 5063 | if (is_ios && use_platform_icu_alternatives) { |
| 5064 | sources -= [ |
| 5065 | "base/filename_util_unittest.cc", |
| 5066 | "base/url_util_unittest.cc", |
| 5067 | "cert/x509_certificate_unittest.cc", |
| 5068 | "http/http_auth_handler_basic_unittest.cc", |
| 5069 | "http/http_auth_handler_digest_unittest.cc", |
| 5070 | "http/http_auth_handler_factory_unittest.cc", |
| 5071 | "http/http_auth_unittest.cc", |
| 5072 | "http/http_content_disposition_unittest.cc", |
| 5073 | "http/http_network_transaction_unittest.cc", |
| 5074 | "http/http_proxy_client_socket_pool_unittest.cc", |
| 5075 | "socket/ssl_client_socket_pool_unittest.cc", |
| 5076 | "spdy/spdy_network_transaction_unittest.cc", |
| 5077 | "spdy/spdy_proxy_client_socket_unittest.cc", |
| 5078 | "url_request/url_request_job_unittest.cc", |
| 5079 | "url_request/url_request_unittest.cc", |
| 5080 | ] |
| 5081 | } |
| 5082 | |
| 5083 | # Exclude brotli test if the support for brotli is disabled. |
xunjieli | f54f24a0 | 2016-11-04 15:51:54 | [diff] [blame] | 5084 | if (disable_brotli_filter) { |
xunjieli | 084a929 | 2016-09-23 18:15:04 | [diff] [blame] | 5085 | sources -= [ "filter/brotli_source_stream_unittest.cc" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 5086 | } |
| 5087 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5088 | if (is_android) { |
agrieve | 732db3a | 2016-04-26 19:18:19 | [diff] [blame] | 5089 | data_deps += [ "//net/tools/testserver:testserver_py" ] |
agrieve | 9717636 | 2015-12-01 16:36:19 | [diff] [blame] | 5090 | deps += [ |
| 5091 | ":net_test_jni_headers", |
agrieve | a5517aa | 2015-10-23 03:03:45 | [diff] [blame] | 5092 | "//base:base_java_unittest_support", |
| 5093 | "//net/android:net_java", |
agrieve | a5517aa | 2015-10-23 03:03:45 | [diff] [blame] | 5094 | "//net/android:net_java_test_support", |
agrieve | 9717636 | 2015-12-01 16:36:19 | [diff] [blame] | 5095 | "//net/android:net_javatests", |
agrieve | a5517aa | 2015-10-23 03:03:45 | [diff] [blame] | 5096 | "//net/android:net_unittests_apk_resources", |
agrieve | 9717636 | 2015-12-01 16:36:19 | [diff] [blame] | 5097 | |
| 5098 | # TODO(mmenke): This depends on test_support_base, which depends on |
| 5099 | # icu. Figure out a way to remove that dependency. |
| 5100 | "//testing/android/native_test:native_test_native_code", |
pkotwicz | 8c7027d | 2015-11-11 06:30:07 | [diff] [blame] | 5101 | "//v8:v8_external_startup_data_assets", |
agrieve | a5517aa | 2015-10-23 03:03:45 | [diff] [blame] | 5102 | ] |
| 5103 | android_manifest = "//net/android/unittest_support/AndroidManifest.xml" |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5104 | set_sources_assignment_filter([]) |
| 5105 | sources += [ "base/address_tracker_linux_unittest.cc" ] |
| 5106 | set_sources_assignment_filter(sources_assignment_filter) |
agrieve | 3ac557f0 | 2016-04-12 15:52:00 | [diff] [blame] | 5107 | shard_timeout = 300 |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5108 | } |
| 5109 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5110 | # Symbols for crashes when running tests on swarming. |
| 5111 | if (symbol_level > 0) { |
| 5112 | if (is_win) { |
| 5113 | data += [ "$root_out_dir/net_unittests.exe.pdb" ] |
| 5114 | } else if (is_mac) { |
dpranke | de2945b8 | 2016-04-15 22:14:13 | [diff] [blame] | 5115 | # TODO(crbug.com/330301): make this conditional on mac_strip_release. |
| 5116 | # data += [ "$root_out_dir/net_unittests.dSYM/" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5117 | } |
| 5118 | } |
maksim.sisov | c69619d | 2016-05-20 19:23:55 | [diff] [blame] | 5119 | |
| 5120 | if (is_win) { |
mmenke | 91c1716 | 2016-06-02 16:03:23 | [diff] [blame] | 5121 | libs = [ "iphlpapi.lib" ] |
maksim.sisov | c69619d | 2016-05-20 19:23:55 | [diff] [blame] | 5122 | } |
davidben | 983d610b | 2016-12-14 19:35:40 | [diff] [blame] | 5123 | |
| 5124 | if (is_chromecast && use_nss_certs) { |
| 5125 | sources += [ "ssl/ssl_platform_key_chromecast_unittest.cc" ] |
| 5126 | sources -= [ "ssl/ssl_platform_key_nss_unittest.cc" ] |
| 5127 | } |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 5128 | } |
| 5129 | |
| 5130 | # !is_android && !is_win && !is_mac |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5131 | if (!is_ios && !is_proto_quic) { |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5132 | # TODO(crbug.com/594965): this should be converted to "app" template and |
| 5133 | # enabled on iOS too. |
| 5134 | executable("net_perftests") { |
| 5135 | testonly = true |
| 5136 | sources = [ |
| 5137 | "base/mime_sniffer_perftest.cc", |
| 5138 | "cookies/cookie_monster_perftest.cc", |
gavinp | c28fe112 | 2016-05-13 17:49:05 | [diff] [blame] | 5139 | "disk_cache/disk_cache_perftest.cc", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5140 | "extras/sqlite/sqlite_persistent_cookie_store_perftest.cc", |
| 5141 | "proxy/proxy_resolver_perftest.cc", |
tfarina | 5dd13c2 | 2016-11-16 12:08:26 | [diff] [blame] | 5142 | "socket/udp_socket_perftest.cc", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5143 | ] |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 5144 | |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5145 | # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 5146 | configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 5147 | deps = [ |
| 5148 | ":extras", |
| 5149 | ":net", |
| 5150 | ":test_support", |
| 5151 | "//base", |
| 5152 | "//base:i18n", |
| 5153 | "//base/test:test_support_perf", |
| 5154 | "//build/config/sanitizers:deps", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 5155 | "//build/win:default_exe_manifest", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5156 | "//testing/gtest", |
| 5157 | "//url", |
| 5158 | ] |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 5159 | |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5160 | if (enable_websockets) { |
| 5161 | sources += [ "websockets/websocket_frame_perftest.cc" ] |
| 5162 | } |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 5163 | |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 5164 | if (use_v8_in_net) { |
| 5165 | deps += [ ":net_with_v8" ] |
| 5166 | } else { |
| 5167 | sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 5168 | } |
sebmarchand | a6de346 | 2016-12-14 21:14:01 | [diff] [blame] | 5169 | |
| 5170 | # Some linker failures have been observed for this target on the Win64 |
| 5171 | # continuous builder, see crbug.com/659369. |
| 5172 | # TODO(sebmarchand): Remove this once we have some data. |
| 5173 | if (is_win && linkrepro_root_dir != "") { |
| 5174 | ldflags = [ "/LINKREPRO:" + linkrepro_root_dir + "/" + target_name ] |
| 5175 | } |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 5176 | } |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 5177 | } |
mef | ff34b82 | 2016-01-11 15:28:08 | [diff] [blame] | 5178 | |
rsleevi | a491218 | 2017-01-27 00:38:25 | [diff] [blame] | 5179 | action_foreach("cert_verify_proc_whitelist_unittest_data") { |
| 5180 | script = "//net/tools/dafsa/make_dafsa.py" |
| 5181 | sources = [ |
| 5182 | "//net/cert/cert_verify_proc_whitelist_unittest1.gperf", |
| 5183 | ] |
| 5184 | outputs = [ |
| 5185 | "${target_gen_dir}/cert/{{source_name_part}}-inc.cc", |
| 5186 | ] |
| 5187 | args = [ |
| 5188 | "{{source}}", |
| 5189 | rebase_path("${target_gen_dir}/cert/{{source_name_part}}-inc.cc", |
| 5190 | root_build_dir), |
| 5191 | ] |
| 5192 | } |
| 5193 | |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5194 | # Fuzzers |
| 5195 | |
mmenke | 35a3001 | 2016-07-15 19:20:12 | [diff] [blame] | 5196 | # This has a global (InitGlobals) that must always be linked in, so |
| 5197 | # must be a source set instead of a static library. |
| 5198 | source_set("net_fuzzer_test_support") { |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5199 | testonly = true |
| 5200 | |
| 5201 | sources = [ |
csharrison | 37ef985 | 2016-08-23 19:00:19 | [diff] [blame] | 5202 | "base/fuzzer_test_support.cc", |
mmenke | a7da071 | 2016-11-21 21:12:31 | [diff] [blame] | 5203 | "dns/fuzzed_host_resolver.cc", |
| 5204 | "dns/fuzzed_host_resolver.h", |
xunjieli | 7583733 | 2016-10-31 16:51:26 | [diff] [blame] | 5205 | "filter/fuzzed_source_stream.cc", |
| 5206 | "filter/fuzzed_source_stream.h", |
tfarina | 5dd13c2 | 2016-11-16 12:08:26 | [diff] [blame] | 5207 | "socket/fuzzed_datagram_client_socket.cc", |
| 5208 | "socket/fuzzed_datagram_client_socket.h", |
morlovich | 5e6e19b | 2017-01-30 14:38:16 | [diff] [blame] | 5209 | "socket/fuzzed_server_socket.cc", |
| 5210 | "socket/fuzzed_server_socket.h", |
mmenke | 99b5717 | 2016-04-14 20:44:33 | [diff] [blame] | 5211 | "socket/fuzzed_socket.cc", |
| 5212 | "socket/fuzzed_socket.h", |
mmenke | c951d41 | 2016-04-28 19:05:22 | [diff] [blame] | 5213 | "socket/fuzzed_socket_factory.cc", |
| 5214 | "socket/fuzzed_socket_factory.h", |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5215 | ] |
csharrison | f30fc95f | 2016-08-19 21:43:44 | [diff] [blame] | 5216 | public_deps = [ |
| 5217 | "//base/test:test_support", |
| 5218 | ] |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5219 | deps = [ |
| 5220 | "//base", |
| 5221 | "//base:i18n", |
mmenke | 99b5717 | 2016-04-14 20:44:33 | [diff] [blame] | 5222 | "//net", |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5223 | ] |
| 5224 | } |
| 5225 | |
csharrison | aa314dc | 2016-04-29 20:15:37 | [diff] [blame] | 5226 | fuzzer_test("net_data_job_fuzzer") { |
| 5227 | sources = [ |
| 5228 | "url_request/url_request_data_job_fuzzer.cc", |
| 5229 | ] |
| 5230 | deps = [ |
| 5231 | ":net_fuzzer_test_support", |
| 5232 | ":test_support", |
| 5233 | "//base", |
| 5234 | "//net", |
| 5235 | ] |
| 5236 | } |
| 5237 | |
mmenke | 5552a6a | 2016-03-28 23:11:59 | [diff] [blame] | 5238 | fuzzer_test("net_mime_sniffer_fuzzer") { |
| 5239 | sources = [ |
| 5240 | "base/mime_sniffer_fuzzer.cc", |
| 5241 | ] |
| 5242 | deps = [ |
| 5243 | ":net_fuzzer_test_support", |
| 5244 | "//base", |
| 5245 | "//net", |
| 5246 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5247 | dict = "data/fuzzer_dictionaries/net_mime_sniffer_fuzzer.dict" |
mmenke | 5552a6a | 2016-03-28 23:11:59 | [diff] [blame] | 5248 | } |
| 5249 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5250 | fuzzer_test("net_parse_proxy_list_pac_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5251 | sources = [ |
| 5252 | "proxy/parse_proxy_list_pac_fuzzer.cc", |
| 5253 | ] |
| 5254 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5255 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5256 | "//net", |
| 5257 | ] |
| 5258 | } |
| 5259 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5260 | fuzzer_test("net_parse_proxy_list_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5261 | sources = [ |
| 5262 | "proxy/parse_proxy_list_fuzzer.cc", |
| 5263 | ] |
| 5264 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5265 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5266 | "//net", |
| 5267 | ] |
| 5268 | } |
| 5269 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5270 | fuzzer_test("net_parse_proxy_bypass_rules_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5271 | sources = [ |
| 5272 | "proxy/parse_proxy_bypass_rules_fuzzer.cc", |
| 5273 | ] |
| 5274 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5275 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5276 | "//net", |
| 5277 | ] |
| 5278 | } |
| 5279 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5280 | fuzzer_test("net_parse_proxy_rules_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5281 | sources = [ |
| 5282 | "proxy/parse_proxy_rules_fuzzer.cc", |
| 5283 | ] |
| 5284 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5285 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5286 | "//net", |
| 5287 | ] |
metzman | 31db75e | 2016-08-03 22:33:27 | [diff] [blame] | 5288 | dict = "data/fuzzer_dictionaries/net_parse_proxy_bypass_rules_fuzzer.dict" |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5289 | } |
| 5290 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5291 | fuzzer_test("net_parse_data_url_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5292 | sources = [ |
| 5293 | "base/parse_data_url_fuzzer.cc", |
| 5294 | ] |
| 5295 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5296 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5297 | "//base", |
| 5298 | "//net", |
| 5299 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5300 | dict = "data/fuzzer_dictionaries/net_parse_data_url_fuzzer.dict" |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5301 | } |
| 5302 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5303 | fuzzer_test("net_parse_ip_pattern_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5304 | sources = [ |
| 5305 | "base/parse_ip_pattern_fuzzer.cc", |
| 5306 | ] |
| 5307 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5308 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5309 | "//net", |
| 5310 | ] |
| 5311 | } |
| 5312 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5313 | fuzzer_test("net_get_domain_and_registry_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5314 | sources = [ |
| 5315 | "base/registry_controlled_domains/get_domain_and_registry_fuzzer.cc", |
| 5316 | ] |
| 5317 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5318 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5319 | "//base", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5320 | "//net", |
| 5321 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5322 | dict = "data/fuzzer_dictionaries/net_get_domain_and_registry_fuzzer.dict" |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5323 | } |
| 5324 | |
mattm | afe43b8 | 2016-04-28 20:40:54 | [diff] [blame] | 5325 | fuzzer_test("net_cert_verify_name_match_fuzzer") { |
| 5326 | sources = [ |
| 5327 | "cert/internal/verify_name_match_fuzzer.cc", |
| 5328 | ] |
| 5329 | deps = [ |
| 5330 | ":net_fuzzer_test_support", |
| 5331 | "//base", |
| 5332 | "//net", |
| 5333 | ] |
| 5334 | } |
| 5335 | |
mattm | 2c637da4 | 2016-04-28 02:55:59 | [diff] [blame] | 5336 | fuzzer_test("net_cert_normalize_name_fuzzer") { |
| 5337 | sources = [ |
| 5338 | "cert/internal/verify_name_match_normalizename_fuzzer.cc", |
| 5339 | ] |
| 5340 | deps = [ |
| 5341 | "//base", |
| 5342 | "//net", |
| 5343 | ] |
| 5344 | } |
| 5345 | |
mattm | afe43b8 | 2016-04-28 20:40:54 | [diff] [blame] | 5346 | fuzzer_test("net_cert_verify_name_in_subtree_fuzzer") { |
| 5347 | sources = [ |
| 5348 | "cert/internal/verify_name_match_verifynameinsubtree_fuzzer.cc", |
| 5349 | ] |
| 5350 | deps = [ |
| 5351 | ":net_fuzzer_test_support", |
| 5352 | "//base", |
| 5353 | "//net", |
| 5354 | ] |
| 5355 | } |
| 5356 | |
nharper | 85d3b6f | 2016-04-28 20:58:19 | [diff] [blame] | 5357 | fuzzer_test("net_cert_parse_certificate_fuzzer") { |
| 5358 | sources = [ |
| 5359 | "cert/internal/parse_certificate_fuzzer.cc", |
| 5360 | ] |
| 5361 | deps = [ |
| 5362 | "//base", |
| 5363 | "//net", |
| 5364 | ] |
| 5365 | } |
| 5366 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5367 | fuzzer_test("net_parse_cookie_line_fuzzer") { |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5368 | sources = [ |
| 5369 | "cookies/parse_cookie_line_fuzzer.cc", |
| 5370 | ] |
| 5371 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5372 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5373 | "//net", |
| 5374 | ] |
| 5375 | } |
| 5376 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5377 | fuzzer_test("net_dns_record_fuzzer") { |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5378 | sources = [ |
| 5379 | "dns/dns_record_fuzzer.cc", |
| 5380 | ] |
| 5381 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5382 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5383 | "//base", |
| 5384 | "//net", |
| 5385 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5386 | dict = "data/fuzzer_dictionaries/net_dns_record_fuzzer.dict" |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5387 | } |
| 5388 | |
zhongyi | 273af9f | 2016-04-28 18:46:34 | [diff] [blame] | 5389 | fuzzer_test("net_dns_hosts_parse_fuzzer") { |
| 5390 | sources = [ |
| 5391 | "dns/dns_hosts_parse_fuzzer.cc", |
| 5392 | ] |
| 5393 | deps = [ |
| 5394 | ":net_fuzzer_test_support", |
| 5395 | "//base", |
| 5396 | "//net", |
| 5397 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5398 | dict = "data/fuzzer_dictionaries/net_dns_hosts_parse_fuzzer.dict" |
zhongyi | 273af9f | 2016-04-28 18:46:34 | [diff] [blame] | 5399 | } |
| 5400 | |
mmenke | 91c1716 | 2016-06-02 16:03:23 | [diff] [blame] | 5401 | fuzzer_test("net_host_resolver_impl_fuzzer") { |
| 5402 | sources = [ |
mmenke | 91c1716 | 2016-06-02 16:03:23 | [diff] [blame] | 5403 | "dns/host_resolver_impl_fuzzer.cc", |
| 5404 | ] |
| 5405 | deps = [ |
| 5406 | ":net_fuzzer_test_support", |
| 5407 | ":test_support", |
| 5408 | "//base", |
| 5409 | "//net", |
| 5410 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5411 | dict = "data/fuzzer_dictionaries/net_host_resolver_impl_fuzzer.dict" |
mmenke | 91c1716 | 2016-06-02 16:03:23 | [diff] [blame] | 5412 | } |
| 5413 | |
mmenke | 44e8e9c | 2016-03-29 18:38:57 | [diff] [blame] | 5414 | fuzzer_test("net_http_stream_parser_fuzzer") { |
| 5415 | sources = [ |
| 5416 | "http/http_stream_parser_fuzzer.cc", |
| 5417 | ] |
| 5418 | deps = [ |
| 5419 | ":net_fuzzer_test_support", |
| 5420 | ":test_support", |
| 5421 | "//base", |
| 5422 | "//net", |
| 5423 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5424 | dict = "data/fuzzer_dictionaries/net_http_stream_parser_fuzzer.dict" |
mmenke | 44e8e9c | 2016-03-29 18:38:57 | [diff] [blame] | 5425 | } |
| 5426 | |
xunjieli | d5ffeaf | 2016-11-01 15:22:00 | [diff] [blame] | 5427 | if (!disable_brotli_filter) { |
| 5428 | fuzzer_test("net_brotli_source_stream_fuzzer") { |
| 5429 | sources = [ |
| 5430 | "filter/brotli_source_stream_fuzzer.cc", |
| 5431 | ] |
| 5432 | deps = [ |
| 5433 | ":net_fuzzer_test_support", |
| 5434 | ":test_support", |
| 5435 | "//base", |
| 5436 | "//net", |
| 5437 | ] |
| 5438 | } |
| 5439 | } |
| 5440 | |
xunjieli | 7583733 | 2016-10-31 16:51:26 | [diff] [blame] | 5441 | fuzzer_test("net_gzip_source_stream_fuzzer") { |
| 5442 | sources = [ |
| 5443 | "filter/gzip_source_stream_fuzzer.cc", |
| 5444 | ] |
| 5445 | deps = [ |
| 5446 | ":net_fuzzer_test_support", |
| 5447 | ":test_support", |
| 5448 | "//base", |
| 5449 | "//net", |
| 5450 | ] |
| 5451 | } |
| 5452 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5453 | fuzzer_test("net_ftp_ctrl_response_fuzzer") { |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5454 | sources = [ |
| 5455 | "ftp/ftp_ctrl_response_fuzzer.cc", |
| 5456 | ] |
| 5457 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5458 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5459 | "//base", |
| 5460 | "//net", |
| 5461 | ] |
| 5462 | } |
| 5463 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5464 | fuzzer_test("net_ftp_directory_listing_fuzzer") { |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5465 | sources = [ |
| 5466 | "ftp/ftp_directory_listing_fuzzer.cc", |
| 5467 | ] |
| 5468 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5469 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5470 | "//base", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5471 | "//net", |
| 5472 | ] |
| 5473 | } |
| 5474 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5475 | fuzzer_test("net_unescape_url_component_fuzzer") { |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5476 | sources = [ |
| 5477 | "base/unescape_url_component_fuzzer.cc", |
| 5478 | ] |
| 5479 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5480 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5481 | "//base", |
| 5482 | "//net", |
| 5483 | ] |
mmoroz | 34eb008 | 2016-03-11 14:32:01 | [diff] [blame] | 5484 | dict = "base/unescape_url_component_fuzzer.dict" |
mmoroz | 062a4a6 | 2016-04-12 09:02:33 | [diff] [blame] | 5485 | libfuzzer_options = [ "max_len = 2048" ] |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5486 | } |
| 5487 | |
ricea | 7b870e7 | 2016-09-01 04:41:04 | [diff] [blame] | 5488 | fuzzer_test("net_websocket_deflate_stream_fuzzer") { |
| 5489 | sources = [ |
| 5490 | "websockets/websocket_deflate_stream_fuzzer.cc", |
| 5491 | ] |
| 5492 | deps = [ |
| 5493 | ":net_fuzzer_test_support", |
| 5494 | "//net", |
| 5495 | ] |
| 5496 | dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict" |
| 5497 | libfuzzer_options = [ "max_len=512" ] |
| 5498 | } |
| 5499 | |
ricea | f9dcc09 | 2016-09-13 12:42:00 | [diff] [blame] | 5500 | fuzzer_test("net_websocket_extension_parser_fuzzer") { |
| 5501 | sources = [ |
| 5502 | "websockets/websocket_extension_parser_fuzzer.cc", |
| 5503 | ] |
| 5504 | deps = [ |
| 5505 | ":net_fuzzer_test_support", |
| 5506 | "//net", |
| 5507 | ] |
| 5508 | dict = "data/fuzzer_dictionaries/net_websocket_extension_parser_fuzzer.dict" |
| 5509 | libfuzzer_options = [ "max_len = 256" ] |
| 5510 | } |
| 5511 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5512 | fuzzer_test("net_websocket_frame_parser_fuzzer") { |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5513 | sources = [ |
| 5514 | "websockets/websocket_frame_parser_fuzzer.cc", |
| 5515 | ] |
| 5516 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5517 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5518 | "//net", |
| 5519 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5520 | dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict" |
ricea | 105ae61 | 2016-09-08 08:00:07 | [diff] [blame] | 5521 | libfuzzer_options = [ "max_len=256" ] |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5522 | } |
| 5523 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5524 | fuzzer_test("net_http_chunked_decoder_fuzzer") { |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5525 | sources = [ |
| 5526 | "http/http_chunked_decoder_fuzzer.cc", |
| 5527 | ] |
| 5528 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5529 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5530 | "//net", |
| 5531 | ] |
| 5532 | } |
| 5533 | |
mmenke | 8e9314bc | 2016-04-15 21:45:02 | [diff] [blame] | 5534 | fuzzer_test("net_http_proxy_client_socket_fuzzer") { |
| 5535 | sources = [ |
| 5536 | "http/http_proxy_client_socket_fuzzer.cc", |
| 5537 | ] |
| 5538 | deps = [ |
| 5539 | ":net_fuzzer_test_support", |
| 5540 | ":test_support", |
| 5541 | "//base", |
| 5542 | "//net", |
| 5543 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5544 | dict = "data/fuzzer_dictionaries/net_http_proxy_client_socket_fuzzer.dict" |
mmenke | 8e9314bc | 2016-04-15 21:45:02 | [diff] [blame] | 5545 | } |
| 5546 | |
mmoroz | 9299ef9b | 2016-09-01 17:37:09 | [diff] [blame] | 5547 | fuzzer_test("net_parse_url_hostname_to_address_fuzzer") { |
| 5548 | sources = [ |
| 5549 | "base/parse_url_hostname_to_address_fuzzer.cc", |
| 5550 | ] |
| 5551 | deps = [ |
| 5552 | ":net_fuzzer_test_support", |
| 5553 | "//base", |
| 5554 | "//net", |
| 5555 | ] |
| 5556 | libfuzzer_options = [ "max_len=512" ] |
| 5557 | seed_corpus = "data/fuzzer_data/hostnames/" |
| 5558 | } |
| 5559 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5560 | fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5561 | sources = [ |
rch | d4db7c15 | 2016-07-29 21:58:12 | [diff] [blame] | 5562 | "quic/core/quic_crypto_framer_parse_message_fuzzer.cc", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5563 | ] |
| 5564 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5565 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5566 | "//base", |
| 5567 | "//net", |
| 5568 | ] |
| 5569 | } |
mmenke | 99b5717 | 2016-04-14 20:44:33 | [diff] [blame] | 5570 | |
| 5571 | fuzzer_test("net_socks_client_socket_fuzzer") { |
| 5572 | sources = [ |
| 5573 | "socket/socks_client_socket_fuzzer.cc", |
| 5574 | ] |
| 5575 | deps = [ |
| 5576 | ":net_fuzzer_test_support", |
| 5577 | ":test_support", |
| 5578 | "//base", |
| 5579 | "//net", |
| 5580 | ] |
| 5581 | } |
| 5582 | |
| 5583 | fuzzer_test("net_socks5_client_socket_fuzzer") { |
| 5584 | sources = [ |
| 5585 | "socket/socks5_client_socket_fuzzer.cc", |
| 5586 | ] |
| 5587 | deps = [ |
| 5588 | ":net_fuzzer_test_support", |
| 5589 | ":test_support", |
| 5590 | "//base", |
| 5591 | "//net", |
| 5592 | ] |
| 5593 | } |
mmenke | c951d41 | 2016-04-28 19:05:22 | [diff] [blame] | 5594 | |
mmenke | a7da071 | 2016-11-21 21:12:31 | [diff] [blame] | 5595 | fuzzer_test("net_url_request_ftp_fuzzer") { |
| 5596 | sources = [ |
| 5597 | "url_request/url_request_ftp_fuzzer.cc", |
| 5598 | ] |
| 5599 | deps = [ |
| 5600 | ":net_fuzzer_test_support", |
| 5601 | ":test_support", |
| 5602 | "//base", |
| 5603 | "//net", |
| 5604 | ] |
| 5605 | dict = "data/fuzzer_dictionaries/net_url_request_ftp_fuzzer.dict" |
| 5606 | seed_corpus = "data/fuzzer_data/net_url_request_ftp_fuzzer/" |
| 5607 | } |
| 5608 | |
mmenke | c951d41 | 2016-04-28 19:05:22 | [diff] [blame] | 5609 | fuzzer_test("net_url_request_fuzzer") { |
| 5610 | sources = [ |
| 5611 | "url_request/url_request_fuzzer.cc", |
| 5612 | ] |
| 5613 | deps = [ |
| 5614 | ":net_fuzzer_test_support", |
| 5615 | ":test_support", |
| 5616 | "//base", |
| 5617 | "//net", |
| 5618 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5619 | dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" |
mmenke | c951d41 | 2016-04-28 19:05:22 | [diff] [blame] | 5620 | } |
csharrison | 88d2a61 | 2016-09-09 16:58:54 | [diff] [blame] | 5621 | |
| 5622 | fuzzer_test("net_auth_challenge_tokenizer_fuzzer") { |
| 5623 | sources = [ |
| 5624 | "http/http_auth_challenge_tokenizer_fuzzer.cc", |
| 5625 | ] |
| 5626 | deps = [ |
| 5627 | ":net_fuzzer_test_support", |
| 5628 | ":test_support", |
| 5629 | "//base", |
| 5630 | "//net", |
| 5631 | ] |
| 5632 | } |
martijn | db9ad4f | 2016-10-26 18:34:09 | [diff] [blame] | 5633 | |
| 5634 | fuzzer_test("net_http_security_headers_hsts_fuzzer") { |
| 5635 | sources = [ |
| 5636 | "http/http_security_headers_hsts_fuzzer.cc", |
| 5637 | ] |
| 5638 | deps = [ |
| 5639 | "//base", |
| 5640 | "//net", |
| 5641 | ] |
| 5642 | dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
| 5643 | } |
| 5644 | |
| 5645 | fuzzer_test("net_http_security_headers_hpkp_fuzzer") { |
| 5646 | sources = [ |
| 5647 | "http/http_security_headers_hpkp_fuzzer.cc", |
| 5648 | ] |
| 5649 | deps = [ |
martijn | 15387afb | 2016-10-27 22:21:04 | [diff] [blame] | 5650 | ":net_fuzzer_test_support", |
martijn | db9ad4f | 2016-10-26 18:34:09 | [diff] [blame] | 5651 | "//base", |
| 5652 | "//net", |
| 5653 | "//url", |
| 5654 | ] |
| 5655 | dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
| 5656 | } |
| 5657 | |
| 5658 | fuzzer_test("net_http_security_headers_hpkp_report_only_fuzzer") { |
| 5659 | sources = [ |
| 5660 | "http/http_security_headers_hpkp_report_only_fuzzer.cc", |
| 5661 | ] |
| 5662 | deps = [ |
martijn | 15387afb | 2016-10-27 22:21:04 | [diff] [blame] | 5663 | ":net_fuzzer_test_support", |
martijn | db9ad4f | 2016-10-26 18:34:09 | [diff] [blame] | 5664 | "//base", |
| 5665 | "//net", |
| 5666 | "//url", |
| 5667 | ] |
| 5668 | dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
| 5669 | } |
martijn | 40db4b76 | 2016-12-14 00:26:45 | [diff] [blame] | 5670 | |
martijn | da94079 | 2016-12-29 01:36:51 | [diff] [blame] | 5671 | fuzzer_test("net_http_transport_security_state_static_fuzzer") { |
| 5672 | sources = [ |
| 5673 | "http/transport_security_state_static_fuzzer.cc", |
| 5674 | ] |
| 5675 | deps = [ |
| 5676 | ":net_fuzzer_test_support", |
| 5677 | "//net", |
| 5678 | ] |
| 5679 | dict = |
| 5680 | "data/fuzzer_dictionaries/net_http_transport_security_state_fuzzer.dict" |
| 5681 | } |
| 5682 | |
morlovich | 5e6e19b | 2017-01-30 14:38:16 | [diff] [blame] | 5683 | fuzzer_test("net_http_server_fuzzer") { |
| 5684 | sources = [ |
| 5685 | "server/http_server_fuzzer.cc", |
| 5686 | ] |
| 5687 | deps = [ |
| 5688 | ":http_server", |
| 5689 | ":net_fuzzer_test_support", |
| 5690 | ":test_support", |
| 5691 | "//base", |
| 5692 | "//net", |
| 5693 | ] |
| 5694 | dict = "data/fuzzer_dictionaries/net_http_server_fuzzer.dict" |
| 5695 | seed_corpus = "data/fuzzer_data/http_server_requests/" |
| 5696 | } |
| 5697 | |
morlovich | 833190ec | 2017-02-10 16:53:04 | [diff] [blame] | 5698 | fuzzer_test("net_spdy_session_fuzzer") { |
| 5699 | sources = [ |
| 5700 | "spdy/spdy_session_fuzzer.cc", |
| 5701 | ] |
| 5702 | deps = [ |
| 5703 | ":net_fuzzer_test_support", |
| 5704 | ":test_support", |
| 5705 | "//base", |
| 5706 | "//net", |
| 5707 | ] |
| 5708 | dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 5709 | seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 5710 | } |
| 5711 | |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5712 | if (host_toolchain == current_toolchain && !is_proto_quic) { |
martijn | 0827d0b | 2017-01-25 22:01:07 | [diff] [blame] | 5713 | executable("transport_security_state_generator") { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5714 | sources = [ |
martijn | 0827d0b | 2017-01-25 22:01:07 | [diff] [blame] | 5715 | "tools/transport_security_state_generator/bit_writer.cc", |
| 5716 | "tools/transport_security_state_generator/bit_writer.h", |
| 5717 | "tools/transport_security_state_generator/cert_util.cc", |
| 5718 | "tools/transport_security_state_generator/cert_util.h", |
| 5719 | "tools/transport_security_state_generator/huffman/huffman_builder.cc", |
| 5720 | "tools/transport_security_state_generator/huffman/huffman_builder.h", |
| 5721 | "tools/transport_security_state_generator/pinset.cc", |
| 5722 | "tools/transport_security_state_generator/pinset.h", |
| 5723 | "tools/transport_security_state_generator/pinsets.cc", |
| 5724 | "tools/transport_security_state_generator/pinsets.h", |
| 5725 | "tools/transport_security_state_generator/preloaded_state_generator.cc", |
| 5726 | "tools/transport_security_state_generator/preloaded_state_generator.h", |
| 5727 | "tools/transport_security_state_generator/spki_hash.cc", |
| 5728 | "tools/transport_security_state_generator/spki_hash.h", |
| 5729 | "tools/transport_security_state_generator/transport_security_state_entry.cc", |
| 5730 | "tools/transport_security_state_generator/transport_security_state_entry.h", |
| 5731 | "tools/transport_security_state_generator/transport_security_state_generator.cc", |
| 5732 | "tools/transport_security_state_generator/trie/trie_bit_buffer.cc", |
| 5733 | "tools/transport_security_state_generator/trie/trie_bit_buffer.h", |
| 5734 | "tools/transport_security_state_generator/trie/trie_writer.cc", |
| 5735 | "tools/transport_security_state_generator/trie/trie_writer.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 5736 | ] |
martijn | 40db4b76 | 2016-12-14 00:26:45 | [diff] [blame] | 5737 | deps = [ |
| 5738 | "//base", |
| 5739 | "//crypto", |
| 5740 | "//third_party/boringssl", |
| 5741 | ] |
| 5742 | } |
| 5743 | } |