blob: ba7259f2b9e8dfb107c65a7291532d69b1868816 [file] [log] [blame]
[email protected]4625ade2014-04-15 19:26:441# 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
mefff34b822016-01-11 15:28:085import("//build/buildflag_header.gni")
slan77bdc2e62015-09-21 17:56:266import("//build/config/chromecast_build.gni")
brettw4cab0f12015-09-14 21:40:017import("//build/config/compiler/compiler.gni")
[email protected]4625ade2014-04-15 19:26:448import("//build/config/crypto.gni")
9import("//build/config/features.gni")
10import("//build/config/ui.gni")
sdefresneeb265862016-09-08 14:27:1211import("//net/features.gni")
eromane6264fd2016-03-02 22:46:3012import("//testing/libfuzzer/fuzzer_test.gni")
qsrfb5251d12015-01-21 15:57:2213import("//testing/test.gni")
rockot9c67e5f2015-03-12 20:01:2114import("//third_party/icu/config.gni")
rtennetib6f1c0d2015-04-03 17:52:0615import("//third_party/protobuf/proto_library.gni")
tfarinae597851a2015-10-06 23:14:4116import("//tools/grit/grit_rule.gni")
kapishnikovabe280e2016-04-14 19:07:1617import("//url/features.gni")
ckrasic73f7240b2017-01-24 00:06:4518
19if (!is_proto_quic) {
20 import("//v8/gni/v8.gni")
21}
[email protected]26046b52014-07-16 00:11:0322
[email protected]4625ade2014-04-15 19:26:4423if (is_android) {
24 import("//build/config/android/config.gni")
[email protected]ef0eb442014-05-15 09:32:1825 import("//build/config/android/rules.gni")
[email protected]4625ade2014-04-15 19:26:4426} else if (is_mac) {
27 import("//build/config/mac/mac_sdk.gni")
28}
29
[email protected]4625ade2014-04-15 19:26:4430# 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.
dpranke43276212015-02-20 02:55:1935posix_avoid_mmap = is_android && current_cpu != "x86"
[email protected]4625ade2014-04-15 19:26:4436
ckrasic73f7240b2017-01-24 00:06:4537use_v8_in_net = !is_ios && !is_proto_quic
38enable_built_in_dns = !is_ios && !is_proto_quic
[email protected]4625ade2014-04-15 19:26:4439
Fabrice de Gans-Riberi9fba3aff2018-04-12 19:00:4840# Unix sockets are not supported on iOS or NaCl.
41enable_unix_sockets = is_posix && !is_ios && !is_nacl
Sergey Ulanov21dea152017-09-13 00:50:5042
Sergey Ulanov2a0b0192017-08-31 23:09:4043# Android and Fuchsia can't run testserver.py directly, so they use remote
44# test server.
45use_remote_test_server = is_android || is_fuchsia
46
Sergey Ulanovec1d3de2017-09-19 19:27:4747# Python works only on Linux, MacOS and Windows.
48enable_python_utils = !is_android && !is_fuchsia && !is_ios
49
Scott Violet0caaaf432018-03-24 00:43:5950buildflag_header("buildflags") {
51 header = "net_buildflags.h"
brettwa1228ebb2016-10-28 03:51:3452 flags = [
53 "POSIX_AVOID_MMAP=$posix_avoid_mmap",
54 "DISABLE_FILE_SUPPORT=$disable_file_support",
55 "DISABLE_FTP_SUPPORT=$disable_ftp_support",
brettw5224a182016-10-28 22:13:0256 "ENABLE_MDNS=$enable_mdns",
mmenkefd9d15c2017-06-29 13:45:5457 "ENABLE_REPORTING=$enable_reporting",
brettwa1228ebb2016-10-28 03:51:3458 "ENABLE_WEBSOCKETS=$enable_websockets",
xunjieli815ad5b2017-07-18 15:51:3559 "INCLUDE_TRANSPORT_SECURITY_STATE_PRELOAD_LIST=$include_transport_security_state_preload_list",
brettwa1228ebb2016-10-28 03:51:3460 ]
[email protected]4625ade2014-04-15 19:26:4461}
62
xunjieli905496a2015-08-31 15:51:1763config("net_internal_config") {
[email protected]8603c5de2014-04-16 20:34:3164 defines = [
[email protected]8603c5de2014-04-16 20:34:3165 "DLOPEN_KERBEROS",
scottmg34fb7e52014-12-03 23:27:2466 "NET_IMPLEMENTATION",
[email protected]8603c5de2014-04-16 20:34:3167 ]
dpranke43276212015-02-20 02:55:1968
[email protected]4625ade2014-04-15 19:26:4469 if (use_kerberos) {
70 defines += [ "USE_KERBEROS" ]
71 if (is_android) {
xunjieli905496a2015-08-31 15:51:1772 include_dirs = [ "/usr/include/kerberosV" ]
[email protected]4625ade2014-04-15 19:26:4473 }
[email protected]4625ade2014-04-15 19:26:4474 }
75
76 if (enable_built_in_dns) {
77 defines += [ "ENABLE_BUILT_IN_DNS" ]
xunjieli905496a2015-08-31 15:51:1778 }
79}
80
kapishnikovabe280e2016-04-14 19:07:1681net_configs = [
xunjieli905496a2015-08-31 15:51:1782 ":net_internal_config",
83 "//build/config:precompiled_headers",
84
rsesek99679aa2016-06-28 21:24:1785 "//build/config/compiler:wexit_time_destructors",
xunjieli905496a2015-08-31 15:51:1786]
87
kapishnikovabe280e2016-04-14 19:07:1688if (is_linux) {
89 net_configs += [ "//build/config/linux:libresolv" ]
xunjieli905496a2015-08-31 15:51:1790}
91
xunjieli0b7f5b62016-12-06 20:43:4892source_set("constants") {
93 sources = [
94 "base/trace_constants.cc",
95 "base/trace_constants.h",
96 ]
97 deps = [
98 "//base",
99 ]
100}
101
xunjieli905496a2015-08-31 15:51:17102component("net") {
ckrasic73f7240b2017-01-24 00:06:45103 sources = [
104 "base/address_family.cc",
105 "base/address_family.h",
106 "base/address_list.cc",
107 "base/address_list.h",
ckrasic73f7240b2017-01-24 00:06:45108 "base/auth.cc",
109 "base/auth.h",
110 "base/completion_callback.h",
Matt Menkedadd6c72018-01-30 23:07:25111 "base/completion_once_callback.h",
Charles 'Buck' Krasiced43ded2018-03-23 18:48:12112 "base/datagram_buffer.cc",
113 "base/datagram_buffer.h",
ckrasic73f7240b2017-01-24 00:06:45114 "base/escape.cc",
115 "base/escape.h",
116 "base/hash_value.cc",
117 "base/hash_value.h",
118 "base/host_port_pair.cc",
119 "base/host_port_pair.h",
fayangbaec8ff52017-01-28 03:26:12120 "base/interval.h",
121 "base/interval_set.h",
ckrasic73f7240b2017-01-24 00:06:45122 "base/io_buffer.cc",
123 "base/io_buffer.h",
124 "base/ip_address.cc",
125 "base/ip_address.h",
126 "base/ip_endpoint.cc",
127 "base/ip_endpoint.h",
ckrasic73f7240b2017-01-24 00:06:45128 "base/load_timing_info.cc",
129 "base/load_timing_info.h",
130 "base/lookup_string_in_fixed_set.cc",
131 "base/lookup_string_in_fixed_set.h",
132 "base/net_error_details.h",
133 "base/net_error_list.h",
134 "base/net_errors.cc",
135 "base/net_errors.h",
136 "base/net_errors_posix.cc",
137 "base/net_export.h",
138 "base/net_module.cc",
139 "base/net_module.h",
140 "base/net_string_util.h",
141 "base/network_interfaces.cc",
142 "base/network_interfaces.h",
ckrasic73f7240b2017-01-24 00:06:45143 "base/parse_number.cc",
144 "base/parse_number.h",
145 "base/port_util.cc",
146 "base/port_util.h",
mmenke392ec462017-03-23 18:49:35147 "base/privacy_mode.h",
ckrasic73f7240b2017-01-24 00:06:45148 "base/rand_callback.h",
149 "base/registry_controlled_domains/registry_controlled_domain.cc",
150 "base/registry_controlled_domains/registry_controlled_domain.h",
151 "base/sockaddr_storage.cc",
152 "base/sockaddr_storage.h",
153 "base/sys_addrinfo.h",
154 "base/url_util.cc",
155 "base/url_util.h",
ckrasic73f7240b2017-01-24 00:06:45156 "cert/asn1_util.cc",
157 "cert/asn1_util.h",
158 "cert/cert_database.cc",
159 "cert/cert_database.h",
Matt Mueller15004212017-09-08 04:44:13160 "cert/cert_database_stub.cc",
ckrasic73f7240b2017-01-24 00:06:45161 "cert/cert_status_flags.cc",
162 "cert/cert_status_flags.h",
mmenke392ec462017-03-23 18:49:35163 "cert/cert_status_flags_list.h",
ckrasic73f7240b2017-01-24 00:06:45164 "cert/cert_verifier.cc",
165 "cert/cert_verifier.h",
166 "cert/cert_verify_result.cc",
167 "cert/cert_verify_result.h",
168 "cert/client_cert_verifier.h",
169 "cert/crl_set.cc",
170 "cert/crl_set.h",
171 "cert/ct_known_logs.cc",
172 "cert/ct_known_logs.h",
ckrasic73f7240b2017-01-24 00:06:45173 "cert/ct_policy_enforcer.cc",
174 "cert/ct_policy_enforcer.h",
175 "cert/ct_policy_status.h",
176 "cert/ct_verifier.h",
177 "cert/ct_verify_result.cc",
178 "cert/ct_verify_result.h",
179 "cert/do_nothing_ct_verifier.cc",
180 "cert/do_nothing_ct_verifier.h",
181 "cert/internal/cert_error_id.cc",
182 "cert/internal/cert_error_id.h",
183 "cert/internal/cert_error_params.cc",
184 "cert/internal/cert_error_params.h",
ckrasic73f7240b2017-01-24 00:06:45185 "cert/internal/cert_errors.cc",
186 "cert/internal/cert_errors.h",
187 "cert/internal/cert_issuer_source.h",
188 "cert/internal/cert_issuer_source_aia.cc",
189 "cert/internal/cert_issuer_source_aia.h",
190 "cert/internal/cert_issuer_source_static.cc",
191 "cert/internal/cert_issuer_source_static.h",
192 "cert/internal/certificate_policies.cc",
193 "cert/internal/certificate_policies.h",
Eric Romancaa0a602017-07-28 21:17:11194 "cert/internal/common_cert_errors.cc",
195 "cert/internal/common_cert_errors.h",
ckrasic73f7240b2017-01-24 00:06:45196 "cert/internal/extended_key_usage.cc",
197 "cert/internal/extended_key_usage.h",
Matt Mueller9e3ad3032017-09-14 19:29:31198 "cert/internal/general_names.cc",
199 "cert/internal/general_names.h",
ckrasic73f7240b2017-01-24 00:06:45200 "cert/internal/name_constraints.cc",
201 "cert/internal/name_constraints.h",
Eric Romana2f6f55d2017-09-07 23:34:57202 "cert/internal/ocsp.cc",
203 "cert/internal/ocsp.h",
ckrasic73f7240b2017-01-24 00:06:45204 "cert/internal/parse_certificate.cc",
205 "cert/internal/parse_certificate.h",
206 "cert/internal/parse_name.cc",
207 "cert/internal/parse_name.h",
ckrasic73f7240b2017-01-24 00:06:45208 "cert/internal/parsed_certificate.cc",
209 "cert/internal/parsed_certificate.h",
210 "cert/internal/path_builder.cc",
211 "cert/internal/path_builder.h",
Eric Romancc56d16f2017-10-11 23:04:26212 "cert/internal/revocation_checker.cc",
213 "cert/internal/revocation_checker.h",
ckrasic73f7240b2017-01-24 00:06:45214 "cert/internal/signature_algorithm.cc",
215 "cert/internal/signature_algorithm.h",
Eric Roman5431d702017-07-26 01:58:18216 "cert/internal/simple_path_builder_delegate.cc",
217 "cert/internal/simple_path_builder_delegate.h",
ckrasic73f7240b2017-01-24 00:06:45218 "cert/internal/trust_store.cc",
219 "cert/internal/trust_store.h",
220 "cert/internal/trust_store_collection.cc",
221 "cert/internal/trust_store_collection.h",
222 "cert/internal/trust_store_in_memory.cc",
223 "cert/internal/trust_store_in_memory.h",
224 "cert/internal/verify_certificate_chain.cc",
225 "cert/internal/verify_certificate_chain.h",
226 "cert/internal/verify_name_match.cc",
227 "cert/internal/verify_name_match.h",
228 "cert/internal/verify_signed_data.cc",
229 "cert/internal/verify_signed_data.h",
230 "cert/ocsp_revocation_status.h",
231 "cert/ocsp_verify_result.cc",
232 "cert/ocsp_verify_result.h",
233 "cert/pem_tokenizer.cc",
234 "cert/pem_tokenizer.h",
235 "cert/sct_status_flags.cc",
236 "cert/sct_status_flags.h",
237 "cert/signed_certificate_timestamp.cc",
238 "cert/signed_certificate_timestamp.h",
239 "cert/signed_certificate_timestamp_and_status.cc",
240 "cert/signed_certificate_timestamp_and_status.h",
241 "cert/signed_tree_head.cc",
242 "cert/signed_tree_head.h",
Emily Starkd29cdae2017-09-16 01:59:34243 "cert/symantec_certs.cc",
244 "cert/symantec_certs.h",
ckrasic73f7240b2017-01-24 00:06:45245 "cert/x509_cert_types.cc",
246 "cert/x509_cert_types.h",
247 "cert/x509_certificate.cc",
248 "cert/x509_certificate.h",
249 "cert/x509_certificate_net_log_param.cc",
250 "cert/x509_certificate_net_log_param.h",
ckrasic73f7240b2017-01-24 00:06:45251 "cert/x509_util.cc",
252 "cert/x509_util.h",
ckrasic73f7240b2017-01-24 00:06:45253 "der/encode_values.cc",
254 "der/encode_values.h",
255 "der/input.cc",
256 "der/input.h",
257 "der/parse_values.cc",
258 "der/parse_values.h",
259 "der/parser.cc",
260 "der/parser.h",
261 "der/tag.cc",
262 "der/tag.h",
263 "dns/dns_util.cc",
264 "dns/dns_util.h",
265 "http/http_auth_challenge_tokenizer.cc",
266 "http/http_auth_challenge_tokenizer.h",
267 "http/http_auth_scheme.cc",
268 "http/http_auth_scheme.h",
269 "http/http_byte_range.cc",
270 "http/http_byte_range.h",
271 "http/http_log_util.cc",
272 "http/http_log_util.h",
Andrey Kosyakov83a6eee2017-08-14 19:20:04273 "http/http_raw_request_headers.cc",
274 "http/http_raw_request_headers.h",
ckrasic73f7240b2017-01-24 00:06:45275 "http/http_request_headers.cc",
276 "http/http_request_headers.h",
277 "http/http_response_headers.cc",
278 "http/http_response_headers.h",
279 "http/http_response_info.cc",
280 "http/http_response_info.h",
281 "http/http_security_headers.cc",
282 "http/http_security_headers.h",
Daniel Bratella6f7191d2017-11-23 09:20:37283 "http/http_status_code_list.h",
ckrasic73f7240b2017-01-24 00:06:45284 "http/http_util.cc",
285 "http/http_util.h",
286 "http/http_vary_data.cc",
287 "http/http_vary_data.h",
288 "http/transport_security_state.cc",
289 "http/transport_security_state.h",
xunjieli815ad5b2017-07-18 15:51:35290 "http/transport_security_state_source.cc",
martijn9b806ab22017-03-18 16:13:21291 "http/transport_security_state_source.h",
ckrasic73f7240b2017-01-24 00:06:45292 "log/net_log.cc",
293 "log/net_log.h",
294 "log/net_log_capture_mode.cc",
295 "log/net_log_capture_mode.h",
296 "log/net_log_entry.cc",
297 "log/net_log_entry.h",
mmenke392ec462017-03-23 18:49:35298 "log/net_log_event_type.h",
ckrasic73f7240b2017-01-24 00:06:45299 "log/net_log_event_type_list.h",
mmenke392ec462017-03-23 18:49:35300 "log/net_log_parameters_callback.h",
ckrasic73f7240b2017-01-24 00:06:45301 "log/net_log_source.cc",
302 "log/net_log_source.h",
mmenke392ec462017-03-23 18:49:35303 "log/net_log_source_type.h",
ckrasic73f7240b2017-01-24 00:06:45304 "log/net_log_source_type_list.h",
305 "log/net_log_with_source.cc",
306 "log/net_log_with_source.h",
Brad Lassey16c13f72018-03-19 19:37:50307 "quic/core/quic_error_codes.cc",
308 "quic/core/quic_error_codes.h",
ckrasic73f7240b2017-01-24 00:06:45309 "socket/client_socket_handle.cc",
310 "socket/client_socket_handle.h",
311 "socket/connection_attempts.h",
312 "socket/next_proto.cc",
313 "socket/next_proto.h",
xunjieli321a96f32017-03-07 19:42:17314 "socket/socket.cc",
ckrasic73f7240b2017-01-24 00:06:45315 "socket/socket.h",
316 "socket/socket_bio_adapter.cc",
317 "socket/socket_bio_adapter.h",
318 "socket/socket_performance_watcher.h",
319 "socket/socket_performance_watcher_factory.h",
320 "socket/ssl_client_socket.cc",
321 "socket/ssl_client_socket.h",
322 "socket/ssl_client_socket_impl.cc",
323 "socket/ssl_client_socket_impl.h",
324 "socket/ssl_socket.h",
Bence Békydae8af5f2018-04-13 08:53:17325 "socket/stream_socket.cc",
326 "socket/stream_socket.h",
ckrasic73f7240b2017-01-24 00:06:45327 "ssl/channel_id_service.cc",
328 "ssl/channel_id_service.h",
329 "ssl/channel_id_store.cc",
330 "ssl/channel_id_store.h",
mattm436ccfe2017-06-19 20:24:08331 "ssl/client_cert_identity.cc",
332 "ssl/client_cert_identity.h",
333 "ssl/client_cert_identity_mac.cc",
334 "ssl/client_cert_identity_mac.h",
ckrasic73f7240b2017-01-24 00:06:45335 "ssl/default_channel_id_store.cc",
336 "ssl/default_channel_id_store.h",
ckrasic73f7240b2017-01-24 00:06:45337 "ssl/openssl_ssl_util.cc",
338 "ssl/openssl_ssl_util.h",
339 "ssl/ssl_cert_request_info.cc",
340 "ssl/ssl_cert_request_info.h",
341 "ssl/ssl_cipher_suite_names.cc",
342 "ssl/ssl_cipher_suite_names.h",
343 "ssl/ssl_client_auth_cache.cc",
344 "ssl/ssl_client_auth_cache.h",
345 "ssl/ssl_client_cert_type.h",
346 "ssl/ssl_client_session_cache.cc",
347 "ssl/ssl_client_session_cache.h",
348 "ssl/ssl_config.cc",
349 "ssl/ssl_config.h",
350 "ssl/ssl_config_service.cc",
351 "ssl/ssl_config_service.h",
352 "ssl/ssl_connection_status_flags.h",
353 "ssl/ssl_info.cc",
354 "ssl/ssl_info.h",
David Benjaminb9bafbe2017-11-07 21:41:38355 "ssl/ssl_private_key.cc",
ckrasic73f7240b2017-01-24 00:06:45356 "ssl/ssl_private_key.h",
357 "ssl/ssl_server_config.cc",
358 "ssl/ssl_server_config.h",
359 "ssl/token_binding.cc",
360 "ssl/token_binding.h",
361 ]
kapishnikovabe280e2016-04-14 19:07:16362 net_unfiltered_sources = []
363
364 deps = [
xunjieli0b7f5b62016-12-06 20:43:48365 ":constants",
kapishnikovabe280e2016-04-14 19:07:16366 ":net_resources",
367 "//base",
368 "//net/base/registry_controlled_domains",
eranm9657f672017-05-05 12:25:19369 "//net/data/ssl/certificate_transparency:ct_log_list",
kapishnikovabe280e2016-04-14 19:07:16370 "//third_party/protobuf:protobuf_lite",
371 "//url:url_features",
372 ]
373
xunjieli815ad5b2017-07-18 15:51:35374 if (include_transport_security_state_preload_list) {
375 deps += [ "//net/http:generate_transport_security_state" ]
376 }
377
kapishnikovabe280e2016-04-14 19:07:16378 public_deps = [
Tarun Bansalcdfa34b2017-11-23 05:11:17379 ":net_nqe_proto",
kapishnikovabe280e2016-04-14 19:07:16380 ":net_quic_proto",
rhalavatia9b551d2017-02-09 12:03:00381 ":traffic_annotation",
kapishnikovabe280e2016-04-14 19:07:16382 "//crypto",
383 "//crypto:platform",
bcfd0b70c42017-06-14 00:13:20384 "//third_party/boringssl",
kapishnikovabe280e2016-04-14 19:07:16385 ]
386
387 if (!is_nacl) {
ckrasic73f7240b2017-01-24 00:06:45388 sources += [
389 "android/cellular_signal_strength.cc",
390 "android/cellular_signal_strength.h",
391 "android/cert_verify_result_android.cc",
392 "android/cert_verify_result_android.h",
393 "android/gurl_utils.cc",
ckrasic73f7240b2017-01-24 00:06:45394 "android/http_auth_negotiate_android.cc",
395 "android/http_auth_negotiate_android.h",
396 "android/keystore.cc",
397 "android/keystore.h",
398 "android/legacy_openssl.h",
ckrasic73f7240b2017-01-24 00:06:45399 "android/network_change_notifier_android.cc",
400 "android/network_change_notifier_android.h",
401 "android/network_change_notifier_delegate_android.cc",
402 "android/network_change_notifier_delegate_android.h",
403 "android/network_change_notifier_factory_android.cc",
404 "android/network_change_notifier_factory_android.h",
405 "android/network_library.cc",
406 "android/network_library.h",
407 "android/traffic_stats.cc",
408 "android/traffic_stats.h",
409 "base/address_tracker_linux.cc",
410 "base/address_tracker_linux.h",
bnc4fab8022017-03-24 16:35:03411 "base/arena.cc",
412 "base/arena.h",
ckrasic73f7240b2017-01-24 00:06:45413 "base/backoff_entry.cc",
414 "base/backoff_entry.h",
415 "base/backoff_entry_serializer.cc",
416 "base/backoff_entry_serializer.h",
417 "base/cache_type.h",
418 "base/chunked_upload_data_stream.cc",
419 "base/chunked_upload_data_stream.h",
ckrasic73f7240b2017-01-24 00:06:45420 "base/data_url.cc",
421 "base/data_url.h",
422 "base/elements_upload_data_stream.cc",
423 "base/elements_upload_data_stream.h",
424 "base/expiring_cache.h",
425 "base/file_stream.cc",
426 "base/file_stream.h",
427 "base/file_stream_context.cc",
428 "base/file_stream_context.h",
429 "base/file_stream_context_posix.cc",
430 "base/file_stream_context_win.cc",
431 "base/filename_util.cc",
432 "base/filename_util.h",
433 "base/filename_util_internal.cc",
434 "base/filename_util_internal.h",
Bence Békyd5c16edf2017-08-04 17:32:30435 "base/hex_utils.cc",
436 "base/hex_utils.h",
ckrasic73f7240b2017-01-24 00:06:45437 "base/host_mapping_rules.cc",
438 "base/host_mapping_rules.h",
439 "base/int128.cc",
440 "base/int128.h",
441 "base/iovec.h",
442 "base/ip_pattern.cc",
443 "base/ip_pattern.h",
444 "base/layered_network_delegate.cc",
445 "base/layered_network_delegate.h",
bnc4fab8022017-03-24 16:35:03446 "base/linked_hash_map.h",
ckrasic73f7240b2017-01-24 00:06:45447 "base/load_flags.h",
448 "base/load_flags_list.h",
449 "base/load_states.h",
450 "base/load_states_list.h",
451 "base/logging_network_change_observer.cc",
452 "base/logging_network_change_observer.h",
ckrasic73f7240b2017-01-24 00:06:45453 "base/mime_sniffer.cc",
454 "base/mime_sniffer.h",
455 "base/mime_util.cc",
456 "base/mime_util.h",
457 "base/net_errors_win.cc",
458 "base/net_info_source_list.h",
459 "base/network_activity_monitor.cc",
460 "base/network_activity_monitor.h",
461 "base/network_change_notifier.cc",
462 "base/network_change_notifier.h",
463 "base/network_change_notifier_factory.h",
464 "base/network_change_notifier_linux.cc",
465 "base/network_change_notifier_linux.h",
466 "base/network_change_notifier_mac.cc",
467 "base/network_change_notifier_mac.h",
468 "base/network_change_notifier_win.cc",
469 "base/network_change_notifier_win.h",
470 "base/network_config_watcher_mac.cc",
471 "base/network_config_watcher_mac.h",
472 "base/network_delegate.cc",
473 "base/network_delegate.h",
474 "base/network_delegate_impl.cc",
475 "base/network_delegate_impl.h",
476 "base/network_interfaces_linux.cc",
wychen36575ffb2017-04-01 05:50:47477 "base/network_interfaces_linux.h",
Sergey Ulanov5c33235ae2017-07-06 23:55:07478 "base/network_interfaces_nacl.cc",
479 "base/network_interfaces_posix.cc",
480 "base/network_interfaces_posix.h",
ckrasic73f7240b2017-01-24 00:06:45481 "base/network_interfaces_win.cc",
thakisb8590c92017-03-23 18:14:53482 "base/network_interfaces_win.h",
ckrasic73f7240b2017-01-24 00:06:45483 "base/platform_mime_util.h",
484 "base/platform_mime_util_linux.cc",
485 "base/platform_mime_util_mac.mm",
486 "base/platform_mime_util_win.cc",
487 "base/prioritized_dispatcher.cc",
488 "base/prioritized_dispatcher.h",
489 "base/priority_queue.h",
490 "base/proxy_delegate.h",
Lily Houghton582d4622018-01-22 22:43:40491 "base/proxy_server.cc",
492 "base/proxy_server.h",
493 "base/proxy_server_mac.cc",
ckrasic73f7240b2017-01-24 00:06:45494 "base/request_priority.cc",
495 "base/request_priority.h",
ckrasic73f7240b2017-01-24 00:06:45496 "base/static_cookie_policy.cc",
497 "base/static_cookie_policy.h",
498 "base/test_data_stream.cc",
499 "base/test_data_stream.h",
500 "base/upload_bytes_element_reader.cc",
501 "base/upload_bytes_element_reader.h",
502 "base/upload_data_stream.cc",
503 "base/upload_data_stream.h",
504 "base/upload_element_reader.cc",
505 "base/upload_element_reader.h",
506 "base/upload_file_element_reader.cc",
507 "base/upload_file_element_reader.h",
508 "base/upload_progress.h",
509 "base/winsock_init.cc",
510 "base/winsock_init.h",
511 "base/winsock_util.cc",
512 "base/winsock_util.h",
513 "cert/caching_cert_verifier.cc",
514 "cert/caching_cert_verifier.h",
515 "cert/cert_database_android.cc",
516 "cert/cert_database_ios.cc",
517 "cert/cert_database_mac.cc",
518 "cert/cert_database_nss.cc",
519 "cert/cert_database_win.cc",
Eric Roman227a7f32017-10-09 22:46:45520 "cert/cert_net_fetcher.cc",
ckrasic73f7240b2017-01-24 00:06:45521 "cert/cert_net_fetcher.h",
522 "cert/cert_verify_proc.cc",
523 "cert/cert_verify_proc.h",
524 "cert/cert_verify_proc_android.cc",
525 "cert/cert_verify_proc_android.h",
eroman8ccd62d2017-03-16 23:54:26526 "cert/cert_verify_proc_builtin.cc",
527 "cert/cert_verify_proc_builtin.h",
ckrasic73f7240b2017-01-24 00:06:45528 "cert/cert_verify_proc_ios.cc",
529 "cert/cert_verify_proc_ios.h",
530 "cert/cert_verify_proc_mac.cc",
531 "cert/cert_verify_proc_mac.h",
532 "cert/cert_verify_proc_nss.cc",
533 "cert/cert_verify_proc_nss.h",
ckrasic73f7240b2017-01-24 00:06:45534 "cert/cert_verify_proc_win.cc",
535 "cert/cert_verify_proc_win.h",
ckrasic73f7240b2017-01-24 00:06:45536 "cert/ct_log_response_parser.cc",
537 "cert/ct_log_response_parser.h",
538 "cert/ct_log_verifier.cc",
539 "cert/ct_log_verifier.h",
540 "cert/ct_log_verifier_util.cc",
541 "cert/ct_log_verifier_util.h",
542 "cert/ct_objects_extractor.cc",
543 "cert/ct_objects_extractor.h",
544 "cert/ct_sct_to_string.cc",
545 "cert/ct_sct_to_string.h",
546 "cert/ct_serialization.cc",
547 "cert/ct_serialization.h",
548 "cert/ct_signed_certificate_timestamp_log_param.cc",
549 "cert/ct_signed_certificate_timestamp_log_param.h",
550 "cert/ev_root_ca_metadata.cc",
551 "cert/ev_root_ca_metadata.h",
eromanf628d6b2017-04-19 22:47:27552 "cert/internal/system_trust_store.cc",
553 "cert/internal/system_trust_store.h",
mattmea4ed8232017-02-28 23:13:23554 "cert/internal/trust_store_mac.cc",
555 "cert/internal/trust_store_mac.h",
ckrasic73f7240b2017-01-24 00:06:45556 "cert/internal/trust_store_nss.cc",
557 "cert/internal/trust_store_nss.h",
558 "cert/jwk_serializer.cc",
559 "cert/jwk_serializer.h",
Ryan Sleevi19a7bde2017-11-22 06:51:39560 "cert/known_roots.cc",
561 "cert/known_roots.h",
eromanf2971fd2017-04-20 20:10:45562 "cert/known_roots_mac.cc",
563 "cert/known_roots_mac.h",
564 "cert/known_roots_nss.cc",
565 "cert/known_roots_nss.h",
566 "cert/known_roots_win.cc",
567 "cert/known_roots_win.h",
ckrasic73f7240b2017-01-24 00:06:45568 "cert/merkle_audit_proof.cc",
569 "cert/merkle_audit_proof.h",
570 "cert/merkle_consistency_proof.cc",
571 "cert/merkle_consistency_proof.h",
572 "cert/merkle_tree_leaf.cc",
573 "cert/merkle_tree_leaf.h",
574 "cert/multi_log_ct_verifier.cc",
575 "cert/multi_log_ct_verifier.h",
576 "cert/multi_threaded_cert_verifier.cc",
577 "cert/multi_threaded_cert_verifier.h",
578 "cert/nss_cert_database.cc",
579 "cert/nss_cert_database.h",
580 "cert/nss_cert_database_chromeos.cc",
581 "cert/nss_cert_database_chromeos.h",
582 "cert/nss_profile_filter_chromeos.cc",
583 "cert/nss_profile_filter_chromeos.h",
Ryan Sleevi19a7bde2017-11-22 06:51:39584 "cert/root_cert_list_generated.h",
ckrasic73f7240b2017-01-24 00:06:45585 "cert/test_keychain_search_list_mac.cc",
586 "cert/test_keychain_search_list_mac.h",
587 "cert/test_root_certs.cc",
588 "cert/test_root_certs.h",
589 "cert/test_root_certs_android.cc",
590 "cert/test_root_certs_mac.cc",
591 "cert/test_root_certs_nss.cc",
ckrasic73f7240b2017-01-24 00:06:45592 "cert/test_root_certs_win.cc",
ckrasic73f7240b2017-01-24 00:06:45593 "cert/x509_util_android.cc",
mattm4cede8d2017-04-11 02:55:01594 "cert/x509_util_ios.cc",
595 "cert/x509_util_ios.h",
mattm1a07e632017-05-16 05:55:50596 "cert/x509_util_ios_and_mac.cc",
597 "cert/x509_util_ios_and_mac.h",
ckrasic73f7240b2017-01-24 00:06:45598 "cert/x509_util_mac.cc",
599 "cert/x509_util_mac.h",
600 "cert/x509_util_nss.cc",
601 "cert/x509_util_nss.h",
mattm2fe429a2017-06-20 01:53:44602 "cert/x509_util_win.cc",
603 "cert/x509_util_win.h",
ckrasic73f7240b2017-01-24 00:06:45604 "cert_net/cert_net_fetcher_impl.cc",
605 "cert_net/cert_net_fetcher_impl.h",
606 "cert_net/nss_ocsp.cc",
607 "cert_net/nss_ocsp.h",
608 "cookies/canonical_cookie.cc",
609 "cookies/canonical_cookie.h",
Victor Costan14f47c12018-03-01 08:02:24610 "cookies/cookie_change_dispatcher.cc",
611 "cookies/cookie_change_dispatcher.h",
ckrasic73f7240b2017-01-24 00:06:45612 "cookies/cookie_constants.cc",
613 "cookies/cookie_constants.h",
614 "cookies/cookie_monster.cc",
615 "cookies/cookie_monster.h",
Victor Costan14f47c12018-03-01 08:02:24616 "cookies/cookie_monster_change_dispatcher.cc",
617 "cookies/cookie_monster_change_dispatcher.h",
ckrasic73f7240b2017-01-24 00:06:45618 "cookies/cookie_options.cc",
619 "cookies/cookie_options.h",
620 "cookies/cookie_store.cc",
621 "cookies/cookie_store.h",
622 "cookies/cookie_util.cc",
623 "cookies/cookie_util.h",
624 "cookies/parsed_cookie.cc",
625 "cookies/parsed_cookie.h",
Maks Orlovich036fd1f2017-08-07 17:51:11626 "disk_cache/backend_cleanup_tracker.cc",
627 "disk_cache/backend_cleanup_tracker.h",
ckrasic73f7240b2017-01-24 00:06:45628 "disk_cache/blockfile/addr.cc",
629 "disk_cache/blockfile/addr.h",
630 "disk_cache/blockfile/backend_impl.cc",
631 "disk_cache/blockfile/backend_impl.h",
632 "disk_cache/blockfile/bitmap.cc",
633 "disk_cache/blockfile/bitmap.h",
634 "disk_cache/blockfile/block_files.cc",
635 "disk_cache/blockfile/block_files.h",
636 "disk_cache/blockfile/disk_format.cc",
637 "disk_cache/blockfile/disk_format.h",
638 "disk_cache/blockfile/disk_format_base.h",
639 "disk_cache/blockfile/entry_impl.cc",
640 "disk_cache/blockfile/entry_impl.h",
641 "disk_cache/blockfile/errors.h",
642 "disk_cache/blockfile/eviction.cc",
643 "disk_cache/blockfile/eviction.h",
644 "disk_cache/blockfile/experiments.h",
645 "disk_cache/blockfile/file.cc",
646 "disk_cache/blockfile/file.h",
647 "disk_cache/blockfile/file_block.h",
648 "disk_cache/blockfile/file_ios.cc",
649 "disk_cache/blockfile/file_lock.cc",
650 "disk_cache/blockfile/file_lock.h",
651 "disk_cache/blockfile/file_posix.cc",
652 "disk_cache/blockfile/file_win.cc",
653 "disk_cache/blockfile/histogram_macros.h",
654 "disk_cache/blockfile/in_flight_backend_io.cc",
655 "disk_cache/blockfile/in_flight_backend_io.h",
656 "disk_cache/blockfile/in_flight_io.cc",
657 "disk_cache/blockfile/in_flight_io.h",
658 "disk_cache/blockfile/mapped_file.cc",
659 "disk_cache/blockfile/mapped_file.h",
660 "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc",
661 "disk_cache/blockfile/mapped_file_posix.cc",
662 "disk_cache/blockfile/mapped_file_win.cc",
663 "disk_cache/blockfile/rankings.cc",
664 "disk_cache/blockfile/rankings.h",
665 "disk_cache/blockfile/sparse_control.cc",
666 "disk_cache/blockfile/sparse_control.h",
667 "disk_cache/blockfile/stats.cc",
668 "disk_cache/blockfile/stats.h",
669 "disk_cache/blockfile/storage_block-inl.h",
670 "disk_cache/blockfile/storage_block.h",
671 "disk_cache/blockfile/stress_support.h",
672 "disk_cache/blockfile/trace.cc",
673 "disk_cache/blockfile/trace.h",
674 "disk_cache/blockfile/webfonts_histogram.cc",
675 "disk_cache/blockfile/webfonts_histogram.h",
676 "disk_cache/cache_util.cc",
677 "disk_cache/cache_util.h",
678 "disk_cache/cache_util_posix.cc",
679 "disk_cache/cache_util_win.cc",
680 "disk_cache/disk_cache.cc",
681 "disk_cache/disk_cache.h",
682 "disk_cache/memory/mem_backend_impl.cc",
683 "disk_cache/memory/mem_backend_impl.h",
684 "disk_cache/memory/mem_entry_impl.cc",
685 "disk_cache/memory/mem_entry_impl.h",
686 "disk_cache/net_log_parameters.cc",
687 "disk_cache/net_log_parameters.h",
688 "disk_cache/simple/simple_backend_impl.cc",
689 "disk_cache/simple/simple_backend_impl.h",
690 "disk_cache/simple/simple_backend_version.h",
691 "disk_cache/simple/simple_entry_format.cc",
692 "disk_cache/simple/simple_entry_format.h",
693 "disk_cache/simple/simple_entry_format_history.h",
694 "disk_cache/simple/simple_entry_impl.cc",
695 "disk_cache/simple/simple_entry_impl.h",
696 "disk_cache/simple/simple_entry_operation.cc",
697 "disk_cache/simple/simple_entry_operation.h",
698 "disk_cache/simple/simple_experiment.cc",
699 "disk_cache/simple/simple_experiment.h",
Maks Orlovichf378b3a2017-10-31 16:27:30700 "disk_cache/simple/simple_file_tracker.cc",
701 "disk_cache/simple/simple_file_tracker.h",
ckrasic73f7240b2017-01-24 00:06:45702 "disk_cache/simple/simple_histogram_macros.h",
703 "disk_cache/simple/simple_index.cc",
704 "disk_cache/simple/simple_index.h",
705 "disk_cache/simple/simple_index_delegate.h",
706 "disk_cache/simple/simple_index_file.cc",
707 "disk_cache/simple/simple_index_file.h",
708 "disk_cache/simple/simple_index_file_posix.cc",
709 "disk_cache/simple/simple_index_file_win.cc",
710 "disk_cache/simple/simple_net_log_parameters.cc",
711 "disk_cache/simple/simple_net_log_parameters.h",
712 "disk_cache/simple/simple_synchronous_entry.cc",
713 "disk_cache/simple/simple_synchronous_entry.h",
714 "disk_cache/simple/simple_util.cc",
715 "disk_cache/simple/simple_util.h",
716 "disk_cache/simple/simple_util_posix.cc",
717 "disk_cache/simple/simple_util_win.cc",
718 "disk_cache/simple/simple_version_upgrade.cc",
719 "disk_cache/simple/simple_version_upgrade.h",
720 "dns/address_sorter.h",
721 "dns/address_sorter_posix.cc",
722 "dns/address_sorter_posix.h",
723 "dns/address_sorter_win.cc",
724 "dns/dns_client.cc",
725 "dns/dns_client.h",
726 "dns/dns_config_service.cc",
727 "dns/dns_config_service.h",
728 "dns/dns_config_service_posix.cc",
729 "dns/dns_config_service_posix.h",
730 "dns/dns_config_service_win.cc",
731 "dns/dns_config_service_win.h",
732 "dns/dns_config_watcher_mac.cc",
733 "dns/dns_config_watcher_mac.h",
734 "dns/dns_hosts.cc",
735 "dns/dns_hosts.h",
736 "dns/dns_protocol.h",
737 "dns/dns_query.cc",
738 "dns/dns_query.h",
739 "dns/dns_reloader.cc",
740 "dns/dns_reloader.h",
741 "dns/dns_response.cc",
742 "dns/dns_response.h",
743 "dns/dns_session.cc",
744 "dns/dns_session.h",
745 "dns/dns_socket_pool.cc",
746 "dns/dns_socket_pool.h",
747 "dns/dns_transaction.cc",
748 "dns/dns_transaction.h",
749 "dns/host_cache.cc",
750 "dns/host_cache.h",
751 "dns/host_resolver.cc",
752 "dns/host_resolver.h",
753 "dns/host_resolver_impl.cc",
754 "dns/host_resolver_impl.h",
755 "dns/host_resolver_proc.cc",
756 "dns/host_resolver_proc.h",
757 "dns/mapped_host_resolver.cc",
758 "dns/mapped_host_resolver.h",
759 "dns/mdns_cache.cc",
760 "dns/mdns_cache.h",
761 "dns/mdns_client.cc",
762 "dns/mdns_client.h",
763 "dns/mdns_client_impl.cc",
764 "dns/mdns_client_impl.h",
765 "dns/notify_watcher_mac.cc",
766 "dns/notify_watcher_mac.h",
767 "dns/record_parsed.cc",
768 "dns/record_parsed.h",
769 "dns/record_rdata.cc",
770 "dns/record_rdata.h",
771 "dns/serial_worker.cc",
772 "dns/serial_worker.h",
773 "filter/filter_source_stream.cc",
774 "filter/filter_source_stream.h",
775 "filter/gzip_header.cc",
776 "filter/gzip_header.h",
777 "filter/gzip_source_stream.cc",
778 "filter/gzip_source_stream.h",
ckrasic73f7240b2017-01-24 00:06:45779 "filter/source_stream.cc",
780 "filter/source_stream.h",
781 "filter/source_stream_type_list.h",
782 "http/bidirectional_stream.cc",
783 "http/bidirectional_stream.h",
784 "http/bidirectional_stream_impl.cc",
785 "http/bidirectional_stream_impl.h",
786 "http/bidirectional_stream_request_info.cc",
787 "http/bidirectional_stream_request_info.h",
wangyix64ccc57c2017-06-01 23:14:16788 "http/broken_alternative_services.cc",
789 "http/broken_alternative_services.h",
ckrasic73f7240b2017-01-24 00:06:45790 "http/failing_http_transaction_factory.cc",
791 "http/failing_http_transaction_factory.h",
792 "http/http_auth.cc",
793 "http/http_auth.h",
794 "http/http_auth_cache.cc",
795 "http/http_auth_cache.h",
796 "http/http_auth_controller.cc",
797 "http/http_auth_controller.h",
798 "http/http_auth_filter.cc",
799 "http/http_auth_filter.h",
ckrasic73f7240b2017-01-24 00:06:45800 "http/http_auth_gssapi_posix.cc",
801 "http/http_auth_gssapi_posix.h",
802 "http/http_auth_handler.cc",
803 "http/http_auth_handler.h",
804 "http/http_auth_handler_basic.cc",
805 "http/http_auth_handler_basic.h",
806 "http/http_auth_handler_digest.cc",
807 "http/http_auth_handler_digest.h",
808 "http/http_auth_handler_factory.cc",
809 "http/http_auth_handler_factory.h",
810 "http/http_auth_handler_negotiate.cc",
811 "http/http_auth_handler_negotiate.h",
812 "http/http_auth_handler_ntlm.cc",
813 "http/http_auth_handler_ntlm.h",
814 "http/http_auth_handler_ntlm_portable.cc",
815 "http/http_auth_handler_ntlm_win.cc",
816 "http/http_auth_multi_round_parse.cc",
817 "http/http_auth_multi_round_parse.h",
818 "http/http_auth_preferences.cc",
819 "http/http_auth_preferences.h",
820 "http/http_auth_sspi_win.cc",
821 "http/http_auth_sspi_win.h",
822 "http/http_basic_state.cc",
823 "http/http_basic_state.h",
824 "http/http_basic_stream.cc",
825 "http/http_basic_stream.h",
826 "http/http_cache.cc",
827 "http/http_cache.h",
828 "http/http_cache_lookup_manager.cc",
829 "http/http_cache_lookup_manager.h",
830 "http/http_cache_transaction.cc",
831 "http/http_cache_transaction.h",
shivanishac6582e12017-07-14 22:18:19832 "http/http_cache_writers.cc",
833 "http/http_cache_writers.h",
ckrasic73f7240b2017-01-24 00:06:45834 "http/http_chunked_decoder.cc",
835 "http/http_chunked_decoder.h",
836 "http/http_content_disposition.cc",
837 "http/http_content_disposition.h",
838 "http/http_network_layer.cc",
839 "http/http_network_layer.h",
840 "http/http_network_session.cc",
841 "http/http_network_session.h",
842 "http/http_network_session_peer.cc",
843 "http/http_network_session_peer.h",
844 "http/http_network_transaction.cc",
845 "http/http_network_transaction.h",
846 "http/http_proxy_client_socket.cc",
847 "http/http_proxy_client_socket.h",
848 "http/http_proxy_client_socket_pool.cc",
849 "http/http_proxy_client_socket_pool.h",
850 "http/http_proxy_client_socket_wrapper.cc",
851 "http/http_proxy_client_socket_wrapper.h",
852 "http/http_request_info.cc",
853 "http/http_request_info.h",
854 "http/http_response_body_drainer.cc",
855 "http/http_response_body_drainer.h",
856 "http/http_server_properties.cc",
857 "http/http_server_properties.h",
858 "http/http_server_properties_impl.cc",
859 "http/http_server_properties_impl.h",
860 "http/http_server_properties_manager.cc",
861 "http/http_server_properties_manager.h",
862 "http/http_status_code.cc",
863 "http/http_status_code.h",
864 "http/http_stream.h",
865 "http/http_stream_factory.cc",
866 "http/http_stream_factory.h",
867 "http/http_stream_factory_impl.cc",
868 "http/http_stream_factory_impl.h",
869 "http/http_stream_factory_impl_job.cc",
870 "http/http_stream_factory_impl_job.h",
871 "http/http_stream_factory_impl_job_controller.cc",
872 "http/http_stream_factory_impl_job_controller.h",
ckrasic73f7240b2017-01-24 00:06:45873 "http/http_stream_parser.cc",
874 "http/http_stream_parser.h",
Bence Béky6b44abf2018-04-11 10:32:51875 "http/http_stream_request.cc",
876 "http/http_stream_request.h",
ckrasic73f7240b2017-01-24 00:06:45877 "http/http_transaction.h",
878 "http/http_transaction_factory.h",
879 "http/http_version.h",
ckrasic73f7240b2017-01-24 00:06:45880 "http/partial_data.cc",
881 "http/partial_data.h",
882 "http/proxy_client_socket.cc",
883 "http/proxy_client_socket.h",
884 "http/proxy_connect_redirect_http_stream.cc",
885 "http/proxy_connect_redirect_http_stream.h",
Eric Roman6f8003352018-03-01 22:49:14886 "http/proxy_fallback.cc",
887 "http/proxy_fallback.h",
ckrasic73f7240b2017-01-24 00:06:45888 "http/transport_security_persister.cc",
889 "http/transport_security_persister.h",
ckrasic73f7240b2017-01-24 00:06:45890 "http/url_security_manager.cc",
891 "http/url_security_manager.h",
892 "http/url_security_manager_posix.cc",
893 "http/url_security_manager_win.cc",
ckrasic73f7240b2017-01-24 00:06:45894 "log/file_net_log_observer.cc",
895 "log/file_net_log_observer.h",
896 "log/net_log_util.cc",
897 "log/net_log_util.h",
898 "log/trace_net_log_observer.cc",
899 "log/trace_net_log_observer.h",
ckrasic73f7240b2017-01-24 00:06:45900 "nqe/cached_network_quality.cc",
901 "nqe/cached_network_quality.h",
902 "nqe/effective_connection_type.cc",
903 "nqe/effective_connection_type.h",
tbansal1bd4a952017-06-06 23:01:46904 "nqe/effective_connection_type_observer.h",
ckrasic73f7240b2017-01-24 00:06:45905 "nqe/event_creator.cc",
906 "nqe/event_creator.h",
Tarun Bansal9414bae2017-11-21 01:37:23907 "nqe/network_id.cc",
ckrasic73f7240b2017-01-24 00:06:45908 "nqe/network_id.h",
909 "nqe/network_qualities_prefs_manager.cc",
910 "nqe/network_qualities_prefs_manager.h",
911 "nqe/network_quality.cc",
912 "nqe/network_quality.h",
913 "nqe/network_quality_estimator.cc",
914 "nqe/network_quality_estimator.h",
915 "nqe/network_quality_estimator_params.cc",
916 "nqe/network_quality_estimator_params.h",
tbansal82edab42017-06-19 05:55:25917 "nqe/network_quality_estimator_util.cc",
918 "nqe/network_quality_estimator_util.h",
Devdeep Ray35f50662017-08-11 02:41:30919 "nqe/network_quality_observation.cc",
ckrasic73f7240b2017-01-24 00:06:45920 "nqe/network_quality_observation.h",
Tarun Bansald2677a12017-08-31 01:26:38921 "nqe/network_quality_observation_source.cc",
ckrasic73f7240b2017-01-24 00:06:45922 "nqe/network_quality_observation_source.h",
tbansal1bd4a952017-06-06 23:01:46923 "nqe/network_quality_provider.cc",
924 "nqe/network_quality_provider.h",
ckrasic73f7240b2017-01-24 00:06:45925 "nqe/network_quality_store.cc",
926 "nqe/network_quality_store.h",
Devdeep Ray35f50662017-08-11 02:41:30927 "nqe/observation_buffer.cc",
ckrasic73f7240b2017-01-24 00:06:45928 "nqe/observation_buffer.h",
tbansal1bd4a952017-06-06 23:01:46929 "nqe/rtt_throughput_estimates_observer.h",
ckrasic73f7240b2017-01-24 00:06:45930 "nqe/socket_watcher.cc",
931 "nqe/socket_watcher.h",
932 "nqe/socket_watcher_factory.cc",
933 "nqe/socket_watcher_factory.h",
934 "nqe/throughput_analyzer.cc",
935 "nqe/throughput_analyzer.h",
936 "nqe/weighted_observation.h",
zentarob89acda42017-07-14 01:28:57937 "ntlm/ntlm.cc",
938 "ntlm/ntlm.h",
zentarob74795682017-07-14 00:58:22939 "ntlm/ntlm_buffer_reader.cc",
940 "ntlm/ntlm_buffer_reader.h",
941 "ntlm/ntlm_buffer_writer.cc",
942 "ntlm/ntlm_buffer_writer.h",
Zentaro Kavanaghdd556612017-08-03 20:27:04943 "ntlm/ntlm_client.cc",
944 "ntlm/ntlm_client.h",
zentarob74795682017-07-14 00:58:22945 "ntlm/ntlm_constants.h",
Lily Houghton582d4622018-01-22 22:43:40946 "proxy_resolution/dhcp_pac_file_adapter_fetcher_win.cc",
947 "proxy_resolution/dhcp_pac_file_adapter_fetcher_win.h",
948 "proxy_resolution/dhcp_pac_file_fetcher.cc",
949 "proxy_resolution/dhcp_pac_file_fetcher.h",
950 "proxy_resolution/dhcp_pac_file_fetcher_factory.cc",
951 "proxy_resolution/dhcp_pac_file_fetcher_factory.h",
952 "proxy_resolution/dhcp_pac_file_fetcher_win.cc",
953 "proxy_resolution/dhcp_pac_file_fetcher_win.h",
954 "proxy_resolution/dhcpcsvc_init_win.cc",
955 "proxy_resolution/dhcpcsvc_init_win.h",
956 "proxy_resolution/multi_threaded_proxy_resolver.cc",
957 "proxy_resolution/multi_threaded_proxy_resolver.h",
958 "proxy_resolution/network_delegate_error_observer.cc",
959 "proxy_resolution/network_delegate_error_observer.h",
960 "proxy_resolution/pac_file_data.cc",
961 "proxy_resolution/pac_file_data.h",
962 "proxy_resolution/pac_file_decider.cc",
963 "proxy_resolution/pac_file_decider.h",
964 "proxy_resolution/pac_file_fetcher.h",
965 "proxy_resolution/pac_file_fetcher_impl.cc",
966 "proxy_resolution/pac_file_fetcher_impl.h",
967 "proxy_resolution/pac_js_library.h",
968 "proxy_resolution/polling_proxy_config_service.cc",
969 "proxy_resolution/polling_proxy_config_service.h",
970 "proxy_resolution/proxy_bypass_rules.cc",
971 "proxy_resolution/proxy_bypass_rules.h",
972 "proxy_resolution/proxy_config.cc",
973 "proxy_resolution/proxy_config.h",
974 "proxy_resolution/proxy_config_service.h",
975 "proxy_resolution/proxy_config_service_android.cc",
976 "proxy_resolution/proxy_config_service_android.h",
977 "proxy_resolution/proxy_config_service_fixed.cc",
978 "proxy_resolution/proxy_config_service_fixed.h",
979 "proxy_resolution/proxy_config_service_ios.cc",
980 "proxy_resolution/proxy_config_service_ios.h",
981 "proxy_resolution/proxy_config_service_linux.cc",
982 "proxy_resolution/proxy_config_service_linux.h",
983 "proxy_resolution/proxy_config_service_mac.cc",
984 "proxy_resolution/proxy_config_service_mac.h",
985 "proxy_resolution/proxy_config_service_win.cc",
986 "proxy_resolution/proxy_config_service_win.h",
Ramin Halavatica8d5252018-03-12 05:33:49987 "proxy_resolution/proxy_config_with_annotation.cc",
988 "proxy_resolution/proxy_config_with_annotation.h",
Lily Houghton582d4622018-01-22 22:43:40989 "proxy_resolution/proxy_info.cc",
990 "proxy_resolution/proxy_info.h",
991 "proxy_resolution/proxy_list.cc",
992 "proxy_resolution/proxy_list.h",
Lily Houghtonffe89daa02018-03-09 18:30:03993 "proxy_resolution/proxy_resolution_service.cc",
994 "proxy_resolution/proxy_resolution_service.h",
Lily Houghton582d4622018-01-22 22:43:40995 "proxy_resolution/proxy_resolver.h",
996 "proxy_resolution/proxy_resolver_error_observer.h",
997 "proxy_resolution/proxy_resolver_factory.cc",
998 "proxy_resolution/proxy_resolver_factory.h",
999 "proxy_resolution/proxy_resolver_mac.cc",
1000 "proxy_resolution/proxy_resolver_mac.h",
1001 "proxy_resolution/proxy_resolver_winhttp.cc",
1002 "proxy_resolution/proxy_resolver_winhttp.h",
1003 "proxy_resolution/proxy_retry_info.h",
ckrasic73f7240b2017-01-24 00:06:451004 "quic/chromium/bidirectional_stream_quic_impl.cc",
1005 "quic/chromium/bidirectional_stream_quic_impl.h",
1006 "quic/chromium/crypto/channel_id_chromium.cc",
1007 "quic/chromium/crypto/channel_id_chromium.h",
1008 "quic/chromium/crypto/proof_source_chromium.cc",
1009 "quic/chromium/crypto/proof_source_chromium.h",
1010 "quic/chromium/crypto/proof_verifier_chromium.cc",
1011 "quic/chromium/crypto/proof_verifier_chromium.h",
1012 "quic/chromium/network_connection.cc",
1013 "quic/chromium/network_connection.h",
1014 "quic/chromium/properties_based_quic_server_info.cc",
1015 "quic/chromium/properties_based_quic_server_info.h",
1016 "quic/chromium/quic_address_mismatch.cc",
1017 "quic/chromium/quic_address_mismatch.h",
1018 "quic/chromium/quic_chromium_alarm_factory.cc",
1019 "quic/chromium/quic_chromium_alarm_factory.h",
1020 "quic/chromium/quic_chromium_client_session.cc",
1021 "quic/chromium/quic_chromium_client_session.h",
1022 "quic/chromium/quic_chromium_client_stream.cc",
1023 "quic/chromium/quic_chromium_client_stream.h",
1024 "quic/chromium/quic_chromium_connection_helper.cc",
1025 "quic/chromium/quic_chromium_connection_helper.h",
1026 "quic/chromium/quic_chromium_packet_reader.cc",
1027 "quic/chromium/quic_chromium_packet_reader.h",
1028 "quic/chromium/quic_chromium_packet_writer.cc",
1029 "quic/chromium/quic_chromium_packet_writer.h",
1030 "quic/chromium/quic_clock_skew_detector.cc",
1031 "quic/chromium/quic_clock_skew_detector.h",
1032 "quic/chromium/quic_connection_logger.cc",
1033 "quic/chromium/quic_connection_logger.h",
Zhongyi Shi8fff75b2017-11-19 21:36:361034 "quic/chromium/quic_connectivity_probing_manager.cc",
1035 "quic/chromium/quic_connectivity_probing_manager.h",
ckrasic73f7240b2017-01-24 00:06:451036 "quic/chromium/quic_crypto_client_stream_factory.cc",
1037 "quic/chromium/quic_crypto_client_stream_factory.h",
1038 "quic/chromium/quic_http_stream.cc",
1039 "quic/chromium/quic_http_stream.h",
1040 "quic/chromium/quic_http_utils.cc",
1041 "quic/chromium/quic_http_utils.h",
Yixin Wang0d2c6b7e12017-08-16 21:12:551042 "quic/chromium/quic_proxy_client_socket.cc",
1043 "quic/chromium/quic_proxy_client_socket.h",
ckrasic73f7240b2017-01-24 00:06:451044 "quic/chromium/quic_server_info.cc",
1045 "quic/chromium/quic_server_info.h",
Paul Jensen8e3c5d32018-02-19 17:06:331046 "quic/chromium/quic_session_key.cc",
1047 "quic/chromium/quic_session_key.h",
ckrasic73f7240b2017-01-24 00:06:451048 "quic/chromium/quic_stream_factory.cc",
1049 "quic/chromium/quic_stream_factory.h",
1050 "quic/chromium/quic_utils_chromium.cc",
1051 "quic/chromium/quic_utils_chromium.h",
1052 "quic/core/congestion_control/bandwidth_sampler.cc",
1053 "quic/core/congestion_control/bandwidth_sampler.h",
1054 "quic/core/congestion_control/bbr_sender.cc",
1055 "quic/core/congestion_control/bbr_sender.h",
ckrasic73f7240b2017-01-24 00:06:451056 "quic/core/congestion_control/cubic_bytes.cc",
1057 "quic/core/congestion_control/cubic_bytes.h",
1058 "quic/core/congestion_control/general_loss_algorithm.cc",
1059 "quic/core/congestion_control/general_loss_algorithm.h",
1060 "quic/core/congestion_control/hybrid_slow_start.cc",
1061 "quic/core/congestion_control/hybrid_slow_start.h",
1062 "quic/core/congestion_control/loss_detection_interface.h",
1063 "quic/core/congestion_control/pacing_sender.cc",
1064 "quic/core/congestion_control/pacing_sender.h",
1065 "quic/core/congestion_control/prr_sender.cc",
1066 "quic/core/congestion_control/prr_sender.h",
1067 "quic/core/congestion_control/rtt_stats.cc",
1068 "quic/core/congestion_control/rtt_stats.h",
1069 "quic/core/congestion_control/send_algorithm_interface.cc",
1070 "quic/core/congestion_control/send_algorithm_interface.h",
ckrasic73f7240b2017-01-24 00:06:451071 "quic/core/congestion_control/tcp_cubic_sender_bytes.cc",
ckrasicb07e1602017-01-26 01:39:021072 "quic/core/congestion_control/tcp_cubic_sender_bytes.h",
ckrasic73f7240b2017-01-24 00:06:451073 "quic/core/congestion_control/windowed_filter.h",
1074 "quic/core/crypto/aead_base_decrypter.cc",
1075 "quic/core/crypto/aead_base_decrypter.h",
1076 "quic/core/crypto/aead_base_encrypter.cc",
1077 "quic/core/crypto/aead_base_encrypter.h",
1078 "quic/core/crypto/aes_128_gcm_12_decrypter.cc",
1079 "quic/core/crypto/aes_128_gcm_12_decrypter.h",
1080 "quic/core/crypto/aes_128_gcm_12_encrypter.cc",
1081 "quic/core/crypto/aes_128_gcm_12_encrypter.h",
Michael Warres74ee3ce2017-10-09 15:26:371082 "quic/core/crypto/aes_128_gcm_decrypter.cc",
1083 "quic/core/crypto/aes_128_gcm_decrypter.h",
1084 "quic/core/crypto/aes_128_gcm_encrypter.cc",
1085 "quic/core/crypto/aes_128_gcm_encrypter.h",
1086 "quic/core/crypto/aes_256_gcm_decrypter.cc",
1087 "quic/core/crypto/aes_256_gcm_decrypter.h",
1088 "quic/core/crypto/aes_256_gcm_encrypter.cc",
1089 "quic/core/crypto/aes_256_gcm_encrypter.h",
ckrasic73f7240b2017-01-24 00:06:451090 "quic/core/crypto/cert_compressor.cc",
1091 "quic/core/crypto/cert_compressor.h",
1092 "quic/core/crypto/chacha20_poly1305_decrypter.cc",
1093 "quic/core/crypto/chacha20_poly1305_decrypter.h",
1094 "quic/core/crypto/chacha20_poly1305_encrypter.cc",
1095 "quic/core/crypto/chacha20_poly1305_encrypter.h",
Michael Warres74ee3ce2017-10-09 15:26:371096 "quic/core/crypto/chacha20_poly1305_tls_decrypter.cc",
1097 "quic/core/crypto/chacha20_poly1305_tls_decrypter.h",
1098 "quic/core/crypto/chacha20_poly1305_tls_encrypter.cc",
1099 "quic/core/crypto/chacha20_poly1305_tls_encrypter.h",
ckrasic73f7240b2017-01-24 00:06:451100 "quic/core/crypto/channel_id.cc",
1101 "quic/core/crypto/channel_id.h",
1102 "quic/core/crypto/common_cert_set.cc",
1103 "quic/core/crypto/common_cert_set.h",
1104 "quic/core/crypto/crypto_framer.cc",
1105 "quic/core/crypto/crypto_framer.h",
1106 "quic/core/crypto/crypto_handshake.cc",
1107 "quic/core/crypto/crypto_handshake.h",
1108 "quic/core/crypto/crypto_handshake_message.cc",
1109 "quic/core/crypto/crypto_handshake_message.h",
Fan Yang2a1699a2017-07-25 16:44:551110 "quic/core/crypto/crypto_message_parser.h",
ckrasic73f7240b2017-01-24 00:06:451111 "quic/core/crypto/crypto_protocol.h",
1112 "quic/core/crypto/crypto_secret_boxer.cc",
1113 "quic/core/crypto/crypto_secret_boxer.h",
1114 "quic/core/crypto/crypto_server_config_protobuf.cc",
1115 "quic/core/crypto/crypto_server_config_protobuf.h",
1116 "quic/core/crypto/crypto_utils.cc",
1117 "quic/core/crypto/crypto_utils.h",
1118 "quic/core/crypto/curve25519_key_exchange.cc",
1119 "quic/core/crypto/curve25519_key_exchange.h",
1120 "quic/core/crypto/ephemeral_key_source.h",
1121 "quic/core/crypto/key_exchange.h",
ckrasic73f7240b2017-01-24 00:06:451122 "quic/core/crypto/null_decrypter.cc",
1123 "quic/core/crypto/null_decrypter.h",
1124 "quic/core/crypto/null_encrypter.cc",
1125 "quic/core/crypto/null_encrypter.h",
1126 "quic/core/crypto/p256_key_exchange.cc",
1127 "quic/core/crypto/p256_key_exchange.h",
1128 "quic/core/crypto/proof_source.cc",
1129 "quic/core/crypto/proof_source.h",
1130 "quic/core/crypto/proof_verifier.h",
1131 "quic/core/crypto/quic_compressed_certs_cache.cc",
1132 "quic/core/crypto/quic_compressed_certs_cache.h",
1133 "quic/core/crypto/quic_crypto_client_config.cc",
1134 "quic/core/crypto/quic_crypto_client_config.h",
1135 "quic/core/crypto/quic_crypto_proof.cc",
1136 "quic/core/crypto/quic_crypto_proof.h",
1137 "quic/core/crypto/quic_crypto_server_config.cc",
1138 "quic/core/crypto/quic_crypto_server_config.h",
1139 "quic/core/crypto/quic_decrypter.cc",
1140 "quic/core/crypto/quic_decrypter.h",
1141 "quic/core/crypto/quic_encrypter.cc",
1142 "quic/core/crypto/quic_encrypter.h",
1143 "quic/core/crypto/quic_random.cc",
1144 "quic/core/crypto/quic_random.h",
Ryan Hamilton88151482017-09-06 14:55:451145 "quic/core/crypto/quic_tls_adapter.cc",
1146 "quic/core/crypto/quic_tls_adapter.h",
ckrasic73f7240b2017-01-24 00:06:451147 "quic/core/crypto/scoped_evp_aead_ctx.cc",
1148 "quic/core/crypto/scoped_evp_aead_ctx.h",
Yixin Wang38270212018-01-31 00:13:441149 "quic/core/crypto/transport_parameters.cc",
1150 "quic/core/crypto/transport_parameters.h",
ckrasic73f7240b2017-01-24 00:06:451151 "quic/core/frames/quic_ack_frame.cc",
1152 "quic/core/frames/quic_ack_frame.h",
1153 "quic/core/frames/quic_blocked_frame.cc",
1154 "quic/core/frames/quic_blocked_frame.h",
1155 "quic/core/frames/quic_connection_close_frame.cc",
1156 "quic/core/frames/quic_connection_close_frame.h",
Fan Yang0a1a0af2017-11-27 19:28:051157 "quic/core/frames/quic_control_frame.h",
ckrasic73f7240b2017-01-24 00:06:451158 "quic/core/frames/quic_frame.cc",
1159 "quic/core/frames/quic_frame.h",
1160 "quic/core/frames/quic_goaway_frame.cc",
1161 "quic/core/frames/quic_goaway_frame.h",
Ian Swettb411cf482018-04-02 15:57:211162 "quic/core/frames/quic_ietf_blocked_frame.cc",
1163 "quic/core/frames/quic_ietf_blocked_frame.h",
1164 "quic/core/frames/quic_ietf_max_stream_id_frame.cc",
1165 "quic/core/frames/quic_ietf_max_stream_id_frame.h",
1166 "quic/core/frames/quic_ietf_stream_id_blocked_frame.cc",
1167 "quic/core/frames/quic_ietf_stream_id_blocked_frame.h",
ckrasic73f7240b2017-01-24 00:06:451168 "quic/core/frames/quic_mtu_discovery_frame.h",
1169 "quic/core/frames/quic_padding_frame.cc",
1170 "quic/core/frames/quic_padding_frame.h",
Michael Warresa6afb132018-03-09 12:27:331171 "quic/core/frames/quic_path_challenge_frame.cc",
1172 "quic/core/frames/quic_path_challenge_frame.h",
1173 "quic/core/frames/quic_path_response_frame.cc",
1174 "quic/core/frames/quic_path_response_frame.h",
Fan Yang0a1a0af2017-11-27 19:28:051175 "quic/core/frames/quic_ping_frame.cc",
ckrasic73f7240b2017-01-24 00:06:451176 "quic/core/frames/quic_ping_frame.h",
1177 "quic/core/frames/quic_rst_stream_frame.cc",
1178 "quic/core/frames/quic_rst_stream_frame.h",
Victor Vasiliev63154862018-03-17 01:11:561179 "quic/core/frames/quic_stop_sending_frame.cc",
1180 "quic/core/frames/quic_stop_sending_frame.h",
ckrasic73f7240b2017-01-24 00:06:451181 "quic/core/frames/quic_stop_waiting_frame.cc",
1182 "quic/core/frames/quic_stop_waiting_frame.h",
1183 "quic/core/frames/quic_stream_frame.cc",
1184 "quic/core/frames/quic_stream_frame.h",
1185 "quic/core/frames/quic_window_update_frame.cc",
1186 "quic/core/frames/quic_window_update_frame.h",
vasilvv8b7782e2017-05-12 01:52:031187 "quic/core/packet_number_indexed_queue.h",
ckrasic73f7240b2017-01-24 00:06:451188 "quic/core/quic_ack_listener_interface.cc",
1189 "quic/core/quic_ack_listener_interface.h",
1190 "quic/core/quic_alarm.cc",
1191 "quic/core/quic_alarm.h",
ckrasicb07e1602017-01-26 01:39:021192 "quic/core/quic_alarm_factory.h",
ckrasic73f7240b2017-01-24 00:06:451193 "quic/core/quic_arena_scoped_ptr.h",
1194 "quic/core/quic_bandwidth.cc",
1195 "quic/core/quic_bandwidth.h",
1196 "quic/core/quic_blocked_writer_interface.h",
1197 "quic/core/quic_buffer_allocator.cc",
1198 "quic/core/quic_buffer_allocator.h",
1199 "quic/core/quic_buffered_packet_store.cc",
1200 "quic/core/quic_buffered_packet_store.h",
1201 "quic/core/quic_client_promised_info.cc",
1202 "quic/core/quic_client_promised_info.h",
1203 "quic/core/quic_client_push_promise_index.cc",
1204 "quic/core/quic_client_push_promise_index.h",
ckrasic73f7240b2017-01-24 00:06:451205 "quic/core/quic_config.cc",
1206 "quic/core/quic_config.h",
1207 "quic/core/quic_connection.cc",
1208 "quic/core/quic_connection.h",
1209 "quic/core/quic_connection_close_delegate_interface.h",
1210 "quic/core/quic_connection_stats.cc",
1211 "quic/core/quic_connection_stats.h",
1212 "quic/core/quic_constants.cc",
1213 "quic/core/quic_constants.h",
Fan Yange8220f002017-11-27 21:19:071214 "quic/core/quic_control_frame_manager.cc",
1215 "quic/core/quic_control_frame_manager.h",
Fan Yang2a1699a2017-07-25 16:44:551216 "quic/core/quic_crypto_client_handshaker.cc",
1217 "quic/core/quic_crypto_client_handshaker.h",
ckrasic73f7240b2017-01-24 00:06:451218 "quic/core/quic_crypto_client_stream.cc",
1219 "quic/core/quic_crypto_client_stream.h",
Fan Yang2a1699a2017-07-25 16:44:551220 "quic/core/quic_crypto_handshaker.cc",
1221 "quic/core/quic_crypto_handshaker.h",
1222 "quic/core/quic_crypto_server_handshaker.cc",
1223 "quic/core/quic_crypto_server_handshaker.h",
ckrasic73f7240b2017-01-24 00:06:451224 "quic/core/quic_crypto_server_stream.cc",
1225 "quic/core/quic_crypto_server_stream.h",
1226 "quic/core/quic_crypto_stream.cc",
1227 "quic/core/quic_crypto_stream.h",
1228 "quic/core/quic_data_reader.cc",
1229 "quic/core/quic_data_reader.h",
1230 "quic/core/quic_data_writer.cc",
1231 "quic/core/quic_data_writer.h",
ckrasicb07e1602017-01-26 01:39:021232 "quic/core/quic_flags_list.h",
ckrasic73f7240b2017-01-24 00:06:451233 "quic/core/quic_flow_controller.cc",
1234 "quic/core/quic_flow_controller.h",
1235 "quic/core/quic_framer.cc",
1236 "quic/core/quic_framer.h",
1237 "quic/core/quic_header_list.cc",
1238 "quic/core/quic_header_list.h",
1239 "quic/core/quic_headers_stream.cc",
1240 "quic/core/quic_headers_stream.h",
ckrasic73f7240b2017-01-24 00:06:451241 "quic/core/quic_one_block_arena.h",
1242 "quic/core/quic_packet_creator.cc",
1243 "quic/core/quic_packet_creator.h",
1244 "quic/core/quic_packet_generator.cc",
1245 "quic/core/quic_packet_generator.h",
1246 "quic/core/quic_packet_writer.h",
1247 "quic/core/quic_packets.cc",
1248 "quic/core/quic_packets.h",
1249 "quic/core/quic_pending_retransmission.h",
1250 "quic/core/quic_received_packet_manager.cc",
1251 "quic/core/quic_received_packet_manager.h",
1252 "quic/core/quic_sent_packet_manager.cc",
1253 "quic/core/quic_sent_packet_manager.h",
1254 "quic/core/quic_server_id.cc",
1255 "quic/core/quic_server_id.h",
1256 "quic/core/quic_server_session_base.cc",
1257 "quic/core/quic_server_session_base.h",
1258 "quic/core/quic_session.cc",
1259 "quic/core/quic_session.h",
1260 "quic/core/quic_simple_buffer_allocator.cc",
1261 "quic/core/quic_simple_buffer_allocator.h",
1262 "quic/core/quic_socket_address_coder.cc",
1263 "quic/core/quic_socket_address_coder.h",
Ryan Hamiltonc4402302017-08-10 01:55:461264 "quic/core/quic_spdy_client_session_base.cc",
1265 "quic/core/quic_spdy_client_session_base.h",
ckrasic73f7240b2017-01-24 00:06:451266 "quic/core/quic_spdy_session.cc",
1267 "quic/core/quic_spdy_session.h",
1268 "quic/core/quic_spdy_stream.cc",
1269 "quic/core/quic_spdy_stream.h",
1270 "quic/core/quic_stream.cc",
1271 "quic/core/quic_stream.h",
fayangdf3cb2b2017-07-05 15:03:381272 "quic/core/quic_stream_frame_data_producer.h",
1273 "quic/core/quic_stream_send_buffer.cc",
1274 "quic/core/quic_stream_send_buffer.h",
ckrasic73f7240b2017-01-24 00:06:451275 "quic/core/quic_stream_sequencer.cc",
1276 "quic/core/quic_stream_sequencer.h",
1277 "quic/core/quic_stream_sequencer_buffer.cc",
1278 "quic/core/quic_stream_sequencer_buffer.h",
1279 "quic/core/quic_sustained_bandwidth_recorder.cc",
1280 "quic/core/quic_sustained_bandwidth_recorder.h",
1281 "quic/core/quic_tag.cc",
1282 "quic/core/quic_tag.h",
1283 "quic/core/quic_time.cc",
1284 "quic/core/quic_time.h",
1285 "quic/core/quic_transmission_info.cc",
1286 "quic/core/quic_transmission_info.h",
1287 "quic/core/quic_types.cc",
1288 "quic/core/quic_types.h",
1289 "quic/core/quic_unacked_packet_map.cc",
1290 "quic/core/quic_unacked_packet_map.h",
1291 "quic/core/quic_utils.cc",
1292 "quic/core/quic_utils.h",
1293 "quic/core/quic_version_manager.cc",
1294 "quic/core/quic_version_manager.h",
1295 "quic/core/quic_versions.cc",
1296 "quic/core/quic_versions.h",
1297 "quic/core/quic_write_blocked_list.cc",
1298 "quic/core/quic_write_blocked_list.h",
1299 "quic/core/spdy_utils.cc",
1300 "quic/core/spdy_utils.h",
Bin Wude3943c2017-11-09 22:44:481301 "quic/core/tls_client_handshaker.cc",
1302 "quic/core/tls_client_handshaker.h",
1303 "quic/core/tls_handshaker.cc",
1304 "quic/core/tls_handshaker.h",
1305 "quic/core/tls_server_handshaker.cc",
1306 "quic/core/tls_server_handshaker.h",
Charles 'Buck' Krasic9385c572017-11-29 02:21:511307 "quic/http/decoder/payload_decoders/quic_http_altsvc_payload_decoder.cc",
1308 "quic/http/decoder/payload_decoders/quic_http_altsvc_payload_decoder.h",
1309 "quic/http/decoder/payload_decoders/quic_http_continuation_payload_decoder.cc",
1310 "quic/http/decoder/payload_decoders/quic_http_continuation_payload_decoder.h",
1311 "quic/http/decoder/payload_decoders/quic_http_data_payload_decoder.cc",
1312 "quic/http/decoder/payload_decoders/quic_http_data_payload_decoder.h",
1313 "quic/http/decoder/payload_decoders/quic_http_goaway_payload_decoder.cc",
1314 "quic/http/decoder/payload_decoders/quic_http_goaway_payload_decoder.h",
1315 "quic/http/decoder/payload_decoders/quic_http_headers_payload_decoder.cc",
1316 "quic/http/decoder/payload_decoders/quic_http_headers_payload_decoder.h",
1317 "quic/http/decoder/payload_decoders/quic_http_ping_payload_decoder.cc",
1318 "quic/http/decoder/payload_decoders/quic_http_ping_payload_decoder.h",
1319 "quic/http/decoder/payload_decoders/quic_http_priority_payload_decoder.cc",
1320 "quic/http/decoder/payload_decoders/quic_http_priority_payload_decoder.h",
1321 "quic/http/decoder/payload_decoders/quic_http_push_promise_payload_decoder.cc",
1322 "quic/http/decoder/payload_decoders/quic_http_push_promise_payload_decoder.h",
1323 "quic/http/decoder/payload_decoders/quic_http_rst_stream_payload_decoder.cc",
1324 "quic/http/decoder/payload_decoders/quic_http_rst_stream_payload_decoder.h",
1325 "quic/http/decoder/payload_decoders/quic_http_settings_payload_decoder.cc",
1326 "quic/http/decoder/payload_decoders/quic_http_settings_payload_decoder.h",
1327 "quic/http/decoder/payload_decoders/quic_http_unknown_payload_decoder.cc",
1328 "quic/http/decoder/payload_decoders/quic_http_unknown_payload_decoder.h",
1329 "quic/http/decoder/payload_decoders/quic_http_window_update_payload_decoder.cc",
1330 "quic/http/decoder/payload_decoders/quic_http_window_update_payload_decoder.h",
1331 "quic/http/decoder/quic_http_decode_buffer.cc",
1332 "quic/http/decoder/quic_http_decode_buffer.h",
1333 "quic/http/decoder/quic_http_decode_status.cc",
1334 "quic/http/decoder/quic_http_decode_status.h",
1335 "quic/http/decoder/quic_http_decode_structures.cc",
1336 "quic/http/decoder/quic_http_decode_structures.h",
1337 "quic/http/decoder/quic_http_frame_decoder.cc",
1338 "quic/http/decoder/quic_http_frame_decoder.h",
1339 "quic/http/decoder/quic_http_frame_decoder_adapter.cc",
1340 "quic/http/decoder/quic_http_frame_decoder_adapter.h",
1341 "quic/http/decoder/quic_http_frame_decoder_listener.cc",
1342 "quic/http/decoder/quic_http_frame_decoder_listener.h",
1343 "quic/http/decoder/quic_http_frame_decoder_state.cc",
1344 "quic/http/decoder/quic_http_frame_decoder_state.h",
1345 "quic/http/decoder/quic_http_structure_decoder.cc",
1346 "quic/http/decoder/quic_http_structure_decoder.h",
1347 "quic/http/quic_http_constants.cc",
1348 "quic/http/quic_http_constants.h",
1349 "quic/http/quic_http_structures.cc",
1350 "quic/http/quic_http_structures.h",
ckrasic73f7240b2017-01-24 00:06:451351 "quic/platform/api/quic_aligned.h",
Fan Yang928f1632017-12-14 18:55:221352 "quic/platform/api/quic_arraysize.h",
ckrasic73f7240b2017-01-24 00:06:451353 "quic/platform/api/quic_bug_tracker.h",
1354 "quic/platform/api/quic_clock.cc",
1355 "quic/platform/api/quic_clock.h",
fayangbaec8ff52017-01-28 03:26:121356 "quic/platform/api/quic_containers.h",
fayang3ae2fa22017-03-02 18:03:401357 "quic/platform/api/quic_endian.h",
xunjieli48e4f102017-04-11 23:06:531358 "quic/platform/api/quic_estimate_memory_usage.h",
ckrasic73f7240b2017-01-24 00:06:451359 "quic/platform/api/quic_export.h",
Ryan Hamilton2306cac2018-01-27 03:46:471360 "quic/platform/api/quic_fallthrough.h",
vasilvv93dc0c32017-02-24 23:53:511361 "quic/platform/api/quic_flag_utils.h",
rchfc6809b62017-04-19 01:37:011362 "quic/platform/api/quic_flags.h",
mpw3f859532017-02-16 20:00:311363 "quic/platform/api/quic_hostname_utils.cc",
1364 "quic/platform/api/quic_hostname_utils.h",
ckrasic73f7240b2017-01-24 00:06:451365 "quic/platform/api/quic_ip_address.cc",
1366 "quic/platform/api/quic_ip_address.h",
1367 "quic/platform/api/quic_ip_address_family.h",
1368 "quic/platform/api/quic_logging.h",
1369 "quic/platform/api/quic_lru_cache.h",
ckrasicb07e1602017-01-26 01:39:021370 "quic/platform/api/quic_map_util.h",
Fan Yang62cae30f2017-09-01 20:50:511371 "quic/platform/api/quic_mem_slice.h",
1372 "quic/platform/api/quic_mem_slice_span.h",
ckrasic73f7240b2017-01-24 00:06:451373 "quic/platform/api/quic_mutex.cc",
1374 "quic/platform/api/quic_mutex.h",
Charles 'Buck' Krasic9385c572017-11-29 02:21:511375 "quic/platform/api/quic_optional.h",
jokulik35917302017-05-04 04:04:081376 "quic/platform/api/quic_pcc_sender.h",
Charles 'Buck' Krasic15d08db62017-12-04 20:27:521377 "quic/platform/api/quic_prefetch.h",
ckrasic73f7240b2017-01-24 00:06:451378 "quic/platform/api/quic_ptr_util.h",
Charles 'Buck' Krasic9385c572017-11-29 02:21:511379 "quic/platform/api/quic_reconstruct_object.h",
ckrasic73f7240b2017-01-24 00:06:451380 "quic/platform/api/quic_reference_counted.h",
Michael Warrese4451492018-03-07 04:42:471381 "quic/platform/api/quic_singleton.h",
ckrasic73f7240b2017-01-24 00:06:451382 "quic/platform/api/quic_socket_address.cc",
1383 "quic/platform/api/quic_socket_address.h",
ckrasicb07e1602017-01-26 01:39:021384 "quic/platform/api/quic_stack_trace.h",
ckrasic73f7240b2017-01-24 00:06:451385 "quic/platform/api/quic_str_cat.h",
Charles 'Buck' Krasic9385c572017-11-29 02:21:511386 "quic/platform/api/quic_string.h",
fayang19c30772017-03-09 15:06:171387 "quic/platform/api/quic_string_piece.h",
ckrasic73f7240b2017-01-24 00:06:451388 "quic/platform/api/quic_text_utils.h",
fayang32caee402017-02-13 21:00:081389 "quic/platform/api/quic_url.cc",
1390 "quic/platform/api/quic_url.h",
fayang527c6c302017-01-24 15:38:311391 "quic/platform/api/quic_url_utils.cc",
1392 "quic/platform/api/quic_url_utils.h",
ckrasic73f7240b2017-01-24 00:06:451393 "quic/platform/impl/quic_aligned_impl.h",
Fan Yang928f1632017-12-14 18:55:221394 "quic/platform/impl/quic_arraysize_impl.h",
ckrasic73f7240b2017-01-24 00:06:451395 "quic/platform/impl/quic_bug_tracker_impl.h",
1396 "quic/platform/impl/quic_chromium_clock.cc",
1397 "quic/platform/impl/quic_chromium_clock.h",
fayangbaec8ff52017-01-28 03:26:121398 "quic/platform/impl/quic_containers_impl.h",
fayang3ae2fa22017-03-02 18:03:401399 "quic/platform/impl/quic_endian_impl.h",
xunjieli48e4f102017-04-11 23:06:531400 "quic/platform/impl/quic_estimate_memory_usage_impl.h",
ckrasic73f7240b2017-01-24 00:06:451401 "quic/platform/impl/quic_export_impl.h",
Ryan Hamilton2306cac2018-01-27 03:46:471402 "quic/platform/impl/quic_fallthrough_impl.h",
vasilvv93dc0c32017-02-24 23:53:511403 "quic/platform/impl/quic_flag_utils_impl.h",
rchfc6809b62017-04-19 01:37:011404 "quic/platform/impl/quic_flags_impl.cc",
1405 "quic/platform/impl/quic_flags_impl.h",
mpw3f859532017-02-16 20:00:311406 "quic/platform/impl/quic_hostname_utils_impl.cc",
1407 "quic/platform/impl/quic_hostname_utils_impl.h",
ckrasic73f7240b2017-01-24 00:06:451408 "quic/platform/impl/quic_ip_address_impl.cc",
1409 "quic/platform/impl/quic_ip_address_impl.h",
1410 "quic/platform/impl/quic_logging_impl.h",
1411 "quic/platform/impl/quic_lru_cache_impl.h",
ckrasicb07e1602017-01-26 01:39:021412 "quic/platform/impl/quic_map_util_impl.h",
Fan Yang62cae30f2017-09-01 20:50:511413 "quic/platform/impl/quic_mem_slice_impl.cc",
1414 "quic/platform/impl/quic_mem_slice_impl.h",
1415 "quic/platform/impl/quic_mem_slice_span_impl.cc",
1416 "quic/platform/impl/quic_mem_slice_span_impl.h",
ckrasic73f7240b2017-01-24 00:06:451417 "quic/platform/impl/quic_mutex_impl.cc",
1418 "quic/platform/impl/quic_mutex_impl.h",
Charles 'Buck' Krasic9385c572017-11-29 02:21:511419 "quic/platform/impl/quic_optional_impl.h",
jokulik35917302017-05-04 04:04:081420 "quic/platform/impl/quic_pcc_sender_impl.h",
Charles 'Buck' Krasic15d08db62017-12-04 20:27:521421 "quic/platform/impl/quic_prefetch_impl.h",
ckrasic73f7240b2017-01-24 00:06:451422 "quic/platform/impl/quic_ptr_util_impl.h",
Charles 'Buck' Krasic9385c572017-11-29 02:21:511423 "quic/platform/impl/quic_reconstruct_object_impl.h",
ckrasic73f7240b2017-01-24 00:06:451424 "quic/platform/impl/quic_reference_counted_impl.h",
Michael Warrese4451492018-03-07 04:42:471425 "quic/platform/impl/quic_singleton_impl.h",
ckrasic73f7240b2017-01-24 00:06:451426 "quic/platform/impl/quic_socket_address_impl.cc",
1427 "quic/platform/impl/quic_socket_address_impl.h",
ckrasicb07e1602017-01-26 01:39:021428 "quic/platform/impl/quic_stack_trace_impl.h",
ckrasic73f7240b2017-01-24 00:06:451429 "quic/platform/impl/quic_str_cat_impl.h",
Charles 'Buck' Krasic9385c572017-11-29 02:21:511430 "quic/platform/impl/quic_string_impl.h",
fayang19c30772017-03-09 15:06:171431 "quic/platform/impl/quic_string_piece_impl.h",
ckrasic73f7240b2017-01-24 00:06:451432 "quic/platform/impl/quic_text_utils_impl.h",
fayang32caee402017-02-13 21:00:081433 "quic/platform/impl/quic_url_impl.cc",
1434 "quic/platform/impl/quic_url_impl.h",
fayang527c6c302017-01-24 15:38:311435 "quic/platform/impl/quic_url_utils_impl.cc",
1436 "quic/platform/impl/quic_url_utils_impl.h",
rch7b8e0afb12017-05-03 01:07:221437 "quic/quartc/quartc_clock_interface.h",
ckrasic73f7240b2017-01-24 00:06:451438 "quic/quartc/quartc_factory.cc",
1439 "quic/quartc/quartc_factory.h",
Victor Vasiliev7998727a2017-11-20 22:48:451440 "quic/quartc/quartc_factory_interface.cc",
ckrasic73f7240b2017-01-24 00:06:451441 "quic/quartc/quartc_factory_interface.h",
1442 "quic/quartc/quartc_packet_writer.cc",
1443 "quic/quartc/quartc_packet_writer.h",
1444 "quic/quartc/quartc_session.cc",
1445 "quic/quartc/quartc_session.h",
1446 "quic/quartc/quartc_session_interface.h",
1447 "quic/quartc/quartc_stream.cc",
1448 "quic/quartc/quartc_stream.h",
1449 "quic/quartc/quartc_stream_interface.h",
ckrasicb07e1602017-01-26 01:39:021450 "quic/quartc/quartc_task_runner_interface.h",
ckrasic73f7240b2017-01-24 00:06:451451 "socket/client_socket_factory.cc",
1452 "socket/client_socket_factory.h",
1453 "socket/client_socket_pool.cc",
1454 "socket/client_socket_pool.h",
1455 "socket/client_socket_pool_base.cc",
1456 "socket/client_socket_pool_base.h",
1457 "socket/client_socket_pool_manager.cc",
1458 "socket/client_socket_pool_manager.h",
1459 "socket/client_socket_pool_manager_impl.cc",
1460 "socket/client_socket_pool_manager_impl.h",
1461 "socket/datagram_client_socket.h",
1462 "socket/datagram_server_socket.h",
1463 "socket/datagram_socket.h",
1464 "socket/diff_serv_code_point.h",
1465 "socket/server_socket.cc",
1466 "socket/server_socket.h",
1467 "socket/socket_descriptor.cc",
1468 "socket/socket_descriptor.h",
1469 "socket/socket_net_log_params.cc",
1470 "socket/socket_net_log_params.h",
tfarina8a407062017-04-06 13:14:171471 "socket/socket_options.cc",
1472 "socket/socket_options.h",
ckrasic73f7240b2017-01-24 00:06:451473 "socket/socket_posix.cc",
1474 "socket/socket_posix.h",
Paul Jensenec3c11122017-11-28 16:48:381475 "socket/socket_tag.cc",
1476 "socket/socket_tag.h",
ckrasic73f7240b2017-01-24 00:06:451477 "socket/socks5_client_socket.cc",
1478 "socket/socks5_client_socket.h",
1479 "socket/socks_client_socket.cc",
1480 "socket/socks_client_socket.h",
1481 "socket/socks_client_socket_pool.cc",
1482 "socket/socks_client_socket_pool.h",
1483 "socket/ssl_client_socket_pool.cc",
1484 "socket/ssl_client_socket_pool.h",
1485 "socket/ssl_server_socket.h",
1486 "socket/ssl_server_socket_impl.cc",
1487 "socket/ssl_server_socket_impl.h",
ckrasic73f7240b2017-01-24 00:06:451488 "socket/tcp_client_socket.cc",
1489 "socket/tcp_client_socket.h",
1490 "socket/tcp_server_socket.cc",
1491 "socket/tcp_server_socket.h",
ckrasic73f7240b2017-01-24 00:06:451492 "socket/tcp_socket.h",
1493 "socket/tcp_socket_posix.cc",
1494 "socket/tcp_socket_posix.h",
1495 "socket/tcp_socket_win.cc",
1496 "socket/tcp_socket_win.h",
Helen Lid5bb9222018-04-12 15:33:091497 "socket/transport_client_socket.h",
ckrasic73f7240b2017-01-24 00:06:451498 "socket/transport_client_socket_pool.cc",
1499 "socket/transport_client_socket_pool.h",
1500 "socket/udp_client_socket.cc",
1501 "socket/udp_client_socket.h",
1502 "socket/udp_net_log_parameters.cc",
1503 "socket/udp_net_log_parameters.h",
1504 "socket/udp_server_socket.cc",
1505 "socket/udp_server_socket.h",
1506 "socket/udp_socket.h",
1507 "socket/udp_socket_posix.cc",
1508 "socket/udp_socket_posix.h",
1509 "socket/udp_socket_win.cc",
1510 "socket/udp_socket_win.h",
ckrasic73f7240b2017-01-24 00:06:451511 "socket/websocket_endpoint_lock_manager.cc",
1512 "socket/websocket_endpoint_lock_manager.h",
1513 "socket/websocket_transport_client_socket_pool.cc",
1514 "socket/websocket_transport_client_socket_pool.h",
1515 "socket/websocket_transport_connect_sub_job.cc",
1516 "socket/websocket_transport_connect_sub_job.h",
bnc8f8f7d302017-04-24 18:08:061517 "spdy/chromium/bidirectional_stream_spdy_impl.cc",
1518 "spdy/chromium/bidirectional_stream_spdy_impl.h",
1519 "spdy/chromium/buffered_spdy_framer.cc",
1520 "spdy/chromium/buffered_spdy_framer.h",
1521 "spdy/chromium/header_coalescer.cc",
1522 "spdy/chromium/header_coalescer.h",
1523 "spdy/chromium/http2_priority_dependencies.cc",
1524 "spdy/chromium/http2_priority_dependencies.h",
Bence Béky824e4932017-10-02 16:51:541525 "spdy/chromium/http2_push_promise_index.cc",
1526 "spdy/chromium/http2_push_promise_index.h",
bnc8f8f7d302017-04-24 18:08:061527 "spdy/chromium/multiplexed_http_stream.cc",
1528 "spdy/chromium/multiplexed_http_stream.h",
1529 "spdy/chromium/multiplexed_session.cc",
1530 "spdy/chromium/multiplexed_session.h",
1531 "spdy/chromium/server_push_delegate.h",
1532 "spdy/chromium/spdy_buffer.cc",
1533 "spdy/chromium/spdy_buffer.h",
1534 "spdy/chromium/spdy_buffer_producer.cc",
1535 "spdy/chromium/spdy_buffer_producer.h",
bnc8f8f7d302017-04-24 18:08:061536 "spdy/chromium/spdy_http_stream.cc",
1537 "spdy/chromium/spdy_http_stream.h",
1538 "spdy/chromium/spdy_http_utils.cc",
1539 "spdy/chromium/spdy_http_utils.h",
1540 "spdy/chromium/spdy_log_util.cc",
1541 "spdy/chromium/spdy_log_util.h",
1542 "spdy/chromium/spdy_proxy_client_socket.cc",
1543 "spdy/chromium/spdy_proxy_client_socket.h",
1544 "spdy/chromium/spdy_read_queue.cc",
1545 "spdy/chromium/spdy_read_queue.h",
1546 "spdy/chromium/spdy_session.cc",
1547 "spdy/chromium/spdy_session.h",
1548 "spdy/chromium/spdy_session_key.cc",
1549 "spdy/chromium/spdy_session_key.h",
1550 "spdy/chromium/spdy_session_pool.cc",
1551 "spdy/chromium/spdy_session_pool.h",
1552 "spdy/chromium/spdy_stream.cc",
1553 "spdy/chromium/spdy_stream.h",
1554 "spdy/chromium/spdy_write_queue.cc",
1555 "spdy/chromium/spdy_write_queue.h",
1556 "spdy/core/fuzzing/hpack_fuzz_util.cc",
1557 "spdy/core/fuzzing/hpack_fuzz_util.h",
1558 "spdy/core/hpack/hpack_constants.cc",
1559 "spdy/core/hpack/hpack_constants.h",
Dianna Hu33dcd6c2017-07-24 15:01:461560 "spdy/core/hpack/hpack_decoder_adapter.cc",
1561 "spdy/core/hpack/hpack_decoder_adapter.h",
bnc8f8f7d302017-04-24 18:08:061562 "spdy/core/hpack/hpack_encoder.cc",
1563 "spdy/core/hpack/hpack_encoder.h",
1564 "spdy/core/hpack/hpack_entry.cc",
1565 "spdy/core/hpack/hpack_entry.h",
1566 "spdy/core/hpack/hpack_header_table.cc",
1567 "spdy/core/hpack/hpack_header_table.h",
bnc8f8f7d302017-04-24 18:08:061568 "spdy/core/hpack/hpack_huffman_table.cc",
1569 "spdy/core/hpack/hpack_huffman_table.h",
bnc8f8f7d302017-04-24 18:08:061570 "spdy/core/hpack/hpack_output_stream.cc",
1571 "spdy/core/hpack/hpack_output_stream.h",
1572 "spdy/core/hpack/hpack_static_table.cc",
1573 "spdy/core/hpack/hpack_static_table.h",
1574 "spdy/core/http2_frame_decoder_adapter.cc",
1575 "spdy/core/http2_frame_decoder_adapter.h",
bnc8f8f7d302017-04-24 18:08:061576 "spdy/core/priority_write_scheduler.h",
1577 "spdy/core/spdy_alt_svc_wire_format.cc",
1578 "spdy/core/spdy_alt_svc_wire_format.h",
1579 "spdy/core/spdy_bitmasks.h",
1580 "spdy/core/spdy_bug_tracker.h",
1581 "spdy/core/spdy_frame_builder.cc",
1582 "spdy/core/spdy_frame_builder.h",
1583 "spdy/core/spdy_frame_reader.cc",
1584 "spdy/core/spdy_frame_reader.h",
1585 "spdy/core/spdy_framer.cc",
1586 "spdy/core/spdy_framer.h",
bnc8f8f7d302017-04-24 18:08:061587 "spdy/core/spdy_header_block.cc",
1588 "spdy/core/spdy_header_block.h",
bnc8f8f7d302017-04-24 18:08:061589 "spdy/core/spdy_headers_handler_interface.h",
1590 "spdy/core/spdy_pinnable_buffer_piece.cc",
1591 "spdy/core/spdy_pinnable_buffer_piece.h",
1592 "spdy/core/spdy_prefixed_buffer_reader.cc",
1593 "spdy/core/spdy_prefixed_buffer_reader.h",
1594 "spdy/core/spdy_protocol.cc",
1595 "spdy/core/spdy_protocol.h",
1596 "spdy/core/write_scheduler.h",
1597 "spdy/core/zero_copy_output_buffer.h",
bnc8078c9db2017-02-09 20:06:381598 "spdy/platform/api/spdy_estimate_memory_usage.h",
bncc4c12fd2017-04-27 19:11:441599 "spdy/platform/api/spdy_export.h",
Bence Békyd63645a2018-01-27 01:09:431600 "spdy/platform/api/spdy_flags.h",
Dianna Hu46254a82017-10-12 15:59:011601 "spdy/platform/api/spdy_mem_slice.h",
bncdae95a82017-04-27 14:05:101602 "spdy/platform/api/spdy_ptr_util.h",
diannahu401e364c2017-04-07 01:17:471603 "spdy/platform/api/spdy_string.h",
bnca16616c2017-03-21 13:58:251604 "spdy/platform/api/spdy_string_piece.h",
bnced7be41d2017-03-28 17:30:241605 "spdy/platform/api/spdy_string_utils.h",
bnc8078c9db2017-02-09 20:06:381606 "spdy/platform/impl/spdy_estimate_memory_usage_impl.h",
bncc4c12fd2017-04-27 19:11:441607 "spdy/platform/impl/spdy_export_impl.h",
Bence Békyd63645a2018-01-27 01:09:431608 "spdy/platform/impl/spdy_flags_impl.cc",
1609 "spdy/platform/impl/spdy_flags_impl.h",
Dianna Hu46254a82017-10-12 15:59:011610 "spdy/platform/impl/spdy_mem_slice_impl.cc",
1611 "spdy/platform/impl/spdy_mem_slice_impl.h",
bncdae95a82017-04-27 14:05:101612 "spdy/platform/impl/spdy_ptr_util_impl.h",
diannahu401e364c2017-04-07 01:17:471613 "spdy/platform/impl/spdy_string_impl.h",
bnca16616c2017-03-21 13:58:251614 "spdy/platform/impl/spdy_string_piece_impl.h",
Ryan Hamilton70874e052017-09-22 22:34:101615 "spdy/platform/impl/spdy_string_utils_impl.cc",
bnced7be41d2017-03-28 17:30:241616 "spdy/platform/impl/spdy_string_utils_impl.h",
ckrasic73f7240b2017-01-24 00:06:451617 "ssl/client_cert_store.h",
1618 "ssl/client_cert_store_mac.cc",
1619 "ssl/client_cert_store_mac.h",
1620 "ssl/client_cert_store_nss.cc",
1621 "ssl/client_cert_store_nss.h",
1622 "ssl/client_cert_store_win.cc",
1623 "ssl/client_cert_store_win.h",
1624 "ssl/ssl_config_service_defaults.cc",
1625 "ssl/ssl_config_service_defaults.h",
1626 "ssl/ssl_key_logger.cc",
1627 "ssl/ssl_key_logger.h",
ckrasic73f7240b2017-01-24 00:06:451628 "ssl/ssl_platform_key_android.cc",
thakisb8590c92017-03-23 18:14:531629 "ssl/ssl_platform_key_android.h",
ckrasic73f7240b2017-01-24 00:06:451630 "ssl/ssl_platform_key_mac.cc",
thakisb8590c92017-03-23 18:14:531631 "ssl/ssl_platform_key_mac.h",
ckrasic73f7240b2017-01-24 00:06:451632 "ssl/ssl_platform_key_nss.cc",
mattm436ccfe2017-06-19 20:24:081633 "ssl/ssl_platform_key_nss.h",
ckrasic73f7240b2017-01-24 00:06:451634 "ssl/ssl_platform_key_util.cc",
1635 "ssl/ssl_platform_key_util.h",
1636 "ssl/ssl_platform_key_win.cc",
1637 "ssl/test_ssl_private_key.cc",
1638 "ssl/test_ssl_private_key.h",
1639 "ssl/threaded_ssl_private_key.cc",
1640 "ssl/threaded_ssl_private_key.h",
Ryan Hamiltondf987ecb2018-04-18 15:42:011641 "third_party/http2/decoder/decode_buffer.cc",
1642 "third_party/http2/decoder/decode_buffer.h",
1643 "third_party/http2/decoder/decode_http2_structures.cc",
1644 "third_party/http2/decoder/decode_http2_structures.h",
1645 "third_party/http2/decoder/decode_status.cc",
1646 "third_party/http2/decoder/decode_status.h",
1647 "third_party/http2/decoder/frame_decoder_state.cc",
1648 "third_party/http2/decoder/frame_decoder_state.h",
1649 "third_party/http2/decoder/http2_frame_decoder.cc",
1650 "third_party/http2/decoder/http2_frame_decoder.h",
1651 "third_party/http2/decoder/http2_frame_decoder_listener.cc",
1652 "third_party/http2/decoder/http2_frame_decoder_listener.h",
1653 "third_party/http2/decoder/http2_structure_decoder.cc",
1654 "third_party/http2/decoder/http2_structure_decoder.h",
1655 "third_party/http2/decoder/payload_decoders/altsvc_payload_decoder.cc",
1656 "third_party/http2/decoder/payload_decoders/altsvc_payload_decoder.h",
1657 "third_party/http2/decoder/payload_decoders/continuation_payload_decoder.cc",
1658 "third_party/http2/decoder/payload_decoders/continuation_payload_decoder.h",
1659 "third_party/http2/decoder/payload_decoders/data_payload_decoder.cc",
1660 "third_party/http2/decoder/payload_decoders/data_payload_decoder.h",
1661 "third_party/http2/decoder/payload_decoders/goaway_payload_decoder.cc",
1662 "third_party/http2/decoder/payload_decoders/goaway_payload_decoder.h",
1663 "third_party/http2/decoder/payload_decoders/headers_payload_decoder.cc",
1664 "third_party/http2/decoder/payload_decoders/headers_payload_decoder.h",
1665 "third_party/http2/decoder/payload_decoders/ping_payload_decoder.cc",
1666 "third_party/http2/decoder/payload_decoders/ping_payload_decoder.h",
1667 "third_party/http2/decoder/payload_decoders/priority_payload_decoder.cc",
1668 "third_party/http2/decoder/payload_decoders/priority_payload_decoder.h",
1669 "third_party/http2/decoder/payload_decoders/push_promise_payload_decoder.cc",
1670 "third_party/http2/decoder/payload_decoders/push_promise_payload_decoder.h",
1671 "third_party/http2/decoder/payload_decoders/rst_stream_payload_decoder.cc",
1672 "third_party/http2/decoder/payload_decoders/rst_stream_payload_decoder.h",
1673 "third_party/http2/decoder/payload_decoders/settings_payload_decoder.cc",
1674 "third_party/http2/decoder/payload_decoders/settings_payload_decoder.h",
1675 "third_party/http2/decoder/payload_decoders/unknown_payload_decoder.cc",
1676 "third_party/http2/decoder/payload_decoders/unknown_payload_decoder.h",
1677 "third_party/http2/decoder/payload_decoders/window_update_payload_decoder.cc",
1678 "third_party/http2/decoder/payload_decoders/window_update_payload_decoder.h",
1679 "third_party/http2/hpack/decoder/hpack_block_decoder.cc",
1680 "third_party/http2/hpack/decoder/hpack_block_decoder.h",
1681 "third_party/http2/hpack/decoder/hpack_decoder.cc",
1682 "third_party/http2/hpack/decoder/hpack_decoder.h",
1683 "third_party/http2/hpack/decoder/hpack_decoder_listener.cc",
1684 "third_party/http2/hpack/decoder/hpack_decoder_listener.h",
1685 "third_party/http2/hpack/decoder/hpack_decoder_state.cc",
1686 "third_party/http2/hpack/decoder/hpack_decoder_state.h",
1687 "third_party/http2/hpack/decoder/hpack_decoder_string_buffer.cc",
1688 "third_party/http2/hpack/decoder/hpack_decoder_string_buffer.h",
1689 "third_party/http2/hpack/decoder/hpack_decoder_tables.cc",
1690 "third_party/http2/hpack/decoder/hpack_decoder_tables.h",
1691 "third_party/http2/hpack/decoder/hpack_entry_decoder.cc",
1692 "third_party/http2/hpack/decoder/hpack_entry_decoder.h",
1693 "third_party/http2/hpack/decoder/hpack_entry_decoder_listener.cc",
1694 "third_party/http2/hpack/decoder/hpack_entry_decoder_listener.h",
1695 "third_party/http2/hpack/decoder/hpack_entry_type_decoder.cc",
1696 "third_party/http2/hpack/decoder/hpack_entry_type_decoder.h",
1697 "third_party/http2/hpack/decoder/hpack_string_decoder.cc",
1698 "third_party/http2/hpack/decoder/hpack_string_decoder.h",
1699 "third_party/http2/hpack/decoder/hpack_string_decoder_listener.cc",
1700 "third_party/http2/hpack/decoder/hpack_string_decoder_listener.h",
1701 "third_party/http2/hpack/decoder/hpack_varint_decoder.cc",
1702 "third_party/http2/hpack/decoder/hpack_varint_decoder.h",
1703 "third_party/http2/hpack/decoder/hpack_whole_entry_buffer.cc",
1704 "third_party/http2/hpack/decoder/hpack_whole_entry_buffer.h",
1705 "third_party/http2/hpack/decoder/hpack_whole_entry_listener.cc",
1706 "third_party/http2/hpack/decoder/hpack_whole_entry_listener.h",
1707 "third_party/http2/hpack/hpack_static_table_entries.inc",
1708 "third_party/http2/hpack/hpack_string.cc",
1709 "third_party/http2/hpack/hpack_string.h",
1710 "third_party/http2/hpack/http2_hpack_constants.cc",
1711 "third_party/http2/hpack/http2_hpack_constants.h",
1712 "third_party/http2/hpack/huffman/hpack_huffman_decoder.cc",
1713 "third_party/http2/hpack/huffman/hpack_huffman_decoder.h",
1714 "third_party/http2/http2_constants.cc",
1715 "third_party/http2/http2_constants.h",
1716 "third_party/http2/http2_structures.cc",
1717 "third_party/http2/http2_structures.h",
1718 "third_party/http2/platform/api/http2_export.h",
1719 "third_party/http2/platform/api/http2_ptr_util.h",
1720 "third_party/http2/platform/api/http2_reconstruct_object.h",
1721 "third_party/http2/platform/api/http2_string.h",
1722 "third_party/http2/platform/api/http2_string_piece.h",
1723 "third_party/http2/platform/api/http2_string_utils.h",
1724 "third_party/http2/platform/impl/http2_export_impl.h",
1725 "third_party/http2/platform/impl/http2_ptr_util_impl.h",
1726 "third_party/http2/platform/impl/http2_reconstruct_object_impl.h",
1727 "third_party/http2/platform/impl/http2_string_impl.h",
1728 "third_party/http2/platform/impl/http2_string_piece_impl.h",
1729 "third_party/http2/platform/impl/http2_string_utils_impl.h",
1730 "third_party/http2/tools/http2_bug_tracker.h",
ckrasic73f7240b2017-01-24 00:06:451731 "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
1732 "third_party/mozilla_security_manager/nsNSSCertificateDB.h",
1733 "third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
1734 "third_party/mozilla_security_manager/nsPKCS12Blob.h",
1735 "url_request/data_protocol_handler.cc",
1736 "url_request/data_protocol_handler.h",
1737 "url_request/http_user_agent_settings.h",
1738 "url_request/redirect_info.cc",
1739 "url_request/redirect_info.h",
Tsuyoshi Horo9e2ec4df2017-10-16 15:15:551740 "url_request/redirect_util.cc",
1741 "url_request/redirect_util.h",
ckrasic73f7240b2017-01-24 00:06:451742 "url_request/report_sender.cc",
1743 "url_request/report_sender.h",
ckrasic73f7240b2017-01-24 00:06:451744 "url_request/static_http_user_agent_settings.cc",
1745 "url_request/static_http_user_agent_settings.h",
1746 "url_request/url_fetcher.cc",
1747 "url_request/url_fetcher.h",
1748 "url_request/url_fetcher_core.cc",
1749 "url_request/url_fetcher_core.h",
1750 "url_request/url_fetcher_delegate.cc",
1751 "url_request/url_fetcher_delegate.h",
1752 "url_request/url_fetcher_factory.h",
1753 "url_request/url_fetcher_impl.cc",
1754 "url_request/url_fetcher_impl.h",
1755 "url_request/url_fetcher_response_writer.cc",
1756 "url_request/url_fetcher_response_writer.h",
1757 "url_request/url_range_request_job.cc",
1758 "url_request/url_range_request_job.h",
1759 "url_request/url_request.cc",
1760 "url_request/url_request.h",
1761 "url_request/url_request_context.cc",
1762 "url_request/url_request_context.h",
1763 "url_request/url_request_context_builder.cc",
1764 "url_request/url_request_context_builder.h",
1765 "url_request/url_request_context_getter.cc",
1766 "url_request/url_request_context_getter.h",
1767 "url_request/url_request_context_getter_observer.h",
1768 "url_request/url_request_context_storage.cc",
1769 "url_request/url_request_context_storage.h",
1770 "url_request/url_request_data_job.cc",
1771 "url_request/url_request_data_job.h",
1772 "url_request/url_request_error_job.cc",
1773 "url_request/url_request_error_job.h",
1774 "url_request/url_request_filter.cc",
1775 "url_request/url_request_filter.h",
1776 "url_request/url_request_http_job.cc",
1777 "url_request/url_request_http_job.h",
Thiemo Nagel0793b9c532018-04-18 16:57:581778 "url_request/url_request_http_job_histogram.h",
ckrasic73f7240b2017-01-24 00:06:451779 "url_request/url_request_intercepting_job_factory.cc",
1780 "url_request/url_request_intercepting_job_factory.h",
1781 "url_request/url_request_interceptor.cc",
1782 "url_request/url_request_interceptor.h",
1783 "url_request/url_request_job.cc",
1784 "url_request/url_request_job.h",
1785 "url_request/url_request_job_factory.cc",
1786 "url_request/url_request_job_factory.h",
1787 "url_request/url_request_job_factory_impl.cc",
1788 "url_request/url_request_job_factory_impl.h",
1789 "url_request/url_request_job_manager.cc",
1790 "url_request/url_request_job_manager.h",
1791 "url_request/url_request_netlog_params.cc",
1792 "url_request/url_request_netlog_params.h",
1793 "url_request/url_request_redirect_job.cc",
1794 "url_request/url_request_redirect_job.h",
1795 "url_request/url_request_simple_job.cc",
1796 "url_request/url_request_simple_job.h",
1797 "url_request/url_request_status.cc",
1798 "url_request/url_request_status.h",
1799 "url_request/url_request_test_job.cc",
1800 "url_request/url_request_test_job.h",
1801 "url_request/url_request_throttler_entry.cc",
1802 "url_request/url_request_throttler_entry.h",
1803 "url_request/url_request_throttler_entry_interface.h",
1804 "url_request/url_request_throttler_manager.cc",
1805 "url_request/url_request_throttler_manager.h",
1806 "url_request/view_cache_helper.cc",
1807 "url_request/view_cache_helper.h",
1808 "url_request/websocket_handshake_userdata_key.cc",
1809 "url_request/websocket_handshake_userdata_key.h",
ckrasic73f7240b2017-01-24 00:06:451810 ]
kapishnikovabe280e2016-04-14 19:07:161811 deps += [
1812 "//base/third_party/dynamic_annotations",
kapishnikovabe280e2016-04-14 19:07:161813 "//third_party/zlib",
1814 ]
1815
mmenkefd9d15c2017-06-29 13:45:541816 if (enable_reporting) {
1817 sources += [
Julia Tuttle472098d2018-02-28 21:43:581818 "network_error_logging/network_error_logging_delegate.cc",
1819 "network_error_logging/network_error_logging_delegate.h",
Julia Tuttle6c949ae2017-11-17 16:36:271820 "network_error_logging/network_error_logging_service.cc",
1821 "network_error_logging/network_error_logging_service.h",
mmenkefd9d15c2017-06-29 13:45:541822 "reporting/reporting_browsing_data_remover.cc",
1823 "reporting/reporting_browsing_data_remover.h",
1824 "reporting/reporting_cache.cc",
1825 "reporting/reporting_cache.h",
1826 "reporting/reporting_client.cc",
1827 "reporting/reporting_client.h",
1828 "reporting/reporting_context.cc",
1829 "reporting/reporting_context.h",
1830 "reporting/reporting_delegate.cc",
1831 "reporting/reporting_delegate.h",
1832 "reporting/reporting_delivery_agent.cc",
1833 "reporting/reporting_delivery_agent.h",
1834 "reporting/reporting_endpoint_manager.cc",
1835 "reporting/reporting_endpoint_manager.h",
mmenkefd9d15c2017-06-29 13:45:541836 "reporting/reporting_garbage_collector.cc",
1837 "reporting/reporting_garbage_collector.h",
1838 "reporting/reporting_header_parser.cc",
1839 "reporting/reporting_header_parser.h",
1840 "reporting/reporting_network_change_observer.cc",
1841 "reporting/reporting_network_change_observer.h",
1842 "reporting/reporting_observer.cc",
1843 "reporting/reporting_observer.h",
mmenkefd9d15c2017-06-29 13:45:541844 "reporting/reporting_policy.cc",
1845 "reporting/reporting_policy.h",
1846 "reporting/reporting_report.cc",
1847 "reporting/reporting_report.h",
1848 "reporting/reporting_service.cc",
1849 "reporting/reporting_service.h",
1850 "reporting/reporting_uploader.cc",
1851 "reporting/reporting_uploader.h",
1852 ]
1853 }
1854
kapishnikovabe280e2016-04-14 19:07:161855 if (!use_kerberos) {
1856 sources -= [
1857 "http/http_auth_handler_negotiate.cc",
1858 "http/http_auth_handler_negotiate.h",
1859 ]
1860 }
1861
Fabrice de Gans-Riberi9fba3aff2018-04-12 19:00:481862 if (is_posix || is_fuchsia) {
kapishnikovabe280e2016-04-14 19:07:161863 if (posix_avoid_mmap) {
1864 sources -= [ "disk_cache/blockfile/mapped_file_posix.cc" ]
1865 } else {
1866 sources -= [ "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc" ]
1867 }
1868 }
1869
zentarob74795682017-07-14 00:58:221870 if (is_win) {
1871 sources -= [
zentarob89acda42017-07-14 01:28:571872 "ntlm/ntlm.cc",
1873 "ntlm/ntlm.h",
zentarob74795682017-07-14 00:58:221874 "ntlm/ntlm_buffer_reader.cc",
1875 "ntlm/ntlm_buffer_reader.h",
1876 "ntlm/ntlm_buffer_writer.cc",
1877 "ntlm/ntlm_buffer_writer.h",
Zentaro Kavanaghdd556612017-08-03 20:27:041878 "ntlm/ntlm_client.cc",
1879 "ntlm/ntlm_client.h",
zentarob74795682017-07-14 00:58:221880 "ntlm/ntlm_constants.h",
1881 ]
1882 }
1883
kapishnikovabe280e2016-04-14 19:07:161884 if (!enable_built_in_dns) {
1885 sources -= [
1886 "dns/address_sorter_posix.cc",
1887 "dns/address_sorter_posix.h",
1888 "dns/dns_client.cc",
1889 ]
1890 }
1891
kapishnikovabe280e2016-04-14 19:07:161892 if (!use_kerberos || is_android) {
1893 sources -= [
1894 "http/http_auth_gssapi_posix.cc",
1895 "http/http_auth_gssapi_posix.h",
1896 ]
1897 }
1898
Sergey Ulanov5c33235ae2017-07-06 23:55:071899 if (!is_nacl) {
Matt Mueller15004212017-09-08 04:44:131900 sources -= [
1901 "base/network_interfaces_nacl.cc",
1902 "cert/cert_database_stub.cc",
1903 ]
Sergey Ulanov5c33235ae2017-07-06 23:55:071904 }
1905
1906 # Use getifaddrs() on POSIX platforms, except Linux and Android.
Fabrice de Gans-Riberi9fba3aff2018-04-12 19:00:481907 if (is_posix && !is_linux && !is_android) {
1908 sources += [
Sergey Ulanov5c33235ae2017-07-06 23:55:071909 "base/network_interfaces_getifaddrs.cc",
1910 "base/network_interfaces_getifaddrs.h",
1911 ]
1912 }
1913
mostynb75e8d632016-08-02 16:46:531914 if (use_gio) {
Tim Brown1c307cc2017-12-08 02:40:381915 configs += [ "//build/linux:gio_config" ]
kapishnikovabe280e2016-04-14 19:07:161916 }
1917
1918 if (!use_nss_certs) {
1919 sources -= [
kapishnikovabe280e2016-04-14 19:07:161920 "cert/cert_database_nss.cc",
mattm9c63d442016-09-03 00:45:511921 "cert/internal/trust_store_nss.cc",
1922 "cert/internal/trust_store_nss.h",
eromanf2971fd2017-04-20 20:10:451923 "cert/known_roots_nss.cc",
1924 "cert/known_roots_nss.h",
kapishnikovabe280e2016-04-14 19:07:161925 "cert/nss_cert_database.cc",
1926 "cert/nss_cert_database.h",
kapishnikovabe280e2016-04-14 19:07:161927 "ssl/client_cert_store_nss.cc",
1928 "ssl/client_cert_store_nss.h",
kapishnikovabe280e2016-04-14 19:07:161929 "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
1930 "third_party/mozilla_security_manager/nsNSSCertificateDB.h",
1931 "third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
1932 "third_party/mozilla_security_manager/nsPKCS12Blob.h",
1933 ]
1934 if (is_chromeos) {
1935 # These were already removed on non-ChromeOS.
1936 sources -= [
1937 "cert/nss_cert_database_chromeos.cc",
1938 "cert/nss_cert_database_chromeos.h",
1939 "cert/nss_profile_filter_chromeos.cc",
1940 "cert/nss_profile_filter_chromeos.h",
1941 ]
1942 }
mattmbbf7fc02017-06-19 23:38:191943 sources -= [ "ssl/ssl_platform_key_nss.cc" ]
svaldez2135be52016-04-20 16:34:531944 } else {
davidben8d569f52016-07-29 16:03:181945 sources += [
1946 "third_party/nss/ssl/cmpcert.cc",
1947 "third_party/nss/ssl/cmpcert.h",
1948 ]
kapishnikovabe280e2016-04-14 19:07:161949 }
1950
svaldez2135be52016-04-20 16:34:531951 if (!use_nss_certs) {
kapishnikovabe280e2016-04-14 19:07:161952 # These files are part of the partial implementation of NSS for
1953 # cert verification, so keep them in that case.
1954 sources -= [
1955 "cert/cert_verify_proc_nss.cc",
1956 "cert/cert_verify_proc_nss.h",
1957 "cert/test_root_certs_nss.cc",
svaldez2135be52016-04-20 16:34:531958 "cert/x509_util_nss.cc",
kapishnikovabe280e2016-04-14 19:07:161959 "cert_net/nss_ocsp.cc",
1960 "cert_net/nss_ocsp.h",
1961 ]
1962 }
1963
kapishnikovabe280e2016-04-14 19:07:161964 if (is_chromecast && use_nss_certs) {
mattm436ccfe2017-06-19 20:24:081965 sources -= [
1966 "ssl/client_cert_store_nss.cc",
1967 "ssl/client_cert_store_nss.h",
1968 "ssl/ssl_platform_key_nss.cc",
1969 ]
kapishnikovabe280e2016-04-14 19:07:161970 }
1971
1972 if (!enable_mdns) {
1973 sources -= [
1974 "dns/mdns_cache.cc",
1975 "dns/mdns_cache.h",
1976 "dns/mdns_client.cc",
1977 "dns/mdns_client.h",
1978 "dns/mdns_client_impl.cc",
1979 "dns/mdns_client_impl.h",
kapishnikovabe280e2016-04-14 19:07:161980 ]
1981 }
1982
1983 if (is_win) {
1984 sources -= [ "http/http_auth_handler_ntlm_portable.cc" ]
1985 } else { # !is_win
1986 sources -= [
1987 "base/winsock_init.cc",
1988 "base/winsock_init.h",
1989 "base/winsock_util.cc",
1990 "base/winsock_util.h",
Lily Houghton582d4622018-01-22 22:43:401991 "proxy_resolution/proxy_resolver_winhttp.cc",
1992 "proxy_resolution/proxy_resolver_winhttp.h",
kapishnikovabe280e2016-04-14 19:07:161993 ]
1994 }
1995
1996 if (is_ios) {
1997 # Add back some sources that were otherwise filtered out.
1998 # iOS needs some Mac files.
1999 net_unfiltered_sources += [
2000 "base/mac/url_conversions.h",
2001 "base/mac/url_conversions.mm",
2002 "base/network_change_notifier_mac.cc",
wychenebb66ffb2017-04-05 07:19:372003 "base/network_change_notifier_mac.h",
kapishnikovabe280e2016-04-14 19:07:162004 "base/network_config_watcher_mac.cc",
wychenebb66ffb2017-04-05 07:19:372005 "base/network_config_watcher_mac.h",
kapishnikovabe280e2016-04-14 19:07:162006 "base/platform_mime_util_mac.mm",
Lily Houghton582d4622018-01-22 22:43:402007 "base/proxy_server_mac.cc",
svaldez2135be52016-04-20 16:34:532008 "cert/test_root_certs_mac.cc",
mattm1a07e632017-05-16 05:55:502009 "cert/x509_util_ios_and_mac.cc",
2010 "cert/x509_util_ios_and_mac.h",
Lily Houghton582d4622018-01-22 22:43:402011 "proxy_resolution/proxy_resolver_mac.cc",
2012 "proxy_resolution/proxy_resolver_mac.h",
kapishnikovabe280e2016-04-14 19:07:162013 ]
2014
2015 sources -= [ "disk_cache/blockfile/file_posix.cc" ]
2016 }
2017
kapishnikovabe280e2016-04-14 19:07:162018 if (is_ios || is_mac) {
ckrasic73f7240b2017-01-24 00:06:452019 sources += [
2020 "base/mac/url_conversions.h",
2021 "base/mac/url_conversions.mm",
2022 ]
kapishnikovabe280e2016-04-14 19:07:162023 }
2024
2025 if (is_android) {
2026 deps += [ ":net_jni_headers" ]
2027
2028 # Add some Linux sources that were excluded by the filter, but which
2029 # are needed.
2030 net_unfiltered_sources += [
2031 "base/address_tracker_linux.cc",
2032 "base/address_tracker_linux.h",
2033 "base/network_interfaces_linux.cc",
2034 "base/network_interfaces_linux.h",
2035 "base/platform_mime_util_linux.cc",
2036 ]
2037 }
Sergey Ulanov49085572017-07-10 23:25:462038
2039 if (is_fuchsia) {
2040 sources += [
Sergey Ulanov2beef3d2017-10-19 21:53:532041 "base/network_interfaces_fuchsia.cc",
Sergey Ulanov49085572017-07-10 23:25:462042 "base/platform_mime_util_fuchsia.cc",
2043 "cert/cert_database_fuchsia.cc",
2044 "cert/test_root_certs_fuchsia.cc",
2045 ]
2046 }
kapishnikovabe280e2016-04-14 19:07:162047 } else {
2048 public_deps += [ "//native_client_sdk/src/libraries/nacl_io" ]
2049 }
xunjieli905496a2015-08-31 15:51:172050
Sergey Ulanov21dea152017-09-13 00:50:502051 if (enable_unix_sockets) {
2052 sources += [
2053 "socket/unix_domain_client_socket_posix.cc",
2054 "socket/unix_domain_client_socket_posix.h",
2055 "socket/unix_domain_server_socket_posix.cc",
2056 "socket/unix_domain_server_socket_posix.h",
2057 ]
2058 }
2059
xunjieli905496a2015-08-31 15:51:172060 # Add back some sources that were otherwise filtered out.
2061 set_sources_assignment_filter([])
kapishnikovabe280e2016-04-14 19:07:162062 sources += net_unfiltered_sources
xunjieli905496a2015-08-31 15:51:172063 set_sources_assignment_filter(sources_assignment_filter)
2064
2065 cflags = []
kapishnikovabe280e2016-04-14 19:07:162066 configs += net_configs
xunjieli905496a2015-08-31 15:51:172067
brettwa1228ebb2016-10-28 03:51:342068 public_deps += [
Scott Violet0caaaf432018-03-24 00:43:592069 ":buildflags",
brettwa1228ebb2016-10-28 03:51:342070 "//url",
2071 ]
[email protected]4625ade2014-04-15 19:26:442072
2073 if (is_mac) {
[email protected]4625ade2014-04-15 19:26:442074 libs = [
rsesek02aa51c2016-05-11 02:13:572075 "CFNetwork.framework",
2076 "CoreServices.framework",
[email protected]ab9ce6e2014-04-17 20:33:192077 "Foundation.framework",
2078 "Security.framework",
2079 "SystemConfiguration.framework",
2080 "resolv",
[email protected]4625ade2014-04-15 19:26:442081 ]
2082 }
2083
2084 if (is_ios) {
[email protected]4625ade2014-04-15 19:26:442085 libs = [
[email protected]ab9ce6e2014-04-17 20:33:192086 "CFNetwork.framework",
2087 "MobileCoreServices.framework",
2088 "Security.framework",
2089 "SystemConfiguration.framework",
2090 "resolv",
[email protected]4625ade2014-04-15 19:26:442091 ]
xunjieli06d93982015-08-27 17:13:022092 }
xunjieli4c8c6922015-08-27 16:02:402093
jam5332a632016-04-01 22:36:052094 if (is_win) {
2095 libs = [
2096 "crypt32.lib",
2097 "dhcpcsvc.lib",
2098 "iphlpapi.lib",
davidben62399192016-09-13 01:54:222099 "ncrypt.lib",
jam5332a632016-04-01 22:36:052100 "rpcrt4.lib",
2101 "secur32.lib",
2102 "urlmon.lib",
2103 "winhttp.lib",
2104 ]
2105 }
2106
sergeyu99d83f92015-09-14 23:03:332107 if (!is_nacl) {
2108 if (!disable_file_support) {
ckrasic73f7240b2017-01-24 00:06:452109 sources += [
2110 "base/directory_lister.cc",
2111 "base/directory_lister.h",
2112 "base/directory_listing.cc",
2113 "base/directory_listing.h",
2114 "url_request/file_protocol_handler.cc",
2115 "url_request/file_protocol_handler.h",
2116 "url_request/url_request_file_dir_job.cc",
2117 "url_request/url_request_file_dir_job.h",
2118 "url_request/url_request_file_job.cc",
2119 "url_request/url_request_file_job.h",
2120 ]
sergeyu99d83f92015-09-14 23:03:332121 }
xunjieli06d93982015-08-27 17:13:022122
sergeyu99d83f92015-09-14 23:03:332123 if (!disable_ftp_support) {
ckrasic73f7240b2017-01-24 00:06:452124 sources += [
2125 "ftp/ftp_auth_cache.cc",
2126 "ftp/ftp_auth_cache.h",
2127 "ftp/ftp_ctrl_response_buffer.cc",
2128 "ftp/ftp_ctrl_response_buffer.h",
2129 "ftp/ftp_directory_listing_parser.cc",
2130 "ftp/ftp_directory_listing_parser.h",
2131 "ftp/ftp_directory_listing_parser_ls.cc",
2132 "ftp/ftp_directory_listing_parser_ls.h",
2133 "ftp/ftp_directory_listing_parser_vms.cc",
2134 "ftp/ftp_directory_listing_parser_vms.h",
2135 "ftp/ftp_directory_listing_parser_windows.cc",
2136 "ftp/ftp_directory_listing_parser_windows.h",
2137 "ftp/ftp_network_layer.cc",
2138 "ftp/ftp_network_layer.h",
2139 "ftp/ftp_network_session.cc",
2140 "ftp/ftp_network_session.h",
2141 "ftp/ftp_network_transaction.cc",
2142 "ftp/ftp_network_transaction.h",
2143 "ftp/ftp_request_info.h",
2144 "ftp/ftp_response_info.cc",
2145 "ftp/ftp_response_info.h",
2146 "ftp/ftp_server_type_histograms.cc",
2147 "ftp/ftp_server_type_histograms.h",
2148 "ftp/ftp_transaction.h",
2149 "ftp/ftp_transaction_factory.h",
2150 "ftp/ftp_util.cc",
2151 "ftp/ftp_util.h",
2152 "url_request/ftp_protocol_handler.cc",
2153 "url_request/ftp_protocol_handler.h",
2154 "url_request/url_request_ftp_job.cc",
2155 "url_request/url_request_ftp_job.h",
2156 ]
sergeyu99d83f92015-09-14 23:03:332157 }
xunjieli905496a2015-08-31 15:51:172158
sergeyu99d83f92015-09-14 23:03:332159 if (enable_websockets) {
ckrasic73f7240b2017-01-24 00:06:452160 sources += [
2161 "websockets/websocket_basic_handshake_stream.cc",
2162 "websockets/websocket_basic_handshake_stream.h",
2163 "websockets/websocket_basic_stream.cc",
2164 "websockets/websocket_basic_stream.h",
Bence Béky7294fc22018-02-08 14:26:172165 "websockets/websocket_basic_stream_adapters.cc",
2166 "websockets/websocket_basic_stream_adapters.h",
ckrasic73f7240b2017-01-24 00:06:452167 "websockets/websocket_channel.cc",
2168 "websockets/websocket_channel.h",
2169 "websockets/websocket_deflate_parameters.cc",
2170 "websockets/websocket_deflate_parameters.h",
2171 "websockets/websocket_deflate_predictor.h",
2172 "websockets/websocket_deflate_predictor_impl.cc",
2173 "websockets/websocket_deflate_predictor_impl.h",
2174 "websockets/websocket_deflate_stream.cc",
2175 "websockets/websocket_deflate_stream.h",
2176 "websockets/websocket_deflater.cc",
2177 "websockets/websocket_deflater.h",
2178 "websockets/websocket_errors.cc",
2179 "websockets/websocket_errors.h",
mmenke392ec462017-03-23 18:49:352180 "websockets/websocket_event_interface.h",
ckrasic73f7240b2017-01-24 00:06:452181 "websockets/websocket_extension.cc",
2182 "websockets/websocket_extension.h",
2183 "websockets/websocket_extension_parser.cc",
2184 "websockets/websocket_extension_parser.h",
2185 "websockets/websocket_frame.cc",
2186 "websockets/websocket_frame.h",
2187 "websockets/websocket_frame_parser.cc",
2188 "websockets/websocket_frame_parser.h",
2189 "websockets/websocket_handshake_challenge.cc",
2190 "websockets/websocket_handshake_challenge.h",
2191 "websockets/websocket_handshake_constants.cc",
2192 "websockets/websocket_handshake_constants.h",
2193 "websockets/websocket_handshake_request_info.cc",
2194 "websockets/websocket_handshake_request_info.h",
2195 "websockets/websocket_handshake_response_info.cc",
2196 "websockets/websocket_handshake_response_info.h",
Bence Békycc7249a2018-03-06 16:23:272197 "websockets/websocket_handshake_stream_base.cc",
ckrasic73f7240b2017-01-24 00:06:452198 "websockets/websocket_handshake_stream_base.h",
2199 "websockets/websocket_handshake_stream_create_helper.cc",
2200 "websockets/websocket_handshake_stream_create_helper.h",
Bence Béky46bfbc12018-02-22 19:28:202201 "websockets/websocket_http2_handshake_stream.cc",
2202 "websockets/websocket_http2_handshake_stream.h",
ckrasic73f7240b2017-01-24 00:06:452203 "websockets/websocket_inflater.cc",
2204 "websockets/websocket_inflater.h",
2205 "websockets/websocket_stream.cc",
2206 "websockets/websocket_stream.h",
2207 ]
sergeyu99d83f92015-09-14 23:03:332208 }
xunjieli905496a2015-08-31 15:51:172209
sergeyu99d83f92015-09-14 23:03:332210 # ICU support.
kapishnikovabe280e2016-04-14 19:07:162211 if (use_platform_icu_alternatives) {
2212 if (is_android) {
2213 # Use ICU alternative on Android.
torned8b7d9252016-08-04 19:41:452214 sources += [ "base/net_string_util_icu_alternatives_android.cc" ]
kapishnikovabe280e2016-04-14 19:07:162215 deps += [ ":net_jni_headers" ]
2216 } else if (is_ios) {
2217 # Use ICU alternative on iOS.
2218 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ]
2219 } else {
2220 assert(false,
2221 "ICU alternative is not implemented for platform: " + target_os)
2222 }
2223 } else {
2224 # Use ICU.
2225 deps += [
2226 "//base:i18n",
2227 "//third_party/icu",
2228 ]
2229 sources += [
2230 "base/filename_util_icu.cc",
2231 "base/net_string_util_icu.cc",
2232 ]
2233 }
eustasfbec9132015-12-30 14:56:512234
2235 # Brotli support.
kapishnikovabe280e2016-04-14 19:07:162236 if (!disable_brotli_filter) {
thakisb8590c92017-03-23 18:14:532237 sources += [
2238 "filter/brotli_source_stream.cc",
2239 "filter/brotli_source_stream.h",
2240 ]
eustas6ed4c412016-12-14 13:53:342241 deps += [ "//third_party/brotli:dec" ]
kapishnikovabe280e2016-04-14 19:07:162242 } else {
xunjieli084a9292016-09-23 18:15:042243 sources += [ "filter/brotli_source_stream_disabled.cc" ]
kapishnikovabe280e2016-04-14 19:07:162244 }
[email protected]85191ed2014-05-15 00:41:492245 }
[email protected]4625ade2014-04-15 19:26:442246}
2247
2248grit("net_resources") {
2249 source = "base/net_resources.grd"
[email protected]b89c53842014-07-23 16:32:322250 outputs = [
2251 "grit/net_resources.h",
2252 "net_resources.pak",
[email protected]b89c53842014-07-23 16:32:322253 ]
[email protected]4625ade2014-04-15 19:26:442254}
2255
Tarun Bansalcdfa34b2017-11-23 05:11:172256proto_library("net_nqe_proto") {
2257 visibility = [ ":net" ]
2258
2259 sources = [
2260 "nqe/proto/network_id_proto.proto",
2261 ]
2262 cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:"
2263 cc_include = "net/base/net_export.h"
2264 component_build_force_source_set = true
2265
2266 defines = [ "NET_IMPLEMENTATION" ]
2267
2268 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
2269}
2270
rtennetib6f1c0d2015-04-03 17:52:062271proto_library("net_quic_proto") {
kapishnikovabe280e2016-04-14 19:07:162272 visibility = [ ":net" ]
brettw2e7db0a2015-04-24 22:59:172273
rtennetib6f1c0d2015-04-03 17:52:062274 sources = [
rchd4db7c152016-07-29 21:58:122275 "quic/core/proto/cached_network_parameters.proto",
2276 "quic/core/proto/source_address_token.proto",
rtennetib6f1c0d2015-04-03 17:52:062277 ]
2278 cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:"
2279 cc_include = "net/base/net_export.h"
brettw7ef80452016-06-30 00:43:182280 component_build_force_source_set = true
rtennetib6f1c0d2015-04-03 17:52:062281
2282 defines = [ "NET_IMPLEMENTATION" ]
2283
2284 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
2285}
2286
ckrasic73f7240b2017-01-24 00:06:452287if (!is_proto_quic) {
2288 static_library("extras") {
2289 sources = [
2290 "extras/sqlite/cookie_crypto_delegate.h",
2291 "extras/sqlite/sqlite_channel_id_store.cc",
2292 "extras/sqlite/sqlite_channel_id_store.h",
2293 "extras/sqlite/sqlite_persistent_cookie_store.cc",
2294 "extras/sqlite/sqlite_persistent_cookie_store.h",
2295 ]
2296 configs += [ "//build/config/compiler:wexit_time_destructors" ]
2297 deps = [
2298 ":net",
2299 "//base",
2300 "//sql:sql",
2301 ]
2302 }
mef327a8e42014-08-29 17:10:032303}
2304
[email protected]8a3f8242014-06-05 18:05:122305static_library("http_server") {
[email protected]4625ade2014-04-15 19:26:442306 sources = [
2307 "server/http_connection.cc",
2308 "server/http_connection.h",
2309 "server/http_server.cc",
2310 "server/http_server.h",
2311 "server/http_server_request_info.cc",
2312 "server/http_server_request_info.h",
2313 "server/http_server_response_info.cc",
2314 "server/http_server_response_info.h",
2315 "server/web_socket.cc",
2316 "server/web_socket.h",
dgozmana6e70092014-12-12 14:46:212317 "server/web_socket_encoder.cc",
2318 "server/web_socket_encoder.h",
[email protected]4625ade2014-04-15 19:26:442319 ]
Ryan Sleevic2fcac62017-12-21 16:37:042320 configs += [ "//build/config/compiler:wexit_time_destructors" ]
[email protected]4625ade2014-04-15 19:26:442321 deps = [
2322 ":net",
2323 "//base",
2324 ]
2325}
2326
sdefresne3001f172016-03-16 10:30:032327if (!is_ios) {
2328 executable("dump_cache") {
2329 testonly = true
2330 sources = [
2331 "tools/dump_cache/dump_cache.cc",
2332 "tools/dump_cache/dump_files.cc",
2333 "tools/dump_cache/dump_files.h",
2334 ]
[email protected]4625ade2014-04-15 19:26:442335
sdefresne3001f172016-03-16 10:30:032336 deps = [
2337 ":net",
2338 ":test_support",
2339 "//base",
thomasanderson84fa8b02017-05-18 23:38:472340 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072341 "//build/win:default_exe_manifest",
sdefresne3001f172016-03-16 10:30:032342 ]
2343 }
[email protected]8603c5de2014-04-16 20:34:312344}
2345
eroman12951312017-05-05 22:55:512346# This section can be updated from globbing rules using:
2347# python ./tools/update_ios_bundle_data.py
sdefresneb0a31642016-03-18 11:04:452348bundle_data("test_support_bundle_data") {
sdefresne04f91142016-04-21 08:41:592349 visibility = [ ":test_support" ]
sdefresneb0a31642016-03-18 11:04:452350 testonly = true
ckrasic73f7240b2017-01-24 00:06:452351 sources = [
zhongyid7dd2db12017-04-14 17:01:252352 "data/quic_http_response_cache_data_with_push/test.example.com/favicon.ico",
2353 "data/quic_http_response_cache_data_with_push/test.example.com/index.html",
2354 "data/quic_http_response_cache_data_with_push/test.example.com/index2.html",
2355 "data/quic_http_response_cache_data_with_push/test.example.com/kitten-1.jpg",
ckrasic73f7240b2017-01-24 00:06:452356 "data/ssl/certificates/1024-rsa-ee-by-1024-rsa-intermediate.pem",
2357 "data/ssl/certificates/1024-rsa-ee-by-2048-rsa-intermediate.pem",
2358 "data/ssl/certificates/1024-rsa-ee-by-768-rsa-intermediate.pem",
2359 "data/ssl/certificates/1024-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2360 "data/ssl/certificates/1024-rsa-intermediate.pem",
2361 "data/ssl/certificates/10_year_validity.pem",
2362 "data/ssl/certificates/11_year_validity.pem",
2363 "data/ssl/certificates/2029_globalsign_com_cert.pem",
2364 "data/ssl/certificates/2048-rsa-ee-by-1024-rsa-intermediate.pem",
2365 "data/ssl/certificates/2048-rsa-ee-by-2048-rsa-intermediate.pem",
2366 "data/ssl/certificates/2048-rsa-ee-by-768-rsa-intermediate.pem",
2367 "data/ssl/certificates/2048-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2368 "data/ssl/certificates/2048-rsa-intermediate.pem",
2369 "data/ssl/certificates/2048-rsa-root.pem",
2370 "data/ssl/certificates/39_months_after_2015_04.pem",
Ryan Sleevifb6f86642018-04-07 03:55:382371 "data/ssl/certificates/39_months_based_on_last_day.pem",
ckrasic73f7240b2017-01-24 00:06:452372 "data/ssl/certificates/40_months_after_2015_04.pem",
2373 "data/ssl/certificates/60_months_after_2012_07.pem",
2374 "data/ssl/certificates/61_months_after_2012_07.pem",
2375 "data/ssl/certificates/768-rsa-ee-by-1024-rsa-intermediate.pem",
2376 "data/ssl/certificates/768-rsa-ee-by-2048-rsa-intermediate.pem",
2377 "data/ssl/certificates/768-rsa-ee-by-768-rsa-intermediate.pem",
2378 "data/ssl/certificates/768-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2379 "data/ssl/certificates/768-rsa-intermediate.pem",
Ryan Sleevi1f9eb9f2018-01-23 21:25:142380 "data/ssl/certificates/825_days_1_second_after_2018_03_01.pem",
2381 "data/ssl/certificates/825_days_after_2018_03_01.pem",
2382 "data/ssl/certificates/826_days_after_2018_03_01.pem",
Matt Muellerc391cdf2018-02-08 01:05:572383 "data/ssl/certificates/BUILD.gn",
eroman12951312017-05-05 22:55:512384 "data/ssl/certificates/README",
ckrasic73f7240b2017-01-24 00:06:452385 "data/ssl/certificates/aia-cert.pem",
2386 "data/ssl/certificates/aia-intermediate.der",
2387 "data/ssl/certificates/aia-root.pem",
2388 "data/ssl/certificates/bad_validity.pem",
2389 "data/ssl/certificates/client-empty-password.p12",
2390 "data/ssl/certificates/client-nokey.p12",
2391 "data/ssl/certificates/client-null-password.p12",
2392 "data/ssl/certificates/client.p12",
2393 "data/ssl/certificates/client_1.key",
2394 "data/ssl/certificates/client_1.pem",
2395 "data/ssl/certificates/client_1.pk8",
2396 "data/ssl/certificates/client_1_ca.pem",
2397 "data/ssl/certificates/client_2.key",
2398 "data/ssl/certificates/client_2.pem",
2399 "data/ssl/certificates/client_2.pk8",
2400 "data/ssl/certificates/client_2_ca.pem",
2401 "data/ssl/certificates/client_3.key",
2402 "data/ssl/certificates/client_3.pem",
2403 "data/ssl/certificates/client_3.pk8",
2404 "data/ssl/certificates/client_3_ca.pem",
2405 "data/ssl/certificates/client_4.key",
2406 "data/ssl/certificates/client_4.pem",
2407 "data/ssl/certificates/client_4.pk8",
2408 "data/ssl/certificates/client_4_ca.pem",
2409 "data/ssl/certificates/client_5.key",
2410 "data/ssl/certificates/client_5.pem",
2411 "data/ssl/certificates/client_5.pk8",
2412 "data/ssl/certificates/client_5_ca.pem",
2413 "data/ssl/certificates/client_6.key",
2414 "data/ssl/certificates/client_6.pem",
2415 "data/ssl/certificates/client_6.pk8",
2416 "data/ssl/certificates/client_6_ca.pem",
2417 "data/ssl/certificates/client_root_ca.pem",
Ryan Sleevic2fcac62017-12-21 16:37:042418 "data/ssl/certificates/common_name_only.pem",
Rob Percival5c442f82018-03-28 22:10:572419 "data/ssl/certificates/comodo-chain.pem",
ckrasic73f7240b2017-01-24 00:06:452420 "data/ssl/certificates/crit-codeSigning-chain.pem",
2421 "data/ssl/certificates/crlset_by_intermediate_serial.raw",
2422 "data/ssl/certificates/crlset_by_leaf_spki.raw",
Eric Roman3b13fe0a2018-01-10 22:54:432423 "data/ssl/certificates/crlset_by_leaf_subject_no_spki.raw",
ckrasic73f7240b2017-01-24 00:06:452424 "data/ssl/certificates/crlset_by_root_serial.raw",
Eric Roman3b13fe0a2018-01-10 22:54:432425 "data/ssl/certificates/crlset_by_root_subject.raw",
2426 "data/ssl/certificates/crlset_by_root_subject_no_spki.raw",
ckrasic73f7240b2017-01-24 00:06:452427 "data/ssl/certificates/cross-signed-leaf.pem",
2428 "data/ssl/certificates/cross-signed-root-md5.pem",
2429 "data/ssl/certificates/cross-signed-root-sha256.pem",
2430 "data/ssl/certificates/ct-test-embedded-cert.pem",
2431 "data/ssl/certificates/ct-test-embedded-with-intermediate-chain.pem",
2432 "data/ssl/certificates/ct-test-embedded-with-intermediate-preca-chain.pem",
2433 "data/ssl/certificates/ct-test-embedded-with-preca-chain.pem",
Ryan Sleevid6c6a402018-04-14 01:33:042434 "data/ssl/certificates/daltonridgeapts.com-chain.pem",
Ryan Sleevibd9ca3112017-12-23 05:22:192435 "data/ssl/certificates/dec_2017.pem",
ckrasic73f7240b2017-01-24 00:06:452436 "data/ssl/certificates/diginotar_cyber_ca.pem",
2437 "data/ssl/certificates/diginotar_pkioverheid.pem",
2438 "data/ssl/certificates/diginotar_pkioverheid_g2.pem",
2439 "data/ssl/certificates/diginotar_public_ca_2025.pem",
2440 "data/ssl/certificates/diginotar_root_ca.pem",
2441 "data/ssl/certificates/diginotar_services_1024_ca.pem",
ckrasic73f7240b2017-01-24 00:06:452442 "data/ssl/certificates/duplicate_cn_1.p12",
2443 "data/ssl/certificates/duplicate_cn_1.pem",
2444 "data/ssl/certificates/duplicate_cn_2.p12",
2445 "data/ssl/certificates/duplicate_cn_2.pem",
2446 "data/ssl/certificates/eku-test-root.pem",
2447 "data/ssl/certificates/empty_subject_cert.der",
2448 "data/ssl/certificates/expired_cert.pem",
2449 "data/ssl/certificates/explicit-policy-chain.pem",
2450 "data/ssl/certificates/foaf.me.chromium-test-cert.der",
Ryan Sleevic646e482018-01-27 18:08:562451 "data/ssl/certificates/gms.hongleong.com.my-verisign-chain.pem",
ckrasic73f7240b2017-01-24 00:06:452452 "data/ssl/certificates/google.binary.p7b",
2453 "data/ssl/certificates/google.chain.pem",
2454 "data/ssl/certificates/google.pem_cert.p7b",
2455 "data/ssl/certificates/google.pem_pkcs7.p7b",
2456 "data/ssl/certificates/google.single.der",
2457 "data/ssl/certificates/google.single.pem",
2458 "data/ssl/certificates/google_diginotar.pem",
2459 "data/ssl/certificates/googlenew.chain.pem",
2460 "data/ssl/certificates/intermediate_ca_cert.pem",
2461 "data/ssl/certificates/invalid_key_usage_cert.der",
2462 "data/ssl/certificates/large_key.pem",
2463 "data/ssl/certificates/localhost_cert.pem",
2464 "data/ssl/certificates/mit.davidben.der",
2465 "data/ssl/certificates/multi-root-A-by-B.pem",
2466 "data/ssl/certificates/multi-root-B-by-C.pem",
2467 "data/ssl/certificates/multi-root-B-by-F.pem",
2468 "data/ssl/certificates/multi-root-BFE.keychain",
2469 "data/ssl/certificates/multi-root-C-by-D.pem",
2470 "data/ssl/certificates/multi-root-C-by-E.pem",
2471 "data/ssl/certificates/multi-root-D-by-D.pem",
2472 "data/ssl/certificates/multi-root-E-by-E.pem",
2473 "data/ssl/certificates/multi-root-F-by-E.pem",
2474 "data/ssl/certificates/multi-root-chain1.pem",
2475 "data/ssl/certificates/multi-root-chain2.pem",
2476 "data/ssl/certificates/multi-root-crlset-C.raw",
2477 "data/ssl/certificates/multi-root-crlset-CD-and-FE.raw",
2478 "data/ssl/certificates/multi-root-crlset-D-and-E.raw",
2479 "data/ssl/certificates/multi-root-crlset-E.raw",
2480 "data/ssl/certificates/multi-root-crlset-unrelated.raw",
eroman12951312017-05-05 22:55:512481 "data/ssl/certificates/multi-root.keychain",
ckrasic73f7240b2017-01-24 00:06:452482 "data/ssl/certificates/multivalue_rdn.pem",
2483 "data/ssl/certificates/name_constraint_bad.pem",
2484 "data/ssl/certificates/name_constraint_good.pem",
2485 "data/ssl/certificates/ndn.ca.crt",
2486 "data/ssl/certificates/nist.der",
2487 "data/ssl/certificates/no_subject_common_name_cert.pem",
2488 "data/ssl/certificates/non-crit-codeSigning-chain.pem",
2489 "data/ssl/certificates/ocsp-test-root.pem",
2490 "data/ssl/certificates/ok_cert.pem",
2491 "data/ssl/certificates/ok_cert_by_intermediate.pem",
2492 "data/ssl/certificates/post_june_2016.pem",
2493 "data/ssl/certificates/pre_br_validity_bad_121.pem",
2494 "data/ssl/certificates/pre_br_validity_bad_2020.pem",
2495 "data/ssl/certificates/pre_br_validity_ok.pem",
2496 "data/ssl/certificates/pre_june_2016.pem",
2497 "data/ssl/certificates/prime256v1-ecdsa-ee-by-1024-rsa-intermediate.pem",
2498 "data/ssl/certificates/prime256v1-ecdsa-ee-by-2048-rsa-intermediate.pem",
2499 "data/ssl/certificates/prime256v1-ecdsa-ee-by-768-rsa-intermediate.pem",
2500 "data/ssl/certificates/prime256v1-ecdsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2501 "data/ssl/certificates/prime256v1-ecdsa-intermediate.pem",
2502 "data/ssl/certificates/punycodetest.pem",
John Abd-El-Malek1c36bfd2017-12-19 19:21:362503 "data/ssl/certificates/quic-chain.pem",
John Abd-El-Malekec2f0822017-12-20 21:35:112504 "data/ssl/certificates/quic-leaf-cert.key",
2505 "data/ssl/certificates/quic-leaf-cert.key.pkcs8.pem",
2506 "data/ssl/certificates/quic-leaf-cert.key.sct",
John Abd-El-Malek1c36bfd2017-12-19 19:21:362507 "data/ssl/certificates/quic-root.pem",
ckrasic73f7240b2017-01-24 00:06:452508 "data/ssl/certificates/redundant-server-chain.pem",
2509 "data/ssl/certificates/redundant-validated-chain-root.pem",
2510 "data/ssl/certificates/redundant-validated-chain.pem",
2511 "data/ssl/certificates/reject_intranet_hosts.pem",
2512 "data/ssl/certificates/root_ca_cert.pem",
2513 "data/ssl/certificates/salesforce_com_test.pem",
2514 "data/ssl/certificates/self-signed-invalid-name.pem",
2515 "data/ssl/certificates/self-signed-invalid-sig.pem",
2516 "data/ssl/certificates/sha1_2016.pem",
2517 "data/ssl/certificates/sha1_dec_2015.pem",
2518 "data/ssl/certificates/sha1_jan_2016.pem",
Ryan Sleevic2fcac62017-12-21 16:37:042519 "data/ssl/certificates/sha1_leaf.pem",
ckrasic73f7240b2017-01-24 00:06:452520 "data/ssl/certificates/spdy_pooling.pem",
2521 "data/ssl/certificates/start_after_expiry.pem",
2522 "data/ssl/certificates/subjectAltName_sanity_check.pem",
elawrencec7484f52017-04-05 21:46:422523 "data/ssl/certificates/subjectAltName_www_example_com.pem",
ckrasic73f7240b2017-01-24 00:06:452524 "data/ssl/certificates/thawte.single.pem",
2525 "data/ssl/certificates/tls_feature_extension.pem",
eroman12951312017-05-05 22:55:512526 "data/ssl/certificates/trustcenter.websecurity.symantec.com.pem",
ckrasic73f7240b2017-01-24 00:06:452527 "data/ssl/certificates/unescaped.pem",
2528 "data/ssl/certificates/unittest.key.bin",
2529 "data/ssl/certificates/unittest.originbound.der",
2530 "data/ssl/certificates/unittest.originbound.key.der",
2531 "data/ssl/certificates/unittest.selfsigned.der",
2532 "data/ssl/certificates/verisign_class3_g5_crosssigned-trusted.keychain",
2533 "data/ssl/certificates/verisign_class3_g5_crosssigned.pem",
2534 "data/ssl/certificates/verisign_intermediate_ca_2011.pem",
2535 "data/ssl/certificates/verisign_intermediate_ca_2016.pem",
2536 "data/ssl/certificates/weak_digest_md2_ee.pem",
2537 "data/ssl/certificates/weak_digest_md2_intermediate.pem",
2538 "data/ssl/certificates/weak_digest_md2_root.pem",
2539 "data/ssl/certificates/weak_digest_md4_ee.pem",
2540 "data/ssl/certificates/weak_digest_md4_intermediate.pem",
2541 "data/ssl/certificates/weak_digest_md4_root.pem",
2542 "data/ssl/certificates/weak_digest_md5_ee.pem",
2543 "data/ssl/certificates/weak_digest_md5_intermediate.pem",
2544 "data/ssl/certificates/weak_digest_md5_root.pem",
2545 "data/ssl/certificates/weak_digest_sha1_ee.pem",
2546 "data/ssl/certificates/weak_digest_sha1_intermediate.pem",
2547 "data/ssl/certificates/weak_digest_sha1_root.pem",
2548 "data/ssl/certificates/websocket_cacert.pem",
2549 "data/ssl/certificates/websocket_client_cert.p12",
2550 "data/ssl/certificates/wildcard.pem",
ckrasic73f7240b2017-01-24 00:06:452551 "data/ssl/certificates/x509_verify_results.chain.pem",
2552 ]
sdefresneb0a31642016-03-18 11:04:452553 outputs = [
2554 "{{bundle_resources_dir}}/" +
2555 "{{source_root_relative_dir}}/{{source_file_part}}",
2556 ]
2557}
2558
brettw3871f522016-07-14 22:08:342559static_library("test_support") {
Brett Wilson8f80ad0b2014-09-08 19:50:242560 testonly = true
[email protected]8603c5de2014-04-16 20:34:312561 sources = [
[email protected]8603c5de2014-04-16 20:34:312562 "base/load_timing_info_test_util.cc",
2563 "base/load_timing_info_test_util.h",
2564 "base/mock_file_stream.cc",
2565 "base/mock_file_stream.h",
Helen Lif18af04d2017-10-19 17:26:072566 "base/mock_network_change_notifier.cc",
2567 "base/mock_network_change_notifier.h",
[email protected]8603c5de2014-04-16 20:34:312568 "base/test_completion_callback.cc",
2569 "base/test_completion_callback.h",
[email protected]8603c5de2014-04-16 20:34:312570 "cert/mock_cert_verifier.cc",
2571 "cert/mock_cert_verifier.h",
ryanchung987b2ff2016-02-19 00:17:122572 "cert/mock_client_cert_verifier.cc",
2573 "cert/mock_client_cert_verifier.h",
Victor Costan85874942018-02-28 04:11:442574 "cookies/canonical_cookie_test_helpers.h",
Victor Costan1dcd6752018-03-16 12:31:362575 "cookies/cookie_change_dispatcher_test_helpers.cc",
2576 "cookies/cookie_change_dispatcher_test_helpers.h",
[email protected]8603c5de2014-04-16 20:34:312577 "cookies/cookie_monster_store_test.cc",
2578 "cookies/cookie_monster_store_test.h",
Victor Costanf8cb27d2018-02-21 09:16:232579 "cookies/cookie_store_change_unittest.h",
[email protected]8603c5de2014-04-16 20:34:312580 "cookies/cookie_store_test_callbacks.cc",
2581 "cookies/cookie_store_test_callbacks.h",
2582 "cookies/cookie_store_test_helpers.cc",
2583 "cookies/cookie_store_test_helpers.h",
drogerfd8b2772015-12-04 14:34:562584 "cookies/cookie_store_unittest.h",
[email protected]8603c5de2014-04-16 20:34:312585 "disk_cache/disk_cache_test_base.cc",
2586 "disk_cache/disk_cache_test_base.h",
2587 "disk_cache/disk_cache_test_util.cc",
2588 "disk_cache/disk_cache_test_util.h",
2589 "dns/dns_test_util.cc",
2590 "dns/dns_test_util.h",
2591 "dns/mock_host_resolver.cc",
2592 "dns/mock_host_resolver.h",
2593 "dns/mock_mdns_socket_factory.cc",
2594 "dns/mock_mdns_socket_factory.h",
Matt Menke1dd3f2f2017-08-09 17:10:062595 "filter/filter_source_stream_test_util.cc",
2596 "filter/filter_source_stream_test_util.h",
xunjieli6cc8b84b2016-11-08 15:23:392597 "filter/mock_source_stream.cc",
2598 "filter/mock_source_stream.h",
zhongyi3c412982016-06-18 00:34:302599 "http/http_stream_factory_test_util.cc",
2600 "http/http_stream_factory_test_util.h",
[email protected]8a3f8242014-06-05 18:05:122601 "http/http_transaction_test_util.cc",
2602 "http/http_transaction_test_util.h",
vishal.b62985ca92015-04-17 08:45:512603 "log/test_net_log.cc",
2604 "log/test_net_log.h",
mmenke43758e62015-05-04 21:09:462605 "log/test_net_log_entry.cc",
2606 "log/test_net_log_entry.h",
mmenke0034c542015-05-05 22:34:592607 "log/test_net_log_util.cc",
mmenke43758e62015-05-04 21:09:462608 "log/test_net_log_util.h",
tbansal785a6ab2016-10-10 20:19:282609 "nqe/network_quality_estimator_test_util.cc",
2610 "nqe/network_quality_estimator_test_util.h",
Lily Houghton582d4622018-01-22 22:43:402611 "proxy_resolution/mock_pac_file_fetcher.cc",
2612 "proxy_resolution/mock_pac_file_fetcher.h",
2613 "proxy_resolution/mock_proxy_resolver.cc",
2614 "proxy_resolution/mock_proxy_resolver.h",
2615 "proxy_resolution/proxy_config_service_common_unittest.cc",
2616 "proxy_resolution/proxy_config_service_common_unittest.h",
[email protected]8603c5de2014-04-16 20:34:312617 "socket/socket_test_util.cc",
2618 "socket/socket_test_util.h",
bnc8f8f7d302017-04-24 18:08:062619 "spdy/chromium/spdy_test_util_common.cc",
2620 "spdy/chromium/spdy_test_util_common.h",
mattm436ccfe2017-06-19 20:24:082621 "ssl/client_cert_identity_test_util.cc",
2622 "ssl/client_cert_identity_test_util.h",
2623 "ssl/ssl_private_key_test_util.cc",
2624 "ssl/ssl_private_key_test_util.h",
[email protected]8603c5de2014-04-16 20:34:312625 "test/cert_test_util.cc",
2626 "test/cert_test_util.h",
[email protected]83e1ae32014-07-18 10:57:072627 "test/cert_test_util_nss.cc",
nharper2e171cf2015-06-01 20:29:232628 "test/channel_id_test_util.cc",
2629 "test/channel_id_test_util.h",
[email protected]8603c5de2014-04-16 20:34:312630 "test/ct_test_util.cc",
2631 "test/ct_test_util.h",
John Abd-El-Malekf071beb2018-01-30 18:03:242632 "test/embedded_test_server/controllable_http_response.cc",
2633 "test/embedded_test_server/controllable_http_response.h",
svaldez7d25c562015-10-30 19:09:452634 "test/embedded_test_server/default_handlers.cc",
2635 "test/embedded_test_server/default_handlers.h",
[email protected]8603c5de2014-04-16 20:34:312636 "test/embedded_test_server/embedded_test_server.cc",
2637 "test/embedded_test_server/embedded_test_server.h",
mmenke392ec462017-03-23 18:49:352638 "test/embedded_test_server/embedded_test_server_connection_listener.h",
[email protected]8603c5de2014-04-16 20:34:312639 "test/embedded_test_server/http_connection.cc",
2640 "test/embedded_test_server/http_connection.h",
2641 "test/embedded_test_server/http_request.cc",
2642 "test/embedded_test_server/http_request.h",
2643 "test/embedded_test_server/http_response.cc",
2644 "test/embedded_test_server/http_response.h",
svaldez6e7e82a22015-10-28 19:39:532645 "test/embedded_test_server/request_handler_util.cc",
2646 "test/embedded_test_server/request_handler_util.h",
mmenke93be9ca2017-05-23 16:29:132647 "test/embedded_test_server/simple_connection_listener.cc",
2648 "test/embedded_test_server/simple_connection_listener.h",
sammc6ac3fe52015-02-25 06:00:282649 "test/event_waiter.h",
johnme36ae5802016-05-10 15:46:242650 "test/gtest_util.h",
mattmc1ec9d92017-05-25 01:40:302651 "test/keychain_test_util_mac.cc",
2652 "test/keychain_test_util_mac.h",
[email protected]8603c5de2014-04-16 20:34:312653 "test/net_test_suite.cc",
2654 "test/net_test_suite.h",
Misha Efimov2f3f8ed2018-03-06 13:27:282655 "test/quic_simple_test_server.cc",
2656 "test/quic_simple_test_server.h",
johnme36ae5802016-05-10 15:46:242657 "test/scoped_disable_exit_on_dfatal.cc",
2658 "test/scoped_disable_exit_on_dfatal.h",
Sergey Ulanov7de85802018-01-19 19:50:342659 "test/tcp_socket_proxy.cc",
2660 "test/tcp_socket_proxy.h",
brettw6315e032015-11-27 18:38:362661 "test/test_certificate_data.h",
rsleevia69c79a2016-06-22 03:28:432662 "test/test_data_directory.cc",
2663 "test/test_data_directory.h",
sherouk51b4b098b2015-08-10 09:00:432664 "test/url_request/ssl_certificate_error_job.cc",
2665 "test/url_request/ssl_certificate_error_job.h",
Brett Wilson32ce17a2014-11-10 17:45:302666 "test/url_request/url_request_failed_job.cc",
2667 "test/url_request/url_request_failed_job.h",
xunjieli5d1f9892016-05-18 20:44:342668 "test/url_request/url_request_hanging_read_job.cc",
2669 "test/url_request/url_request_hanging_read_job.h",
mef3e826cf2014-12-13 18:40:402670 "test/url_request/url_request_mock_data_job.cc",
2671 "test/url_request/url_request_mock_data_job.h",
jam8e45cd72015-01-20 16:33:442672 "test/url_request/url_request_slow_download_job.cc",
2673 "test/url_request/url_request_slow_download_job.h",
rhalavatia9b551d2017-02-09 12:03:002674 "traffic_annotation/network_traffic_annotation_test_helper.h",
[email protected]8603c5de2014-04-16 20:34:312675 "url_request/test_url_fetcher_factory.cc",
2676 "url_request/test_url_fetcher_factory.h",
2677 "url_request/url_request_test_util.cc",
2678 "url_request/url_request_test_util.h",
2679 ]
2680
Ryan Sleevic2fcac62017-12-21 16:37:042681 configs += [ "//build/config:precompiled_headers" ]
[email protected]8603c5de2014-04-16 20:34:312682
Brett Wilsone53895272014-09-23 23:41:462683 public_deps = [
rhalavatia9b551d2017-02-09 12:03:002684 ":traffic_annotation",
[email protected]8603c5de2014-04-16 20:34:312685 "//base",
2686 "//base/test:test_support",
[email protected]22fe91d2014-08-12 17:07:122687 "//crypto",
[email protected]59ff2d42014-04-22 22:25:232688 "//net",
[email protected]8603c5de2014-04-16 20:34:312689 "//net/tools/tld_cleanup",
2690 "//testing/gmock",
2691 "//testing/gtest",
2692 "//url",
2693 ]
2694
Matt Menke1dd3f2f2017-08-09 17:10:062695 deps = [
Misha Efimov2f3f8ed2018-03-06 13:27:282696 ":simple_quic_tools",
Matt Menke1dd3f2f2017-08-09 17:10:062697 "//third_party/zlib",
2698 ]
sdefresne04f91142016-04-21 08:41:592699
jbudorick944eb922016-06-20 15:38:302700 data = [
2701 "data/",
2702 ]
2703
rsesek7d4ab4bc2016-07-22 17:35:132704 if (is_ios) {
2705 deps += [ ":test_support_bundle_data" ]
2706 } else {
jamb533b7e2015-03-04 17:12:052707 public_deps += [ "//third_party/protobuf:py_proto" ]
2708 }
2709
svaldez2135be52016-04-20 16:34:532710 if (use_nss_certs) {
scottmg34fb7e52014-12-03 23:27:242711 public_deps += [ "//crypto:platform" ]
[email protected]8603c5de2014-04-16 20:34:312712 }
2713
Sergey Ulanovec1d3de2017-09-19 19:27:472714 if (!is_ios) {
sherouk3eee4a82015-09-01 10:42:332715 sources += [
Sergey Ulanovec1d3de2017-09-19 19:27:472716 "test/spawned_test_server/base_test_server.cc",
2717 "test/spawned_test_server/base_test_server.h",
2718 "test/spawned_test_server/spawned_test_server.h",
2719 ]
Sergey Ulanov7de85802018-01-19 19:50:342720 }
Sergey Ulanovec1d3de2017-09-19 19:27:472721
Sergey Ulanov7de85802018-01-19 19:50:342722 if (use_remote_test_server) {
2723 sources += [
2724 "test/spawned_test_server/remote_test_server.cc",
2725 "test/spawned_test_server/remote_test_server.h",
2726 "test/spawned_test_server/remote_test_server_config.cc",
2727 "test/spawned_test_server/remote_test_server_config.h",
2728 "test/spawned_test_server/remote_test_server_spawner_request.cc",
2729 "test/spawned_test_server/remote_test_server_spawner_request.h",
2730 ]
2731 } else if (!is_ios) {
2732 sources += [
2733 "test/spawned_test_server/local_test_server.cc",
2734 "test/spawned_test_server/local_test_server.h",
2735 "test/spawned_test_server/local_test_server_posix.cc",
2736 "test/spawned_test_server/local_test_server_win.cc",
2737 ]
Sergey Ulanovec1d3de2017-09-19 19:27:472738 }
2739
2740 if (enable_python_utils) {
2741 sources += [
2742 "test/python_utils.cc",
2743 "test/python_utils.h",
[email protected]8603c5de2014-04-16 20:34:312744 ]
2745 }
2746
2747 if (use_v8_in_net) {
Brett Wilsone53895272014-09-23 23:41:462748 public_deps += [ ":net_with_v8" ]
[email protected]8603c5de2014-04-16 20:34:312749 }
2750
2751 if (!enable_mdns) {
2752 sources -= [
2753 "dns/mock_mdns_socket_factory.cc",
2754 "dns/mock_mdns_socket_factory.h",
2755 ]
2756 }
2757
davidben15d69d482014-09-29 18:24:082758 if (!use_nss_certs) {
scottmg34fb7e52014-12-03 23:27:242759 sources -= [ "test/cert_test_util_nss.cc" ]
[email protected]83e1ae32014-07-18 10:57:072760 }
xunjielia6888202015-04-14 21:34:252761
2762 if (!disable_file_support) {
2763 sources += [
2764 "test/url_request/url_request_mock_http_job.cc",
2765 "test/url_request/url_request_mock_http_job.h",
2766 "url_request/test_url_request_interceptor.cc",
2767 "url_request/test_url_request_interceptor.h",
2768 ]
2769 }
[email protected]8603c5de2014-04-16 20:34:312770}
2771
2772if (use_v8_in_net) {
2773 component("net_with_v8") {
2774 sources = [
Lily Houghton582d4622018-01-22 22:43:402775 "proxy_resolution/proxy_resolver_v8.cc",
2776 "proxy_resolution/proxy_resolver_v8.h",
2777 "proxy_resolution/proxy_resolver_v8_tracing.cc",
2778 "proxy_resolution/proxy_resolver_v8_tracing.h",
2779 "proxy_resolution/proxy_resolver_v8_tracing_wrapper.cc",
2780 "proxy_resolution/proxy_resolver_v8_tracing_wrapper.h",
[email protected]8603c5de2014-04-16 20:34:312781 ]
2782
2783 defines = [ "NET_IMPLEMENTATION" ]
dprankea22b0732015-10-21 21:15:112784
[email protected]8603c5de2014-04-16 20:34:312785 configs += [
[email protected]8603c5de2014-04-16 20:34:312786 "//build/config/compiler:wexit_time_destructors",
dprankea22b0732015-10-21 21:15:112787 "//v8:external_startup_data",
[email protected]8603c5de2014-04-16 20:34:312788 ]
2789
Brett Wilsone53895272014-09-23 23:41:462790 public_deps = [
xunjieli0b7f5b62016-12-06 20:43:482791 ":constants",
[email protected]8603c5de2014-04-16 20:34:312792 ":net",
Brett Wilsone53895272014-09-23 23:41:462793 ]
2794 deps = [
[email protected]8603c5de2014-04-16 20:34:312795 "//base",
2796 "//gin",
2797 "//url",
2798 "//v8",
2799 ]
2800 }
2801}
2802
mmenke93be9ca2017-05-23 16:29:132803if (enable_net_mojo) {
amistry7e6ebfdc82015-02-13 04:19:112804 source_set("net_browser_services") {
2805 sources = [
2806 "dns/mojo_host_resolver_impl.cc",
2807 "dns/mojo_host_resolver_impl.h",
2808 ]
2809
2810 public_deps = [
scottmg5bf34202017-01-26 05:49:022811 ":net",
brettwbc44c0a92015-02-20 22:30:392812 "//base",
rockot85dce0862015-11-13 01:33:592813 "//mojo/public/cpp/bindings",
amistry7e6ebfdc82015-02-13 04:19:112814 "//net/interfaces",
amistry7e6ebfdc82015-02-13 04:19:112815 ]
2816 }
2817
sammc5403aa1d2015-02-25 04:59:212818 source_set("net_utility_services") {
2819 sources = [
sammc6ac3fe52015-02-25 06:00:282820 "dns/host_resolver_mojo.cc",
2821 "dns/host_resolver_mojo.h",
sammc5403aa1d2015-02-25 04:59:212822 ]
2823
rockot9509ec82015-04-14 02:50:562824 deps = [
2825 ":net_with_v8",
tfarina8ac4d17f2015-12-16 02:11:112826 "//base",
rockot9509ec82015-04-14 02:50:562827 ]
2828
sammc5403aa1d2015-02-25 04:59:212829 public_deps = [
sammc5403aa1d2015-02-25 04:59:212830 ":net",
rockot85dce0862015-11-13 01:33:592831 "//mojo/public/cpp/bindings",
sammc5403aa1d2015-02-25 04:59:212832 "//net/interfaces",
sammc5403aa1d2015-02-25 04:59:212833 ]
2834 }
amistry7e6ebfdc82015-02-13 04:19:112835}
2836
[email protected]8603c5de2014-04-16 20:34:312837if (!is_ios && !is_android) {
mattm36d89682016-06-08 22:22:402838 executable("cert_verify_tool") {
2839 testonly = true
2840 sources = [
2841 "tools/cert_verify_tool/cert_verify_tool.cc",
2842 "tools/cert_verify_tool/cert_verify_tool_util.cc",
2843 "tools/cert_verify_tool/cert_verify_tool_util.h",
2844 "tools/cert_verify_tool/verify_using_cert_verify_proc.cc",
2845 "tools/cert_verify_tool/verify_using_cert_verify_proc.h",
mattm3c66edc2016-07-13 22:40:422846 "tools/cert_verify_tool/verify_using_path_builder.cc",
2847 "tools/cert_verify_tool/verify_using_path_builder.h",
mattm36d89682016-06-08 22:22:402848 ]
2849
mattm36d89682016-06-08 22:22:402850 deps = [
2851 ":net",
2852 ":test_support",
2853 "//base",
thomasanderson84fa8b02017-05-18 23:38:472854 "//build/config:exe_and_shlib_deps",
mattm36d89682016-06-08 22:22:402855 "//build/win:default_exe_manifest",
2856 ]
mattm49957fe2017-03-02 01:45:292857
2858 if (is_mac) {
2859 libs = [ "Security.framework" ]
2860 }
mattm36d89682016-06-08 22:22:402861 }
2862
[email protected]8603c5de2014-04-16 20:34:312863 executable("crash_cache") {
Brett Wilson8f80ad0b2014-09-08 19:50:242864 testonly = true
scottmg34fb7e52014-12-03 23:27:242865 sources = [
2866 "tools/crash_cache/crash_cache.cc",
2867 ]
dpranke43276212015-02-20 02:55:192868
[email protected]8603c5de2014-04-16 20:34:312869 deps = [
2870 ":net",
[email protected]b2b2bf52014-05-28 20:26:572871 ":test_support",
[email protected]8603c5de2014-04-16 20:34:312872 "//base",
thomasanderson84fa8b02017-05-18 23:38:472873 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072874 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312875 ]
2876 }
2877
[email protected]8603c5de2014-04-16 20:34:312878 executable("dns_fuzz_stub") {
Brett Wilson8f80ad0b2014-09-08 19:50:242879 testonly = true
scottmg34fb7e52014-12-03 23:27:242880 sources = [
2881 "tools/dns_fuzz_stub/dns_fuzz_stub.cc",
2882 ]
dpranke43276212015-02-20 02:55:192883
[email protected]8603c5de2014-04-16 20:34:312884 deps = [
2885 ":net",
2886 "//base",
thomasanderson84fa8b02017-05-18 23:38:472887 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072888 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312889 ]
2890 }
2891
2892 executable("gdig") {
Brett Wilson8f80ad0b2014-09-08 19:50:242893 testonly = true
[email protected]8603c5de2014-04-16 20:34:312894 sources = [
2895 "tools/gdig/file_net_log.cc",
thakisb8590c92017-03-23 18:14:532896 "tools/gdig/file_net_log.h",
[email protected]8603c5de2014-04-16 20:34:312897 "tools/gdig/gdig.cc",
2898 ]
2899 deps = [
2900 ":net",
2901 "//base",
thomasanderson84fa8b02017-05-18 23:38:472902 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072903 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312904 ]
2905 }
2906
rockot9c67e5f2015-03-12 20:01:212907 executable("hpack_example_generator") {
2908 testonly = true
2909 sources = [
bnc8f8f7d302017-04-24 18:08:062910 "spdy/core/fuzzing/hpack_example_generator.cc",
rockot9c67e5f2015-03-12 20:01:212911 ]
2912
rockot9c67e5f2015-03-12 20:01:212913 deps = [
rockot9c67e5f2015-03-12 20:01:212914 ":net",
brettwba7a73d2015-08-31 22:17:392915 "//base",
thomasanderson84fa8b02017-05-18 23:38:472916 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072917 "//build/win:default_exe_manifest",
rockot9c67e5f2015-03-12 20:01:212918 ]
2919 }
2920
[email protected]8603c5de2014-04-16 20:34:312921 if (use_v8_in_net) {
2922 executable("net_watcher") {
Brett Wilson8f80ad0b2014-09-08 19:50:242923 testonly = true
scottmg34fb7e52014-12-03 23:27:242924 sources = [
2925 "tools/net_watcher/net_watcher.cc",
2926 ]
[email protected]8603c5de2014-04-16 20:34:312927 deps = [
2928 ":net",
2929 ":net_with_v8",
2930 "//base",
thomasanderson84fa8b02017-05-18 23:38:472931 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072932 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312933 ]
[email protected]8603c5de2014-04-16 20:34:312934 }
2935 }
2936
2937 executable("run_testserver") {
Brett Wilson8f80ad0b2014-09-08 19:50:242938 testonly = true
scottmg34fb7e52014-12-03 23:27:242939 sources = [
2940 "tools/testserver/run_testserver.cc",
2941 ]
[email protected]8603c5de2014-04-16 20:34:312942 deps = [
[email protected]b2b2bf52014-05-28 20:26:572943 ":test_support",
[email protected]8603c5de2014-04-16 20:34:312944 "//base",
2945 "//base/test:test_support",
thomasanderson84fa8b02017-05-18 23:38:472946 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072947 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312948 "//testing/gtest",
2949 ]
2950 }
2951
2952 executable("stress_cache") {
Brett Wilson8f80ad0b2014-09-08 19:50:242953 testonly = true
scottmg34fb7e52014-12-03 23:27:242954 sources = [
rvargase23fcf652015-03-04 19:59:222955 "tools/stress_cache/stress_cache.cc",
scottmg34fb7e52014-12-03 23:27:242956 ]
dpranke43276212015-02-20 02:55:192957
[email protected]8603c5de2014-04-16 20:34:312958 deps = [
2959 ":net",
[email protected]b2b2bf52014-05-28 20:26:572960 ":test_support",
[email protected]8603c5de2014-04-16 20:34:312961 "//base",
thomasanderson84fa8b02017-05-18 23:38:472962 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072963 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312964 ]
2965 }
2966
2967 executable("tld_cleanup") {
scottmg34fb7e52014-12-03 23:27:242968 sources = [
2969 "tools/tld_cleanup/tld_cleanup.cc",
2970 ]
dpranke43276212015-02-20 02:55:192971
[email protected]8603c5de2014-04-16 20:34:312972 deps = [
2973 "//base",
2974 "//base:i18n",
thomasanderson84fa8b02017-05-18 23:38:472975 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072976 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312977 "//net/tools/tld_cleanup",
2978 ]
2979 }
2980}
2981
gabadie0774bee2016-05-12 14:02:582982if (is_linux || is_mac) {
gabadie64af64a2016-03-29 16:36:422983 executable("cachetool") {
2984 testonly = true
2985 sources = [
2986 "tools/cachetool/cachetool.cc",
2987 ]
2988 deps = [
2989 ":net",
2990 ":test_support",
2991 "//base",
thomasandersonb7a52772017-05-26 19:26:422992 "//build/config:exe_and_shlib_deps",
gabadie64af64a2016-03-29 16:36:422993 ]
2994 }
2995
2996 executable("content_decoder_tool") {
2997 testonly = true
2998 sources = [
gabadie64af64a2016-03-29 16:36:422999 "tools/content_decoder_tool/content_decoder_tool.cc",
xunjielibb2d9f202016-11-01 16:37:273000 "tools/content_decoder_tool/content_decoder_tool.h",
3001 "tools/content_decoder_tool/content_decoder_tool_bin.cc",
gabadie64af64a2016-03-29 16:36:423002 ]
3003 deps = [
3004 ":net",
3005 ":test_support",
3006 "//base",
thomasandersonb7a52772017-05-26 19:26:423007 "//build/config:exe_and_shlib_deps",
gabadie64af64a2016-03-29 16:36:423008 "//url",
3009 ]
3010 }
gabadie0774bee2016-05-12 14:02:583011}
gabadie64af64a2016-03-29 16:36:423012
gabadie0774bee2016-05-12 14:02:583013if (is_linux) {
[email protected]8a3f8242014-06-05 18:05:123014 static_library("epoll_server") {
[email protected]8603c5de2014-04-16 20:34:313015 sources = [
3016 "tools/epoll_server/epoll_server.cc",
3017 "tools/epoll_server/epoll_server.h",
3018 ]
3019 deps = [
3020 ":net",
3021 "//base",
3022 ]
3023 }
3024
rch216445c2015-03-27 00:23:283025 source_set("epoll_quic_tools") {
[email protected]8603c5de2014-04-16 20:34:313026 sources = [
rchdfdb0642016-12-03 03:37:203027 "tools/quic/platform/impl/quic_epoll_clock.cc",
3028 "tools/quic/platform/impl/quic_epoll_clock.h",
rch33a6ce82016-12-06 18:41:403029 "tools/quic/platform/impl/quic_socket_utils.cc",
3030 "tools/quic/platform/impl/quic_socket_utils.h",
[email protected]8603c5de2014-04-16 20:34:313031 "tools/quic/quic_client.cc",
3032 "tools/quic/quic_client.h",
Ryan Hamiltonc4402302017-08-10 01:55:463033 "tools/quic/quic_client_epoll_network_helper.cc",
3034 "tools/quic/quic_client_epoll_network_helper.h",
[email protected]8603c5de2014-04-16 20:34:313035 "tools/quic/quic_default_packet_writer.cc",
3036 "tools/quic/quic_default_packet_writer.h",
rch16c74d1d2016-04-22 06:14:073037 "tools/quic/quic_epoll_alarm_factory.cc",
3038 "tools/quic/quic_epoll_alarm_factory.h",
[email protected]8603c5de2014-04-16 20:34:313039 "tools/quic/quic_epoll_connection_helper.cc",
3040 "tools/quic/quic_epoll_connection_helper.h",
rtennetifb3fa6c2015-03-16 23:04:553041 "tools/quic/quic_packet_reader.cc",
3042 "tools/quic/quic_packet_reader.h",
[email protected]8603c5de2014-04-16 20:34:313043 "tools/quic/quic_packet_writer_wrapper.cc",
3044 "tools/quic/quic_packet_writer_wrapper.h",
3045 "tools/quic/quic_server.cc",
3046 "tools/quic/quic_server.h",
[email protected]8603c5de2014-04-16 20:34:313047 ]
3048 deps = [
[email protected]8603c5de2014-04-16 20:34:313049 ":epoll_server",
3050 ":net",
tfarina8ac4d17f2015-12-16 02:11:113051 ":simple_quic_tools",
[email protected]8603c5de2014-04-16 20:34:313052 "//base",
3053 "//base/third_party/dynamic_annotations",
3054 "//crypto",
[email protected]edfd0f42014-07-22 18:20:373055 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:313056 "//url",
3057 ]
3058 }
3059
rch216445c2015-03-27 00:23:283060 executable("epoll_quic_client") {
scottmg34fb7e52014-12-03 23:27:243061 sources = [
3062 "tools/quic/quic_client_bin.cc",
3063 ]
[email protected]8603c5de2014-04-16 20:34:313064 deps = [
rch216445c2015-03-27 00:23:283065 ":epoll_quic_tools",
agrieved7a71c882015-11-20 19:53:283066 ":epoll_server",
rch216445c2015-03-27 00:23:283067 ":net",
3068 ":simple_quic_tools",
3069 "//base",
thomasanderson84fa8b02017-05-18 23:38:473070 "//build/config:exe_and_shlib_deps",
rch216445c2015-03-27 00:23:283071 "//third_party/boringssl",
3072 ]
3073 }
3074
3075 executable("epoll_quic_server") {
3076 sources = [
3077 "tools/quic/quic_server_bin.cc",
3078 ]
3079 deps = [
rch216445c2015-03-27 00:23:283080 ":epoll_quic_tools",
agrieved7a71c882015-11-20 19:53:283081 ":epoll_server",
[email protected]8603c5de2014-04-16 20:34:313082 ":net",
rchda78df5a2015-03-22 05:16:373083 ":simple_quic_tools",
[email protected]8603c5de2014-04-16 20:34:313084 "//base",
thomasanderson84fa8b02017-05-18 23:38:473085 "//build/config:exe_and_shlib_deps",
[email protected]edfd0f42014-07-22 18:20:373086 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:313087 ]
3088 }
[email protected]8603c5de2014-04-16 20:34:313089}
3090
[email protected]ef0eb442014-05-15 09:32:183091if (is_android) {
3092 generate_jni("net_jni_headers") {
3093 sources = [
tbansalc04b7aa2016-07-02 06:54:373094 "android/java/src/org/chromium/net/AndroidCellularSignalStrength.java",
[email protected]ef0eb442014-05-15 09:32:183095 "android/java/src/org/chromium/net/AndroidCertVerifyResult.java",
3096 "android/java/src/org/chromium/net/AndroidKeyStore.java",
3097 "android/java/src/org/chromium/net/AndroidNetworkLibrary.java",
tbansal59a1ddc2015-09-14 17:35:013098 "android/java/src/org/chromium/net/AndroidTrafficStats.java",
[email protected]ef0eb442014-05-15 09:32:183099 "android/java/src/org/chromium/net/GURLUtils.java",
aberentec894a52015-07-09 14:45:533100 "android/java/src/org/chromium/net/HttpNegotiateAuthenticator.java",
xunjieli905496a2015-08-31 15:51:173101 "android/java/src/org/chromium/net/NetStringUtil.java",
[email protected]ef0eb442014-05-15 09:32:183102 "android/java/src/org/chromium/net/NetworkChangeNotifier.java",
3103 "android/java/src/org/chromium/net/ProxyChangeListener.java",
3104 "android/java/src/org/chromium/net/X509Util.java",
3105 ]
3106 jni_package = "net"
3107 }
cjhopmandad5f4272014-09-05 01:00:553108 generate_jni("net_test_jni_headers") {
3109 sources = [
3110 "android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java",
mgershd21d6d142016-12-14 23:06:363111 "android/javatests/src/org/chromium/net/AndroidNetworkLibraryTestUtil.java",
pauljensen6815aef2017-05-05 03:00:063112 "android/javatests/src/org/chromium/net/AndroidProxyConfigServiceTestUtil.java",
aberentec894a52015-07-09 14:45:533113 "test/android/javatests/src/org/chromium/net/test/DummySpnegoAuthenticator.java",
jbudorickccffb982015-12-22 01:21:353114 "test/android/javatests/src/org/chromium/net/test/EmbeddedTestServerImpl.java",
cjhopmandad5f4272014-09-05 01:00:553115 ]
brettwcdccaf02015-07-27 16:27:093116 jni_package = "net/test"
cjhopmandad5f4272014-09-05 01:00:553117 }
[email protected]ef0eb442014-05-15 09:32:183118}
[email protected]8603c5de2014-04-16 20:34:313119
3120if (is_android || is_linux) {
3121 executable("disk_cache_memory_test") {
Brett Wilson8f80ad0b2014-09-08 19:50:243122 testonly = true
scottmg34fb7e52014-12-03 23:27:243123 sources = [
3124 "tools/disk_cache_memory_test/disk_cache_memory_test.cc",
3125 ]
[email protected]8603c5de2014-04-16 20:34:313126 deps = [
3127 ":net",
3128 "//base",
thomasanderson84fa8b02017-05-18 23:38:473129 "//build/config:exe_and_shlib_deps",
[email protected]8603c5de2014-04-16 20:34:313130 ]
3131 }
3132}
[email protected]8a3f8242014-06-05 18:05:123133
xunjielicc6b1d02017-06-05 16:51:403134source_set("quic_test_tools") {
3135 testonly = true
3136 sources = [
3137 "quic/chromium/crypto_test_utils_chromium.cc",
3138 "quic/platform/api/quic_test.h",
fayang221f04f2017-06-12 14:33:583139 "quic/platform/api/quic_test_loopback.cc",
3140 "quic/platform/api/quic_test_loopback.h",
Fan Yang62cae30f2017-09-01 20:50:513141 "quic/platform/api/quic_test_mem_slice_vector.h",
xunjielicc6b1d02017-06-05 16:51:403142 "quic/platform/impl/quic_test_impl.cc",
3143 "quic/platform/impl/quic_test_impl.h",
fayang221f04f2017-06-12 14:33:583144 "quic/platform/impl/quic_test_loopback_impl.cc",
3145 "quic/platform/impl/quic_test_loopback_impl.h",
Fan Yang62cae30f2017-09-01 20:50:513146 "quic/platform/impl/quic_test_mem_slice_vector_impl.cc",
3147 "quic/platform/impl/quic_test_mem_slice_vector_impl.h",
xunjielicc6b1d02017-06-05 16:51:403148 "quic/test_tools/crypto_test_utils.cc",
3149 "quic/test_tools/crypto_test_utils.h",
xunjielicc6b1d02017-06-05 16:51:403150 "quic/test_tools/failing_proof_source.cc",
3151 "quic/test_tools/failing_proof_source.h",
3152 "quic/test_tools/fake_proof_source.cc",
3153 "quic/test_tools/fake_proof_source.h",
3154 "quic/test_tools/mock_clock.cc",
3155 "quic/test_tools/mock_clock.h",
3156 "quic/test_tools/mock_crypto_client_stream.cc",
3157 "quic/test_tools/mock_crypto_client_stream.h",
Ned Williamson3d55bbb2017-11-07 22:58:133158 "quic/test_tools/mock_decrypter.cc",
3159 "quic/test_tools/mock_decrypter.h",
3160 "quic/test_tools/mock_encrypter.cc",
3161 "quic/test_tools/mock_encrypter.h",
xunjielicc6b1d02017-06-05 16:51:403162 "quic/test_tools/mock_quic_client_promised_info.cc",
3163 "quic/test_tools/mock_quic_client_promised_info.h",
3164 "quic/test_tools/mock_quic_dispatcher.cc",
3165 "quic/test_tools/mock_quic_dispatcher.h",
3166 "quic/test_tools/mock_quic_spdy_client_stream.cc",
3167 "quic/test_tools/mock_quic_spdy_client_stream.h",
3168 "quic/test_tools/mock_random.cc",
3169 "quic/test_tools/mock_random.h",
3170 "quic/test_tools/quic_buffered_packet_store_peer.cc",
3171 "quic/test_tools/quic_buffered_packet_store_peer.h",
3172 "quic/test_tools/quic_client_promised_info_peer.cc",
3173 "quic/test_tools/quic_client_promised_info_peer.h",
3174 "quic/test_tools/quic_config_peer.cc",
3175 "quic/test_tools/quic_config_peer.h",
3176 "quic/test_tools/quic_connection_peer.cc",
3177 "quic/test_tools/quic_connection_peer.h",
3178 "quic/test_tools/quic_crypto_server_config_peer.cc",
3179 "quic/test_tools/quic_crypto_server_config_peer.h",
3180 "quic/test_tools/quic_flow_controller_peer.cc",
3181 "quic/test_tools/quic_flow_controller_peer.h",
3182 "quic/test_tools/quic_framer_peer.cc",
3183 "quic/test_tools/quic_framer_peer.h",
3184 "quic/test_tools/quic_packet_creator_peer.cc",
3185 "quic/test_tools/quic_packet_creator_peer.h",
3186 "quic/test_tools/quic_packet_generator_peer.cc",
3187 "quic/test_tools/quic_packet_generator_peer.h",
3188 "quic/test_tools/quic_sent_packet_manager_peer.cc",
3189 "quic/test_tools/quic_sent_packet_manager_peer.h",
3190 "quic/test_tools/quic_session_peer.cc",
3191 "quic/test_tools/quic_session_peer.h",
3192 "quic/test_tools/quic_spdy_session_peer.cc",
3193 "quic/test_tools/quic_spdy_session_peer.h",
3194 "quic/test_tools/quic_spdy_stream_peer.cc",
3195 "quic/test_tools/quic_spdy_stream_peer.h",
3196 "quic/test_tools/quic_stream_peer.cc",
3197 "quic/test_tools/quic_stream_peer.h",
Fan Yang97d44ba22017-08-07 17:00:033198 "quic/test_tools/quic_stream_send_buffer_peer.cc",
3199 "quic/test_tools/quic_stream_send_buffer_peer.h",
xunjielicc6b1d02017-06-05 16:51:403200 "quic/test_tools/quic_stream_sequencer_buffer_peer.cc",
3201 "quic/test_tools/quic_stream_sequencer_buffer_peer.h",
3202 "quic/test_tools/quic_stream_sequencer_peer.cc",
3203 "quic/test_tools/quic_stream_sequencer_peer.h",
3204 "quic/test_tools/quic_sustained_bandwidth_recorder_peer.cc",
3205 "quic/test_tools/quic_sustained_bandwidth_recorder_peer.h",
3206 "quic/test_tools/quic_test_utils.cc",
3207 "quic/test_tools/quic_test_utils.h",
3208 "quic/test_tools/quic_time_wait_list_manager_peer.cc",
3209 "quic/test_tools/quic_time_wait_list_manager_peer.h",
3210 "quic/test_tools/rtt_stats_peer.cc",
3211 "quic/test_tools/rtt_stats_peer.h",
fayangdf3cb2b2017-07-05 15:03:383212 "quic/test_tools/simple_data_producer.cc",
3213 "quic/test_tools/simple_data_producer.h",
xunjielicc6b1d02017-06-05 16:51:403214 "quic/test_tools/simple_quic_framer.cc",
3215 "quic/test_tools/simple_quic_framer.h",
Fan Yang198a6aa2018-02-12 18:52:233216 "quic/test_tools/simple_session_notifier.cc",
3217 "quic/test_tools/simple_session_notifier.h",
xunjielicc6b1d02017-06-05 16:51:403218 "quic/test_tools/simulator/actor.cc",
3219 "quic/test_tools/simulator/actor.h",
3220 "quic/test_tools/simulator/alarm_factory.cc",
3221 "quic/test_tools/simulator/alarm_factory.h",
3222 "quic/test_tools/simulator/link.cc",
3223 "quic/test_tools/simulator/link.h",
3224 "quic/test_tools/simulator/packet_filter.cc",
3225 "quic/test_tools/simulator/packet_filter.h",
3226 "quic/test_tools/simulator/port.cc",
3227 "quic/test_tools/simulator/port.h",
3228 "quic/test_tools/simulator/queue.cc",
3229 "quic/test_tools/simulator/queue.h",
3230 "quic/test_tools/simulator/quic_endpoint.cc",
3231 "quic/test_tools/simulator/quic_endpoint.h",
3232 "quic/test_tools/simulator/simulator.cc",
3233 "quic/test_tools/simulator/simulator.h",
3234 "quic/test_tools/simulator/switch.cc",
3235 "quic/test_tools/simulator/switch.h",
3236 "quic/test_tools/simulator/traffic_policer.cc",
3237 "quic/test_tools/simulator/traffic_policer.h",
3238 "tools/quic/test_tools/mock_quic_session_visitor.cc",
3239 "tools/quic/test_tools/mock_quic_session_visitor.h",
3240 ]
3241 deps = [
3242 ":net",
3243 ":simple_quic_tools",
3244 ":test_support",
3245 "//base",
3246 "//crypto:test_support",
3247 "//testing/gmock",
3248 "//testing/gtest",
3249 "//third_party/boringssl",
3250 "//third_party/protobuf:protobuf_lite",
3251 ]
3252
3253 if (is_linux) {
3254 sources += [
Michael Warresed8ebd52017-12-22 22:42:043255 "tools/quic/test_tools/bad_packet_writer.cc",
3256 "tools/quic/test_tools/bad_packet_writer.h",
xunjielicc6b1d02017-06-05 16:51:403257 "tools/quic/test_tools/limited_mtu_test_writer.cc",
3258 "tools/quic/test_tools/limited_mtu_test_writer.h",
3259 "tools/quic/test_tools/mock_epoll_server.cc",
3260 "tools/quic/test_tools/mock_epoll_server.h",
3261 "tools/quic/test_tools/mock_quic_time_wait_list_manager.cc",
3262 "tools/quic/test_tools/mock_quic_time_wait_list_manager.h",
3263 "tools/quic/test_tools/packet_dropping_test_writer.cc",
3264 "tools/quic/test_tools/packet_dropping_test_writer.h",
3265 "tools/quic/test_tools/packet_reordering_writer.cc",
3266 "tools/quic/test_tools/packet_reordering_writer.h",
3267 "tools/quic/test_tools/quic_client_peer.cc",
3268 "tools/quic/test_tools/quic_client_peer.h",
3269 "tools/quic/test_tools/quic_dispatcher_peer.cc",
3270 "tools/quic/test_tools/quic_dispatcher_peer.h",
3271 "tools/quic/test_tools/quic_server_peer.cc",
3272 "tools/quic/test_tools/quic_server_peer.h",
3273 "tools/quic/test_tools/quic_test_client.cc",
3274 "tools/quic/test_tools/quic_test_client.h",
3275 "tools/quic/test_tools/quic_test_server.cc",
3276 "tools/quic/test_tools/quic_test_server.h",
3277 "tools/quic/test_tools/server_thread.cc",
3278 "tools/quic/test_tools/server_thread.h",
3279 ]
3280 deps += [
3281 ":epoll_quic_tools",
3282 ":epoll_server",
3283 ]
3284 }
3285}
3286
rch47ad01f2015-03-20 21:17:233287source_set("simple_quic_tools") {
rcha9d12ce12015-03-19 23:06:493288 sources = [
ckrasica7fd1242016-05-14 20:36:013289 "tools/quic/chlo_extractor.cc",
3290 "tools/quic/chlo_extractor.h",
rtennetid67b3a722015-08-18 05:15:313291 "tools/quic/quic_client_base.cc",
3292 "tools/quic/quic_client_base.h",
Ryan Hamiltonc4402302017-08-10 01:55:463293 "tools/quic/quic_client_message_loop_network_helper.cc",
3294 "tools/quic/quic_client_message_loop_network_helper.h",
rchc99f380c2015-03-26 19:50:563295 "tools/quic/quic_dispatcher.cc",
3296 "tools/quic/quic_dispatcher.h",
vasilvv28270e8f2016-12-01 21:38:093297 "tools/quic/quic_http_response_cache.cc",
3298 "tools/quic/quic_http_response_cache.h",
rchc99f380c2015-03-26 19:50:563299 "tools/quic/quic_per_connection_packet_writer.cc",
3300 "tools/quic/quic_per_connection_packet_writer.h",
brettw25ca8922016-03-18 22:59:583301 "tools/quic/quic_process_packet_interface.h",
rcha9d12ce12015-03-19 23:06:493302 "tools/quic/quic_simple_client.cc",
3303 "tools/quic/quic_simple_client.h",
ianswett6c7b7ed2016-09-13 19:35:273304 "tools/quic/quic_simple_crypto_server_stream_helper.cc",
3305 "tools/quic/quic_simple_crypto_server_stream_helper.h",
alyssara473d6f2016-08-04 16:54:043306 "tools/quic/quic_simple_dispatcher.cc",
3307 "tools/quic/quic_simple_dispatcher.h",
rch216445c2015-03-27 00:23:283308 "tools/quic/quic_simple_per_connection_packet_writer.cc",
3309 "tools/quic/quic_simple_per_connection_packet_writer.h",
3310 "tools/quic/quic_simple_server.cc",
3311 "tools/quic/quic_simple_server.h",
3312 "tools/quic/quic_simple_server_packet_writer.cc",
3313 "tools/quic/quic_simple_server_packet_writer.h",
jokulikc971baf92016-01-06 00:36:393314 "tools/quic/quic_simple_server_session.cc",
3315 "tools/quic/quic_simple_server_session.h",
mpwb5c8da92016-06-05 20:07:313316 "tools/quic/quic_simple_server_session_helper.cc",
3317 "tools/quic/quic_simple_server_session_helper.h",
danzhb7551342015-12-18 02:06:403318 "tools/quic/quic_simple_server_stream.cc",
3319 "tools/quic/quic_simple_server_stream.h",
Ryan Hamiltonc4402302017-08-10 01:55:463320 "tools/quic/quic_spdy_client_base.cc",
3321 "tools/quic/quic_spdy_client_base.h",
3322 "tools/quic/quic_spdy_client_session.cc",
3323 "tools/quic/quic_spdy_client_session.h",
rched113b22015-03-26 04:54:053324 "tools/quic/quic_spdy_client_stream.cc",
3325 "tools/quic/quic_spdy_client_stream.h",
rchaa4ec092016-12-02 00:34:193326 "tools/quic/quic_spdy_server_stream_base.cc",
3327 "tools/quic/quic_spdy_server_stream_base.h",
rch0e945472015-03-26 15:19:213328 "tools/quic/quic_time_wait_list_manager.cc",
3329 "tools/quic/quic_time_wait_list_manager.h",
jrid04ea362016-06-23 03:07:373330 "tools/quic/stateless_rejector.cc",
3331 "tools/quic/stateless_rejector.h",
rchda78df5a2015-03-22 05:16:373332 "tools/quic/synchronous_host_resolver.cc",
3333 "tools/quic/synchronous_host_resolver.h",
rcha9d12ce12015-03-19 23:06:493334 ]
3335 deps = [
3336 ":net",
3337 "//base",
rch47ad01f2015-03-20 21:17:233338 "//base/third_party/dynamic_annotations",
3339 "//url",
3340 ]
3341}
3342
rhalavatia9b551d2017-02-09 12:03:003343source_set("traffic_annotation") {
3344 sources = [
3345 "traffic_annotation/network_traffic_annotation.h",
3346 ]
rhalavati99c6fcef2017-05-25 07:53:013347 deps = [
3348 "//base",
3349 ]
rhalavatia9b551d2017-02-09 12:03:003350}
3351
sherouk51b4b098b2015-08-10 09:00:433352if (!is_ios) {
3353 executable("quic_client") {
3354 sources = [
3355 "tools/quic/quic_simple_client_bin.cc",
3356 ]
3357 deps = [
3358 ":net",
3359 ":simple_quic_tools",
3360 "//base",
thomasanderson84fa8b02017-05-18 23:38:473361 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:073362 "//build/win:default_exe_manifest",
sherouk51b4b098b2015-08-10 09:00:433363 "//url",
3364 ]
3365 }
3366 executable("quic_server") {
3367 sources = [
3368 "tools/quic/quic_simple_server_bin.cc",
3369 ]
3370 deps = [
3371 ":net",
3372 ":simple_quic_tools",
3373 "//base",
thomasanderson84fa8b02017-05-18 23:38:473374 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:073375 "//build/win:default_exe_manifest",
sherouk51b4b098b2015-08-10 09:00:433376 "//third_party/boringssl",
3377 "//third_party/protobuf:protobuf_lite",
3378 ]
3379 }
rchf80f62d12016-05-11 00:47:313380 executable("quic_packet_printer") {
3381 sources = [
3382 "tools/quic/quic_packet_printer_bin.cc",
3383 ]
3384 deps = [
3385 ":net",
3386 ":simple_quic_tools",
3387 "//base",
thomasanderson84fa8b02017-05-18 23:38:473388 "//build/config:exe_and_shlib_deps",
rchf80f62d12016-05-11 00:47:313389 "//build/win:default_exe_manifest",
3390 "//third_party/boringssl",
3391 "//third_party/protobuf:protobuf_lite",
3392 ]
3393 }
mpwbbea85d2016-08-27 14:39:213394 executable("quic_reject_reason_decoder") {
3395 sources = [
3396 "tools/quic/quic_reject_reason_decoder_bin.cc",
3397 ]
3398 deps = [
3399 ":net",
3400 ":simple_quic_tools",
3401 "//base",
thomasanderson84fa8b02017-05-18 23:38:473402 "//build/config:exe_and_shlib_deps",
mpwbbea85d2016-08-27 14:39:213403 "//build/win:default_exe_manifest",
3404 "//third_party/boringssl",
3405 "//third_party/protobuf:protobuf_lite",
3406 ]
3407 }
danzh1401f0a2016-05-19 13:41:103408 executable("crypto_message_printer") {
3409 sources = [
3410 "tools/quic/crypto_message_printer_bin.cc",
3411 ]
3412 deps = [
3413 ":net",
3414 "//base",
thomasanderson84fa8b02017-05-18 23:38:473415 "//build/config:exe_and_shlib_deps",
danzh1401f0a2016-05-19 13:41:103416 "//build/win:default_exe_manifest",
3417 ]
3418 }
rch216445c2015-03-27 00:23:283419}
3420
eromand5207a92017-05-05 17:49:363421# This section can be updated from globbing rules using:
3422# python ./tools/update_ios_bundle_data.py
sdefresneb0a31642016-03-18 11:04:453423bundle_data("net_unittests_bundle_data") {
3424 testonly = true
ckrasic73f7240b2017-01-24 00:06:453425 sources = [
3426 "data/cert_issuer_source_aia_unittest/i.pem",
3427 "data/cert_issuer_source_aia_unittest/i2.pem",
3428 "data/cert_issuer_source_aia_unittest/i3.pem",
eromand5207a92017-05-05 17:49:363429 "data/cert_issuer_source_aia_unittest/root.pem",
ckrasic73f7240b2017-01-24 00:06:453430 "data/cert_issuer_source_aia_unittest/target_file_aia.pem",
3431 "data/cert_issuer_source_aia_unittest/target_file_and_http_aia.pem",
3432 "data/cert_issuer_source_aia_unittest/target_invalid_and_http_aia.pem",
3433 "data/cert_issuer_source_aia_unittest/target_invalid_url_aia.pem",
3434 "data/cert_issuer_source_aia_unittest/target_no_aia.pem",
3435 "data/cert_issuer_source_aia_unittest/target_one_aia.pem",
3436 "data/cert_issuer_source_aia_unittest/target_six_aia.pem",
3437 "data/cert_issuer_source_aia_unittest/target_three_aia.pem",
3438 "data/cert_issuer_source_aia_unittest/target_two_aia.pem",
3439 "data/cert_issuer_source_static_unittest/c1.pem",
3440 "data/cert_issuer_source_static_unittest/c2.pem",
3441 "data/cert_issuer_source_static_unittest/d.pem",
3442 "data/cert_issuer_source_static_unittest/e1.pem",
3443 "data/cert_issuer_source_static_unittest/e2.pem",
3444 "data/cert_issuer_source_static_unittest/i1_1.pem",
3445 "data/cert_issuer_source_static_unittest/i1_2.pem",
3446 "data/cert_issuer_source_static_unittest/i2.pem",
3447 "data/cert_issuer_source_static_unittest/i3_1.pem",
3448 "data/cert_issuer_source_static_unittest/i3_2.pem",
3449 "data/cert_issuer_source_static_unittest/root.pem",
3450 "data/certificate_policies_unittest/anypolicy.pem",
3451 "data/certificate_policies_unittest/anypolicy_with_qualifier.pem",
3452 "data/certificate_policies_unittest/invalid-anypolicy_with_custom_qualifier.pem",
3453 "data/certificate_policies_unittest/invalid-empty.pem",
3454 "data/certificate_policies_unittest/invalid-policy_1_2_3_dupe.pem",
3455 "data/certificate_policies_unittest/invalid-policy_1_2_3_policyinformation_unconsumed_data.pem",
3456 "data/certificate_policies_unittest/invalid-policy_1_2_3_policyqualifierinfo_unconsumed_data.pem",
3457 "data/certificate_policies_unittest/invalid-policy_1_2_3_with_empty_qualifiers_sequence.pem",
3458 "data/certificate_policies_unittest/invalid-policy_identifier_not_oid.pem",
3459 "data/certificate_policies_unittest/policy_1_2_3.pem",
3460 "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4.pem",
3461 "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4_with_qualifiers.pem",
3462 "data/certificate_policies_unittest/policy_1_2_3_with_custom_qualifier.pem",
3463 "data/certificate_policies_unittest/policy_1_2_3_with_qualifier.pem",
jam29f1aed42017-06-06 21:37:433464 "data/embedded_test_server/mock-headers-without-crlf.html",
3465 "data/embedded_test_server/mock-headers-without-crlf.html.mock-http-headers",
ckrasic73f7240b2017-01-24 00:06:453466 "data/filter_unittests/google.br",
3467 "data/filter_unittests/google.txt",
3468 "data/name_constraints_unittest/directoryname-excludeall.pem",
3469 "data/name_constraints_unittest/directoryname-excluded.pem",
3470 "data/name_constraints_unittest/directoryname.pem",
3471 "data/name_constraints_unittest/directoryname_and_dnsname.pem",
3472 "data/name_constraints_unittest/directoryname_and_dnsname_and_ipaddress.pem",
3473 "data/name_constraints_unittest/dnsname-exclude_dot.pem",
3474 "data/name_constraints_unittest/dnsname-excludeall.pem",
3475 "data/name_constraints_unittest/dnsname-excluded.pem",
3476 "data/name_constraints_unittest/dnsname-excluded_with_leading_dot.pem",
3477 "data/name_constraints_unittest/dnsname-permitted_two_dot.pem",
3478 "data/name_constraints_unittest/dnsname-permitted_with_leading_dot.pem",
3479 "data/name_constraints_unittest/dnsname-with_max.pem",
3480 "data/name_constraints_unittest/dnsname-with_min_0.pem",
3481 "data/name_constraints_unittest/dnsname-with_min_0_and_max.pem",
3482 "data/name_constraints_unittest/dnsname-with_min_1.pem",
3483 "data/name_constraints_unittest/dnsname-with_min_1_and_max.pem",
3484 "data/name_constraints_unittest/dnsname.pem",
3485 "data/name_constraints_unittest/dnsname2.pem",
3486 "data/name_constraints_unittest/edipartyname-excluded.pem",
3487 "data/name_constraints_unittest/edipartyname-permitted.pem",
3488 "data/name_constraints_unittest/invalid-empty_excluded_subtree.pem",
3489 "data/name_constraints_unittest/invalid-empty_permitted_subtree.pem",
3490 "data/name_constraints_unittest/invalid-no_subtrees.pem",
3491 "data/name_constraints_unittest/ipaddress-excludeall.pem",
3492 "data/name_constraints_unittest/ipaddress-excluded.pem",
3493 "data/name_constraints_unittest/ipaddress-invalid_addr.pem",
3494 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_1.pem",
3495 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_2.pem",
3496 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_3.pem",
3497 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_4.pem",
3498 "data/name_constraints_unittest/ipaddress-permit_all.pem",
3499 "data/name_constraints_unittest/ipaddress-permit_prefix1.pem",
3500 "data/name_constraints_unittest/ipaddress-permit_prefix31.pem",
3501 "data/name_constraints_unittest/ipaddress-permit_singlehost.pem",
3502 "data/name_constraints_unittest/ipaddress.pem",
3503 "data/name_constraints_unittest/name-ca.pem",
3504 "data/name_constraints_unittest/name-de.pem",
3505 "data/name_constraints_unittest/name-empty.pem",
3506 "data/name_constraints_unittest/name-jp-tokyo.pem",
3507 "data/name_constraints_unittest/name-jp.pem",
3508 "data/name_constraints_unittest/name-us-arizona-1.1.1.1.pem",
3509 "data/name_constraints_unittest/name-us-arizona-192.168.1.1.pem",
3510 "data/name_constraints_unittest/name-us-arizona-email.pem",
3511 "data/name_constraints_unittest/name-us-arizona-foo.com.pem",
3512 "data/name_constraints_unittest/name-us-arizona-ipv6.pem",
3513 "data/name_constraints_unittest/name-us-arizona-permitted.example.com.pem",
3514 "data/name_constraints_unittest/name-us-arizona.pem",
3515 "data/name_constraints_unittest/name-us-california-192.168.1.1.pem",
3516 "data/name_constraints_unittest/name-us-california-mountain_view.pem",
3517 "data/name_constraints_unittest/name-us-california-permitted.example.com.pem",
3518 "data/name_constraints_unittest/name-us-california.pem",
3519 "data/name_constraints_unittest/name-us.pem",
3520 "data/name_constraints_unittest/othername-excluded.pem",
3521 "data/name_constraints_unittest/othername-permitted.pem",
3522 "data/name_constraints_unittest/registeredid-excluded.pem",
3523 "data/name_constraints_unittest/registeredid-permitted.pem",
3524 "data/name_constraints_unittest/rfc822name-excluded.pem",
3525 "data/name_constraints_unittest/rfc822name-permitted.pem",
Matt Mueller766bedc92017-09-14 23:30:413526 "data/name_constraints_unittest/san-directoryname.pem",
3527 "data/name_constraints_unittest/san-dnsname.pem",
ckrasic73f7240b2017-01-24 00:06:453528 "data/name_constraints_unittest/san-edipartyname.pem",
3529 "data/name_constraints_unittest/san-excluded-directoryname.pem",
3530 "data/name_constraints_unittest/san-excluded-dnsname.pem",
3531 "data/name_constraints_unittest/san-excluded-ipaddress.pem",
3532 "data/name_constraints_unittest/san-invalid-empty.pem",
3533 "data/name_constraints_unittest/san-invalid-ipaddress.pem",
Matt Mueller766bedc92017-09-14 23:30:413534 "data/name_constraints_unittest/san-ipaddress4.pem",
3535 "data/name_constraints_unittest/san-ipaddress6.pem",
ckrasic73f7240b2017-01-24 00:06:453536 "data/name_constraints_unittest/san-othername.pem",
3537 "data/name_constraints_unittest/san-permitted.pem",
3538 "data/name_constraints_unittest/san-registeredid.pem",
3539 "data/name_constraints_unittest/san-rfc822name.pem",
3540 "data/name_constraints_unittest/san-uri.pem",
3541 "data/name_constraints_unittest/san-x400address.pem",
3542 "data/name_constraints_unittest/uri-excluded.pem",
3543 "data/name_constraints_unittest/uri-permitted.pem",
3544 "data/name_constraints_unittest/x400address-excluded.pem",
3545 "data/name_constraints_unittest/x400address-permitted.pem",
Eric Romana2f6f55d2017-09-07 23:34:573546 "data/ocsp_unittest/bad_ocsp_type.pem",
3547 "data/ocsp_unittest/bad_signature.pem",
3548 "data/ocsp_unittest/bad_status.pem",
3549 "data/ocsp_unittest/good_response.pem",
3550 "data/ocsp_unittest/good_response_next_update.pem",
Steven Valdez060eac42017-09-21 22:31:573551 "data/ocsp_unittest/good_response_sha256.pem",
Eric Romana2f6f55d2017-09-07 23:34:573552 "data/ocsp_unittest/has_extension.pem",
3553 "data/ocsp_unittest/has_single_extension.pem",
3554 "data/ocsp_unittest/has_version.pem",
Eric Romanff242622017-09-25 21:49:443555 "data/ocsp_unittest/malformed_request.pem",
Eric Romana2f6f55d2017-09-07 23:34:573556 "data/ocsp_unittest/missing_response.pem",
3557 "data/ocsp_unittest/multiple_response.pem",
3558 "data/ocsp_unittest/no_response.pem",
3559 "data/ocsp_unittest/ocsp_extra_certs.pem",
3560 "data/ocsp_unittest/ocsp_sign_bad_indirect.pem",
3561 "data/ocsp_unittest/ocsp_sign_direct.pem",
3562 "data/ocsp_unittest/ocsp_sign_indirect.pem",
3563 "data/ocsp_unittest/ocsp_sign_indirect_missing.pem",
3564 "data/ocsp_unittest/other_response.pem",
3565 "data/ocsp_unittest/responder_id.pem",
3566 "data/ocsp_unittest/responder_name.pem",
3567 "data/ocsp_unittest/revoke_response.pem",
3568 "data/ocsp_unittest/revoke_response_reason.pem",
3569 "data/ocsp_unittest/unknown_response.pem",
Ryan Sleevi3dabe0b2018-04-05 03:59:013570 "data/ov_name_constraints/int-bmp-o1.pem",
3571 "data/ov_name_constraints/int-cn.pem",
3572 "data/ov_name_constraints/int-o1-o2.pem",
3573 "data/ov_name_constraints/int-o1-plus-o2.pem",
3574 "data/ov_name_constraints/int-o2-o1.pem",
3575 "data/ov_name_constraints/int-o3.pem",
3576 "data/ov_name_constraints/leaf-no-o.pem",
3577 "data/ov_name_constraints/leaf-o1-o2.pem",
3578 "data/ov_name_constraints/leaf-o1.pem",
3579 "data/ov_name_constraints/nc-int-exclude-o1.pem",
3580 "data/ov_name_constraints/nc-int-permit-bmp-o1.pem",
3581 "data/ov_name_constraints/nc-int-permit-cn.pem",
3582 "data/ov_name_constraints/nc-int-permit-dns.pem",
3583 "data/ov_name_constraints/nc-int-permit-o1.pem",
3584 "data/ov_name_constraints/nc-int-permit-o2-o1-o3.pem",
3585 "data/ov_name_constraints/root.pem",
Eric Roman7b45a272017-08-02 03:21:443586 "data/parse_certificate_unittest/bad_key_usage.pem",
3587 "data/parse_certificate_unittest/bad_policy_qualifiers.pem",
3588 "data/parse_certificate_unittest/bad_signature_algorithm_oid.pem",
3589 "data/parse_certificate_unittest/bad_validity.pem",
ckrasic73f7240b2017-01-24 00:06:453590 "data/parse_certificate_unittest/basic_constraints_ca_false.pem",
3591 "data/parse_certificate_unittest/basic_constraints_ca_no_path.pem",
3592 "data/parse_certificate_unittest/basic_constraints_ca_path_9.pem",
3593 "data/parse_certificate_unittest/basic_constraints_negative_path.pem",
3594 "data/parse_certificate_unittest/basic_constraints_not_ca.pem",
3595 "data/parse_certificate_unittest/basic_constraints_path_too_large.pem",
3596 "data/parse_certificate_unittest/basic_constraints_pathlen_255.pem",
3597 "data/parse_certificate_unittest/basic_constraints_pathlen_256.pem",
3598 "data/parse_certificate_unittest/basic_constraints_pathlen_not_ca.pem",
3599 "data/parse_certificate_unittest/basic_constraints_unconsumed_data.pem",
3600 "data/parse_certificate_unittest/cert_algorithm_not_sequence.pem",
3601 "data/parse_certificate_unittest/cert_data_after_signature.pem",
3602 "data/parse_certificate_unittest/cert_empty_sequence.pem",
3603 "data/parse_certificate_unittest/cert_missing_signature.pem",
3604 "data/parse_certificate_unittest/cert_not_sequence.pem",
3605 "data/parse_certificate_unittest/cert_signature_not_bit_string.pem",
3606 "data/parse_certificate_unittest/cert_skeleton.pem",
3607 "data/parse_certificate_unittest/cert_version3.pem",
Eric Romandb460e92017-08-01 17:17:343608 "data/parse_certificate_unittest/crldp_1uri_noissuer.pem",
3609 "data/parse_certificate_unittest/crldp_3uri_noissuer.pem",
3610 "data/parse_certificate_unittest/crldp_full_name_as_dirname.pem",
3611 "data/parse_certificate_unittest/crldp_issuer_as_dirname.pem",
ckrasic73f7240b2017-01-24 00:06:453612 "data/parse_certificate_unittest/extended_key_usage.pem",
3613 "data/parse_certificate_unittest/extension_critical.pem",
3614 "data/parse_certificate_unittest/extension_critical_0.pem",
3615 "data/parse_certificate_unittest/extension_critical_3.pem",
3616 "data/parse_certificate_unittest/extension_not_critical.pem",
3617 "data/parse_certificate_unittest/extensions_data_after_sequence.pem",
3618 "data/parse_certificate_unittest/extensions_duplicate_key_usage.pem",
3619 "data/parse_certificate_unittest/extensions_empty_sequence.pem",
3620 "data/parse_certificate_unittest/extensions_not_sequence.pem",
3621 "data/parse_certificate_unittest/extensions_real.pem",
Eric Roman7b45a272017-08-02 03:21:443622 "data/parse_certificate_unittest/failed_signature_algorithm.pem",
eromand312c062017-05-19 03:06:293623 "data/parse_certificate_unittest/inhibit_any_policy.pem",
Eric Roman7b45a272017-08-02 03:21:443624 "data/parse_certificate_unittest/issuer_bad_printable_string.pem",
ckrasic73f7240b2017-01-24 00:06:453625 "data/parse_certificate_unittest/key_usage.pem",
Eric Roman7b45a272017-08-02 03:21:443626 "data/parse_certificate_unittest/name_constraints_bad_ip.pem",
ckrasic73f7240b2017-01-24 00:06:453627 "data/parse_certificate_unittest/policies.pem",
eroman25ead1bcf82017-05-13 06:44:583628 "data/parse_certificate_unittest/policy_constraints_empty.pem",
3629 "data/parse_certificate_unittest/policy_constraints_inhibit.pem",
3630 "data/parse_certificate_unittest/policy_constraints_inhibit_require.pem",
3631 "data/parse_certificate_unittest/policy_constraints_require.pem",
Eric Roman7b45a272017-08-02 03:21:443632 "data/parse_certificate_unittest/policy_qualifiers_empty_sequence.pem",
mattm312644de2017-05-16 08:13:183633 "data/parse_certificate_unittest/serial_37_bytes.pem",
3634 "data/parse_certificate_unittest/serial_negative.pem",
Eric Roman5d1934622017-08-03 03:57:093635 "data/parse_certificate_unittest/serial_not_minimal.pem",
3636 "data/parse_certificate_unittest/serial_not_number.pem",
3637 "data/parse_certificate_unittest/serial_zero.pem",
mattm312644de2017-05-16 08:13:183638 "data/parse_certificate_unittest/serial_zero_padded.pem",
3639 "data/parse_certificate_unittest/serial_zero_padded_21_bytes.pem",
mattm2fe429a2017-06-20 01:53:443640 "data/parse_certificate_unittest/signature_algorithm_null.pem",
ckrasic73f7240b2017-01-24 00:06:453641 "data/parse_certificate_unittest/subject_alt_name.pem",
Eric Roman7b45a272017-08-02 03:21:443642 "data/parse_certificate_unittest/subject_blank_subjectaltname_not_critical.pem",
3643 "data/parse_certificate_unittest/subject_not_ascii.pem",
3644 "data/parse_certificate_unittest/subject_not_printable_string.pem",
Matt Mueller6c8b07c62017-10-09 21:02:253645 "data/parse_certificate_unittest/subject_printable_string_containing_utf8_client_cert.pem",
mattm788812f2017-05-05 23:49:093646 "data/parse_certificate_unittest/subject_t61string.pem",
3647 "data/parse_certificate_unittest/subject_t61string_1-32.pem",
3648 "data/parse_certificate_unittest/subject_t61string_126-160.pem",
3649 "data/parse_certificate_unittest/subject_t61string_actual.pem",
Eric Roman7b45a272017-08-02 03:21:443650 "data/parse_certificate_unittest/subjectaltname_bad_ip.pem",
3651 "data/parse_certificate_unittest/subjectaltname_dns_not_ascii.pem",
3652 "data/parse_certificate_unittest/subjectaltname_general_names_empty_sequence.pem",
3653 "data/parse_certificate_unittest/subjectaltname_trailing_data.pem",
ckrasic73f7240b2017-01-24 00:06:453654 "data/parse_certificate_unittest/tbs_explicit_v1.pem",
ckrasic73f7240b2017-01-24 00:06:453655 "data/parse_certificate_unittest/tbs_v1.pem",
3656 "data/parse_certificate_unittest/tbs_v1_extensions.pem",
3657 "data/parse_certificate_unittest/tbs_v2_extensions.pem",
3658 "data/parse_certificate_unittest/tbs_v2_issuer_and_subject_unique_id.pem",
3659 "data/parse_certificate_unittest/tbs_v2_issuer_unique_id.pem",
3660 "data/parse_certificate_unittest/tbs_v2_no_optionals.pem",
3661 "data/parse_certificate_unittest/tbs_v3_all_optionals.pem",
3662 "data/parse_certificate_unittest/tbs_v3_data_after_extensions.pem",
3663 "data/parse_certificate_unittest/tbs_v3_extensions.pem",
3664 "data/parse_certificate_unittest/tbs_v3_extensions_not_sequence.pem",
3665 "data/parse_certificate_unittest/tbs_v3_no_optionals.pem",
3666 "data/parse_certificate_unittest/tbs_v3_real.pem",
3667 "data/parse_certificate_unittest/tbs_v4.pem",
3668 "data/parse_certificate_unittest/tbs_validity_both_generalized_time.pem",
3669 "data/parse_certificate_unittest/tbs_validity_both_utc_time.pem",
3670 "data/parse_certificate_unittest/tbs_validity_generalized_time_and_utc_time.pem",
3671 "data/parse_certificate_unittest/tbs_validity_relaxed.pem",
3672 "data/parse_certificate_unittest/tbs_validity_utc_time_and_generalized_time.pem",
Eric Roman7b45a272017-08-02 03:21:443673 "data/parse_certificate_unittest/v1_explicit_version.pem",
Matt Mueller6c8b07c62017-10-09 21:02:253674 "data/parse_certificate_unittest/v3_certificate_template.pk8",
ckrasic73f7240b2017-01-24 00:06:453675 "data/test.html",
3676 "data/url_request_unittest/308-without-location-header",
3677 "data/url_request_unittest/308-without-location-header.mock-http-headers",
3678 "data/url_request_unittest/BullRunSpeech.txt",
3679 "data/url_request_unittest/content-type-normalization.html",
3680 "data/url_request_unittest/content-type-normalization.html.mock-http-headers",
Emily Stark4cfecf072017-08-08 01:05:513681 "data/url_request_unittest/expect-ct-header-multiple.html",
3682 "data/url_request_unittest/expect-ct-header-multiple.html.mock-http-headers",
3683 "data/url_request_unittest/expect-ct-header-preload.html",
3684 "data/url_request_unittest/expect-ct-header-preload.html.mock-http-headers",
ckrasic73f7240b2017-01-24 00:06:453685 "data/url_request_unittest/expect-ct-header.html",
3686 "data/url_request_unittest/expect-ct-header.html.mock-http-headers",
3687 "data/url_request_unittest/filedir-sentinel",
3688 "data/url_request_unittest/gzip-encoded",
3689 "data/url_request_unittest/gzip-encoded.mock-http-headers",
3690 "data/url_request_unittest/hpkp-headers-report-only.html",
3691 "data/url_request_unittest/hpkp-headers-report-only.html.mock-http-headers",
3692 "data/url_request_unittest/hpkp-headers.html",
3693 "data/url_request_unittest/hpkp-headers.html.mock-http-headers",
3694 "data/url_request_unittest/hsts-and-hpkp-headers.html",
3695 "data/url_request_unittest/hsts-and-hpkp-headers.html.mock-http-headers",
3696 "data/url_request_unittest/hsts-and-hpkp-headers2.html",
3697 "data/url_request_unittest/hsts-and-hpkp-headers2.html.mock-http-headers",
3698 "data/url_request_unittest/hsts-headers.html",
3699 "data/url_request_unittest/hsts-headers.html.mock-http-headers",
3700 "data/url_request_unittest/hsts-multiple-headers.html",
3701 "data/url_request_unittest/hsts-multiple-headers.html.mock-http-headers",
3702 "data/url_request_unittest/redirect-test.html",
3703 "data/url_request_unittest/redirect-test.html.mock-http-headers",
3704 "data/url_request_unittest/redirect-to-data.html",
3705 "data/url_request_unittest/redirect-to-data.html.mock-http-headers",
3706 "data/url_request_unittest/redirect-to-echoall",
3707 "data/url_request_unittest/redirect-to-echoall.mock-http-headers",
3708 "data/url_request_unittest/redirect-to-file.html",
3709 "data/url_request_unittest/redirect-to-file.html.mock-http-headers",
3710 "data/url_request_unittest/redirect-to-invalid-url.html",
3711 "data/url_request_unittest/redirect-to-invalid-url.html.mock-http-headers",
3712 "data/url_request_unittest/redirect301-to-echo",
3713 "data/url_request_unittest/redirect301-to-echo.mock-http-headers",
3714 "data/url_request_unittest/redirect301-to-https",
3715 "data/url_request_unittest/redirect301-to-https.mock-http-headers",
3716 "data/url_request_unittest/redirect302-to-echo",
3717 "data/url_request_unittest/redirect302-to-echo-cacheable",
3718 "data/url_request_unittest/redirect302-to-echo-cacheable.mock-http-headers",
3719 "data/url_request_unittest/redirect302-to-echo.mock-http-headers",
3720 "data/url_request_unittest/redirect302-to-https",
3721 "data/url_request_unittest/redirect302-to-https.mock-http-headers",
3722 "data/url_request_unittest/redirect303-to-echo",
3723 "data/url_request_unittest/redirect303-to-echo.mock-http-headers",
3724 "data/url_request_unittest/redirect303-to-https",
3725 "data/url_request_unittest/redirect303-to-https.mock-http-headers",
3726 "data/url_request_unittest/redirect307-to-echo",
3727 "data/url_request_unittest/redirect307-to-echo.mock-http-headers",
3728 "data/url_request_unittest/redirect307-to-https",
3729 "data/url_request_unittest/redirect307-to-https.mock-http-headers",
3730 "data/url_request_unittest/redirect308-to-echo",
3731 "data/url_request_unittest/redirect308-to-echo.mock-http-headers",
3732 "data/url_request_unittest/redirect308-to-https",
3733 "data/url_request_unittest/redirect308-to-https.mock-http-headers",
3734 "data/url_request_unittest/simple.html",
3735 "data/url_request_unittest/simple.html.mock-http-headers",
3736 "data/url_request_unittest/two-content-lengths.html",
3737 "data/url_request_unittest/two-content-lengths.html.mock-http-headers",
3738 "data/url_request_unittest/with-headers.html",
3739 "data/url_request_unittest/with-headers.html.mock-http-headers",
eroman266bda9e2017-05-03 01:28:043740 "data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/chain.pem",
3741 "data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/main.test",
eroman266bda9e2017-05-03 01:28:043742 "data/verify_certificate_chain_unittest/expired-intermediate/chain.pem",
eromane7af9002017-05-13 05:04:013743 "data/verify_certificate_chain_unittest/expired-intermediate/not-after.test",
3744 "data/verify_certificate_chain_unittest/expired-intermediate/not-before.test",
eromanc1a8b5d02017-05-03 21:52:103745 "data/verify_certificate_chain_unittest/expired-root/chain.pem",
eromane7af9002017-05-13 05:04:013746 "data/verify_certificate_chain_unittest/expired-root/not-after-ta-with-constraints.test",
3747 "data/verify_certificate_chain_unittest/expired-root/not-after.test",
3748 "data/verify_certificate_chain_unittest/expired-root/not-before.test",
eroman266bda9e2017-05-03 01:28:043749 "data/verify_certificate_chain_unittest/expired-target/chain.pem",
eromane7af9002017-05-13 05:04:013750 "data/verify_certificate_chain_unittest/expired-target/not-after.test",
3751 "data/verify_certificate_chain_unittest/expired-target/not-before.test",
eroman266bda9e2017-05-03 01:28:043752 "data/verify_certificate_chain_unittest/incorrect-trust-anchor/chain.pem",
3753 "data/verify_certificate_chain_unittest/incorrect-trust-anchor/main.test",
Matt Mueller905e4e3d2018-02-14 02:11:173754 "data/verify_certificate_chain_unittest/intermediate-and-target-wrong-signature/chain.pem",
3755 "data/verify_certificate_chain_unittest/intermediate-and-target-wrong-signature/main.test",
eroman266bda9e2017-05-03 01:28:043756 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/chain.pem",
3757 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/main.test",
3758 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/chain.pem",
3759 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/main.test",
eroman7333d9b2017-06-23 01:50:253760 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/any.test",
3761 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/chain.pem",
3762 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/clientauth.test",
3763 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/serverauth.test",
3764 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/any.test",
3765 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/chain.pem",
3766 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/clientauth.test",
3767 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/serverauth.test",
Eric Romanc8c2d6a2017-08-01 22:55:303768 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-chain.pem",
3769 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-any.test",
3770 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-clientAuth.test",
3771 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-serverAuth.test",
3772 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-chain.pem",
3773 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-any.test",
3774 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-clientAuth.test",
3775 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-serverAuth.test",
eroman266bda9e2017-05-03 01:28:043776 "data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/chain.pem",
3777 "data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/main.test",
3778 "data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/chain.pem",
3779 "data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/main.test",
eroman266bda9e2017-05-03 01:28:043780 "data/verify_certificate_chain_unittest/intermediate-signed-with-md5/chain.pem",
3781 "data/verify_certificate_chain_unittest/intermediate-signed-with-md5/main.test",
3782 "data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/chain.pem",
3783 "data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/main.test",
3784 "data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/chain.pem",
3785 "data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/main.test",
3786 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.pem",
3787 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.test",
3788 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.pem",
3789 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.test",
3790 "data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.pem",
3791 "data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.test",
3792 "data/verify_certificate_chain_unittest/key-rollover/newchain.pem",
3793 "data/verify_certificate_chain_unittest/key-rollover/newchain.test",
3794 "data/verify_certificate_chain_unittest/key-rollover/oldchain.pem",
3795 "data/verify_certificate_chain_unittest/key-rollover/oldchain.test",
3796 "data/verify_certificate_chain_unittest/key-rollover/rolloverchain.pem",
3797 "data/verify_certificate_chain_unittest/key-rollover/rolloverchain.test",
Matt Muellerc391cdf2018-02-08 01:05:573798 "data/verify_certificate_chain_unittest/many-names/ok-all-types.pem",
3799 "data/verify_certificate_chain_unittest/many-names/ok-all-types.test",
3800 "data/verify_certificate_chain_unittest/many-names/ok-different-types-dirnames.pem",
3801 "data/verify_certificate_chain_unittest/many-names/ok-different-types-dirnames.test",
3802 "data/verify_certificate_chain_unittest/many-names/ok-different-types-dns.pem",
3803 "data/verify_certificate_chain_unittest/many-names/ok-different-types-dns.test",
3804 "data/verify_certificate_chain_unittest/many-names/ok-different-types-ips.pem",
3805 "data/verify_certificate_chain_unittest/many-names/ok-different-types-ips.test",
3806 "data/verify_certificate_chain_unittest/many-names/toomany-all-types.pem",
3807 "data/verify_certificate_chain_unittest/many-names/toomany-all-types.test",
3808 "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-excluded.pem",
3809 "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-excluded.test",
3810 "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-permitted.pem",
3811 "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-permitted.test",
3812 "data/verify_certificate_chain_unittest/many-names/toomany-dns-excluded.pem",
3813 "data/verify_certificate_chain_unittest/many-names/toomany-dns-excluded.test",
3814 "data/verify_certificate_chain_unittest/many-names/toomany-dns-permitted.pem",
3815 "data/verify_certificate_chain_unittest/many-names/toomany-dns-permitted.test",
3816 "data/verify_certificate_chain_unittest/many-names/toomany-ips-excluded.pem",
3817 "data/verify_certificate_chain_unittest/many-names/toomany-ips-excluded.test",
3818 "data/verify_certificate_chain_unittest/many-names/toomany-ips-permitted.pem",
3819 "data/verify_certificate_chain_unittest/many-names/toomany-ips-permitted.test",
eroman266bda9e2017-05-03 01:28:043820 "data/verify_certificate_chain_unittest/non-self-signed-root/chain.pem",
3821 "data/verify_certificate_chain_unittest/non-self-signed-root/main.test",
eromanc1a8b5d02017-05-03 21:52:103822 "data/verify_certificate_chain_unittest/non-self-signed-root/ta-with-constraints.test",
eroman605a5cc2017-06-03 02:45:243823 "data/verify_certificate_chain_unittest/pkits_errors/4.1.2.txt",
3824 "data/verify_certificate_chain_unittest/pkits_errors/4.1.3.txt",
3825 "data/verify_certificate_chain_unittest/pkits_errors/4.1.4.txt",
3826 "data/verify_certificate_chain_unittest/pkits_errors/4.1.5.txt",
3827 "data/verify_certificate_chain_unittest/pkits_errors/4.1.6.txt",
3828 "data/verify_certificate_chain_unittest/pkits_errors/4.10.1.txt",
3829 "data/verify_certificate_chain_unittest/pkits_errors/4.10.10.txt",
3830 "data/verify_certificate_chain_unittest/pkits_errors/4.10.2.txt",
3831 "data/verify_certificate_chain_unittest/pkits_errors/4.10.3.txt",
3832 "data/verify_certificate_chain_unittest/pkits_errors/4.10.4.txt",
3833 "data/verify_certificate_chain_unittest/pkits_errors/4.10.5.txt",
3834 "data/verify_certificate_chain_unittest/pkits_errors/4.10.6.txt",
3835 "data/verify_certificate_chain_unittest/pkits_errors/4.10.7.txt",
3836 "data/verify_certificate_chain_unittest/pkits_errors/4.10.8.txt",
3837 "data/verify_certificate_chain_unittest/pkits_errors/4.11.1.txt",
3838 "data/verify_certificate_chain_unittest/pkits_errors/4.11.10.txt",
3839 "data/verify_certificate_chain_unittest/pkits_errors/4.11.11.txt",
3840 "data/verify_certificate_chain_unittest/pkits_errors/4.11.3.txt",
3841 "data/verify_certificate_chain_unittest/pkits_errors/4.11.5.txt",
3842 "data/verify_certificate_chain_unittest/pkits_errors/4.11.6.txt",
3843 "data/verify_certificate_chain_unittest/pkits_errors/4.11.8.txt",
3844 "data/verify_certificate_chain_unittest/pkits_errors/4.11.9.txt",
3845 "data/verify_certificate_chain_unittest/pkits_errors/4.12.1.txt",
3846 "data/verify_certificate_chain_unittest/pkits_errors/4.12.10.txt",
3847 "data/verify_certificate_chain_unittest/pkits_errors/4.12.3.txt",
3848 "data/verify_certificate_chain_unittest/pkits_errors/4.12.4.txt",
3849 "data/verify_certificate_chain_unittest/pkits_errors/4.12.5.txt",
3850 "data/verify_certificate_chain_unittest/pkits_errors/4.12.6.txt",
3851 "data/verify_certificate_chain_unittest/pkits_errors/4.12.8.txt",
3852 "data/verify_certificate_chain_unittest/pkits_errors/4.13.10.txt",
3853 "data/verify_certificate_chain_unittest/pkits_errors/4.13.12.txt",
3854 "data/verify_certificate_chain_unittest/pkits_errors/4.13.13.txt",
3855 "data/verify_certificate_chain_unittest/pkits_errors/4.13.15.txt",
3856 "data/verify_certificate_chain_unittest/pkits_errors/4.13.16.txt",
3857 "data/verify_certificate_chain_unittest/pkits_errors/4.13.17.txt",
3858 "data/verify_certificate_chain_unittest/pkits_errors/4.13.2.txt",
3859 "data/verify_certificate_chain_unittest/pkits_errors/4.13.20.txt",
3860 "data/verify_certificate_chain_unittest/pkits_errors/4.13.21.txt",
3861 "data/verify_certificate_chain_unittest/pkits_errors/4.13.22.txt",
3862 "data/verify_certificate_chain_unittest/pkits_errors/4.13.23.txt",
3863 "data/verify_certificate_chain_unittest/pkits_errors/4.13.24.txt",
3864 "data/verify_certificate_chain_unittest/pkits_errors/4.13.25.txt",
3865 "data/verify_certificate_chain_unittest/pkits_errors/4.13.26.txt",
3866 "data/verify_certificate_chain_unittest/pkits_errors/4.13.27.txt",
3867 "data/verify_certificate_chain_unittest/pkits_errors/4.13.28.txt",
3868 "data/verify_certificate_chain_unittest/pkits_errors/4.13.29.txt",
3869 "data/verify_certificate_chain_unittest/pkits_errors/4.13.3.txt",
3870 "data/verify_certificate_chain_unittest/pkits_errors/4.13.31.txt",
3871 "data/verify_certificate_chain_unittest/pkits_errors/4.13.33.txt",
3872 "data/verify_certificate_chain_unittest/pkits_errors/4.13.34.txt",
3873 "data/verify_certificate_chain_unittest/pkits_errors/4.13.35.txt",
3874 "data/verify_certificate_chain_unittest/pkits_errors/4.13.36.txt",
3875 "data/verify_certificate_chain_unittest/pkits_errors/4.13.37.txt",
3876 "data/verify_certificate_chain_unittest/pkits_errors/4.13.38.txt",
3877 "data/verify_certificate_chain_unittest/pkits_errors/4.13.7.txt",
3878 "data/verify_certificate_chain_unittest/pkits_errors/4.13.8.txt",
3879 "data/verify_certificate_chain_unittest/pkits_errors/4.13.9.txt",
3880 "data/verify_certificate_chain_unittest/pkits_errors/4.16.2.txt",
3881 "data/verify_certificate_chain_unittest/pkits_errors/4.2.1.txt",
3882 "data/verify_certificate_chain_unittest/pkits_errors/4.2.2.txt",
3883 "data/verify_certificate_chain_unittest/pkits_errors/4.2.5.txt",
3884 "data/verify_certificate_chain_unittest/pkits_errors/4.2.6.txt",
3885 "data/verify_certificate_chain_unittest/pkits_errors/4.2.7.txt",
3886 "data/verify_certificate_chain_unittest/pkits_errors/4.3.1.txt",
3887 "data/verify_certificate_chain_unittest/pkits_errors/4.3.2.txt",
3888 "data/verify_certificate_chain_unittest/pkits_errors/4.6.1.txt",
3889 "data/verify_certificate_chain_unittest/pkits_errors/4.6.10.txt",
3890 "data/verify_certificate_chain_unittest/pkits_errors/4.6.11.txt",
3891 "data/verify_certificate_chain_unittest/pkits_errors/4.6.12.txt",
3892 "data/verify_certificate_chain_unittest/pkits_errors/4.6.16.txt",
3893 "data/verify_certificate_chain_unittest/pkits_errors/4.6.2.txt",
3894 "data/verify_certificate_chain_unittest/pkits_errors/4.6.3.txt",
3895 "data/verify_certificate_chain_unittest/pkits_errors/4.6.5.txt",
3896 "data/verify_certificate_chain_unittest/pkits_errors/4.6.6.txt",
3897 "data/verify_certificate_chain_unittest/pkits_errors/4.6.9.txt",
3898 "data/verify_certificate_chain_unittest/pkits_errors/4.7.1.txt",
3899 "data/verify_certificate_chain_unittest/pkits_errors/4.7.2.txt",
3900 "data/verify_certificate_chain_unittest/pkits_errors/4.8.1.txt",
3901 "data/verify_certificate_chain_unittest/pkits_errors/4.8.12.txt",
3902 "data/verify_certificate_chain_unittest/pkits_errors/4.8.14.txt",
3903 "data/verify_certificate_chain_unittest/pkits_errors/4.8.2.txt",
3904 "data/verify_certificate_chain_unittest/pkits_errors/4.8.3.txt",
3905 "data/verify_certificate_chain_unittest/pkits_errors/4.8.4.txt",
3906 "data/verify_certificate_chain_unittest/pkits_errors/4.8.5.txt",
3907 "data/verify_certificate_chain_unittest/pkits_errors/4.8.6.txt",
3908 "data/verify_certificate_chain_unittest/pkits_errors/4.8.7.txt",
3909 "data/verify_certificate_chain_unittest/pkits_errors/4.8.8.txt",
3910 "data/verify_certificate_chain_unittest/pkits_errors/4.8.9.txt",
3911 "data/verify_certificate_chain_unittest/pkits_errors/4.9.3.txt",
3912 "data/verify_certificate_chain_unittest/pkits_errors/4.9.5.txt",
3913 "data/verify_certificate_chain_unittest/pkits_errors/4.9.7.txt",
3914 "data/verify_certificate_chain_unittest/pkits_errors/4.9.8.txt",
eromanc1a8b5d02017-05-03 21:52:103915 "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/chain.pem",
3916 "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/main.test",
3917 "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/ta-with-constraints.test",
eroman7333d9b2017-06-23 01:50:253918 "data/verify_certificate_chain_unittest/root-eku-clientauth/chain.pem",
3919 "data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth-ta-with-constraints.test",
3920 "data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth.test",
eromanc1a8b5d02017-05-03 21:52:103921 "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/chain.pem",
3922 "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/main.test",
3923 "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/ta-with-constraints.test",
eroman266bda9e2017-05-03 01:28:043924 "data/verify_certificate_chain_unittest/target-and-intermediate/chain.pem",
Matt Mueller905e4e3d2018-02-14 02:11:173925 "data/verify_certificate_chain_unittest/target-and-intermediate/distrusted-root-expired.test",
eromand1c9c9b2017-05-04 19:23:453926 "data/verify_certificate_chain_unittest/target-and-intermediate/distrusted-root.test",
eroman266bda9e2017-05-03 01:28:043927 "data/verify_certificate_chain_unittest/target-and-intermediate/main.test",
eromand1c9c9b2017-05-04 19:23:453928 "data/verify_certificate_chain_unittest/target-and-intermediate/unspecified-trust-root.test",
eroman7333d9b2017-06-23 01:50:253929 "data/verify_certificate_chain_unittest/target-eku-clientauth/any.test",
3930 "data/verify_certificate_chain_unittest/target-eku-clientauth/chain.pem",
3931 "data/verify_certificate_chain_unittest/target-eku-clientauth/clientauth.test",
3932 "data/verify_certificate_chain_unittest/target-eku-clientauth/serverauth.test",
3933 "data/verify_certificate_chain_unittest/target-eku-none/any.test",
3934 "data/verify_certificate_chain_unittest/target-eku-none/chain.pem",
3935 "data/verify_certificate_chain_unittest/target-eku-none/clientauth.test",
3936 "data/verify_certificate_chain_unittest/target-eku-none/serverauth.test",
Eric Roman5431d702017-07-26 01:58:183937 "data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/chain.pem",
3938 "data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/main.test",
eroman266bda9e2017-05-03 01:28:043939 "data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/chain.pem",
3940 "data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/main.test",
3941 "data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/chain.pem",
3942 "data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/main.test",
eroman266bda9e2017-05-03 01:28:043943 "data/verify_certificate_chain_unittest/target-not-end-entity/chain.pem",
3944 "data/verify_certificate_chain_unittest/target-not-end-entity/main.test",
eromane7899432017-05-04 16:40:483945 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.pem",
3946 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.test",
3947 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.pem",
3948 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.test",
3949 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.pem",
3950 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.test",
3951 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.pem",
3952 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.test",
3953 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.pem",
3954 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.test",
3955 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.pem",
3956 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.test",
3957 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.pem",
3958 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.test",
3959 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.pem",
3960 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.test",
eroman266bda9e2017-05-03 01:28:043961 "data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/chain.pem",
3962 "data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/main.test",
3963 "data/verify_certificate_chain_unittest/target-signed-using-ecdsa/chain.pem",
3964 "data/verify_certificate_chain_unittest/target-signed-using-ecdsa/main.test",
3965 "data/verify_certificate_chain_unittest/target-signed-with-md5/chain.pem",
3966 "data/verify_certificate_chain_unittest/target-signed-with-md5/main.test",
3967 "data/verify_certificate_chain_unittest/target-unknown-critical-extension/chain.pem",
3968 "data/verify_certificate_chain_unittest/target-unknown-critical-extension/main.test",
3969 "data/verify_certificate_chain_unittest/target-wrong-signature/chain.pem",
3970 "data/verify_certificate_chain_unittest/target-wrong-signature/main.test",
eroman178f2c62017-06-07 01:03:443971 "data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/chain.pem",
3972 "data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/main.test",
3973 "data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/chain.pem",
3974 "data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/main.test",
eroman266bda9e2017-05-03 01:28:043975 "data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/chain.pem",
3976 "data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/main.test",
eromanc1a8b5d02017-05-03 21:52:103977 "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/chain.pem",
3978 "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/main.test",
3979 "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/ta-with-constraints.test",
ckrasic73f7240b2017-01-24 00:06:453980 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-dupe_attr.pem",
3981 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_attr.pem",
3982 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_rdn.pem",
3983 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap.pem",
3984 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-dupe_attr.pem",
3985 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_attr.pem",
3986 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_rdn.pem",
3987 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace.pem",
3988 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-dupe_attr.pem",
3989 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_attr.pem",
3990 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_rdn.pem",
3991 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled.pem",
3992 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-dupe_attr.pem",
3993 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_attr.pem",
3994 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_rdn.pem",
3995 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap.pem",
3996 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-dupe_attr.pem",
3997 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_attr.pem",
3998 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_rdn.pem",
3999 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace.pem",
4000 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_1.pem",
4001 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_2.pem",
4002 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-dupe_attr.pem",
4003 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_attr.pem",
4004 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_rdn.pem",
4005 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled.pem",
4006 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-dupe_attr.pem",
4007 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_attr.pem",
4008 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_rdn.pem",
4009 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap.pem",
4010 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-dupe_attr.pem",
4011 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_attr.pem",
4012 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_rdn.pem",
4013 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace.pem",
4014 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-dupe_attr.pem",
4015 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_attr.pem",
4016 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_rdn.pem",
4017 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled.pem",
4018 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-dupe_attr.pem",
4019 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_attr.pem",
4020 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_rdn.pem",
4021 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap.pem",
4022 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-dupe_attr.pem",
4023 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_attr.pem",
4024 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_rdn.pem",
4025 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace.pem",
4026 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-dupe_attr.pem",
4027 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_attr.pem",
4028 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_rdn.pem",
4029 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled.pem",
4030 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-dupe_attr.pem",
4031 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_attr.pem",
4032 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_rdn.pem",
4033 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap.pem",
4034 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-dupe_attr.pem",
4035 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_attr.pem",
4036 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_rdn.pem",
4037 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace.pem",
4038 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-dupe_attr.pem",
4039 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_attr.pem",
4040 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_rdn.pem",
4041 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled.pem",
4042 "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_1.pem",
4043 "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_2.pem",
David Benjaminc4dd1052017-12-15 21:23:174044 "data/verify_name_match_unittest/names/custom-custom-normalized.pem",
ckrasic73f7240b2017-01-24 00:06:454045 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-badAttributeType.pem",
4046 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-empty.pem",
4047 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-extradata.pem",
4048 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-onlyOneElement.pem",
4049 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-setNotSequence.pem",
4050 "data/verify_name_match_unittest/names/invalid-Name-setInsteadOfSequence.pem",
4051 "data/verify_name_match_unittest/names/invalid-RDN-empty.pem",
4052 "data/verify_name_match_unittest/names/invalid-RDN-sequenceInsteadOfSet.pem",
4053 "data/verify_name_match_unittest/names/unicode-mixed-normalized.pem",
4054 "data/verify_name_match_unittest/names/unicode-mixed-unnormalized.pem",
4055 "data/verify_name_match_unittest/names/unicode_bmp-BMPSTRING-unmangled.pem",
4056 "data/verify_name_match_unittest/names/unicode_bmp-UNIVERSALSTRING-unmangled.pem",
4057 "data/verify_name_match_unittest/names/unicode_bmp-UTF8-unmangled.pem",
4058 "data/verify_name_match_unittest/names/unicode_supplementary-UNIVERSALSTRING-unmangled.pem",
4059 "data/verify_name_match_unittest/names/unicode_supplementary-UTF8-unmangled.pem",
4060 "data/verify_name_match_unittest/names/valid-Name-empty.pem",
4061 "data/verify_name_match_unittest/names/valid-minimal.pem",
4062 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-spki-params-null.pem",
4063 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-unused-bits-signature.pem",
4064 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecdh-key.pem",
4065 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecmqv-key.pem",
4066 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-rsa-algorithm.pem",
4067 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-wrong-signature-format.pem",
4068 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512.pem",
4069 "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256-corrupted-data.pem",
4070 "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256.pem",
4071 "data/verify_signed_data_unittest/ecdsa-using-rsa-key.pem",
4072 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-length.pem",
4073 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-null.pem",
4074 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-key-params-absent.pem",
4075 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-using-pss-key-no-params.pem",
4076 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-wrong-algorithm.pem",
4077 "data/verify_signed_data_unittest/rsa-pkcs1-sha1.pem",
4078 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-key-encoded-ber.pem",
4079 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-spki-non-null-params.pem",
4080 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-ecdsa-algorithm.pem",
4081 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-id-ea-rsa.pem",
4082 "data/verify_signed_data_unittest/rsa-pkcs1-sha256.pem",
4083 "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-no-params.pem",
4084 "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-with-null-params.pem",
4085 "data/verify_signed_data_unittest/rsa-pss-sha1-salt20.pem",
4086 "data/verify_signed_data_unittest/rsa-pss-sha1-wrong-salt.pem",
4087 "data/verify_signed_data_unittest/rsa-pss-sha256-mgf1-sha512-salt33.pem",
4088 "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-params.pem",
4089 "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-wrong-params.pem",
4090 "data/verify_signed_data_unittest/rsa-pss-sha256-salt10.pem",
4091 "data/verify_signed_data_unittest/rsa-using-ec-key.pem",
4092 "data/verify_signed_data_unittest/rsa2048-pkcs1-sha512.pem",
4093 "third_party/nist-pkits/certs/AllCertificatesNoPoliciesTest2EE.crt",
4094 "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest10EE.crt",
4095 "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest13EE.crt",
4096 "third_party/nist-pkits/certs/AllCertificatesanyPolicyTest11EE.crt",
4097 "third_party/nist-pkits/certs/AnyPolicyTest14EE.crt",
4098 "third_party/nist-pkits/certs/BadCRLIssuerNameCACert.crt",
4099 "third_party/nist-pkits/certs/BadCRLSignatureCACert.crt",
4100 "third_party/nist-pkits/certs/BadSignedCACert.crt",
4101 "third_party/nist-pkits/certs/BadnotAfterDateCACert.crt",
4102 "third_party/nist-pkits/certs/BadnotBeforeDateCACert.crt",
4103 "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCACert.crt",
4104 "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCRLCert.crt",
4105 "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyCACert.crt",
4106 "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyOldWithNewCACert.crt",
4107 "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyCACert.crt",
4108 "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyNewWithOldCACert.crt",
4109 "third_party/nist-pkits/certs/CPSPointerQualifierTest20EE.crt",
4110 "third_party/nist-pkits/certs/DSACACert.crt",
4111 "third_party/nist-pkits/certs/DSAParametersInheritedCACert.crt",
4112 "third_party/nist-pkits/certs/DifferentPoliciesTest12EE.crt",
4113 "third_party/nist-pkits/certs/DifferentPoliciesTest3EE.crt",
4114 "third_party/nist-pkits/certs/DifferentPoliciesTest4EE.crt",
4115 "third_party/nist-pkits/certs/DifferentPoliciesTest5EE.crt",
4116 "third_party/nist-pkits/certs/DifferentPoliciesTest7EE.crt",
4117 "third_party/nist-pkits/certs/DifferentPoliciesTest8EE.crt",
4118 "third_party/nist-pkits/certs/DifferentPoliciesTest9EE.crt",
4119 "third_party/nist-pkits/certs/GeneralizedTimeCRLnextUpdateCACert.crt",
4120 "third_party/nist-pkits/certs/GoodCACert.crt",
4121 "third_party/nist-pkits/certs/GoodsubCACert.crt",
4122 "third_party/nist-pkits/certs/GoodsubCAPanyPolicyMapping1to2CACert.crt",
4123 "third_party/nist-pkits/certs/InvalidBadCRLIssuerNameTest5EE.crt",
4124 "third_party/nist-pkits/certs/InvalidBadCRLSignatureTest4EE.crt",
4125 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest7EE.crt",
4126 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest8EE.crt",
4127 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedNewWithOldTest5EE.crt",
4128 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedOldWithNewTest2EE.crt",
4129 "third_party/nist-pkits/certs/InvalidCASignatureTest2EE.crt",
4130 "third_party/nist-pkits/certs/InvalidCAnotAfterDateTest5EE.crt",
4131 "third_party/nist-pkits/certs/InvalidCAnotBeforeDateTest1EE.crt",
4132 "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest31EE.crt",
4133 "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest33EE.crt",
4134 "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest38EE.crt",
4135 "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest28EE.crt",
4136 "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest29EE.crt",
4137 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest10EE.crt",
4138 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest12EE.crt",
4139 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest13EE.crt",
4140 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest15EE.crt",
4141 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest16EE.crt",
4142 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest17EE.crt",
4143 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest20EE.crt",
4144 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest2EE.crt",
4145 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest3EE.crt",
4146 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest7EE.crt",
4147 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest8EE.crt",
4148 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest9EE.crt",
4149 "third_party/nist-pkits/certs/InvalidDSASignatureTest6EE.crt",
4150 "third_party/nist-pkits/certs/InvalidEESignatureTest3EE.crt",
4151 "third_party/nist-pkits/certs/InvalidEEnotAfterDateTest6EE.crt",
4152 "third_party/nist-pkits/certs/InvalidEEnotBeforeDateTest2EE.crt",
4153 "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest23EE.crt",
4154 "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest26EE.crt",
4155 "third_party/nist-pkits/certs/InvalidLongSerialNumberTest18EE.crt",
4156 "third_party/nist-pkits/certs/InvalidMappingFromanyPolicyTest7EE.crt",
4157 "third_party/nist-pkits/certs/InvalidMappingToanyPolicyTest8EE.crt",
4158 "third_party/nist-pkits/certs/InvalidMissingCRLTest1EE.crt",
4159 "third_party/nist-pkits/certs/InvalidMissingbasicConstraintsTest1EE.crt",
4160 "third_party/nist-pkits/certs/InvalidNameChainingOrderTest2EE.crt",
4161 "third_party/nist-pkits/certs/InvalidNameChainingTest1EE.crt",
4162 "third_party/nist-pkits/certs/InvalidNegativeSerialNumberTest15EE.crt",
4163 "third_party/nist-pkits/certs/InvalidOldCRLnextUpdateTest11EE.crt",
4164 "third_party/nist-pkits/certs/InvalidPolicyMappingTest10EE.crt",
4165 "third_party/nist-pkits/certs/InvalidPolicyMappingTest2EE.crt",
4166 "third_party/nist-pkits/certs/InvalidPolicyMappingTest4EE.crt",
4167 "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest22EE.crt",
4168 "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest24EE.crt",
4169 "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest26EE.crt",
4170 "third_party/nist-pkits/certs/InvalidRevokedCATest2EE.crt",
4171 "third_party/nist-pkits/certs/InvalidRevokedEETest3EE.crt",
4172 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest10EE.crt",
4173 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest8EE.crt",
4174 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest10EE.crt",
4175 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest11EE.crt",
4176 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest8EE.crt",
4177 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest9EE.crt",
4178 "third_party/nist-pkits/certs/InvalidSelfIssuedpathLenConstraintTest16EE.crt",
4179 "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest7EE.crt",
4180 "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest8EE.crt",
4181 "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest20EE.crt",
4182 "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest21EE.crt",
4183 "third_party/nist-pkits/certs/InvalidURInameConstraintsTest35EE.crt",
4184 "third_party/nist-pkits/certs/InvalidURInameConstraintsTest37EE.crt",
4185 "third_party/nist-pkits/certs/InvalidUnknownCRLEntryExtensionTest8EE.crt",
4186 "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest10EE.crt",
4187 "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest9EE.crt",
4188 "third_party/nist-pkits/certs/InvalidUnknownCriticalCertificateExtensionTest2EE.crt",
4189 "third_party/nist-pkits/certs/InvalidWrongCRLTest6EE.crt",
4190 "third_party/nist-pkits/certs/InvalidcAFalseTest2EE.crt",
4191 "third_party/nist-pkits/certs/InvalidcAFalseTest3EE.crt",
4192 "third_party/nist-pkits/certs/InvalidcRLIssuerTest27EE.crt",
4193 "third_party/nist-pkits/certs/InvalidcRLIssuerTest31EE.crt",
4194 "third_party/nist-pkits/certs/InvalidcRLIssuerTest32EE.crt",
4195 "third_party/nist-pkits/certs/InvalidcRLIssuerTest34EE.crt",
4196 "third_party/nist-pkits/certs/InvalidcRLIssuerTest35EE.crt",
4197 "third_party/nist-pkits/certs/InvaliddeltaCRLIndicatorNoBaseTest1EE.crt",
4198 "third_party/nist-pkits/certs/InvaliddeltaCRLTest10EE.crt",
4199 "third_party/nist-pkits/certs/InvaliddeltaCRLTest3EE.crt",
4200 "third_party/nist-pkits/certs/InvaliddeltaCRLTest4EE.crt",
4201 "third_party/nist-pkits/certs/InvaliddeltaCRLTest6EE.crt",
4202 "third_party/nist-pkits/certs/InvaliddeltaCRLTest9EE.crt",
4203 "third_party/nist-pkits/certs/InvaliddistributionPointTest2EE.crt",
4204 "third_party/nist-pkits/certs/InvaliddistributionPointTest3EE.crt",
4205 "third_party/nist-pkits/certs/InvaliddistributionPointTest6EE.crt",
4206 "third_party/nist-pkits/certs/InvaliddistributionPointTest8EE.crt",
4207 "third_party/nist-pkits/certs/InvaliddistributionPointTest9EE.crt",
4208 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest1EE.crt",
4209 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest4EE.crt",
4210 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest5EE.crt",
4211 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest6EE.crt",
4212 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest1EE.crt",
4213 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest3EE.crt",
4214 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest5EE.crt",
4215 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest6EE.crt",
4216 "third_party/nist-pkits/certs/InvalidkeyUsageCriticalcRLSignFalseTest4EE.crt",
4217 "third_party/nist-pkits/certs/InvalidkeyUsageCriticalkeyCertSignFalseTest1EE.crt",
4218 "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalcRLSignFalseTest5EE.crt",
4219 "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalkeyCertSignFalseTest2EE.crt",
4220 "third_party/nist-pkits/certs/InvalidonlyContainsAttributeCertsTest14EE.crt",
4221 "third_party/nist-pkits/certs/InvalidonlyContainsCACertsTest12EE.crt",
4222 "third_party/nist-pkits/certs/InvalidonlyContainsUserCertsTest11EE.crt",
4223 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest15EE.crt",
4224 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest16EE.crt",
4225 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest17EE.crt",
4226 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest20EE.crt",
4227 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest21EE.crt",
4228 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest10EE.crt",
4229 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest11EE.crt",
4230 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest12EE.crt",
4231 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest5EE.crt",
4232 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest6EE.crt",
4233 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest9EE.crt",
4234 "third_party/nist-pkits/certs/Invalidpre2000CRLnextUpdateTest12EE.crt",
4235 "third_party/nist-pkits/certs/Invalidpre2000UTCEEnotAfterDateTest7EE.crt",
4236 "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest3EE.crt",
4237 "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest5EE.crt",
4238 "third_party/nist-pkits/certs/LongSerialNumberCACert.crt",
4239 "third_party/nist-pkits/certs/Mapping1to2CACert.crt",
4240 "third_party/nist-pkits/certs/MappingFromanyPolicyCACert.crt",
4241 "third_party/nist-pkits/certs/MappingToanyPolicyCACert.crt",
4242 "third_party/nist-pkits/certs/MissingbasicConstraintsCACert.crt",
4243 "third_party/nist-pkits/certs/NameOrderingCACert.crt",
4244 "third_party/nist-pkits/certs/NegativeSerialNumberCACert.crt",
4245 "third_party/nist-pkits/certs/NoCRLCACert.crt",
4246 "third_party/nist-pkits/certs/NoPoliciesCACert.crt",
4247 "third_party/nist-pkits/certs/NoissuingDistributionPointCACert.crt",
4248 "third_party/nist-pkits/certs/OldCRLnextUpdateCACert.crt",
4249 "third_party/nist-pkits/certs/OverlappingPoliciesTest6EE.crt",
4250 "third_party/nist-pkits/certs/P12Mapping1to3CACert.crt",
4251 "third_party/nist-pkits/certs/P12Mapping1to3subCACert.crt",
4252 "third_party/nist-pkits/certs/P12Mapping1to3subsubCACert.crt",
4253 "third_party/nist-pkits/certs/P1Mapping1to234CACert.crt",
4254 "third_party/nist-pkits/certs/P1Mapping1to234subCACert.crt",
4255 "third_party/nist-pkits/certs/P1anyPolicyMapping1to2CACert.crt",
4256 "third_party/nist-pkits/certs/PanyPolicyMapping1to2CACert.crt",
4257 "third_party/nist-pkits/certs/PoliciesP1234CACert.crt",
4258 "third_party/nist-pkits/certs/PoliciesP1234subCAP123Cert.crt",
4259 "third_party/nist-pkits/certs/PoliciesP1234subsubCAP123P12Cert.crt",
4260 "third_party/nist-pkits/certs/PoliciesP123CACert.crt",
4261 "third_party/nist-pkits/certs/PoliciesP123subCAP12Cert.crt",
4262 "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P1Cert.crt",
4263 "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P2Cert.crt",
4264 "third_party/nist-pkits/certs/PoliciesP123subsubsubCAP12P2P1Cert.crt",
4265 "third_party/nist-pkits/certs/PoliciesP12CACert.crt",
4266 "third_party/nist-pkits/certs/PoliciesP12subCAP1Cert.crt",
4267 "third_party/nist-pkits/certs/PoliciesP12subsubCAP1P2Cert.crt",
4268 "third_party/nist-pkits/certs/PoliciesP2subCA2Cert.crt",
4269 "third_party/nist-pkits/certs/PoliciesP2subCACert.crt",
4270 "third_party/nist-pkits/certs/PoliciesP3CACert.crt",
4271 "third_party/nist-pkits/certs/RFC3280MandatoryAttributeTypesCACert.crt",
4272 "third_party/nist-pkits/certs/RFC3280OptionalAttributeTypesCACert.crt",
4273 "third_party/nist-pkits/certs/RevokedsubCACert.crt",
4274 "third_party/nist-pkits/certs/RolloverfromPrintableStringtoUTF8StringCACert.crt",
4275 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CRLSigningCert.crt",
4276 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CertificateSigningCACert.crt",
4277 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCRLSigningCert.crt",
4278 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCertificateSigningCACert.crt",
4279 "third_party/nist-pkits/certs/TrustAnchorRootCertificate.crt",
4280 "third_party/nist-pkits/certs/TwoCRLsCACert.crt",
4281 "third_party/nist-pkits/certs/UIDCACert.crt",
4282 "third_party/nist-pkits/certs/UTF8StringCaseInsensitiveMatchCACert.crt",
4283 "third_party/nist-pkits/certs/UTF8StringEncodedNamesCACert.crt",
4284 "third_party/nist-pkits/certs/UnknownCRLEntryExtensionCACert.crt",
4285 "third_party/nist-pkits/certs/UnknownCRLExtensionCACert.crt",
4286 "third_party/nist-pkits/certs/UserNoticeQualifierTest15EE.crt",
4287 "third_party/nist-pkits/certs/UserNoticeQualifierTest16EE.crt",
4288 "third_party/nist-pkits/certs/UserNoticeQualifierTest17EE.crt",
4289 "third_party/nist-pkits/certs/UserNoticeQualifierTest18EE.crt",
4290 "third_party/nist-pkits/certs/UserNoticeQualifierTest19EE.crt",
4291 "third_party/nist-pkits/certs/ValidBasicSelfIssuedCRLSigningKeyTest6EE.crt",
4292 "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest3EE.crt",
4293 "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest4EE.crt",
4294 "third_party/nist-pkits/certs/ValidBasicSelfIssuedOldWithNewTest1EE.crt",
4295 "third_party/nist-pkits/certs/ValidCertificatePathTest1EE.crt",
4296 "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest30EE.crt",
4297 "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest32EE.crt",
4298 "third_party/nist-pkits/certs/ValidDNandRFC822nameConstraintsTest27EE.crt",
4299 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest11EE.crt",
4300 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest14EE.crt",
4301 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest18EE.crt",
4302 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest19EE.crt",
4303 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest1EE.crt",
4304 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest4EE.crt",
4305 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest5EE.crt",
4306 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest6EE.crt",
4307 "third_party/nist-pkits/certs/ValidDSAParameterInheritanceTest5EE.crt",
4308 "third_party/nist-pkits/certs/ValidDSASignaturesTest4EE.crt",
4309 "third_party/nist-pkits/certs/ValidGeneralizedTimeCRLnextUpdateTest13EE.crt",
4310 "third_party/nist-pkits/certs/ValidGeneralizedTimenotAfterDateTest8EE.crt",
4311 "third_party/nist-pkits/certs/ValidGeneralizedTimenotBeforeDateTest4EE.crt",
4312 "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest22EE.crt",
4313 "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest24EE.crt",
4314 "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest25EE.crt",
4315 "third_party/nist-pkits/certs/ValidLongSerialNumberTest16EE.crt",
4316 "third_party/nist-pkits/certs/ValidLongSerialNumberTest17EE.crt",
4317 "third_party/nist-pkits/certs/ValidNameChainingCapitalizationTest5EE.crt",
4318 "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest3EE.crt",
4319 "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest4EE.crt",
4320 "third_party/nist-pkits/certs/ValidNameUIDsTest6EE.crt",
4321 "third_party/nist-pkits/certs/ValidNegativeSerialNumberTest14EE.crt",
4322 "third_party/nist-pkits/certs/ValidNoissuingDistributionPointTest10EE.crt",
4323 "third_party/nist-pkits/certs/ValidPolicyMappingTest11EE.crt",
4324 "third_party/nist-pkits/certs/ValidPolicyMappingTest12EE.crt",
4325 "third_party/nist-pkits/certs/ValidPolicyMappingTest13EE.crt",
4326 "third_party/nist-pkits/certs/ValidPolicyMappingTest14EE.crt",
4327 "third_party/nist-pkits/certs/ValidPolicyMappingTest1EE.crt",
4328 "third_party/nist-pkits/certs/ValidPolicyMappingTest3EE.crt",
4329 "third_party/nist-pkits/certs/ValidPolicyMappingTest5EE.crt",
4330 "third_party/nist-pkits/certs/ValidPolicyMappingTest6EE.crt",
4331 "third_party/nist-pkits/certs/ValidPolicyMappingTest9EE.crt",
4332 "third_party/nist-pkits/certs/ValidRFC3280MandatoryAttributeTypesTest7EE.crt",
4333 "third_party/nist-pkits/certs/ValidRFC3280OptionalAttributeTypesTest8EE.crt",
4334 "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest21EE.crt",
4335 "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest23EE.crt",
4336 "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest25EE.crt",
4337 "third_party/nist-pkits/certs/ValidRolloverfromPrintableStringtoUTF8StringTest10EE.crt",
4338 "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest7EE.crt",
4339 "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest9EE.crt",
4340 "third_party/nist-pkits/certs/ValidSelfIssuedinhibitPolicyMappingTest7EE.crt",
4341 "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest15EE.crt",
4342 "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest17EE.crt",
4343 "third_party/nist-pkits/certs/ValidSelfIssuedrequireExplicitPolicyTest6EE.crt",
4344 "third_party/nist-pkits/certs/ValidSeparateCertificateandCRLKeysTest19EE.crt",
4345 "third_party/nist-pkits/certs/ValidTwoCRLsTest7EE.crt",
4346 "third_party/nist-pkits/certs/ValidURInameConstraintsTest34EE.crt",
4347 "third_party/nist-pkits/certs/ValidURInameConstraintsTest36EE.crt",
4348 "third_party/nist-pkits/certs/ValidUTF8StringCaseInsensitiveMatchTest11EE.crt",
4349 "third_party/nist-pkits/certs/ValidUTF8StringEncodedNamesTest9EE.crt",
4350 "third_party/nist-pkits/certs/ValidUnknownNotCriticalCertificateExtensionTest1EE.crt",
4351 "third_party/nist-pkits/certs/ValidbasicConstraintsNotCriticalTest4EE.crt",
4352 "third_party/nist-pkits/certs/ValidcRLIssuerTest28EE.crt",
4353 "third_party/nist-pkits/certs/ValidcRLIssuerTest29EE.crt",
4354 "third_party/nist-pkits/certs/ValidcRLIssuerTest30EE.crt",
4355 "third_party/nist-pkits/certs/ValidcRLIssuerTest33EE.crt",
4356 "third_party/nist-pkits/certs/ValiddeltaCRLTest2EE.crt",
4357 "third_party/nist-pkits/certs/ValiddeltaCRLTest5EE.crt",
4358 "third_party/nist-pkits/certs/ValiddeltaCRLTest7EE.crt",
4359 "third_party/nist-pkits/certs/ValiddeltaCRLTest8EE.crt",
4360 "third_party/nist-pkits/certs/ValiddistributionPointTest1EE.crt",
4361 "third_party/nist-pkits/certs/ValiddistributionPointTest4EE.crt",
4362 "third_party/nist-pkits/certs/ValiddistributionPointTest5EE.crt",
4363 "third_party/nist-pkits/certs/ValiddistributionPointTest7EE.crt",
4364 "third_party/nist-pkits/certs/ValidinhibitAnyPolicyTest2EE.crt",
4365 "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest2EE.crt",
4366 "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest4EE.crt",
4367 "third_party/nist-pkits/certs/ValidkeyUsageNotCriticalTest3EE.crt",
4368 "third_party/nist-pkits/certs/ValidonlyContainsCACertsTest13EE.crt",
4369 "third_party/nist-pkits/certs/ValidonlySomeReasonsTest18EE.crt",
4370 "third_party/nist-pkits/certs/ValidonlySomeReasonsTest19EE.crt",
4371 "third_party/nist-pkits/certs/ValidpathLenConstraintTest13EE.crt",
4372 "third_party/nist-pkits/certs/ValidpathLenConstraintTest14EE.crt",
4373 "third_party/nist-pkits/certs/ValidpathLenConstraintTest7EE.crt",
4374 "third_party/nist-pkits/certs/ValidpathLenConstraintTest8EE.crt",
4375 "third_party/nist-pkits/certs/Validpre2000UTCnotBeforeDateTest3EE.crt",
4376 "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest1EE.crt",
4377 "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest2EE.crt",
4378 "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest4EE.crt",
4379 "third_party/nist-pkits/certs/WrongCRLCACert.crt",
4380 "third_party/nist-pkits/certs/anyPolicyCACert.crt",
4381 "third_party/nist-pkits/certs/basicConstraintsCriticalcAFalseCACert.crt",
4382 "third_party/nist-pkits/certs/basicConstraintsNotCriticalCACert.crt",
4383 "third_party/nist-pkits/certs/basicConstraintsNotCriticalcAFalseCACert.crt",
4384 "third_party/nist-pkits/certs/deltaCRLCA1Cert.crt",
4385 "third_party/nist-pkits/certs/deltaCRLCA2Cert.crt",
4386 "third_party/nist-pkits/certs/deltaCRLCA3Cert.crt",
4387 "third_party/nist-pkits/certs/deltaCRLIndicatorNoBaseCACert.crt",
4388 "third_party/nist-pkits/certs/distributionPoint1CACert.crt",
4389 "third_party/nist-pkits/certs/distributionPoint2CACert.crt",
4390 "third_party/nist-pkits/certs/indirectCRLCA1Cert.crt",
4391 "third_party/nist-pkits/certs/indirectCRLCA2Cert.crt",
4392 "third_party/nist-pkits/certs/indirectCRLCA3Cert.crt",
4393 "third_party/nist-pkits/certs/indirectCRLCA3cRLIssuerCert.crt",
4394 "third_party/nist-pkits/certs/indirectCRLCA4Cert.crt",
4395 "third_party/nist-pkits/certs/indirectCRLCA4cRLIssuerCert.crt",
4396 "third_party/nist-pkits/certs/indirectCRLCA5Cert.crt",
4397 "third_party/nist-pkits/certs/indirectCRLCA6Cert.crt",
4398 "third_party/nist-pkits/certs/inhibitAnyPolicy0CACert.crt",
4399 "third_party/nist-pkits/certs/inhibitAnyPolicy1CACert.crt",
4400 "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedCACert.crt",
4401 "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedsubCA2Cert.crt",
4402 "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA1Cert.crt",
4403 "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA2Cert.crt",
4404 "third_party/nist-pkits/certs/inhibitAnyPolicy1subCAIAP5Cert.crt",
4405 "third_party/nist-pkits/certs/inhibitAnyPolicy1subsubCA2Cert.crt",
4406 "third_party/nist-pkits/certs/inhibitAnyPolicy5CACert.crt",
4407 "third_party/nist-pkits/certs/inhibitAnyPolicy5subCACert.crt",
4408 "third_party/nist-pkits/certs/inhibitAnyPolicy5subsubCACert.crt",
4409 "third_party/nist-pkits/certs/inhibitAnyPolicyTest3EE.crt",
4410 "third_party/nist-pkits/certs/inhibitPolicyMapping0CACert.crt",
4411 "third_party/nist-pkits/certs/inhibitPolicyMapping0subCACert.crt",
4412 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12CACert.crt",
4413 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCACert.crt",
4414 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCAIPM5Cert.crt",
4415 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCACert.crt",
4416 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCAIPM5Cert.crt",
4417 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1CACert.crt",
4418 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedCACert.crt",
4419 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedsubCACert.crt",
4420 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subCACert.crt",
4421 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subsubCACert.crt",
4422 "third_party/nist-pkits/certs/inhibitPolicyMapping5CACert.crt",
4423 "third_party/nist-pkits/certs/inhibitPolicyMapping5subCACert.crt",
4424 "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubCACert.crt",
4425 "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubsubCACert.crt",
4426 "third_party/nist-pkits/certs/keyUsageCriticalcRLSignFalseCACert.crt",
4427 "third_party/nist-pkits/certs/keyUsageCriticalkeyCertSignFalseCACert.crt",
4428 "third_party/nist-pkits/certs/keyUsageNotCriticalCACert.crt",
4429 "third_party/nist-pkits/certs/keyUsageNotCriticalcRLSignFalseCACert.crt",
4430 "third_party/nist-pkits/certs/keyUsageNotCriticalkeyCertSignFalseCACert.crt",
4431 "third_party/nist-pkits/certs/nameConstraintsDN1CACert.crt",
4432 "third_party/nist-pkits/certs/nameConstraintsDN1SelfIssuedCACert.crt",
4433 "third_party/nist-pkits/certs/nameConstraintsDN1subCA1Cert.crt",
4434 "third_party/nist-pkits/certs/nameConstraintsDN1subCA2Cert.crt",
4435 "third_party/nist-pkits/certs/nameConstraintsDN1subCA3Cert.crt",
4436 "third_party/nist-pkits/certs/nameConstraintsDN2CACert.crt",
4437 "third_party/nist-pkits/certs/nameConstraintsDN3CACert.crt",
4438 "third_party/nist-pkits/certs/nameConstraintsDN3subCA1Cert.crt",
4439 "third_party/nist-pkits/certs/nameConstraintsDN3subCA2Cert.crt",
4440 "third_party/nist-pkits/certs/nameConstraintsDN4CACert.crt",
4441 "third_party/nist-pkits/certs/nameConstraintsDN5CACert.crt",
4442 "third_party/nist-pkits/certs/nameConstraintsDNS1CACert.crt",
4443 "third_party/nist-pkits/certs/nameConstraintsDNS2CACert.crt",
4444 "third_party/nist-pkits/certs/nameConstraintsRFC822CA1Cert.crt",
4445 "third_party/nist-pkits/certs/nameConstraintsRFC822CA2Cert.crt",
4446 "third_party/nist-pkits/certs/nameConstraintsRFC822CA3Cert.crt",
4447 "third_party/nist-pkits/certs/nameConstraintsURI1CACert.crt",
4448 "third_party/nist-pkits/certs/nameConstraintsURI2CACert.crt",
4449 "third_party/nist-pkits/certs/onlyContainsAttributeCertsCACert.crt",
4450 "third_party/nist-pkits/certs/onlyContainsCACertsCACert.crt",
4451 "third_party/nist-pkits/certs/onlyContainsUserCertsCACert.crt",
4452 "third_party/nist-pkits/certs/onlySomeReasonsCA1Cert.crt",
4453 "third_party/nist-pkits/certs/onlySomeReasonsCA2Cert.crt",
4454 "third_party/nist-pkits/certs/onlySomeReasonsCA3Cert.crt",
4455 "third_party/nist-pkits/certs/onlySomeReasonsCA4Cert.crt",
4456 "third_party/nist-pkits/certs/pathLenConstraint0CACert.crt",
4457 "third_party/nist-pkits/certs/pathLenConstraint0SelfIssuedCACert.crt",
4458 "third_party/nist-pkits/certs/pathLenConstraint0subCA2Cert.crt",
4459 "third_party/nist-pkits/certs/pathLenConstraint0subCACert.crt",
4460 "third_party/nist-pkits/certs/pathLenConstraint1CACert.crt",
4461 "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedCACert.crt",
4462 "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedsubCACert.crt",
4463 "third_party/nist-pkits/certs/pathLenConstraint1subCACert.crt",
4464 "third_party/nist-pkits/certs/pathLenConstraint6CACert.crt",
4465 "third_party/nist-pkits/certs/pathLenConstraint6subCA0Cert.crt",
4466 "third_party/nist-pkits/certs/pathLenConstraint6subCA1Cert.crt",
4467 "third_party/nist-pkits/certs/pathLenConstraint6subCA4Cert.crt",
4468 "third_party/nist-pkits/certs/pathLenConstraint6subsubCA00Cert.crt",
4469 "third_party/nist-pkits/certs/pathLenConstraint6subsubCA11Cert.crt",
4470 "third_party/nist-pkits/certs/pathLenConstraint6subsubCA41Cert.crt",
4471 "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA11XCert.crt",
4472 "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA41XCert.crt",
4473 "third_party/nist-pkits/certs/pre2000CRLnextUpdateCACert.crt",
4474 "third_party/nist-pkits/certs/requireExplicitPolicy0CACert.crt",
4475 "third_party/nist-pkits/certs/requireExplicitPolicy0subCACert.crt",
4476 "third_party/nist-pkits/certs/requireExplicitPolicy0subsubCACert.crt",
4477 "third_party/nist-pkits/certs/requireExplicitPolicy0subsubsubCACert.crt",
4478 "third_party/nist-pkits/certs/requireExplicitPolicy10CACert.crt",
4479 "third_party/nist-pkits/certs/requireExplicitPolicy10subCACert.crt",
4480 "third_party/nist-pkits/certs/requireExplicitPolicy10subsubCACert.crt",
4481 "third_party/nist-pkits/certs/requireExplicitPolicy10subsubsubCACert.crt",
4482 "third_party/nist-pkits/certs/requireExplicitPolicy2CACert.crt",
4483 "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedCACert.crt",
4484 "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedsubCACert.crt",
4485 "third_party/nist-pkits/certs/requireExplicitPolicy2subCACert.crt",
4486 "third_party/nist-pkits/certs/requireExplicitPolicy4CACert.crt",
4487 "third_party/nist-pkits/certs/requireExplicitPolicy4subCACert.crt",
4488 "third_party/nist-pkits/certs/requireExplicitPolicy4subsubCACert.crt",
4489 "third_party/nist-pkits/certs/requireExplicitPolicy4subsubsubCACert.crt",
4490 "third_party/nist-pkits/certs/requireExplicitPolicy5CACert.crt",
4491 "third_party/nist-pkits/certs/requireExplicitPolicy5subCACert.crt",
4492 "third_party/nist-pkits/certs/requireExplicitPolicy5subsubCACert.crt",
4493 "third_party/nist-pkits/certs/requireExplicitPolicy5subsubsubCACert.crt",
4494 "third_party/nist-pkits/certs/requireExplicitPolicy7CACert.crt",
4495 "third_party/nist-pkits/certs/requireExplicitPolicy7subCARE2Cert.crt",
4496 "third_party/nist-pkits/certs/requireExplicitPolicy7subsubCARE2RE4Cert.crt",
4497 "third_party/nist-pkits/certs/requireExplicitPolicy7subsubsubCARE2RE4Cert.crt",
4498 "third_party/nist-pkits/crls/BadCRLIssuerNameCACRL.crl",
4499 "third_party/nist-pkits/crls/BadCRLSignatureCACRL.crl",
4500 "third_party/nist-pkits/crls/BadSignedCACRL.crl",
4501 "third_party/nist-pkits/crls/BadnotAfterDateCACRL.crl",
4502 "third_party/nist-pkits/crls/BadnotBeforeDateCACRL.crl",
4503 "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCACRL.crl",
4504 "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCRLCertCRL.crl",
4505 "third_party/nist-pkits/crls/BasicSelfIssuedNewKeyCACRL.crl",
4506 "third_party/nist-pkits/crls/BasicSelfIssuedOldKeyCACRL.crl",
4507 "third_party/nist-pkits/crls/BasicSelfIssuedOldKeySelfIssuedCertCRL.crl",
4508 "third_party/nist-pkits/crls/DSACACRL.crl",
4509 "third_party/nist-pkits/crls/DSAParametersInheritedCACRL.crl",
4510 "third_party/nist-pkits/crls/GeneralizedTimeCRLnextUpdateCACRL.crl",
4511 "third_party/nist-pkits/crls/GoodCACRL.crl",
4512 "third_party/nist-pkits/crls/GoodsubCACRL.crl",
4513 "third_party/nist-pkits/crls/GoodsubCAPanyPolicyMapping1to2CACRL.crl",
4514 "third_party/nist-pkits/crls/LongSerialNumberCACRL.crl",
4515 "third_party/nist-pkits/crls/Mapping1to2CACRL.crl",
4516 "third_party/nist-pkits/crls/MappingFromanyPolicyCACRL.crl",
4517 "third_party/nist-pkits/crls/MappingToanyPolicyCACRL.crl",
4518 "third_party/nist-pkits/crls/MissingbasicConstraintsCACRL.crl",
4519 "third_party/nist-pkits/crls/NameOrderCACRL.crl",
4520 "third_party/nist-pkits/crls/NegativeSerialNumberCACRL.crl",
4521 "third_party/nist-pkits/crls/NoPoliciesCACRL.crl",
4522 "third_party/nist-pkits/crls/NoissuingDistributionPointCACRL.crl",
4523 "third_party/nist-pkits/crls/OldCRLnextUpdateCACRL.crl",
4524 "third_party/nist-pkits/crls/P12Mapping1to3CACRL.crl",
4525 "third_party/nist-pkits/crls/P12Mapping1to3subCACRL.crl",
4526 "third_party/nist-pkits/crls/P12Mapping1to3subsubCACRL.crl",
4527 "third_party/nist-pkits/crls/P1Mapping1to234CACRL.crl",
4528 "third_party/nist-pkits/crls/P1Mapping1to234subCACRL.crl",
4529 "third_party/nist-pkits/crls/P1anyPolicyMapping1to2CACRL.crl",
4530 "third_party/nist-pkits/crls/PanyPolicyMapping1to2CACRL.crl",
4531 "third_party/nist-pkits/crls/PoliciesP1234CACRL.crl",
4532 "third_party/nist-pkits/crls/PoliciesP1234subCAP123CRL.crl",
4533 "third_party/nist-pkits/crls/PoliciesP1234subsubCAP123P12CRL.crl",
4534 "third_party/nist-pkits/crls/PoliciesP123CACRL.crl",
4535 "third_party/nist-pkits/crls/PoliciesP123subCAP12CRL.crl",
4536 "third_party/nist-pkits/crls/PoliciesP123subsubCAP12P1CRL.crl",
4537 "third_party/nist-pkits/crls/PoliciesP123subsubCAP2P2CRL.crl",
4538 "third_party/nist-pkits/crls/PoliciesP123subsubsubCAP12P2P1CRL.crl",
4539 "third_party/nist-pkits/crls/PoliciesP12CACRL.crl",
4540 "third_party/nist-pkits/crls/PoliciesP12subCAP1CRL.crl",
4541 "third_party/nist-pkits/crls/PoliciesP12subsubCAP1P2CRL.crl",
4542 "third_party/nist-pkits/crls/PoliciesP2subCA2CRL.crl",
4543 "third_party/nist-pkits/crls/PoliciesP2subCACRL.crl",
4544 "third_party/nist-pkits/crls/PoliciesP3CACRL.crl",
4545 "third_party/nist-pkits/crls/RFC3280MandatoryAttributeTypesCACRL.crl",
4546 "third_party/nist-pkits/crls/RFC3280OptionalAttributeTypesCACRL.crl",
4547 "third_party/nist-pkits/crls/RevokedsubCACRL.crl",
4548 "third_party/nist-pkits/crls/RolloverfromPrintableStringtoUTF8StringCACRL.crl",
4549 "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCA2CRL.crl",
4550 "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCRL.crl",
4551 "third_party/nist-pkits/crls/TrustAnchorRootCRL.crl",
4552 "third_party/nist-pkits/crls/TwoCRLsCABadCRL.crl",
4553 "third_party/nist-pkits/crls/TwoCRLsCAGoodCRL.crl",
4554 "third_party/nist-pkits/crls/UIDCACRL.crl",
4555 "third_party/nist-pkits/crls/UTF8StringCaseInsensitiveMatchCACRL.crl",
4556 "third_party/nist-pkits/crls/UTF8StringEncodedNamesCACRL.crl",
4557 "third_party/nist-pkits/crls/UnknownCRLEntryExtensionCACRL.crl",
4558 "third_party/nist-pkits/crls/UnknownCRLExtensionCACRL.crl",
4559 "third_party/nist-pkits/crls/WrongCRLCACRL.crl",
4560 "third_party/nist-pkits/crls/anyPolicyCACRL.crl",
4561 "third_party/nist-pkits/crls/basicConstraintsCriticalcAFalseCACRL.crl",
4562 "third_party/nist-pkits/crls/basicConstraintsNotCriticalCACRL.crl",
4563 "third_party/nist-pkits/crls/basicConstraintsNotCriticalcAFalseCACRL.crl",
4564 "third_party/nist-pkits/crls/deltaCRLCA1CRL.crl",
4565 "third_party/nist-pkits/crls/deltaCRLCA1deltaCRL.crl",
4566 "third_party/nist-pkits/crls/deltaCRLCA2CRL.crl",
4567 "third_party/nist-pkits/crls/deltaCRLCA2deltaCRL.crl",
4568 "third_party/nist-pkits/crls/deltaCRLCA3CRL.crl",
4569 "third_party/nist-pkits/crls/deltaCRLCA3deltaCRL.crl",
4570 "third_party/nist-pkits/crls/deltaCRLIndicatorNoBaseCACRL.crl",
4571 "third_party/nist-pkits/crls/distributionPoint1CACRL.crl",
4572 "third_party/nist-pkits/crls/distributionPoint2CACRL.crl",
4573 "third_party/nist-pkits/crls/indirectCRLCA1CRL.crl",
4574 "third_party/nist-pkits/crls/indirectCRLCA3CRL.crl",
4575 "third_party/nist-pkits/crls/indirectCRLCA3cRLIssuerCRL.crl",
4576 "third_party/nist-pkits/crls/indirectCRLCA4cRLIssuerCRL.crl",
4577 "third_party/nist-pkits/crls/indirectCRLCA5CRL.crl",
4578 "third_party/nist-pkits/crls/inhibitAnyPolicy0CACRL.crl",
4579 "third_party/nist-pkits/crls/inhibitAnyPolicy1CACRL.crl",
4580 "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA1CRL.crl",
4581 "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA2CRL.crl",
4582 "third_party/nist-pkits/crls/inhibitAnyPolicy1subCAIAP5CRL.crl",
4583 "third_party/nist-pkits/crls/inhibitAnyPolicy1subsubCA2CRL.crl",
4584 "third_party/nist-pkits/crls/inhibitAnyPolicy5CACRL.crl",
4585 "third_party/nist-pkits/crls/inhibitAnyPolicy5subCACRL.crl",
4586 "third_party/nist-pkits/crls/inhibitAnyPolicy5subsubCACRL.crl",
4587 "third_party/nist-pkits/crls/inhibitPolicyMapping0CACRL.crl",
4588 "third_party/nist-pkits/crls/inhibitPolicyMapping0subCACRL.crl",
4589 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12CACRL.crl",
4590 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCACRL.crl",
4591 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCAIPM5CRL.crl",
4592 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCACRL.crl",
4593 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCAIPM5CRL.crl",
4594 "third_party/nist-pkits/crls/inhibitPolicyMapping1P1CACRL.crl",
4595 "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subCACRL.crl",
4596 "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subsubCACRL.crl",
4597 "third_party/nist-pkits/crls/inhibitPolicyMapping5CACRL.crl",
4598 "third_party/nist-pkits/crls/inhibitPolicyMapping5subCACRL.crl",
4599 "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubCACRL.crl",
4600 "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubsubCACRL.crl",
4601 "third_party/nist-pkits/crls/keyUsageCriticalcRLSignFalseCACRL.crl",
4602 "third_party/nist-pkits/crls/keyUsageCriticalkeyCertSignFalseCACRL.crl",
4603 "third_party/nist-pkits/crls/keyUsageNotCriticalCACRL.crl",
4604 "third_party/nist-pkits/crls/keyUsageNotCriticalcRLSignFalseCACRL.crl",
4605 "third_party/nist-pkits/crls/keyUsageNotCriticalkeyCertSignFalseCACRL.crl",
4606 "third_party/nist-pkits/crls/nameConstraintsDN1CACRL.crl",
4607 "third_party/nist-pkits/crls/nameConstraintsDN1subCA1CRL.crl",
4608 "third_party/nist-pkits/crls/nameConstraintsDN1subCA2CRL.crl",
4609 "third_party/nist-pkits/crls/nameConstraintsDN1subCA3CRL.crl",
4610 "third_party/nist-pkits/crls/nameConstraintsDN2CACRL.crl",
4611 "third_party/nist-pkits/crls/nameConstraintsDN3CACRL.crl",
4612 "third_party/nist-pkits/crls/nameConstraintsDN3subCA1CRL.crl",
4613 "third_party/nist-pkits/crls/nameConstraintsDN3subCA2CRL.crl",
4614 "third_party/nist-pkits/crls/nameConstraintsDN4CACRL.crl",
4615 "third_party/nist-pkits/crls/nameConstraintsDN5CACRL.crl",
4616 "third_party/nist-pkits/crls/nameConstraintsDNS1CACRL.crl",
4617 "third_party/nist-pkits/crls/nameConstraintsDNS2CACRL.crl",
4618 "third_party/nist-pkits/crls/nameConstraintsRFC822CA1CRL.crl",
4619 "third_party/nist-pkits/crls/nameConstraintsRFC822CA2CRL.crl",
4620 "third_party/nist-pkits/crls/nameConstraintsRFC822CA3CRL.crl",
4621 "third_party/nist-pkits/crls/nameConstraintsURI1CACRL.crl",
4622 "third_party/nist-pkits/crls/nameConstraintsURI2CACRL.crl",
4623 "third_party/nist-pkits/crls/onlyContainsAttributeCertsCACRL.crl",
4624 "third_party/nist-pkits/crls/onlyContainsCACertsCACRL.crl",
4625 "third_party/nist-pkits/crls/onlyContainsUserCertsCACRL.crl",
4626 "third_party/nist-pkits/crls/onlySomeReasonsCA1compromiseCRL.crl",
4627 "third_party/nist-pkits/crls/onlySomeReasonsCA1otherreasonsCRL.crl",
4628 "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL1.crl",
4629 "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL2.crl",
4630 "third_party/nist-pkits/crls/onlySomeReasonsCA3compromiseCRL.crl",
4631 "third_party/nist-pkits/crls/onlySomeReasonsCA3otherreasonsCRL.crl",
4632 "third_party/nist-pkits/crls/onlySomeReasonsCA4compromiseCRL.crl",
4633 "third_party/nist-pkits/crls/onlySomeReasonsCA4otherreasonsCRL.crl",
4634 "third_party/nist-pkits/crls/pathLenConstraint0CACRL.crl",
4635 "third_party/nist-pkits/crls/pathLenConstraint0subCA2CRL.crl",
4636 "third_party/nist-pkits/crls/pathLenConstraint0subCACRL.crl",
4637 "third_party/nist-pkits/crls/pathLenConstraint1CACRL.crl",
4638 "third_party/nist-pkits/crls/pathLenConstraint1subCACRL.crl",
4639 "third_party/nist-pkits/crls/pathLenConstraint6CACRL.crl",
4640 "third_party/nist-pkits/crls/pathLenConstraint6subCA0CRL.crl",
4641 "third_party/nist-pkits/crls/pathLenConstraint6subCA1CRL.crl",
4642 "third_party/nist-pkits/crls/pathLenConstraint6subCA4CRL.crl",
4643 "third_party/nist-pkits/crls/pathLenConstraint6subsubCA00CRL.crl",
4644 "third_party/nist-pkits/crls/pathLenConstraint6subsubCA11CRL.crl",
4645 "third_party/nist-pkits/crls/pathLenConstraint6subsubCA41CRL.crl",
4646 "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA11XCRL.crl",
4647 "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA41XCRL.crl",
4648 "third_party/nist-pkits/crls/pre2000CRLnextUpdateCACRL.crl",
4649 "third_party/nist-pkits/crls/requireExplicitPolicy0CACRL.crl",
4650 "third_party/nist-pkits/crls/requireExplicitPolicy0subCACRL.crl",
4651 "third_party/nist-pkits/crls/requireExplicitPolicy0subsubCACRL.crl",
4652 "third_party/nist-pkits/crls/requireExplicitPolicy0subsubsubCACRL.crl",
4653 "third_party/nist-pkits/crls/requireExplicitPolicy10CACRL.crl",
4654 "third_party/nist-pkits/crls/requireExplicitPolicy10subCACRL.crl",
4655 "third_party/nist-pkits/crls/requireExplicitPolicy10subsubCACRL.crl",
4656 "third_party/nist-pkits/crls/requireExplicitPolicy10subsubsubCACRL.crl",
4657 "third_party/nist-pkits/crls/requireExplicitPolicy2CACRL.crl",
4658 "third_party/nist-pkits/crls/requireExplicitPolicy2subCACRL.crl",
4659 "third_party/nist-pkits/crls/requireExplicitPolicy4CACRL.crl",
4660 "third_party/nist-pkits/crls/requireExplicitPolicy4subCACRL.crl",
4661 "third_party/nist-pkits/crls/requireExplicitPolicy4subsubCACRL.crl",
4662 "third_party/nist-pkits/crls/requireExplicitPolicy4subsubsubCACRL.crl",
4663 "third_party/nist-pkits/crls/requireExplicitPolicy5CACRL.crl",
4664 "third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl",
4665 "third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl",
4666 "third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl",
4667 "third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl",
4668 "third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl",
4669 "third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl",
4670 "third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.crl",
4671 ]
sdefresneb0a31642016-03-18 11:04:454672 outputs = [
4673 "{{bundle_resources_dir}}/" +
4674 "{{source_root_relative_dir}}/{{source_file_part}}",
4675 ]
4676}
4677
dpranke64df2832015-07-31 22:33:364678test("net_unittests") {
ckrasic73f7240b2017-01-24 00:06:454679 sources = [
4680 "android/cellular_signal_strength_unittest.cc",
4681 "android/dummy_spnego_authenticator.cc",
4682 "android/dummy_spnego_authenticator.h",
4683 "android/http_auth_negotiate_android_unittest.cc",
4684 "android/network_change_notifier_android_unittest.cc",
4685 "android/network_library_unittest.cc",
4686 "android/traffic_stats_unittest.cc",
4687 "base/address_family_unittest.cc",
4688 "base/address_list_unittest.cc",
4689 "base/address_tracker_linux_unittest.cc",
4690 "base/arena_unittest.cc",
4691 "base/backoff_entry_serializer_unittest.cc",
4692 "base/backoff_entry_unittest.cc",
4693 "base/chunked_upload_data_stream_unittest.cc",
4694 "base/data_url_unittest.cc",
Charles 'Buck' Krasiced43ded2018-03-23 18:48:124695 "base/datagram_buffer_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454696 "base/directory_lister_unittest.cc",
4697 "base/directory_listing_unittest.cc",
4698 "base/elements_upload_data_stream_unittest.cc",
4699 "base/escape_unittest.cc",
4700 "base/expiring_cache_unittest.cc",
4701 "base/file_stream_unittest.cc",
4702 "base/filename_util_unittest.cc",
Bence Békyd5c16edf2017-08-04 17:32:304703 "base/hex_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:454704 "base/host_mapping_rules_unittest.cc",
4705 "base/host_port_pair_unittest.cc",
4706 "base/int128_unittest.cc",
fayangbaec8ff52017-01-28 03:26:124707 "base/interval_set_test.cc",
4708 "base/interval_test.cc",
ckrasic73f7240b2017-01-24 00:06:454709 "base/ip_address_unittest.cc",
4710 "base/ip_endpoint_unittest.cc",
4711 "base/ip_pattern_unittest.cc",
4712 "base/layered_network_delegate_unittest.cc",
4713 "base/lookup_string_in_fixed_set_unittest.cc",
4714 "base/mime_sniffer_unittest.cc",
4715 "base/mime_util_unittest.cc",
Zentaro Kavanagha02f1da2017-09-26 23:56:064716 "base/net_string_util_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454717 "base/network_activity_monitor_unittest.cc",
4718 "base/network_change_notifier_unittest.cc",
4719 "base/network_change_notifier_win_unittest.cc",
Sergey Ulanov5bb07d32017-07-12 04:14:544720 "base/network_interfaces_linux_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454721 "base/network_interfaces_unittest.cc",
Sergey Ulanov5bb07d32017-07-12 04:14:544722 "base/network_interfaces_win_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454723 "base/parse_number_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454724 "base/port_util_unittest.cc",
4725 "base/prioritized_dispatcher_unittest.cc",
4726 "base/priority_queue_unittest.cc",
4727 "base/registry_controlled_domains/registry_controlled_domain_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454728 "base/static_cookie_policy_unittest.cc",
4729 "base/test_completion_callback_unittest.cc",
4730 "base/test_proxy_delegate.cc",
4731 "base/test_proxy_delegate.h",
4732 "base/upload_bytes_element_reader_unittest.cc",
4733 "base/upload_file_element_reader_unittest.cc",
4734 "base/url_util_unittest.cc",
4735 "cert/caching_cert_verifier_unittest.cc",
4736 "cert/cert_verifier_unittest.cc",
estarkd91e0b22017-01-31 01:10:284737 "cert/cert_verify_proc_android_unittest.cc",
Eugene Butd4d01fd2018-04-14 02:38:294738 "cert/cert_verify_proc_ios_unittest.cc",
eromance65aff2017-02-04 00:05:324739 "cert/cert_verify_proc_mac_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454740 "cert/cert_verify_proc_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454741 "cert/crl_set_unittest.cc",
4742 "cert/ct_known_logs_unittest.cc",
4743 "cert/ct_log_response_parser_unittest.cc",
4744 "cert/ct_log_verifier_unittest.cc",
4745 "cert/ct_objects_extractor_unittest.cc",
4746 "cert/ct_policy_enforcer_unittest.cc",
4747 "cert/ct_serialization_unittest.cc",
4748 "cert/ev_root_ca_metadata_unittest.cc",
4749 "cert/internal/cert_issuer_source_aia_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454750 "cert/internal/cert_issuer_source_static_unittest.cc",
4751 "cert/internal/cert_issuer_source_sync_unittest.h",
4752 "cert/internal/certificate_policies_unittest.cc",
4753 "cert/internal/extended_key_usage_unittest.cc",
Matt Mueller9e3ad3032017-09-14 19:29:314754 "cert/internal/general_names_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454755 "cert/internal/name_constraints_unittest.cc",
eromanc95383ac2017-05-26 19:37:304756 "cert/internal/nist_pkits_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454757 "cert/internal/nist_pkits_unittest.h",
Eric Romana2f6f55d2017-09-07 23:34:574758 "cert/internal/ocsp_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454759 "cert/internal/parse_certificate_unittest.cc",
4760 "cert/internal/parse_name_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454761 "cert/internal/parsed_certificate_unittest.cc",
4762 "cert/internal/path_builder_pkits_unittest.cc",
4763 "cert/internal/path_builder_unittest.cc",
4764 "cert/internal/path_builder_verify_certificate_chain_unittest.cc",
Eric Romancc56d16f2017-10-11 23:04:264765 "cert/internal/revocation_checker_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454766 "cert/internal/signature_algorithm_unittest.cc",
Eric Roman5431d702017-07-26 01:58:184767 "cert/internal/simple_path_builder_delegate_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454768 "cert/internal/test_helpers.cc",
4769 "cert/internal/test_helpers.h",
4770 "cert/internal/trust_store_collection_unittest.cc",
mattmea4ed8232017-02-28 23:13:234771 "cert/internal/trust_store_mac_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454772 "cert/internal/trust_store_nss_unittest.cc",
4773 "cert/internal/verify_certificate_chain_pkits_unittest.cc",
4774 "cert/internal/verify_certificate_chain_typed_unittest.h",
4775 "cert/internal/verify_certificate_chain_unittest.cc",
4776 "cert/internal/verify_name_match_unittest.cc",
4777 "cert/internal/verify_signed_data_unittest.cc",
4778 "cert/jwk_serializer_unittest.cc",
Ryan Sleevi19a7bde2017-11-22 06:51:394779 "cert/known_roots_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454780 "cert/merkle_audit_proof_unittest.cc",
4781 "cert/merkle_tree_leaf_unittest.cc",
4782 "cert/multi_log_ct_verifier_unittest.cc",
4783 "cert/multi_threaded_cert_verifier_unittest.cc",
4784 "cert/nss_cert_database_chromeos_unittest.cc",
4785 "cert/nss_cert_database_unittest.cc",
4786 "cert/nss_profile_filter_chromeos_unittest.cc",
4787 "cert/pem_tokenizer_unittest.cc",
4788 "cert/signed_certificate_timestamp_unittest.cc",
Emily Starkd29cdae2017-09-16 01:59:344789 "cert/symantec_certs_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454790 "cert/test_root_certs_unittest.cc",
4791 "cert/x509_cert_types_unittest.cc",
4792 "cert/x509_certificate_unittest.cc",
mattm1a07e632017-05-16 05:55:504793 "cert/x509_util_ios_and_mac_unittest.cc",
Matt Mueller10684c92017-08-09 07:24:094794 "cert/x509_util_nss_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454795 "cert/x509_util_unittest.cc",
4796 "cert_net/cert_net_fetcher_impl_unittest.cc",
4797 "cert_net/nss_ocsp_unittest.cc",
4798 "cookies/canonical_cookie_unittest.cc",
4799 "cookies/cookie_constants_unittest.cc",
4800 "cookies/cookie_monster_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454801 "cookies/cookie_util_unittest.cc",
4802 "cookies/parsed_cookie_unittest.cc",
4803 "der/encode_values_unittest.cc",
4804 "der/input_unittest.cc",
4805 "der/parse_values_unittest.cc",
4806 "der/parser_unittest.cc",
Maks Orlovich036fd1f2017-08-07 17:51:114807 "disk_cache/backend_cleanup_tracker_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454808 "disk_cache/backend_unittest.cc",
4809 "disk_cache/blockfile/addr_unittest.cc",
4810 "disk_cache/blockfile/bitmap_unittest.cc",
4811 "disk_cache/blockfile/block_files_unittest.cc",
4812 "disk_cache/blockfile/mapped_file_unittest.cc",
4813 "disk_cache/blockfile/stats_unittest.cc",
4814 "disk_cache/blockfile/storage_block_unittest.cc",
4815 "disk_cache/cache_util_unittest.cc",
4816 "disk_cache/entry_unittest.cc",
4817 "disk_cache/simple/simple_experiment_unittest.cc",
Maks Orlovichf378b3a2017-10-31 16:27:304818 "disk_cache/simple/simple_file_tracker_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454819 "disk_cache/simple/simple_index_file_unittest.cc",
4820 "disk_cache/simple/simple_index_unittest.cc",
4821 "disk_cache/simple/simple_test_util.cc",
4822 "disk_cache/simple/simple_test_util.h",
4823 "disk_cache/simple/simple_util_unittest.cc",
4824 "disk_cache/simple/simple_version_upgrade_unittest.cc",
4825 "dns/address_sorter_posix_unittest.cc",
4826 "dns/address_sorter_unittest.cc",
4827 "dns/dns_config_service_posix_unittest.cc",
4828 "dns/dns_config_service_unittest.cc",
4829 "dns/dns_config_service_win_unittest.cc",
4830 "dns/dns_hosts_unittest.cc",
4831 "dns/dns_query_unittest.cc",
4832 "dns/dns_response_unittest.cc",
4833 "dns/dns_session_unittest.cc",
juliatuttle8ff9d1532017-01-31 17:06:314834 "dns/dns_socket_pool_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454835 "dns/dns_transaction_unittest.cc",
4836 "dns/dns_util_unittest.cc",
4837 "dns/host_cache_unittest.cc",
4838 "dns/host_resolver_impl_unittest.cc",
4839 "dns/host_resolver_mojo_unittest.cc",
4840 "dns/mapped_host_resolver_unittest.cc",
4841 "dns/mdns_cache_unittest.cc",
4842 "dns/mdns_client_unittest.cc",
4843 "dns/mojo_host_resolver_impl_unittest.cc",
4844 "dns/record_parsed_unittest.cc",
4845 "dns/record_rdata_unittest.cc",
4846 "dns/serial_worker_unittest.cc",
4847 "extras/sqlite/sqlite_channel_id_store_unittest.cc",
4848 "extras/sqlite/sqlite_persistent_cookie_store_unittest.cc",
4849 "filter/brotli_source_stream_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454850 "filter/filter_source_stream_unittest.cc",
4851 "filter/gzip_source_stream_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454852 "ftp/ftp_auth_cache_unittest.cc",
4853 "ftp/ftp_ctrl_response_buffer_unittest.cc",
4854 "ftp/ftp_directory_listing_parser_ls_unittest.cc",
4855 "ftp/ftp_directory_listing_parser_unittest.cc",
4856 "ftp/ftp_directory_listing_parser_unittest.h",
4857 "ftp/ftp_directory_listing_parser_vms_unittest.cc",
4858 "ftp/ftp_directory_listing_parser_windows_unittest.cc",
4859 "ftp/ftp_network_transaction_unittest.cc",
4860 "ftp/ftp_util_unittest.cc",
4861 "http/bidirectional_stream_unittest.cc",
wangyix64ccc57c2017-06-01 23:14:164862 "http/broken_alternative_services_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454863 "http/http_auth_cache_unittest.cc",
4864 "http/http_auth_challenge_tokenizer_unittest.cc",
4865 "http/http_auth_controller_unittest.cc",
4866 "http/http_auth_filter_unittest.cc",
4867 "http/http_auth_gssapi_posix_unittest.cc",
4868 "http/http_auth_handler_basic_unittest.cc",
4869 "http/http_auth_handler_digest_unittest.cc",
4870 "http/http_auth_handler_factory_unittest.cc",
4871 "http/http_auth_handler_mock.cc",
4872 "http/http_auth_handler_mock.h",
4873 "http/http_auth_handler_negotiate_unittest.cc",
zentarob89acda42017-07-14 01:28:574874 "http/http_auth_handler_ntlm_portable_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454875 "http/http_auth_handler_unittest.cc",
4876 "http/http_auth_multi_round_parse_unittest.cc",
4877 "http/http_auth_preferences_unittest.cc",
4878 "http/http_auth_sspi_win_unittest.cc",
4879 "http/http_auth_unittest.cc",
4880 "http/http_basic_state_unittest.cc",
4881 "http/http_byte_range_unittest.cc",
4882 "http/http_cache_lookup_manager_unittest.cc",
4883 "http/http_cache_unittest.cc",
shivanishac6582e12017-07-14 22:18:194884 "http/http_cache_writers_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454885 "http/http_chunked_decoder_unittest.cc",
4886 "http/http_content_disposition_unittest.cc",
4887 "http/http_log_util_unittest.cc",
4888 "http/http_network_layer_unittest.cc",
4889 "http/http_network_transaction_ssl_unittest.cc",
4890 "http/http_network_transaction_unittest.cc",
4891 "http/http_proxy_client_socket_pool_unittest.cc",
Paul Jensen0f49dec2017-12-12 23:39:584892 "http/http_proxy_client_socket_unittest.cc",
Yixin Wangd107e062017-11-10 21:57:464893 "http/http_proxy_client_socket_wrapper_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454894 "http/http_request_headers_unittest.cc",
4895 "http/http_response_body_drainer_unittest.cc",
4896 "http/http_response_headers_unittest.cc",
4897 "http/http_response_info_unittest.cc",
4898 "http/http_security_headers_unittest.cc",
4899 "http/http_server_properties_impl_unittest.cc",
4900 "http/http_server_properties_manager_unittest.cc",
4901 "http/http_status_code_unittest.cc",
4902 "http/http_stream_factory_impl_job_controller_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454903 "http/http_stream_factory_impl_unittest.cc",
4904 "http/http_stream_parser_unittest.cc",
Bence Béky6b44abf2018-04-11 10:32:514905 "http/http_stream_request_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454906 "http/http_util_unittest.cc",
4907 "http/http_vary_data_unittest.cc",
4908 "http/mock_allow_http_auth_preferences.cc",
4909 "http/mock_allow_http_auth_preferences.h",
4910 "http/mock_gssapi_library_posix.cc",
4911 "http/mock_gssapi_library_posix.h",
4912 "http/mock_http_cache.cc",
4913 "http/mock_http_cache.h",
4914 "http/mock_sspi_library_win.cc",
4915 "http/mock_sspi_library_win.h",
4916 "http/transport_security_persister_unittest.cc",
4917 "http/transport_security_state_unittest.cc",
4918 "http/url_security_manager_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454919 "log/file_net_log_observer_unittest.cc",
4920 "log/net_log_capture_mode_unittest.cc",
4921 "log/net_log_unittest.cc",
4922 "log/net_log_util_unittest.cc",
4923 "log/trace_net_log_observer_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454924 "nqe/effective_connection_type_unittest.cc",
tbansalf38471f2017-03-04 01:07:044925 "nqe/event_creator_unittest.cc",
Tarun Bansalcdfa34b2017-11-23 05:11:174926 "nqe/network_id_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454927 "nqe/network_qualities_prefs_manager_unittest.cc",
tbansal35bdb0b2017-05-04 16:23:334928 "nqe/network_quality_estimator_params_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454929 "nqe/network_quality_estimator_unittest.cc",
tbansal82edab42017-06-19 05:55:254930 "nqe/network_quality_estimator_util_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454931 "nqe/network_quality_store_unittest.cc",
4932 "nqe/observation_buffer_unittest.cc",
tbansal180587c2017-02-16 15:13:234933 "nqe/socket_watcher_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454934 "nqe/throughput_analyzer_unittest.cc",
zentarob74795682017-07-14 00:58:224935 "ntlm/ntlm_buffer_reader_unittest.cc",
4936 "ntlm/ntlm_buffer_writer_unittest.cc",
Zentaro Kavanaghdd556612017-08-03 20:27:044937 "ntlm/ntlm_client_unittest.cc",
zentarob89acda42017-07-14 01:28:574938 "ntlm/ntlm_test_data.h",
4939 "ntlm/ntlm_unittest.cc",
Lily Houghton582d4622018-01-22 22:43:404940 "proxy_resolution/dhcp_pac_file_adapter_fetcher_win_unittest.cc",
4941 "proxy_resolution/dhcp_pac_file_fetcher_factory_unittest.cc",
4942 "proxy_resolution/dhcp_pac_file_fetcher_win_unittest.cc",
4943 "proxy_resolution/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc",
4944 "proxy_resolution/multi_threaded_proxy_resolver_unittest.cc",
4945 "proxy_resolution/network_delegate_error_observer_unittest.cc",
4946 "proxy_resolution/pac_file_decider_unittest.cc",
4947 "proxy_resolution/pac_file_fetcher_impl_unittest.cc",
4948 "proxy_resolution/proxy_bypass_rules_unittest.cc",
4949 "proxy_resolution/proxy_config_service_android_unittest.cc",
4950 "proxy_resolution/proxy_config_service_linux_unittest.cc",
4951 "proxy_resolution/proxy_config_service_win_unittest.cc",
4952 "proxy_resolution/proxy_config_unittest.cc",
4953 "proxy_resolution/proxy_info_unittest.cc",
4954 "proxy_resolution/proxy_list_unittest.cc",
Lily Houghtonffe89daa02018-03-09 18:30:034955 "proxy_resolution/proxy_resolution_service_unittest.cc",
Lily Houghton582d4622018-01-22 22:43:404956 "proxy_resolution/proxy_resolver_v8_tracing_unittest.cc",
4957 "proxy_resolution/proxy_resolver_v8_tracing_wrapper_unittest.cc",
4958 "proxy_resolution/proxy_resolver_v8_unittest.cc",
4959 "proxy_resolution/proxy_server_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454960 "quic/chromium/bidirectional_stream_quic_impl_unittest.cc",
4961 "quic/chromium/crypto/proof_test_chromium.cc",
4962 "quic/chromium/crypto/proof_verifier_chromium_test.cc",
ckrasic73f7240b2017-01-24 00:06:454963 "quic/chromium/mock_crypto_client_stream_factory.cc",
4964 "quic/chromium/mock_crypto_client_stream_factory.h",
ckrasic73f7240b2017-01-24 00:06:454965 "quic/chromium/mock_quic_data.cc",
4966 "quic/chromium/mock_quic_data.h",
4967 "quic/chromium/network_connection_unittest.cc",
4968 "quic/chromium/properties_based_quic_server_info_test.cc",
4969 "quic/chromium/quic_address_mismatch_test.cc",
4970 "quic/chromium/quic_chromium_alarm_factory_test.cc",
4971 "quic/chromium/quic_chromium_client_session_peer.cc",
4972 "quic/chromium/quic_chromium_client_session_peer.h",
4973 "quic/chromium/quic_chromium_client_session_test.cc",
4974 "quic/chromium/quic_chromium_client_stream_test.cc",
4975 "quic/chromium/quic_chromium_connection_helper_test.cc",
4976 "quic/chromium/quic_clock_skew_detector_test.cc",
Zhongyi Shi8fff75b2017-11-19 21:36:364977 "quic/chromium/quic_connectivity_probing_manager_test.cc",
ckrasic73f7240b2017-01-24 00:06:454978 "quic/chromium/quic_end_to_end_unittest.cc",
4979 "quic/chromium/quic_http_stream_test.cc",
4980 "quic/chromium/quic_http_utils_test.cc",
4981 "quic/chromium/quic_network_transaction_unittest.cc",
Yixin Wang0d2c6b7e12017-08-16 21:12:554982 "quic/chromium/quic_proxy_client_socket_unittest.cc",
rch99387f92017-04-03 21:12:044983 "quic/chromium/quic_stream_factory_peer.cc",
4984 "quic/chromium/quic_stream_factory_peer.h",
ckrasic73f7240b2017-01-24 00:06:454985 "quic/chromium/quic_stream_factory_test.cc",
4986 "quic/chromium/quic_test_packet_maker.cc",
4987 "quic/chromium/quic_test_packet_maker.h",
4988 "quic/chromium/quic_utils_chromium_test.cc",
rch1e369362017-04-03 19:44:514989 "quic/chromium/test_task_runner.cc",
4990 "quic/chromium/test_task_runner.h",
ckrasic73f7240b2017-01-24 00:06:454991 "quic/core/congestion_control/bandwidth_sampler_test.cc",
4992 "quic/core/congestion_control/bbr_sender_test.cc",
4993 "quic/core/congestion_control/cubic_bytes_test.cc",
ckrasic73f7240b2017-01-24 00:06:454994 "quic/core/congestion_control/general_loss_algorithm_test.cc",
4995 "quic/core/congestion_control/hybrid_slow_start_test.cc",
4996 "quic/core/congestion_control/pacing_sender_test.cc",
4997 "quic/core/congestion_control/prr_sender_test.cc",
4998 "quic/core/congestion_control/rtt_stats_test.cc",
4999 "quic/core/congestion_control/send_algorithm_test.cc",
ckrasic73f7240b2017-01-24 00:06:455000 "quic/core/congestion_control/windowed_filter_test.cc",
5001 "quic/core/crypto/aes_128_gcm_12_decrypter_test.cc",
5002 "quic/core/crypto/aes_128_gcm_12_encrypter_test.cc",
Michael Warres74ee3ce2017-10-09 15:26:375003 "quic/core/crypto/aes_128_gcm_decrypter_test.cc",
5004 "quic/core/crypto/aes_128_gcm_encrypter_test.cc",
5005 "quic/core/crypto/aes_256_gcm_decrypter_test.cc",
5006 "quic/core/crypto/aes_256_gcm_encrypter_test.cc",
ckrasic73f7240b2017-01-24 00:06:455007 "quic/core/crypto/cert_compressor_test.cc",
5008 "quic/core/crypto/chacha20_poly1305_decrypter_test.cc",
5009 "quic/core/crypto/chacha20_poly1305_encrypter_test.cc",
Michael Warres74ee3ce2017-10-09 15:26:375010 "quic/core/crypto/chacha20_poly1305_tls_decrypter_test.cc",
5011 "quic/core/crypto/chacha20_poly1305_tls_encrypter_test.cc",
ckrasic73f7240b2017-01-24 00:06:455012 "quic/core/crypto/channel_id_test.cc",
5013 "quic/core/crypto/common_cert_set_test.cc",
5014 "quic/core/crypto/crypto_framer_test.cc",
5015 "quic/core/crypto/crypto_handshake_message_test.cc",
5016 "quic/core/crypto/crypto_secret_boxer_test.cc",
5017 "quic/core/crypto/crypto_server_test.cc",
5018 "quic/core/crypto/crypto_utils_test.cc",
5019 "quic/core/crypto/curve25519_key_exchange_test.cc",
ckrasic73f7240b2017-01-24 00:06:455020 "quic/core/crypto/null_decrypter_test.cc",
5021 "quic/core/crypto/null_encrypter_test.cc",
5022 "quic/core/crypto/p256_key_exchange_test.cc",
5023 "quic/core/crypto/quic_compressed_certs_cache_test.cc",
5024 "quic/core/crypto/quic_crypto_client_config_test.cc",
5025 "quic/core/crypto/quic_crypto_server_config_test.cc",
5026 "quic/core/crypto/quic_random_test.cc",
Ryan Hamilton88151482017-09-06 14:55:455027 "quic/core/crypto/quic_tls_adapter_test.cc",
Yixin Wang38270212018-01-31 00:13:445028 "quic/core/crypto/transport_parameters_test.cc",
ckrasic73f7240b2017-01-24 00:06:455029 "quic/core/frames/quic_frames_test.cc",
vasilvv8b7782e2017-05-12 01:52:035030 "quic/core/packet_number_indexed_queue_test.cc",
ckrasic73f7240b2017-01-24 00:06:455031 "quic/core/quic_alarm_test.cc",
5032 "quic/core/quic_arena_scoped_ptr_test.cc",
5033 "quic/core/quic_bandwidth_test.cc",
5034 "quic/core/quic_buffered_packet_store_test.cc",
5035 "quic/core/quic_client_promised_info_test.cc",
5036 "quic/core/quic_client_push_promise_index_test.cc",
5037 "quic/core/quic_config_test.cc",
5038 "quic/core/quic_connection_test.cc",
Fan Yange8220f002017-11-27 21:19:075039 "quic/core/quic_control_frame_manager_test.cc",
ckrasic73f7240b2017-01-24 00:06:455040 "quic/core/quic_crypto_client_stream_test.cc",
5041 "quic/core/quic_crypto_server_stream_test.cc",
5042 "quic/core/quic_crypto_stream_test.cc",
5043 "quic/core/quic_data_writer_test.cc",
5044 "quic/core/quic_error_codes_test.cc",
5045 "quic/core/quic_flow_controller_test.cc",
5046 "quic/core/quic_framer_test.cc",
5047 "quic/core/quic_header_list_test.cc",
5048 "quic/core/quic_headers_stream_test.cc",
Frank Kastenholz313f3c312018-02-09 13:03:205049 "quic/core/quic_ietf_framer_test.cc",
Bin Wude3943c2017-11-09 22:44:485050 "quic/core/tls_handshaker_test.cc",
Charles 'Buck' Krasic9385c572017-11-29 02:21:515051 "quic/http/decoder/payload_decoders/quic_http_altsvc_payload_decoder_test.cc",
5052 "quic/http/decoder/payload_decoders/quic_http_continuation_payload_decoder_test.cc",
5053 "quic/http/decoder/payload_decoders/quic_http_data_payload_decoder_test.cc",
5054 "quic/http/decoder/payload_decoders/quic_http_goaway_payload_decoder_test.cc",
5055 "quic/http/decoder/payload_decoders/quic_http_headers_payload_decoder_test.cc",
5056 "quic/http/decoder/payload_decoders/quic_http_payload_decoder_base_test_util.cc",
5057 "quic/http/decoder/payload_decoders/quic_http_payload_decoder_base_test_util.h",
5058 "quic/http/decoder/payload_decoders/quic_http_ping_payload_decoder_test.cc",
5059 "quic/http/decoder/payload_decoders/quic_http_priority_payload_decoder_test.cc",
5060 "quic/http/decoder/payload_decoders/quic_http_push_promise_payload_decoder_test.cc",
5061 "quic/http/decoder/payload_decoders/quic_http_rst_stream_payload_decoder_test.cc",
5062 "quic/http/decoder/payload_decoders/quic_http_settings_payload_decoder_test.cc",
5063 "quic/http/decoder/payload_decoders/quic_http_unknown_payload_decoder_test.cc",
5064 "quic/http/decoder/payload_decoders/quic_http_window_update_payload_decoder_test.cc",
5065 "quic/http/decoder/quic_http_decode_buffer_test.cc",
5066 "quic/http/decoder/quic_http_frame_decoder_listener_test_util.cc",
5067 "quic/http/decoder/quic_http_frame_decoder_listener_test_util.h",
5068 "quic/http/decoder/quic_http_frame_decoder_state_test_util.cc",
5069 "quic/http/decoder/quic_http_frame_decoder_state_test_util.h",
5070 "quic/http/decoder/quic_http_frame_decoder_test.cc",
5071 "quic/http/decoder/quic_http_structure_decoder_test.cc",
5072 "quic/http/decoder/quic_http_structure_decoder_test_util.cc",
5073 "quic/http/decoder/quic_http_structure_decoder_test_util.h",
5074 "quic/http/quic_http_constants_test.cc",
5075 "quic/http/quic_http_constants_test_util.cc",
5076 "quic/http/quic_http_constants_test_util.h",
5077 "quic/http/quic_http_structures_test.cc",
5078 "quic/http/quic_http_structures_test_util.cc",
5079 "quic/http/quic_http_structures_test_util.h",
5080 "quic/http/test_tools/quic_http_frame_parts.cc",
5081 "quic/http/test_tools/quic_http_frame_parts.h",
5082 "quic/http/test_tools/quic_http_frame_parts_collector.cc",
5083 "quic/http/test_tools/quic_http_frame_parts_collector.h",
5084 "quic/http/test_tools/quic_http_frame_parts_collector_listener.cc",
5085 "quic/http/test_tools/quic_http_frame_parts_collector_listener.h",
5086 "quic/http/tools/quic_http_frame_builder.cc",
5087 "quic/http/tools/quic_http_frame_builder.h",
5088 "quic/http/tools/quic_http_random_decoder_test.cc",
5089 "quic/http/tools/quic_http_random_decoder_test.h",
5090 "quic/http/tools/quic_http_random_util.cc",
5091 "quic/http/tools/quic_http_random_util.h",
xunjielicc6b1d02017-06-05 16:51:405092 "quic/test_tools/quic_test_utils_test.cc",
Fan Yang198a6aa2018-02-12 18:52:235093 "quic/test_tools/simple_session_notifier_test.cc",
xunjielicc6b1d02017-06-05 16:51:405094 "quic/test_tools/simulator/quic_endpoint_test.cc",
5095 "quic/test_tools/simulator/simulator_test.cc",
Ryan Hamiltondf987ecb2018-04-18 15:42:015096 "third_party/http2/decoder/decode_buffer_test.cc",
5097 "third_party/http2/decoder/decode_http2_structures_test.cc",
5098 "third_party/http2/decoder/frame_decoder_state_test_util.cc",
5099 "third_party/http2/decoder/frame_decoder_state_test_util.h",
5100 "third_party/http2/decoder/http2_frame_decoder_listener_test_util.cc",
5101 "third_party/http2/decoder/http2_frame_decoder_listener_test_util.h",
5102 "third_party/http2/decoder/http2_frame_decoder_test.cc",
5103 "third_party/http2/decoder/http2_structure_decoder_test.cc",
5104 "third_party/http2/decoder/http2_structure_decoder_test_util.cc",
5105 "third_party/http2/decoder/http2_structure_decoder_test_util.h",
5106 "third_party/http2/decoder/payload_decoders/altsvc_payload_decoder_test.cc",
5107 "third_party/http2/decoder/payload_decoders/continuation_payload_decoder_test.cc",
5108 "third_party/http2/decoder/payload_decoders/data_payload_decoder_test.cc",
5109 "third_party/http2/decoder/payload_decoders/goaway_payload_decoder_test.cc",
5110 "third_party/http2/decoder/payload_decoders/headers_payload_decoder_test.cc",
5111 "third_party/http2/decoder/payload_decoders/payload_decoder_base_test_util.cc",
5112 "third_party/http2/decoder/payload_decoders/payload_decoder_base_test_util.h",
5113 "third_party/http2/decoder/payload_decoders/ping_payload_decoder_test.cc",
5114 "third_party/http2/decoder/payload_decoders/priority_payload_decoder_test.cc",
5115 "third_party/http2/decoder/payload_decoders/push_promise_payload_decoder_test.cc",
5116 "third_party/http2/decoder/payload_decoders/rst_stream_payload_decoder_test.cc",
5117 "third_party/http2/decoder/payload_decoders/settings_payload_decoder_test.cc",
5118 "third_party/http2/decoder/payload_decoders/unknown_payload_decoder_test.cc",
5119 "third_party/http2/decoder/payload_decoders/window_update_payload_decoder_test.cc",
5120 "third_party/http2/hpack/decoder/hpack_block_collector.cc",
5121 "third_party/http2/hpack/decoder/hpack_block_collector.h",
5122 "third_party/http2/hpack/decoder/hpack_block_decoder_test.cc",
5123 "third_party/http2/hpack/decoder/hpack_decoder_state_test.cc",
5124 "third_party/http2/hpack/decoder/hpack_decoder_string_buffer_test.cc",
5125 "third_party/http2/hpack/decoder/hpack_decoder_tables_test.cc",
5126 "third_party/http2/hpack/decoder/hpack_decoder_test.cc",
5127 "third_party/http2/hpack/decoder/hpack_entry_collector.cc",
5128 "third_party/http2/hpack/decoder/hpack_entry_collector.h",
5129 "third_party/http2/hpack/decoder/hpack_entry_decoder_test.cc",
5130 "third_party/http2/hpack/decoder/hpack_entry_type_decoder_test.cc",
5131 "third_party/http2/hpack/decoder/hpack_string_collector.cc",
5132 "third_party/http2/hpack/decoder/hpack_string_collector.h",
5133 "third_party/http2/hpack/decoder/hpack_string_decoder_test.cc",
5134 "third_party/http2/hpack/decoder/hpack_varint_decoder_test.cc",
5135 "third_party/http2/hpack/decoder/hpack_whole_entry_buffer_test.cc",
5136 "third_party/http2/hpack/hpack_string_test.cc",
5137 "third_party/http2/hpack/http2_hpack_constants_test.cc",
5138 "third_party/http2/hpack/huffman/hpack_huffman_decoder_test.cc",
5139 "third_party/http2/hpack/tools/hpack_block_builder.cc",
5140 "third_party/http2/hpack/tools/hpack_block_builder.h",
5141 "third_party/http2/hpack/tools/hpack_block_builder_test.cc",
5142 "third_party/http2/hpack/tools/hpack_example.cc",
5143 "third_party/http2/hpack/tools/hpack_example.h",
5144 "third_party/http2/http2_constants_test.cc",
5145 "third_party/http2/http2_constants_test_util.cc",
5146 "third_party/http2/http2_constants_test_util.h",
5147 "third_party/http2/http2_structures_test.cc",
5148 "third_party/http2/http2_structures_test_util.cc",
5149 "third_party/http2/http2_structures_test_util.h",
5150 "third_party/http2/platform/api/http2_string_utils_test.cc",
5151 "third_party/http2/test_tools/frame_parts.cc",
5152 "third_party/http2/test_tools/frame_parts.h",
5153 "third_party/http2/test_tools/frame_parts_collector.cc",
5154 "third_party/http2/test_tools/frame_parts_collector.h",
5155 "third_party/http2/test_tools/frame_parts_collector_listener.cc",
5156 "third_party/http2/test_tools/frame_parts_collector_listener.h",
5157 "third_party/http2/tools/failure.cc",
5158 "third_party/http2/tools/failure.h",
5159 "third_party/http2/tools/http2_frame_builder.cc",
5160 "third_party/http2/tools/http2_frame_builder.h",
5161 "third_party/http2/tools/http2_random.cc",
5162 "third_party/http2/tools/http2_random.h",
5163 "third_party/http2/tools/random_decoder_test.cc",
5164 "third_party/http2/tools/random_decoder_test.h",
5165 "third_party/http2/tools/random_util.cc",
5166 "third_party/http2/tools/random_util.h",
ckrasic73f7240b2017-01-24 00:06:455167
5168 # "quic/core/quic_multipath_received_packet_manager_test.cc",
5169 # "quic/core/quic_multipath_transmissions_map_test.cc",
5170 "quic/core/quic_one_block_arena_test.cc",
5171 "quic/core/quic_packet_creator_test.cc",
5172 "quic/core/quic_packet_generator_test.cc",
5173 "quic/core/quic_received_packet_manager_test.cc",
5174 "quic/core/quic_sent_packet_manager_test.cc",
5175 "quic/core/quic_server_id_test.cc",
5176 "quic/core/quic_server_session_base_test.cc",
Michael Warresa6afb132018-03-09 12:27:335177 "quic/core/quic_session_test.cc",
ckrasic73f7240b2017-01-24 00:06:455178 "quic/core/quic_simple_buffer_allocator_test.cc",
5179 "quic/core/quic_socket_address_coder_test.cc",
Dan Zhangc5cb2f3b2018-02-22 16:23:475180 "quic/core/quic_spdy_session_test.cc",
ckrasic73f7240b2017-01-24 00:06:455181 "quic/core/quic_spdy_stream_test.cc",
fayangdf3cb2b2017-07-05 15:03:385182 "quic/core/quic_stream_send_buffer_test.cc",
ckrasic73f7240b2017-01-24 00:06:455183 "quic/core/quic_stream_sequencer_buffer_test.cc",
5184 "quic/core/quic_stream_sequencer_test.cc",
5185 "quic/core/quic_stream_test.cc",
5186 "quic/core/quic_sustained_bandwidth_recorder_test.cc",
5187 "quic/core/quic_tag_test.cc",
5188 "quic/core/quic_time_test.cc",
5189 "quic/core/quic_unacked_packet_map_test.cc",
5190 "quic/core/quic_utils_test.cc",
5191 "quic/core/quic_version_manager_test.cc",
5192 "quic/core/quic_versions_test.cc",
5193 "quic/core/quic_write_blocked_list_test.cc",
5194 "quic/core/spdy_utils_test.cc",
fayange992f9f2017-03-03 13:38:325195 "quic/platform/api/quic_endian_test.cc",
mpw3f859532017-02-16 20:00:315196 "quic/platform/api/quic_hostname_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:455197 "quic/platform/api/quic_lru_cache_test.cc",
Fan Yang62cae30f2017-09-01 20:50:515198 "quic/platform/api/quic_mem_slice_span_test.cc",
5199 "quic/platform/api/quic_mem_slice_test.cc",
ckrasic73f7240b2017-01-24 00:06:455200 "quic/platform/api/quic_reference_counted_test.cc",
Michael Warrese4451492018-03-07 04:42:475201 "quic/platform/api/quic_singleton_test.cc",
ckrasic73f7240b2017-01-24 00:06:455202 "quic/platform/api/quic_str_cat_test.cc",
Charles 'Buck' Krasic9385c572017-11-29 02:21:515203 "quic/platform/api/quic_test_random.h",
ckrasic73f7240b2017-01-24 00:06:455204 "quic/platform/api/quic_text_utils_test.cc",
fayang32caee402017-02-13 21:00:085205 "quic/platform/api/quic_url_test.cc",
ckrasic73f7240b2017-01-24 00:06:455206 "quic/platform/impl/quic_chromium_clock_test.cc",
Charles 'Buck' Krasic9385c572017-11-29 02:21:515207 "quic/platform/impl/quic_test_random_impl.cc",
5208 "quic/platform/impl/quic_test_random_impl.h",
Yixin Wang338ea072018-02-09 20:09:235209 "quic/platform/impl/quic_url_utils_impl_test.cc",
jri3c1d5ca2017-06-02 04:52:235210 "quic/quartc/quartc_session_test.cc",
5211 "quic/quartc/quartc_stream_test.cc",
ckrasic73f7240b2017-01-24 00:06:455212 "quic/test_tools/crypto_test_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:455213 "socket/client_socket_pool_base_unittest.cc",
5214 "socket/mock_client_socket_pool_manager.cc",
5215 "socket/mock_client_socket_pool_manager.h",
5216 "socket/sequenced_socket_data_unittest.cc",
5217 "socket/socket_bio_adapter_unittest.cc",
Paul Jensenec3c11122017-11-28 16:48:385218 "socket/socket_tag_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455219 "socket/socks5_client_socket_unittest.cc",
5220 "socket/socks_client_socket_pool_unittest.cc",
5221 "socket/socks_client_socket_unittest.cc",
5222 "socket/ssl_client_socket_pool_unittest.cc",
5223 "socket/ssl_client_socket_unittest.cc",
5224 "socket/ssl_server_socket_unittest.cc",
5225 "socket/tcp_client_socket_unittest.cc",
5226 "socket/tcp_server_socket_unittest.cc",
5227 "socket/tcp_socket_unittest.cc",
5228 "socket/transport_client_socket_pool_test_util.cc",
5229 "socket/transport_client_socket_pool_test_util.h",
5230 "socket/transport_client_socket_pool_unittest.cc",
5231 "socket/transport_client_socket_unittest.cc",
Charles 'Buck' Krasic762317f2018-03-30 20:08:095232 "socket/udp_socket_posix_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455233 "socket/udp_socket_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455234 "socket/websocket_endpoint_lock_manager_unittest.cc",
5235 "socket/websocket_transport_client_socket_pool_unittest.cc",
bnc8f8f7d302017-04-24 18:08:065236 "spdy/chromium/bidirectional_stream_spdy_impl_unittest.cc",
5237 "spdy/chromium/buffered_spdy_framer_unittest.cc",
5238 "spdy/chromium/header_coalescer_test.cc",
5239 "spdy/chromium/http2_priority_dependencies_unittest.cc",
Bence Békyc2a82bdd2017-10-05 13:03:325240 "spdy/chromium/http2_push_promise_index_test.cc",
bnc8f8f7d302017-04-24 18:08:065241 "spdy/chromium/spdy_buffer_unittest.cc",
5242 "spdy/chromium/spdy_http_stream_unittest.cc",
5243 "spdy/chromium/spdy_http_utils_unittest.cc",
5244 "spdy/chromium/spdy_log_util_unittest.cc",
5245 "spdy/chromium/spdy_network_transaction_unittest.cc",
5246 "spdy/chromium/spdy_proxy_client_socket_unittest.cc",
5247 "spdy/chromium/spdy_read_queue_unittest.cc",
5248 "spdy/chromium/spdy_session_pool_unittest.cc",
5249 "spdy/chromium/spdy_session_test_util.cc",
5250 "spdy/chromium/spdy_session_test_util.h",
5251 "spdy/chromium/spdy_session_unittest.cc",
5252 "spdy/chromium/spdy_stream_test_util.cc",
5253 "spdy/chromium/spdy_stream_test_util.h",
5254 "spdy/chromium/spdy_stream_unittest.cc",
5255 "spdy/chromium/spdy_write_queue_unittest.cc",
5256 "spdy/core/array_output_buffer.cc",
5257 "spdy/core/array_output_buffer.h",
5258 "spdy/core/array_output_buffer_test.cc",
5259 "spdy/core/fuzzing/hpack_fuzz_util_test.cc",
Dianna Hu33dcd6c2017-07-24 15:01:465260 "spdy/core/hpack/hpack_decoder_adapter_test.cc",
bnc8f8f7d302017-04-24 18:08:065261 "spdy/core/hpack/hpack_encoder_test.cc",
5262 "spdy/core/hpack/hpack_entry_test.cc",
5263 "spdy/core/hpack/hpack_header_table_test.cc",
bnc8f8f7d302017-04-24 18:08:065264 "spdy/core/hpack/hpack_huffman_table_test.cc",
bnc8f8f7d302017-04-24 18:08:065265 "spdy/core/hpack/hpack_output_stream_test.cc",
5266 "spdy/core/hpack/hpack_round_trip_test.cc",
5267 "spdy/core/hpack/hpack_static_table_test.cc",
bnc8f8f7d302017-04-24 18:08:065268 "spdy/core/mock_spdy_framer_visitor.cc",
5269 "spdy/core/mock_spdy_framer_visitor.h",
5270 "spdy/core/priority_write_scheduler_test.cc",
5271 "spdy/core/spdy_alt_svc_wire_format_test.cc",
5272 "spdy/core/spdy_deframer_visitor.cc",
5273 "spdy/core/spdy_deframer_visitor.h",
5274 "spdy/core/spdy_deframer_visitor_test.cc",
5275 "spdy/core/spdy_frame_builder_test.cc",
5276 "spdy/core/spdy_frame_reader_test.cc",
5277 "spdy/core/spdy_framer_test.cc",
5278 "spdy/core/spdy_header_block_test.cc",
bnc8f8f7d302017-04-24 18:08:065279 "spdy/core/spdy_no_op_visitor.cc",
5280 "spdy/core/spdy_no_op_visitor.h",
5281 "spdy/core/spdy_pinnable_buffer_piece_test.cc",
5282 "spdy/core/spdy_prefixed_buffer_reader_test.cc",
5283 "spdy/core/spdy_protocol_test.cc",
5284 "spdy/core/spdy_protocol_test_utils.cc",
5285 "spdy/core/spdy_protocol_test_utils.h",
5286 "spdy/core/spdy_test_utils.cc",
5287 "spdy/core/spdy_test_utils.h",
Dianna Hu46254a82017-10-12 15:59:015288 "spdy/platform/api/spdy_mem_slice_test.cc",
bnced7be41d2017-03-28 17:30:245289 "spdy/platform/api/spdy_string_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:455290 "ssl/channel_id_service_unittest.cc",
mattm436ccfe2017-06-19 20:24:085291 "ssl/client_cert_identity_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455292 "ssl/client_cert_store_mac_unittest.cc",
5293 "ssl/client_cert_store_nss_unittest.cc",
5294 "ssl/client_cert_store_unittest-inl.h",
5295 "ssl/client_cert_store_win_unittest.cc",
5296 "ssl/default_channel_id_store_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455297 "ssl/ssl_cipher_suite_names_unittest.cc",
5298 "ssl/ssl_client_auth_cache_unittest.cc",
5299 "ssl/ssl_client_session_cache_unittest.cc",
5300 "ssl/ssl_config_service_unittest.cc",
5301 "ssl/ssl_config_unittest.cc",
5302 "ssl/ssl_connection_status_flags_unittest.cc",
5303 "ssl/ssl_platform_key_android_unittest.cc",
5304 "ssl/ssl_platform_key_mac_unittest.cc",
5305 "ssl/ssl_platform_key_nss_unittest.cc",
5306 "ssl/ssl_platform_key_util_unittest.cc",
davidbend6d1e4d2017-05-10 16:49:015307 "ssl/ssl_platform_key_win_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455308 "test/embedded_test_server/embedded_test_server_unittest.cc",
5309 "test/embedded_test_server/http_request_unittest.cc",
5310 "test/embedded_test_server/http_response_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455311 "test/run_all_unittests.cc",
Sergey Ulanov7de85802018-01-19 19:50:345312 "test/tcp_socket_proxy_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455313 "third_party/nist-pkits/pkits_testcases-inl.h",
5314 "tools/content_decoder_tool/content_decoder_tool.cc",
5315 "tools/content_decoder_tool/content_decoder_tool.h",
5316 "tools/content_decoder_tool/content_decoder_tool_unittest.cc",
5317 "tools/quic/quic_simple_client_test.cc",
ckrasic73f7240b2017-01-24 00:06:455318 "tools/tld_cleanup/tld_cleanup_util_unittest.cc",
Tsuyoshi Horoec9880b2017-09-28 22:25:215319 "url_request/redirect_info_unittest.cc",
Tsuyoshi Horo9e2ec4df2017-10-16 15:15:555320 "url_request/redirect_util_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455321 "url_request/report_sender_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455322 "url_request/url_fetcher_impl_unittest.cc",
5323 "url_request/url_fetcher_response_writer_unittest.cc",
5324 "url_request/url_request_context_builder_unittest.cc",
5325 "url_request/url_request_context_unittest.cc",
5326 "url_request/url_request_data_job_unittest.cc",
5327 "url_request/url_request_file_dir_job_unittest.cc",
5328 "url_request/url_request_file_job_unittest.cc",
5329 "url_request/url_request_filter_unittest.cc",
5330 "url_request/url_request_ftp_job_unittest.cc",
5331 "url_request/url_request_http_job_unittest.cc",
5332 "url_request/url_request_job_factory_impl_unittest.cc",
5333 "url_request/url_request_job_unittest.cc",
5334 "url_request/url_request_quic_unittest.cc",
5335 "url_request/url_request_simple_job_unittest.cc",
5336 "url_request/url_request_throttler_simulation_unittest.cc",
5337 "url_request/url_request_throttler_test_support.cc",
5338 "url_request/url_request_throttler_test_support.h",
5339 "url_request/url_request_throttler_unittest.cc",
5340 "url_request/url_request_unittest.cc",
5341 "url_request/view_cache_helper_unittest.cc",
5342 ]
mattm1a07e632017-05-16 05:55:505343 net_unfiltered_sources = []
dpranke64df2832015-07-31 22:33:365344
Ryan Sleevic2fcac62017-12-21 16:37:045345 configs += [ "//build/config:precompiled_headers" ]
dpranke64df2832015-07-31 22:33:365346 defines = []
5347
5348 deps = [
dpranke64df2832015-07-31 22:33:365349 ":net",
xunjielicc6b1d02017-06-05 16:51:405350 ":quic_test_tools",
dpranke64df2832015-07-31 22:33:365351 ":simple_quic_tools",
5352 ":test_support",
5353 "//base",
dpranke64df2832015-07-31 22:33:365354 "//base/third_party/dynamic_annotations",
5355 "//crypto",
5356 "//crypto:platform",
5357 "//crypto:test_support",
dpranke64df2832015-07-31 22:33:365358 "//net/base/registry_controlled_domains",
eranm9657f672017-05-05 12:25:195359 "//net/data/ssl/certificate_transparency:ct_log_list",
martijnd369e6702017-03-21 18:36:455360 "//net/http:transport_security_state_unittest_data",
Martijn Croonenb1383da2017-10-11 11:56:355361 "//net/http:transport_security_state_unittest_data_default",
dpranke64df2832015-07-31 22:33:365362 "//testing/gmock",
5363 "//testing/gtest",
thomasanderson77bec4d2017-03-20 07:09:255364 "//third_party/protobuf:protobuf_lite",
dpranke64df2832015-07-31 22:33:365365 "//third_party/zlib",
5366 "//url",
kapishnikovabe280e2016-04-14 19:07:165367 "//url:url_features",
dpranke64df2832015-07-31 22:33:365368 ]
mmenkefd9d15c2017-06-29 13:45:545369
5370 if (enable_reporting) {
5371 sources += [
Julia Tuttle194e6112017-12-19 19:04:495372 "network_error_logging/network_error_logging_end_to_end_test.cc",
Julia Tuttle6c949ae2017-11-17 16:36:275373 "network_error_logging/network_error_logging_service_unittest.cc",
mmenkefd9d15c2017-06-29 13:45:545374 "reporting/reporting_browsing_data_remover_unittest.cc",
5375 "reporting/reporting_cache_unittest.cc",
5376 "reporting/reporting_delivery_agent_unittest.cc",
5377 "reporting/reporting_endpoint_manager_unittest.cc",
5378 "reporting/reporting_garbage_collector_unittest.cc",
5379 "reporting/reporting_header_parser_unittest.cc",
5380 "reporting/reporting_network_change_observer_unittest.cc",
mmenkefd9d15c2017-06-29 13:45:545381 "reporting/reporting_service_unittest.cc",
5382 "reporting/reporting_test_util.cc",
5383 "reporting/reporting_test_util.h",
5384 "reporting/reporting_uploader_unittest.cc",
5385 ]
5386 }
5387
ckrasic73f7240b2017-01-24 00:06:455388 if (!is_proto_quic) {
5389 deps += [
5390 ":extras",
5391 "//base:i18n",
5392 "//sql",
5393 ]
5394 } else {
5395 sources -= [
5396 "extras/sqlite/sqlite_channel_id_store_unittest.cc",
5397 "extras/sqlite/sqlite_persistent_cookie_store_unittest.cc",
5398 ]
5399 }
dpranke64df2832015-07-31 22:33:365400
jbudorick944eb922016-06-20 15:38:305401 data = []
svaldez2135be52016-04-20 16:34:535402 data_deps = [
5403 "third_party/nist-pkits/",
5404 ]
dpranke64df2832015-07-31 22:33:365405
Scott Grahambe24b04f2017-09-21 23:27:525406 if (is_linux || is_mac || is_win || is_fuchsia) {
dpranke64df2832015-07-31 22:33:365407 deps += [
5408 "//third_party/pyftpdlib/",
5409 "//third_party/pywebsocket/",
5410 "//third_party/tlslite/",
5411 ]
mattm6586b432016-02-12 04:52:395412 data_deps += [
dpranke64df2832015-07-31 22:33:365413 "//third_party/pyftpdlib/",
5414 "//third_party/pywebsocket/",
5415 "//third_party/tlslite/",
5416 ]
5417 data += [
5418 "tools/testserver/",
5419 "//third_party/pyftpdlib/",
5420 "//third_party/pywebsocket/",
5421 "//third_party/tlslite/",
5422 "$root_out_dir/pyproto/google/",
dprankef497c7962015-07-31 19:46:235423 ]
5424 }
5425
dpranke64df2832015-07-31 22:33:365426 if (is_desktop_linux) {
5427 deps += [ ":epoll_quic_tools" ]
5428 }
5429 if (is_linux) {
ckrasic73f7240b2017-01-24 00:06:455430 sources += [
5431 "tools/quic/chlo_extractor_test.cc",
5432 "tools/quic/end_to_end_test.cc",
5433 "tools/quic/platform/impl/quic_epoll_clock_test.cc",
5434 "tools/quic/platform/impl/quic_socket_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:455435 "tools/quic/quic_client_test.cc",
5436 "tools/quic/quic_dispatcher_test.cc",
5437 "tools/quic/quic_epoll_alarm_factory_test.cc",
5438 "tools/quic/quic_epoll_connection_helper_test.cc",
5439 "tools/quic/quic_http_response_cache_test.cc",
5440 "tools/quic/quic_server_test.cc",
5441 "tools/quic/quic_simple_server_session_helper_test.cc",
5442 "tools/quic/quic_simple_server_session_test.cc",
5443 "tools/quic/quic_simple_server_stream_test.cc",
5444 "tools/quic/quic_simple_server_test.cc",
Ryan Hamiltonc4402302017-08-10 01:55:465445 "tools/quic/quic_spdy_client_session_test.cc",
ckrasic73f7240b2017-01-24 00:06:455446 "tools/quic/quic_spdy_client_stream_test.cc",
5447 "tools/quic/quic_spdy_server_stream_base_test.cc",
5448 "tools/quic/quic_time_wait_list_manager_test.cc",
5449 "tools/quic/stateless_rejector_test.cc",
ckrasic73f7240b2017-01-24 00:06:455450 ]
dpranke64df2832015-07-31 22:33:365451 deps += [
5452 ":epoll_quic_tools",
5453 ":epoll_server",
brettwbc8b2a22015-07-28 18:24:425454 ]
dpranke64df2832015-07-31 22:33:365455 }
[email protected]8a3f8242014-06-05 18:05:125456
dpranke64df2832015-07-31 22:33:365457 if (is_mac || is_ios) {
ckrasic73f7240b2017-01-24 00:06:455458 sources += [ "base/mac/url_conversions_unittest.mm" ]
dpranke64df2832015-07-31 22:33:365459 }
5460
mattmaf868e72016-09-23 23:25:205461 if (is_mac) {
5462 libs = [ "Security.framework" ]
5463 }
5464
dpranke64df2832015-07-31 22:33:365465 if (is_chromeos) {
Lily Houghton582d4622018-01-22 22:43:405466 sources -= [ "proxy_resolution/proxy_config_service_linux_unittest.cc" ]
dpranke64df2832015-07-31 22:33:365467 }
5468
ckrasic73f7240b2017-01-24 00:06:455469 if (!is_proto_quic && v8_use_external_startup_data) {
dpranke64df2832015-07-31 22:33:365470 deps += [ "//gin" ]
5471 }
5472
zentarob74795682017-07-14 00:58:225473 if (is_win) {
5474 sources -= [
zentarob89acda42017-07-14 01:28:575475 "http/http_auth_handler_ntlm_portable_unittest.cc",
zentarob74795682017-07-14 00:58:225476 "ntlm/ntlm_buffer_reader_unittest.cc",
5477 "ntlm/ntlm_buffer_writer_unittest.cc",
Zentaro Kavanaghdd556612017-08-03 20:27:045478 "ntlm/ntlm_client_unittest.cc",
zentarob89acda42017-07-14 01:28:575479 "ntlm/ntlm_test_data.h",
5480 "ntlm/ntlm_unittest.cc",
zentarob74795682017-07-14 00:58:225481 ]
5482 }
5483
Sergey Ulanovec1d3de2017-09-19 19:27:475484 if (enable_python_utils) {
5485 sources += [ "test/python_utils_unittest.cc" ]
5486 }
5487
Sergey Ulanov7c0bcaf2017-08-28 19:03:265488 if (is_fuchsia) {
5489 use_test_server = true
5490 }
5491
dpranke64df2832015-07-31 22:33:365492 if (!use_nss_certs) {
5493 sources -= [
mattm9c63d442016-09-03 00:45:515494 "cert/internal/trust_store_nss_unittest.cc",
dpranke64df2832015-07-31 22:33:365495 "cert/nss_cert_database_unittest.cc",
Matt Mueller10684c92017-08-09 07:24:095496 "cert/x509_util_nss_unittest.cc",
dpranke64df2832015-07-31 22:33:365497 "ssl/client_cert_store_nss_unittest.cc",
davidben983d610b2016-12-14 19:35:405498 "ssl/ssl_platform_key_nss_unittest.cc",
[email protected]8a3f8242014-06-05 18:05:125499 ]
dpranke64df2832015-07-31 22:33:365500 if (is_chromeos) { # Already removed for all non-ChromeOS builds.
davidben2bcbc6b2015-04-22 02:36:415501 sources -= [
dpranke64df2832015-07-31 22:33:365502 "cert/nss_cert_database_chromeos_unittest.cc",
5503 "cert/nss_profile_filter_chromeos_unittest.cc",
davidben2bcbc6b2015-04-22 02:36:415504 ]
brettw43ae0e12015-07-14 22:12:365505 }
[email protected]8a3f8242014-06-05 18:05:125506 }
dpranke64df2832015-07-31 22:33:365507
dpranke64df2832015-07-31 22:33:365508 if (use_kerberos) {
5509 defines += [ "USE_KERBEROS" ]
5510 }
5511
5512 # These are excluded on Android, because the actual Kerberos support, which
5513 # these test, is in a separate app on Android.
5514 if (!use_kerberos || is_android) {
5515 sources -= [
5516 "http/http_auth_gssapi_posix_unittest.cc",
5517 "http/mock_gssapi_library_posix.cc",
5518 "http/mock_gssapi_library_posix.h",
5519 ]
5520 }
5521 if (!use_kerberos) {
5522 sources -= [ "http/http_auth_handler_negotiate_unittest.cc" ]
5523 }
5524
svaldez2135be52016-04-20 16:34:535525 if (!use_nss_certs) {
svaldeza1714ab2016-03-18 20:47:535526 # Only include this test when using NSS for cert verification.
dpranke64df2832015-07-31 22:33:365527 sources -= [ "cert_net/nss_ocsp_unittest.cc" ]
5528 }
5529
jbudorick1273a842016-04-01 19:50:055530 if (enable_websockets) {
ckrasic73f7240b2017-01-24 00:06:455531 sources += [
5532 "server/http_connection_unittest.cc",
5533 "server/http_server_response_info_unittest.cc",
5534 "server/http_server_unittest.cc",
5535 "server/web_socket_encoder_unittest.cc",
Bence Béky7294fc22018-02-08 14:26:175536 "websockets/websocket_basic_stream_adapters_test.cc",
ckrasic73f7240b2017-01-24 00:06:455537 "websockets/websocket_basic_stream_test.cc",
5538 "websockets/websocket_channel_test.cc",
5539 "websockets/websocket_deflate_parameters_test.cc",
5540 "websockets/websocket_deflate_predictor_impl_test.cc",
5541 "websockets/websocket_deflate_stream_test.cc",
5542 "websockets/websocket_deflater_test.cc",
5543 "websockets/websocket_end_to_end_test.cc",
5544 "websockets/websocket_errors_test.cc",
5545 "websockets/websocket_extension_parser_test.cc",
5546 "websockets/websocket_extension_test.cc",
5547 "websockets/websocket_frame_parser_test.cc",
5548 "websockets/websocket_frame_test.cc",
5549 "websockets/websocket_handshake_challenge_test.cc",
5550 "websockets/websocket_handshake_stream_create_helper_test.cc",
5551 "websockets/websocket_inflater_test.cc",
5552 "websockets/websocket_stream_cookie_test.cc",
5553 "websockets/websocket_stream_create_test_base.cc",
5554 "websockets/websocket_stream_create_test_base.h",
5555 "websockets/websocket_stream_test.cc",
5556 "websockets/websocket_test_util.cc",
5557 "websockets/websocket_test_util.h",
5558 ]
jbudorick1273a842016-04-01 19:50:055559 deps += [ ":http_server" ]
dpranke64df2832015-07-31 22:33:365560 }
5561
5562 if (disable_file_support) {
5563 sources -= [
5564 "base/directory_lister_unittest.cc",
Thiago Farinad673bb122016-01-06 23:18:165565 "base/directory_listing_unittest.cc",
shahriar.rostamia8c06daf2016-02-12 00:07:045566 "url_request/url_request_file_dir_job_unittest.cc",
dpranke64df2832015-07-31 22:33:365567 "url_request/url_request_file_job_unittest.cc",
5568 ]
5569 }
5570
5571 if (disable_ftp_support) {
5572 sources -= [
5573 "ftp/ftp_auth_cache_unittest.cc",
5574 "ftp/ftp_ctrl_response_buffer_unittest.cc",
5575 "ftp/ftp_directory_listing_parser_ls_unittest.cc",
dpranke64df2832015-07-31 22:33:365576 "ftp/ftp_directory_listing_parser_unittest.cc",
5577 "ftp/ftp_directory_listing_parser_unittest.h",
5578 "ftp/ftp_directory_listing_parser_vms_unittest.cc",
5579 "ftp/ftp_directory_listing_parser_windows_unittest.cc",
5580 "ftp/ftp_network_transaction_unittest.cc",
5581 "ftp/ftp_util_unittest.cc",
5582 "url_request/url_request_ftp_job_unittest.cc",
5583 ]
5584 }
5585
5586 if (!enable_built_in_dns) {
5587 sources -= [
5588 "dns/address_sorter_posix_unittest.cc",
5589 "dns/address_sorter_unittest.cc",
5590 ]
5591 }
5592
xunjieli905496a2015-08-31 15:51:175593 if (use_v8_in_net) {
mmenkee2ad9922017-06-08 20:27:365594 deps += [ ":net_with_v8" ]
dpranke64df2832015-07-31 22:33:365595 } else {
5596 sources -= [
Lily Houghton582d4622018-01-22 22:43:405597 "proxy_resolution/proxy_resolver_v8_tracing_unittest.cc",
5598 "proxy_resolution/proxy_resolver_v8_tracing_wrapper_unittest.cc",
5599 "proxy_resolution/proxy_resolver_v8_unittest.cc",
dpranke64df2832015-07-31 22:33:365600 ]
5601 }
5602
mmenke93be9ca2017-05-23 16:29:135603 if (enable_net_mojo) {
dpranke64df2832015-07-31 22:33:365604 deps += [
5605 ":net_browser_services",
5606 ":net_utility_services",
Ken Rockotec287c82018-03-15 23:05:495607 "//mojo/edk",
dpranke64df2832015-07-31 22:33:365608 ]
5609 } else {
5610 sources -= [
5611 "dns/host_resolver_mojo_unittest.cc",
5612 "dns/mojo_host_resolver_impl_unittest.cc",
Lily Houghton582d4622018-01-22 22:43:405613 "proxy_resolution/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc",
dpranke64df2832015-07-31 22:33:365614 ]
5615 }
5616
5617 if (!enable_mdns) {
5618 sources -= [
5619 "dns/mdns_cache_unittest.cc",
5620 "dns/mdns_client_unittest.cc",
dpranke64df2832015-07-31 22:33:365621 ]
5622 }
5623
5624 if (is_ios) {
dpranke64df2832015-07-31 22:33:365625 sources -= [
5626 # TODO(droger): The following tests are disabled because the
5627 # implementation is missing or incomplete.
dpranke64df2832015-07-31 22:33:365628 "disk_cache/backend_unittest.cc",
5629 "disk_cache/blockfile/block_files_unittest.cc",
5630
5631 # Need to read input data files.
dpranke64df2832015-07-31 22:33:365632 "socket/ssl_server_socket_unittest.cc",
bnc8f8f7d302017-04-24 18:08:065633 "spdy/core/fuzzing/hpack_fuzz_util_test.cc",
dpranke64df2832015-07-31 22:33:365634
5635 # Need TestServer.
5636 "cert_net/cert_net_fetcher_impl_unittest.cc",
Lily Houghton582d4622018-01-22 22:43:405637 "proxy_resolution/pac_file_fetcher_impl_unittest.cc",
dpranke64df2832015-07-31 22:33:365638 "socket/ssl_client_socket_unittest.cc",
5639 "url_request/url_fetcher_impl_unittest.cc",
5640 "url_request/url_request_context_builder_unittest.cc",
dpranke64df2832015-07-31 22:33:365641 ]
mattm1a07e632017-05-16 05:55:505642 net_unfiltered_sources += [ "cert/x509_util_ios_and_mac_unittest.cc" ]
rsesek7d4ab4bc2016-07-22 17:35:135643
5644 bundle_deps = [ ":net_unittests_bundle_data" ]
dpranke64df2832015-07-31 22:33:365645 }
5646
Sergey Ulanov21dea152017-09-13 00:50:505647 if (enable_unix_sockets) {
5648 sources += [
5649 "socket/unix_domain_client_socket_posix_unittest.cc",
5650 "socket/unix_domain_server_socket_posix_unittest.cc",
5651 ]
5652 }
5653
Fabrice de Gans-Riberi9fba3aff2018-04-12 19:00:485654 # Use getifaddrs() on POSIX platforms, except Linux and Android.
5655 if (is_posix && !is_linux && !is_android) {
5656 sources += [ "base/network_interfaces_getifaddrs_unittest.cc" ]
Sergey Ulanov5c33235ae2017-07-06 23:55:075657 }
5658
kapishnikovabe280e2016-04-14 19:07:165659 # Unit tests that aren't supported by the current ICU alternatives on Android.
5660 if (is_android && use_platform_icu_alternatives) {
5661 sources -= [
5662 "base/filename_util_unittest.cc",
5663 "base/url_util_unittest.cc",
5664 "cert/x509_certificate_unittest.cc",
Lily Houghton582d4622018-01-22 22:43:405665 "proxy_resolution/proxy_resolver_v8_unittest.cc",
kapishnikovabe280e2016-04-14 19:07:165666 "url_request/url_request_job_unittest.cc",
5667 ]
Misha Efimov17221622018-01-30 23:36:025668 deps += [ "//url:url_java" ]
kapishnikovabe280e2016-04-14 19:07:165669 }
5670
5671 # Unit tests that are not supported by the current ICU alternatives on iOS.
5672 if (is_ios && use_platform_icu_alternatives) {
5673 sources -= [
5674 "base/filename_util_unittest.cc",
5675 "base/url_util_unittest.cc",
5676 "cert/x509_certificate_unittest.cc",
5677 "http/http_auth_handler_basic_unittest.cc",
5678 "http/http_auth_handler_digest_unittest.cc",
5679 "http/http_auth_handler_factory_unittest.cc",
5680 "http/http_auth_unittest.cc",
5681 "http/http_content_disposition_unittest.cc",
5682 "http/http_network_transaction_unittest.cc",
5683 "http/http_proxy_client_socket_pool_unittest.cc",
5684 "socket/ssl_client_socket_pool_unittest.cc",
bnc8f8f7d302017-04-24 18:08:065685 "spdy/chromium/spdy_network_transaction_unittest.cc",
5686 "spdy/chromium/spdy_proxy_client_socket_unittest.cc",
kapishnikovabe280e2016-04-14 19:07:165687 "url_request/url_request_job_unittest.cc",
5688 "url_request/url_request_unittest.cc",
5689 ]
5690 }
5691
5692 # Exclude brotli test if the support for brotli is disabled.
xunjielif54f24a02016-11-04 15:51:545693 if (disable_brotli_filter) {
xunjieli084a9292016-09-23 18:15:045694 sources -= [ "filter/brotli_source_stream_unittest.cc" ]
kapishnikovabe280e2016-04-14 19:07:165695 }
5696
dpranke64df2832015-07-31 22:33:365697 if (is_android) {
agrieve732db3a2016-04-26 19:18:195698 data_deps += [ "//net/tools/testserver:testserver_py" ]
agrieve97176362015-12-01 16:36:195699 deps += [
5700 ":net_test_jni_headers",
agrievea5517aa2015-10-23 03:03:455701 "//base:base_java_unittest_support",
5702 "//net/android:net_java",
agrievea5517aa2015-10-23 03:03:455703 "//net/android:net_java_test_support",
Yipeng Wangff2db2d2017-06-16 13:54:525704 "//net/android:net_java_test_support_provider",
agrieve97176362015-12-01 16:36:195705 "//net/android:net_javatests",
agrievea5517aa2015-10-23 03:03:455706 "//net/android:net_unittests_apk_resources",
agrieve97176362015-12-01 16:36:195707
5708 # TODO(mmenke): This depends on test_support_base, which depends on
5709 # icu. Figure out a way to remove that dependency.
5710 "//testing/android/native_test:native_test_native_code",
pkotwicz8c7027d2015-11-11 06:30:075711 "//v8:v8_external_startup_data_assets",
agrievea5517aa2015-10-23 03:03:455712 ]
5713 android_manifest = "//net/android/unittest_support/AndroidManifest.xml"
dpranke64df2832015-07-31 22:33:365714 set_sources_assignment_filter([])
Sergey Ulanov5bb07d32017-07-12 04:14:545715 sources += [
5716 "base/address_tracker_linux_unittest.cc",
5717 "base/network_interfaces_linux_unittest.cc",
5718 ]
dpranke64df2832015-07-31 22:33:365719 set_sources_assignment_filter(sources_assignment_filter)
agrieve3ac557f02016-04-12 15:52:005720 shard_timeout = 300
dpranke64df2832015-07-31 22:33:365721 }
5722
dpranke64df2832015-07-31 22:33:365723 # Symbols for crashes when running tests on swarming.
5724 if (symbol_level > 0) {
5725 if (is_win) {
5726 data += [ "$root_out_dir/net_unittests.exe.pdb" ]
5727 } else if (is_mac) {
dprankede2945b82016-04-15 22:14:135728 # TODO(crbug.com/330301): make this conditional on mac_strip_release.
5729 # data += [ "$root_out_dir/net_unittests.dSYM/" ]
dpranke64df2832015-07-31 22:33:365730 }
5731 }
maksim.sisovc69619d2016-05-20 19:23:555732
5733 if (is_win) {
davidbend6d1e4d2017-05-10 16:49:015734 libs = [
5735 "iphlpapi.lib",
5736 "ncrypt.lib",
5737 ]
maksim.sisovc69619d2016-05-20 19:23:555738 }
davidben983d610b2016-12-14 19:35:405739
5740 if (is_chromecast && use_nss_certs) {
mattm436ccfe2017-06-19 20:24:085741 sources -= [
5742 "ssl/client_cert_store_nss_unittest.cc",
5743 "ssl/ssl_platform_key_nss_unittest.cc",
5744 ]
davidben983d610b2016-12-14 19:35:405745 }
martijnb9aca9d2017-03-31 19:56:155746
5747 # Include transport_security_state_generator tests.
5748 if (host_toolchain == current_toolchain) {
5749 deps += [ "//net/tools/transport_security_state_generator:transport_security_state_generator_test_sources" ]
5750 }
mattm1a07e632017-05-16 05:55:505751
5752 # Add back some sources that were otherwise filtered out.
5753 set_sources_assignment_filter([])
5754 sources += net_unfiltered_sources
5755 set_sources_assignment_filter(sources_assignment_filter)
dpranke64df2832015-07-31 22:33:365756}
5757
5758# !is_android && !is_win && !is_mac
ckrasic73f7240b2017-01-24 00:06:455759if (!is_ios && !is_proto_quic) {
sdefresne3001f172016-03-16 10:30:035760 # TODO(crbug.com/594965): this should be converted to "app" template and
5761 # enabled on iOS too.
5762 executable("net_perftests") {
5763 testonly = true
5764 sources = [
5765 "base/mime_sniffer_perftest.cc",
5766 "cookies/cookie_monster_perftest.cc",
gavinpc28fe1122016-05-13 17:49:055767 "disk_cache/disk_cache_perftest.cc",
sdefresne3001f172016-03-16 10:30:035768 "extras/sqlite/sqlite_persistent_cookie_store_perftest.cc",
tfarina5dd13c22016-11-16 12:08:265769 "socket/udp_socket_perftest.cc",
xunjielicc6b1d02017-06-05 16:51:405770 "url_request/url_request_quic_perftest.cc",
sdefresne3001f172016-03-16 10:30:035771 ]
[email protected]8a3f8242014-06-05 18:05:125772
sdefresne3001f172016-03-16 10:30:035773 deps = [
5774 ":extras",
5775 ":net",
xunjielicc6b1d02017-06-05 16:51:405776 ":quic_test_tools",
5777 ":simple_quic_tools",
sdefresne3001f172016-03-16 10:30:035778 ":test_support",
5779 "//base",
5780 "//base:i18n",
5781 "//base/test:test_support_perf",
thomasanderson84fa8b02017-05-18 23:38:475782 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:075783 "//build/win:default_exe_manifest",
sdefresne3001f172016-03-16 10:30:035784 "//testing/gtest",
xunjielicc6b1d02017-06-05 16:51:405785 "//testing/perf",
sdefresne3001f172016-03-16 10:30:035786 "//url",
5787 ]
Emily Hanley87c264cc2018-04-13 17:58:455788 data_deps = [
xunjieli5a866842017-06-09 18:16:205789 # Needed for isolate script to execute.
Emily Hanley87c264cc2018-04-13 17:58:455790 "//testing:run_perf_test",
xunjieli5a866842017-06-09 18:16:205791 ]
sdefresne3001f172016-03-16 10:30:035792 if (enable_websockets) {
5793 sources += [ "websockets/websocket_frame_perftest.cc" ]
5794 }
rockot9c67e5f2015-03-12 20:01:215795 }
rockot9c67e5f2015-03-12 20:01:215796}
mefff34b822016-01-11 15:28:085797
eromanfe8659e2016-03-02 23:47:025798# Fuzzers
5799
mmenke35a30012016-07-15 19:20:125800# This has a global (InitGlobals) that must always be linked in, so
5801# must be a source set instead of a static library.
5802source_set("net_fuzzer_test_support") {
eroman02b4fe562016-03-04 12:15:165803 testonly = true
5804
5805 sources = [
csharrison37ef9852016-08-23 19:00:195806 "base/fuzzer_test_support.cc",
mmenkea7da0712016-11-21 21:12:315807 "dns/fuzzed_host_resolver.cc",
5808 "dns/fuzzed_host_resolver.h",
xunjieli75837332016-10-31 16:51:265809 "filter/fuzzed_source_stream.cc",
5810 "filter/fuzzed_source_stream.h",
tfarina5dd13c22016-11-16 12:08:265811 "socket/fuzzed_datagram_client_socket.cc",
5812 "socket/fuzzed_datagram_client_socket.h",
morlovich5e6e19b2017-01-30 14:38:165813 "socket/fuzzed_server_socket.cc",
5814 "socket/fuzzed_server_socket.h",
mmenke99b57172016-04-14 20:44:335815 "socket/fuzzed_socket.cc",
5816 "socket/fuzzed_socket.h",
mmenkec951d412016-04-28 19:05:225817 "socket/fuzzed_socket_factory.cc",
5818 "socket/fuzzed_socket_factory.h",
eroman02b4fe562016-03-04 12:15:165819 ]
csharrisonf30fc95f2016-08-19 21:43:445820 public_deps = [
5821 "//base/test:test_support",
5822 ]
eroman02b4fe562016-03-04 12:15:165823 deps = [
5824 "//base",
5825 "//base:i18n",
mmenke99b57172016-04-14 20:44:335826 "//net",
eroman02b4fe562016-03-04 12:15:165827 ]
5828}
5829
csharrisonaa314dc2016-04-29 20:15:375830fuzzer_test("net_data_job_fuzzer") {
5831 sources = [
5832 "url_request/url_request_data_job_fuzzer.cc",
5833 ]
5834 deps = [
5835 ":net_fuzzer_test_support",
5836 ":test_support",
5837 "//base",
5838 "//net",
5839 ]
5840}
5841
mmenke5552a6a2016-03-28 23:11:595842fuzzer_test("net_mime_sniffer_fuzzer") {
5843 sources = [
5844 "base/mime_sniffer_fuzzer.cc",
5845 ]
5846 deps = [
5847 ":net_fuzzer_test_support",
5848 "//base",
5849 "//net",
5850 ]
mmoroz4a561d32016-07-07 17:45:125851 dict = "data/fuzzer_dictionaries/net_mime_sniffer_fuzzer.dict"
mmenke5552a6a2016-03-28 23:11:595852}
5853
mmoroz565e8df22016-03-04 18:17:205854fuzzer_test("net_parse_proxy_list_pac_fuzzer") {
eromane6264fd2016-03-02 22:46:305855 sources = [
Lily Houghton582d4622018-01-22 22:43:405856 "proxy_resolution/parse_proxy_list_pac_fuzzer.cc",
eromane6264fd2016-03-02 22:46:305857 ]
5858 deps = [
eroman02b4fe562016-03-04 12:15:165859 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305860 "//net",
5861 ]
5862}
5863
mmoroz565e8df22016-03-04 18:17:205864fuzzer_test("net_parse_proxy_list_fuzzer") {
eromane6264fd2016-03-02 22:46:305865 sources = [
Lily Houghton582d4622018-01-22 22:43:405866 "proxy_resolution/parse_proxy_list_fuzzer.cc",
eromane6264fd2016-03-02 22:46:305867 ]
5868 deps = [
eroman02b4fe562016-03-04 12:15:165869 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305870 "//net",
5871 ]
5872}
5873
mmoroz565e8df22016-03-04 18:17:205874fuzzer_test("net_parse_proxy_bypass_rules_fuzzer") {
eromane6264fd2016-03-02 22:46:305875 sources = [
Lily Houghton582d4622018-01-22 22:43:405876 "proxy_resolution/parse_proxy_bypass_rules_fuzzer.cc",
eromane6264fd2016-03-02 22:46:305877 ]
Eric Romanb8522d62018-03-01 02:53:585878
5879 libfuzzer_options = [
5880 # The proxy bypass rules aren't very complicated, so this is more than
5881 # enough to explore the grammar. Allowing the length to become too large
5882 # can result in test timeouts (https://crbug.com/813619).
5883 "max_len=512",
5884 ]
5885
eromane6264fd2016-03-02 22:46:305886 deps = [
eroman02b4fe562016-03-04 12:15:165887 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305888 "//net",
5889 ]
5890}
5891
mmoroz565e8df22016-03-04 18:17:205892fuzzer_test("net_parse_proxy_rules_fuzzer") {
eromane6264fd2016-03-02 22:46:305893 sources = [
Lily Houghton582d4622018-01-22 22:43:405894 "proxy_resolution/parse_proxy_rules_fuzzer.cc",
eromane6264fd2016-03-02 22:46:305895 ]
5896 deps = [
eroman02b4fe562016-03-04 12:15:165897 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305898 "//net",
5899 ]
metzman31db75e2016-08-03 22:33:275900 dict = "data/fuzzer_dictionaries/net_parse_proxy_bypass_rules_fuzzer.dict"
eromane6264fd2016-03-02 22:46:305901}
5902
mmoroz565e8df22016-03-04 18:17:205903fuzzer_test("net_parse_data_url_fuzzer") {
eromane6264fd2016-03-02 22:46:305904 sources = [
5905 "base/parse_data_url_fuzzer.cc",
5906 ]
5907 deps = [
eroman02b4fe562016-03-04 12:15:165908 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305909 "//base",
5910 "//net",
5911 ]
mmoroz4a561d32016-07-07 17:45:125912 dict = "data/fuzzer_dictionaries/net_parse_data_url_fuzzer.dict"
eromane6264fd2016-03-02 22:46:305913}
5914
mmoroz565e8df22016-03-04 18:17:205915fuzzer_test("net_parse_ip_pattern_fuzzer") {
eromane6264fd2016-03-02 22:46:305916 sources = [
5917 "base/parse_ip_pattern_fuzzer.cc",
5918 ]
5919 deps = [
eroman02b4fe562016-03-04 12:15:165920 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305921 "//net",
5922 ]
5923}
5924
mmoroz565e8df22016-03-04 18:17:205925fuzzer_test("net_get_domain_and_registry_fuzzer") {
eromane6264fd2016-03-02 22:46:305926 sources = [
5927 "base/registry_controlled_domains/get_domain_and_registry_fuzzer.cc",
5928 ]
5929 deps = [
eroman02b4fe562016-03-04 12:15:165930 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305931 "//base",
eromane6264fd2016-03-02 22:46:305932 "//net",
5933 ]
mmoroz4a561d32016-07-07 17:45:125934 dict = "data/fuzzer_dictionaries/net_get_domain_and_registry_fuzzer.dict"
eromane6264fd2016-03-02 22:46:305935}
5936
mattmafe43b82016-04-28 20:40:545937fuzzer_test("net_cert_verify_name_match_fuzzer") {
5938 sources = [
5939 "cert/internal/verify_name_match_fuzzer.cc",
5940 ]
5941 deps = [
5942 ":net_fuzzer_test_support",
5943 "//base",
5944 "//net",
5945 ]
5946}
5947
mattm2c637da42016-04-28 02:55:595948fuzzer_test("net_cert_normalize_name_fuzzer") {
5949 sources = [
5950 "cert/internal/verify_name_match_normalizename_fuzzer.cc",
5951 ]
5952 deps = [
5953 "//base",
5954 "//net",
5955 ]
5956}
5957
mattmafe43b82016-04-28 20:40:545958fuzzer_test("net_cert_verify_name_in_subtree_fuzzer") {
5959 sources = [
5960 "cert/internal/verify_name_match_verifynameinsubtree_fuzzer.cc",
5961 ]
5962 deps = [
5963 ":net_fuzzer_test_support",
5964 "//base",
5965 "//net",
5966 ]
5967}
5968
nharper85d3b6f2016-04-28 20:58:195969fuzzer_test("net_cert_parse_certificate_fuzzer") {
5970 sources = [
5971 "cert/internal/parse_certificate_fuzzer.cc",
5972 ]
5973 deps = [
5974 "//base",
5975 "//net",
5976 ]
5977}
5978
mmoroz565e8df22016-03-04 18:17:205979fuzzer_test("net_parse_cookie_line_fuzzer") {
eromane6264fd2016-03-02 22:46:305980 sources = [
5981 "cookies/parse_cookie_line_fuzzer.cc",
5982 ]
5983 deps = [
eroman02b4fe562016-03-04 12:15:165984 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305985 "//net",
5986 ]
5987}
5988
mmoroz565e8df22016-03-04 18:17:205989fuzzer_test("net_dns_record_fuzzer") {
eromanfe8659e2016-03-02 23:47:025990 sources = [
5991 "dns/dns_record_fuzzer.cc",
5992 ]
5993 deps = [
eroman02b4fe562016-03-04 12:15:165994 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:025995 "//base",
5996 "//net",
5997 ]
mmoroz4a561d32016-07-07 17:45:125998 dict = "data/fuzzer_dictionaries/net_dns_record_fuzzer.dict"
eromanfe8659e2016-03-02 23:47:025999}
6000
zhongyi273af9f2016-04-28 18:46:346001fuzzer_test("net_dns_hosts_parse_fuzzer") {
6002 sources = [
6003 "dns/dns_hosts_parse_fuzzer.cc",
6004 ]
6005 deps = [
6006 ":net_fuzzer_test_support",
6007 "//base",
6008 "//net",
6009 ]
mmoroz4a561d32016-07-07 17:45:126010 dict = "data/fuzzer_dictionaries/net_dns_hosts_parse_fuzzer.dict"
zhongyi273af9f2016-04-28 18:46:346011}
6012
mmenke91c17162016-06-02 16:03:236013fuzzer_test("net_host_resolver_impl_fuzzer") {
6014 sources = [
mmenke91c17162016-06-02 16:03:236015 "dns/host_resolver_impl_fuzzer.cc",
6016 ]
6017 deps = [
6018 ":net_fuzzer_test_support",
6019 ":test_support",
6020 "//base",
6021 "//net",
6022 ]
mmoroz4a561d32016-07-07 17:45:126023 dict = "data/fuzzer_dictionaries/net_host_resolver_impl_fuzzer.dict"
mmenke91c17162016-06-02 16:03:236024}
6025
mmenke44e8e9c2016-03-29 18:38:576026fuzzer_test("net_http_stream_parser_fuzzer") {
6027 sources = [
6028 "http/http_stream_parser_fuzzer.cc",
6029 ]
6030 deps = [
6031 ":net_fuzzer_test_support",
6032 ":test_support",
6033 "//base",
6034 "//net",
6035 ]
mmoroz4a561d32016-07-07 17:45:126036 dict = "data/fuzzer_dictionaries/net_http_stream_parser_fuzzer.dict"
mmenke44e8e9c2016-03-29 18:38:576037}
6038
Zentaro Kavanaghdd556612017-08-03 20:27:046039fuzzer_test("net_ntlm_ntlm_client_fuzzer") {
6040 sources = [
6041 "ntlm/ntlm_client_fuzzer.cc",
6042 ]
6043 deps = [
6044 ":net_fuzzer_test_support",
6045 ":test_support",
6046 "//base",
6047 "//net",
6048 "//net:net_unittests",
6049 ]
6050 dict = "data/fuzzer_dictionaries/net_ntlm_ntlm_client_fuzzer.dict"
6051 seed_corpus = "data/fuzzer_data/ntlm_client_fuzzer/"
6052}
6053
xunjielid5ffeaf2016-11-01 15:22:006054if (!disable_brotli_filter) {
6055 fuzzer_test("net_brotli_source_stream_fuzzer") {
6056 sources = [
6057 "filter/brotli_source_stream_fuzzer.cc",
6058 ]
6059 deps = [
6060 ":net_fuzzer_test_support",
6061 ":test_support",
6062 "//base",
6063 "//net",
6064 ]
6065 }
6066}
6067
xunjieli75837332016-10-31 16:51:266068fuzzer_test("net_gzip_source_stream_fuzzer") {
6069 sources = [
6070 "filter/gzip_source_stream_fuzzer.cc",
6071 ]
6072 deps = [
6073 ":net_fuzzer_test_support",
6074 ":test_support",
6075 "//base",
6076 "//net",
6077 ]
6078}
6079
mmoroz565e8df22016-03-04 18:17:206080fuzzer_test("net_ftp_ctrl_response_fuzzer") {
eromanfe8659e2016-03-02 23:47:026081 sources = [
6082 "ftp/ftp_ctrl_response_fuzzer.cc",
6083 ]
6084 deps = [
eroman02b4fe562016-03-04 12:15:166085 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026086 "//base",
6087 "//net",
6088 ]
6089}
6090
mmoroz565e8df22016-03-04 18:17:206091fuzzer_test("net_ftp_directory_listing_fuzzer") {
eromanfe8659e2016-03-02 23:47:026092 sources = [
6093 "ftp/ftp_directory_listing_fuzzer.cc",
6094 ]
6095 deps = [
eroman02b4fe562016-03-04 12:15:166096 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026097 "//base",
eromanfe8659e2016-03-02 23:47:026098 "//net",
6099 ]
6100}
6101
mmoroz565e8df22016-03-04 18:17:206102fuzzer_test("net_unescape_url_component_fuzzer") {
eromanfe8659e2016-03-02 23:47:026103 sources = [
6104 "base/unescape_url_component_fuzzer.cc",
6105 ]
6106 deps = [
eroman02b4fe562016-03-04 12:15:166107 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026108 "//base",
6109 "//net",
6110 ]
mmoroz34eb0082016-03-11 14:32:016111 dict = "base/unescape_url_component_fuzzer.dict"
mmoroz062a4a62016-04-12 09:02:336112 libfuzzer_options = [ "max_len = 2048" ]
eromanfe8659e2016-03-02 23:47:026113}
6114
ricea7b870e72016-09-01 04:41:046115fuzzer_test("net_websocket_deflate_stream_fuzzer") {
6116 sources = [
6117 "websockets/websocket_deflate_stream_fuzzer.cc",
6118 ]
6119 deps = [
6120 ":net_fuzzer_test_support",
6121 "//net",
6122 ]
6123 dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict"
6124 libfuzzer_options = [ "max_len=512" ]
6125}
6126
riceaf9dcc092016-09-13 12:42:006127fuzzer_test("net_websocket_extension_parser_fuzzer") {
6128 sources = [
6129 "websockets/websocket_extension_parser_fuzzer.cc",
6130 ]
6131 deps = [
6132 ":net_fuzzer_test_support",
6133 "//net",
6134 ]
6135 dict = "data/fuzzer_dictionaries/net_websocket_extension_parser_fuzzer.dict"
6136 libfuzzer_options = [ "max_len = 256" ]
6137}
6138
mmoroz565e8df22016-03-04 18:17:206139fuzzer_test("net_websocket_frame_parser_fuzzer") {
eromanfe8659e2016-03-02 23:47:026140 sources = [
6141 "websockets/websocket_frame_parser_fuzzer.cc",
6142 ]
6143 deps = [
eroman02b4fe562016-03-04 12:15:166144 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026145 "//net",
6146 ]
mmoroz4a561d32016-07-07 17:45:126147 dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict"
ricea105ae612016-09-08 08:00:076148 libfuzzer_options = [ "max_len=256" ]
eromanfe8659e2016-03-02 23:47:026149}
6150
mmoroz565e8df22016-03-04 18:17:206151fuzzer_test("net_http_chunked_decoder_fuzzer") {
eromanfe8659e2016-03-02 23:47:026152 sources = [
6153 "http/http_chunked_decoder_fuzzer.cc",
6154 ]
6155 deps = [
eroman02b4fe562016-03-04 12:15:166156 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026157 "//net",
6158 ]
6159}
6160
mmenke8e9314bc2016-04-15 21:45:026161fuzzer_test("net_http_proxy_client_socket_fuzzer") {
6162 sources = [
6163 "http/http_proxy_client_socket_fuzzer.cc",
6164 ]
6165 deps = [
6166 ":net_fuzzer_test_support",
6167 ":test_support",
6168 "//base",
6169 "//net",
6170 ]
mmoroz4a561d32016-07-07 17:45:126171 dict = "data/fuzzer_dictionaries/net_http_proxy_client_socket_fuzzer.dict"
mmenke8e9314bc2016-04-15 21:45:026172}
6173
mmoroz9299ef9b2016-09-01 17:37:096174fuzzer_test("net_parse_url_hostname_to_address_fuzzer") {
6175 sources = [
6176 "base/parse_url_hostname_to_address_fuzzer.cc",
6177 ]
6178 deps = [
6179 ":net_fuzzer_test_support",
6180 "//base",
6181 "//net",
6182 ]
6183 libfuzzer_options = [ "max_len=512" ]
6184 seed_corpus = "data/fuzzer_data/hostnames/"
6185}
6186
mmoroz565e8df22016-03-04 18:17:206187fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") {
eromanfe8659e2016-03-02 23:47:026188 sources = [
rchd4db7c152016-07-29 21:58:126189 "quic/core/quic_crypto_framer_parse_message_fuzzer.cc",
eromanfe8659e2016-03-02 23:47:026190 ]
6191 deps = [
eroman02b4fe562016-03-04 12:15:166192 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026193 "//base",
6194 "//net",
6195 ]
6196}
mmenke99b57172016-04-14 20:44:336197
6198fuzzer_test("net_socks_client_socket_fuzzer") {
6199 sources = [
6200 "socket/socks_client_socket_fuzzer.cc",
6201 ]
6202 deps = [
6203 ":net_fuzzer_test_support",
6204 ":test_support",
6205 "//base",
6206 "//net",
6207 ]
6208}
6209
6210fuzzer_test("net_socks5_client_socket_fuzzer") {
6211 sources = [
6212 "socket/socks5_client_socket_fuzzer.cc",
6213 ]
6214 deps = [
6215 ":net_fuzzer_test_support",
6216 ":test_support",
6217 "//base",
6218 "//net",
6219 ]
6220}
mmenkec951d412016-04-28 19:05:226221
mmenkea7da0712016-11-21 21:12:316222fuzzer_test("net_url_request_ftp_fuzzer") {
6223 sources = [
6224 "url_request/url_request_ftp_fuzzer.cc",
6225 ]
6226 deps = [
6227 ":net_fuzzer_test_support",
6228 ":test_support",
6229 "//base",
6230 "//net",
6231 ]
6232 dict = "data/fuzzer_dictionaries/net_url_request_ftp_fuzzer.dict"
6233 seed_corpus = "data/fuzzer_data/net_url_request_ftp_fuzzer/"
6234}
6235
mmenkec951d412016-04-28 19:05:226236fuzzer_test("net_url_request_fuzzer") {
6237 sources = [
6238 "url_request/url_request_fuzzer.cc",
6239 ]
6240 deps = [
6241 ":net_fuzzer_test_support",
6242 ":test_support",
6243 "//base",
6244 "//net",
6245 ]
mmoroz4a561d32016-07-07 17:45:126246 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict"
Jonathan Metzman4cf98282018-03-09 02:36:566247
6248 # TODO(crbug.com/820089): Figure out why this fuzzer's corpus explodes to
6249 # 10 GB. For now, disable it on ClusterFuzz.
6250 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ]
mmenkec951d412016-04-28 19:05:226251}
csharrison88d2a612016-09-09 16:58:546252
6253fuzzer_test("net_auth_challenge_tokenizer_fuzzer") {
6254 sources = [
6255 "http/http_auth_challenge_tokenizer_fuzzer.cc",
6256 ]
6257 deps = [
6258 ":net_fuzzer_test_support",
6259 ":test_support",
6260 "//base",
6261 "//net",
6262 ]
6263}
martijndb9ad4f2016-10-26 18:34:096264
estarka57e8162017-04-21 18:01:056265fuzzer_test("net_http_security_headers_expect_ct_fuzzer") {
6266 sources = [
6267 "http/http_security_headers_expect_ct_fuzzer.cc",
6268 ]
6269 deps = [
6270 ":net_fuzzer_test_support",
6271 "//base",
6272 "//net",
6273 "//url",
6274 ]
6275 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
6276 seed_corpus = "data/fuzzer_data/http_security_headers/"
6277}
6278
martijndb9ad4f2016-10-26 18:34:096279fuzzer_test("net_http_security_headers_hsts_fuzzer") {
6280 sources = [
6281 "http/http_security_headers_hsts_fuzzer.cc",
6282 ]
6283 deps = [
6284 "//base",
6285 "//net",
6286 ]
6287 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
estarka57e8162017-04-21 18:01:056288 seed_corpus = "data/fuzzer_data/http_security_headers/"
martijndb9ad4f2016-10-26 18:34:096289}
6290
6291fuzzer_test("net_http_security_headers_hpkp_fuzzer") {
6292 sources = [
6293 "http/http_security_headers_hpkp_fuzzer.cc",
6294 ]
6295 deps = [
martijn15387afb2016-10-27 22:21:046296 ":net_fuzzer_test_support",
martijndb9ad4f2016-10-26 18:34:096297 "//base",
6298 "//net",
6299 "//url",
6300 ]
6301 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
estarka57e8162017-04-21 18:01:056302 seed_corpus = "data/fuzzer_data/http_security_headers/"
martijndb9ad4f2016-10-26 18:34:096303}
6304
6305fuzzer_test("net_http_security_headers_hpkp_report_only_fuzzer") {
6306 sources = [
6307 "http/http_security_headers_hpkp_report_only_fuzzer.cc",
6308 ]
6309 deps = [
martijn15387afb2016-10-27 22:21:046310 ":net_fuzzer_test_support",
martijndb9ad4f2016-10-26 18:34:096311 "//base",
6312 "//net",
6313 "//url",
6314 ]
6315 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
6316}
martijn40db4b762016-12-14 00:26:456317
martijnda940792016-12-29 01:36:516318fuzzer_test("net_http_transport_security_state_static_fuzzer") {
6319 sources = [
6320 "http/transport_security_state_static_fuzzer.cc",
6321 ]
6322 deps = [
6323 ":net_fuzzer_test_support",
6324 "//net",
6325 ]
6326 dict =
6327 "data/fuzzer_dictionaries/net_http_transport_security_state_fuzzer.dict"
6328}
6329
morlovich5e6e19b2017-01-30 14:38:166330fuzzer_test("net_http_server_fuzzer") {
6331 sources = [
6332 "server/http_server_fuzzer.cc",
6333 ]
6334 deps = [
6335 ":http_server",
6336 ":net_fuzzer_test_support",
6337 ":test_support",
6338 "//base",
6339 "//net",
6340 ]
6341 dict = "data/fuzzer_dictionaries/net_http_server_fuzzer.dict"
6342 seed_corpus = "data/fuzzer_data/http_server_requests/"
6343}
6344
morlovich833190ec2017-02-10 16:53:046345fuzzer_test("net_spdy_session_fuzzer") {
6346 sources = [
bnc8f8f7d302017-04-24 18:08:066347 "spdy/chromium/spdy_session_fuzzer.cc",
morlovich833190ec2017-02-10 16:53:046348 ]
6349 deps = [
6350 ":net_fuzzer_test_support",
6351 ":test_support",
6352 "//base",
6353 "//net",
Ryan Hamiltone3e592e2017-11-16 04:49:096354 "//net/data/ssl/certificates:generate_fuzzer_cert_includes",
morlovich833190ec2017-02-10 16:53:046355 ]
6356 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
6357 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
6358}
Patrick Meenan6a9701372017-10-03 21:33:416359
6360fuzzer_test("net_http2_frame_decoder_fuzzer") {
6361 sources = [
Ryan Hamiltondf987ecb2018-04-18 15:42:016362 "third_party/http2/decoder/http2_frame_decoder_fuzzer.cc",
Patrick Meenan6a9701372017-10-03 21:33:416363 ]
6364 deps = [
6365 ":net_fuzzer_test_support",
6366 ":test_support",
6367 "//base",
6368 "//net",
6369 ]
6370}
Patrick Meenan73b497a2017-10-05 22:40:446371
6372fuzzer_test("net_hpack_decoder_fuzzer") {
6373 sources = [
Ryan Hamiltondf987ecb2018-04-18 15:42:016374 "third_party/http2/hpack/decoder/hpack_decoder_fuzzer.cc",
Patrick Meenan73b497a2017-10-05 22:40:446375 ]
6376 deps = [
6377 ":net_fuzzer_test_support",
6378 ":test_support",
6379 "//base",
6380 "//net",
6381 ]
6382}
Max Moroz592f4c62017-11-01 01:10:326383
6384proto_library("reporting_policy_proto") {
6385 import_dirs = [ "//testing/libfuzzer/proto/" ]
6386 sources = [
6387 "reporting/reporting_policy.proto",
6388 ]
6389 deps = [
6390 "//testing/libfuzzer/proto:json_proto",
6391 ]
6392}
6393
6394fuzzer_test("net_reporting_header_parser_fuzzer") {
6395 sources = [
6396 "reporting/reporting_header_parser_fuzzer.cc",
Max Moroz592f4c62017-11-01 01:10:326397 "reporting/reporting_test_util.cc",
Jana Iyengar14683692017-11-03 05:43:426398 "reporting/reporting_test_util.h",
Max Moroz592f4c62017-11-01 01:10:326399 ]
6400
6401 deps = [
6402 ":net_fuzzer_test_support",
6403 ":reporting_policy_proto",
6404 ":test_support",
6405 "//base",
6406 "//net",
6407 "//testing/libfuzzer/proto:json_proto",
6408 "//testing/libfuzzer/proto:json_proto_converter",
6409 "//third_party/libprotobuf-mutator",
6410 ]
6411}
Ned Williamson3d55bbb2017-11-07 22:58:136412
6413fuzzer_test("net_quic_stream_factory_fuzzer") {
6414 sources = [
6415 "quic/chromium/mock_crypto_client_stream_factory.cc",
6416 "quic/chromium/mock_crypto_client_stream_factory.h",
6417 "quic/chromium/quic_stream_factory_fuzzer.cc",
6418 "quic/chromium/test_task_runner.cc",
6419 "quic/chromium/test_task_runner.h",
6420 ]
6421
6422 deps = [
6423 ":net_fuzzer_test_support",
6424 ":quic_test_tools",
6425 ":test_support",
6426 "//net",
Ryan Hamiltone3e592e2017-11-16 04:49:096427 "//net/data/ssl/certificates:generate_fuzzer_cert_includes",
Ned Williamson3d55bbb2017-11-07 22:58:136428 ]
6429}