blob: ade043af74e39f4d4ec4db62cb51282f82a0c2d9 [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
mmenkee2ad9922017-06-08 20:27:3639enable_net_mojo = !is_ios && !is_proto_quic
[email protected]4625ade2014-04-15 19:26:4440
Sergey Ulanov21dea152017-09-13 00:50:5041# Unix sockets are not supported on iOS, Fuchsia or NaCl.
42enable_unix_sockets = is_posix && !is_ios && !is_fuchsia && !is_nacl
43
mattm4cede8d2017-04-11 02:55:0144# True if certificates are represented with DER byte buffers. This can be true
Matt Mueller15004212017-09-08 04:44:1345# in addition to use_nss_certs, in that case byte certs are used internally but
46# NSS is used for certificate verification.
mattm4cede8d2017-04-11 02:55:0147# TODO(mattm): crbug.com/671420: Implement and enable this for all platforms.
Matt Muellerf7d09032017-09-12 23:44:4348use_byte_certs = is_mac || is_android || is_nacl || is_ios || is_win ||
49 is_fuchsia || is_linux
mattm4cede8d2017-04-11 02:55:0150
Sergey Ulanov2a0b0192017-08-31 23:09:4051# Android and Fuchsia can't run testserver.py directly, so they use remote
52# test server.
53use_remote_test_server = is_android || is_fuchsia
54
brettwa1228ebb2016-10-28 03:51:3455buildflag_header("features") {
56 header = "net_features.h"
57 flags = [
58 "POSIX_AVOID_MMAP=$posix_avoid_mmap",
59 "DISABLE_FILE_SUPPORT=$disable_file_support",
60 "DISABLE_FTP_SUPPORT=$disable_ftp_support",
brettw5224a182016-10-28 22:13:0261 "ENABLE_MDNS=$enable_mdns",
mmenkefd9d15c2017-06-29 13:45:5462 "ENABLE_REPORTING=$enable_reporting",
brettwa1228ebb2016-10-28 03:51:3463 "ENABLE_WEBSOCKETS=$enable_websockets",
mattm4cede8d2017-04-11 02:55:0164 "USE_BYTE_CERTS=$use_byte_certs",
xunjieli815ad5b2017-07-18 15:51:3565 "INCLUDE_TRANSPORT_SECURITY_STATE_PRELOAD_LIST=$include_transport_security_state_preload_list",
brettwa1228ebb2016-10-28 03:51:3466 ]
[email protected]4625ade2014-04-15 19:26:4467}
68
xunjieli905496a2015-08-31 15:51:1769config("net_internal_config") {
[email protected]8603c5de2014-04-16 20:34:3170 defines = [
[email protected]8603c5de2014-04-16 20:34:3171 "DLOPEN_KERBEROS",
scottmg34fb7e52014-12-03 23:27:2472 "NET_IMPLEMENTATION",
[email protected]8603c5de2014-04-16 20:34:3173 ]
dpranke43276212015-02-20 02:55:1974
[email protected]4625ade2014-04-15 19:26:4475 if (use_kerberos) {
76 defines += [ "USE_KERBEROS" ]
77 if (is_android) {
xunjieli905496a2015-08-31 15:51:1778 include_dirs = [ "/usr/include/kerberosV" ]
[email protected]4625ade2014-04-15 19:26:4479 }
[email protected]4625ade2014-04-15 19:26:4480 }
81
82 if (enable_built_in_dns) {
83 defines += [ "ENABLE_BUILT_IN_DNS" ]
xunjieli905496a2015-08-31 15:51:1784 }
85}
86
kapishnikovabe280e2016-04-14 19:07:1687net_configs = [
xunjieli905496a2015-08-31 15:51:1788 ":net_internal_config",
89 "//build/config:precompiled_headers",
90
91 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
92 "//build/config/compiler:no_size_t_to_int_warning",
rsesek99679aa2016-06-28 21:24:1793 "//build/config/compiler:wexit_time_destructors",
xunjieli905496a2015-08-31 15:51:1794]
95
kapishnikovabe280e2016-04-14 19:07:1696if (use_glib && use_gconf && !is_chromeos) {
agrieve95ba4442016-04-25 15:47:1397 net_configs += [ "//build/config/linux/gconf" ]
kapishnikovabe280e2016-04-14 19:07:1698}
xunjieli905496a2015-08-31 15:51:1799
kapishnikovabe280e2016-04-14 19:07:16100if (is_linux) {
101 net_configs += [ "//build/config/linux:libresolv" ]
xunjieli905496a2015-08-31 15:51:17102}
103
xunjieli0b7f5b62016-12-06 20:43:48104source_set("constants") {
105 sources = [
106 "base/trace_constants.cc",
107 "base/trace_constants.h",
108 ]
109 deps = [
110 "//base",
111 ]
112}
113
xunjieli905496a2015-08-31 15:51:17114component("net") {
ckrasic73f7240b2017-01-24 00:06:45115 sources = [
116 "base/address_family.cc",
117 "base/address_family.h",
118 "base/address_list.cc",
119 "base/address_list.h",
ckrasic73f7240b2017-01-24 00:06:45120 "base/auth.cc",
121 "base/auth.h",
122 "base/completion_callback.h",
123 "base/escape.cc",
124 "base/escape.h",
125 "base/hash_value.cc",
126 "base/hash_value.h",
127 "base/host_port_pair.cc",
128 "base/host_port_pair.h",
fayangbaec8ff52017-01-28 03:26:12129 "base/interval.h",
130 "base/interval_set.h",
ckrasic73f7240b2017-01-24 00:06:45131 "base/io_buffer.cc",
132 "base/io_buffer.h",
133 "base/ip_address.cc",
134 "base/ip_address.h",
135 "base/ip_endpoint.cc",
136 "base/ip_endpoint.h",
ckrasic73f7240b2017-01-24 00:06:45137 "base/load_timing_info.cc",
138 "base/load_timing_info.h",
139 "base/lookup_string_in_fixed_set.cc",
140 "base/lookup_string_in_fixed_set.h",
141 "base/net_error_details.h",
142 "base/net_error_list.h",
143 "base/net_errors.cc",
144 "base/net_errors.h",
145 "base/net_errors_posix.cc",
146 "base/net_export.h",
147 "base/net_module.cc",
148 "base/net_module.h",
149 "base/net_string_util.h",
150 "base/network_interfaces.cc",
151 "base/network_interfaces.h",
ckrasic73f7240b2017-01-24 00:06:45152 "base/parse_number.cc",
153 "base/parse_number.h",
154 "base/port_util.cc",
155 "base/port_util.h",
mmenke392ec462017-03-23 18:49:35156 "base/privacy_mode.h",
ckrasic73f7240b2017-01-24 00:06:45157 "base/rand_callback.h",
158 "base/registry_controlled_domains/registry_controlled_domain.cc",
159 "base/registry_controlled_domains/registry_controlled_domain.h",
160 "base/sockaddr_storage.cc",
161 "base/sockaddr_storage.h",
162 "base/sys_addrinfo.h",
163 "base/url_util.cc",
164 "base/url_util.h",
ckrasic73f7240b2017-01-24 00:06:45165 "cert/asn1_util.cc",
166 "cert/asn1_util.h",
167 "cert/cert_database.cc",
168 "cert/cert_database.h",
Matt Mueller15004212017-09-08 04:44:13169 "cert/cert_database_stub.cc",
ckrasic73f7240b2017-01-24 00:06:45170 "cert/cert_status_flags.cc",
171 "cert/cert_status_flags.h",
mmenke392ec462017-03-23 18:49:35172 "cert/cert_status_flags_list.h",
ckrasic73f7240b2017-01-24 00:06:45173 "cert/cert_verifier.cc",
174 "cert/cert_verifier.h",
175 "cert/cert_verify_result.cc",
176 "cert/cert_verify_result.h",
177 "cert/client_cert_verifier.h",
178 "cert/crl_set.cc",
179 "cert/crl_set.h",
180 "cert/ct_known_logs.cc",
181 "cert/ct_known_logs.h",
ckrasic73f7240b2017-01-24 00:06:45182 "cert/ct_policy_enforcer.cc",
183 "cert/ct_policy_enforcer.h",
184 "cert/ct_policy_status.h",
185 "cert/ct_verifier.h",
186 "cert/ct_verify_result.cc",
187 "cert/ct_verify_result.h",
188 "cert/do_nothing_ct_verifier.cc",
189 "cert/do_nothing_ct_verifier.h",
190 "cert/internal/cert_error_id.cc",
191 "cert/internal/cert_error_id.h",
192 "cert/internal/cert_error_params.cc",
193 "cert/internal/cert_error_params.h",
ckrasic73f7240b2017-01-24 00:06:45194 "cert/internal/cert_errors.cc",
195 "cert/internal/cert_errors.h",
196 "cert/internal/cert_issuer_source.h",
197 "cert/internal/cert_issuer_source_aia.cc",
198 "cert/internal/cert_issuer_source_aia.h",
199 "cert/internal/cert_issuer_source_static.cc",
200 "cert/internal/cert_issuer_source_static.h",
201 "cert/internal/certificate_policies.cc",
202 "cert/internal/certificate_policies.h",
Eric Romancaa0a602017-07-28 21:17:11203 "cert/internal/common_cert_errors.cc",
204 "cert/internal/common_cert_errors.h",
ckrasic73f7240b2017-01-24 00:06:45205 "cert/internal/extended_key_usage.cc",
206 "cert/internal/extended_key_usage.h",
Matt Mueller9e3ad3032017-09-14 19:29:31207 "cert/internal/general_names.cc",
208 "cert/internal/general_names.h",
ckrasic73f7240b2017-01-24 00:06:45209 "cert/internal/name_constraints.cc",
210 "cert/internal/name_constraints.h",
Eric Romana2f6f55d2017-09-07 23:34:57211 "cert/internal/ocsp.cc",
212 "cert/internal/ocsp.h",
ckrasic73f7240b2017-01-24 00:06:45213 "cert/internal/parse_certificate.cc",
214 "cert/internal/parse_certificate.h",
215 "cert/internal/parse_name.cc",
216 "cert/internal/parse_name.h",
ckrasic73f7240b2017-01-24 00:06:45217 "cert/internal/parsed_certificate.cc",
218 "cert/internal/parsed_certificate.h",
219 "cert/internal/path_builder.cc",
220 "cert/internal/path_builder.h",
221 "cert/internal/signature_algorithm.cc",
222 "cert/internal/signature_algorithm.h",
Eric Roman5431d702017-07-26 01:58:18223 "cert/internal/simple_path_builder_delegate.cc",
224 "cert/internal/simple_path_builder_delegate.h",
ckrasic73f7240b2017-01-24 00:06:45225 "cert/internal/trust_store.cc",
226 "cert/internal/trust_store.h",
227 "cert/internal/trust_store_collection.cc",
228 "cert/internal/trust_store_collection.h",
229 "cert/internal/trust_store_in_memory.cc",
230 "cert/internal/trust_store_in_memory.h",
231 "cert/internal/verify_certificate_chain.cc",
232 "cert/internal/verify_certificate_chain.h",
233 "cert/internal/verify_name_match.cc",
234 "cert/internal/verify_name_match.h",
235 "cert/internal/verify_signed_data.cc",
236 "cert/internal/verify_signed_data.h",
237 "cert/ocsp_revocation_status.h",
238 "cert/ocsp_verify_result.cc",
239 "cert/ocsp_verify_result.h",
240 "cert/pem_tokenizer.cc",
241 "cert/pem_tokenizer.h",
242 "cert/sct_status_flags.cc",
243 "cert/sct_status_flags.h",
244 "cert/signed_certificate_timestamp.cc",
245 "cert/signed_certificate_timestamp.h",
246 "cert/signed_certificate_timestamp_and_status.cc",
247 "cert/signed_certificate_timestamp_and_status.h",
248 "cert/signed_tree_head.cc",
249 "cert/signed_tree_head.h",
250 "cert/sth_distributor.cc",
251 "cert/sth_distributor.h",
252 "cert/sth_observer.h",
253 "cert/sth_reporter.h",
254 "cert/x509_cert_types.cc",
255 "cert/x509_cert_types.h",
256 "cert/x509_certificate.cc",
257 "cert/x509_certificate.h",
davidben7c97df62017-05-04 00:20:23258 "cert/x509_certificate_bytes.cc",
ckrasic73f7240b2017-01-24 00:06:45259 "cert/x509_certificate_net_log_param.cc",
260 "cert/x509_certificate_net_log_param.h",
ckrasic73f7240b2017-01-24 00:06:45261 "cert/x509_util.cc",
262 "cert/x509_util.h",
ckrasic73f7240b2017-01-24 00:06:45263 "der/encode_values.cc",
264 "der/encode_values.h",
265 "der/input.cc",
266 "der/input.h",
267 "der/parse_values.cc",
268 "der/parse_values.h",
269 "der/parser.cc",
270 "der/parser.h",
271 "der/tag.cc",
272 "der/tag.h",
273 "dns/dns_util.cc",
274 "dns/dns_util.h",
275 "http/http_auth_challenge_tokenizer.cc",
276 "http/http_auth_challenge_tokenizer.h",
277 "http/http_auth_scheme.cc",
278 "http/http_auth_scheme.h",
279 "http/http_byte_range.cc",
280 "http/http_byte_range.h",
281 "http/http_log_util.cc",
282 "http/http_log_util.h",
Andrey Kosyakov83a6eee2017-08-14 19:20:04283 "http/http_raw_request_headers.cc",
284 "http/http_raw_request_headers.h",
ckrasic73f7240b2017-01-24 00:06:45285 "http/http_request_headers.cc",
286 "http/http_request_headers.h",
287 "http/http_response_headers.cc",
288 "http/http_response_headers.h",
289 "http/http_response_info.cc",
290 "http/http_response_info.h",
291 "http/http_security_headers.cc",
292 "http/http_security_headers.h",
mmenke392ec462017-03-23 18:49:35293 "http/http_status_code_list",
ckrasic73f7240b2017-01-24 00:06:45294 "http/http_util.cc",
295 "http/http_util.h",
296 "http/http_vary_data.cc",
297 "http/http_vary_data.h",
298 "http/transport_security_state.cc",
299 "http/transport_security_state.h",
xunjieli815ad5b2017-07-18 15:51:35300 "http/transport_security_state_source.cc",
martijn9b806ab22017-03-18 16:13:21301 "http/transport_security_state_source.h",
ckrasic73f7240b2017-01-24 00:06:45302 "log/net_log.cc",
303 "log/net_log.h",
304 "log/net_log_capture_mode.cc",
305 "log/net_log_capture_mode.h",
306 "log/net_log_entry.cc",
307 "log/net_log_entry.h",
mmenke392ec462017-03-23 18:49:35308 "log/net_log_event_type.h",
ckrasic73f7240b2017-01-24 00:06:45309 "log/net_log_event_type_list.h",
mmenke392ec462017-03-23 18:49:35310 "log/net_log_parameters_callback.h",
ckrasic73f7240b2017-01-24 00:06:45311 "log/net_log_source.cc",
312 "log/net_log_source.h",
mmenke392ec462017-03-23 18:49:35313 "log/net_log_source_type.h",
ckrasic73f7240b2017-01-24 00:06:45314 "log/net_log_source_type_list.h",
315 "log/net_log_with_source.cc",
316 "log/net_log_with_source.h",
317 "socket/client_socket_handle.cc",
318 "socket/client_socket_handle.h",
319 "socket/connection_attempts.h",
320 "socket/next_proto.cc",
321 "socket/next_proto.h",
xunjieli321a96f32017-03-07 19:42:17322 "socket/socket.cc",
ckrasic73f7240b2017-01-24 00:06:45323 "socket/socket.h",
324 "socket/socket_bio_adapter.cc",
325 "socket/socket_bio_adapter.h",
326 "socket/socket_performance_watcher.h",
327 "socket/socket_performance_watcher_factory.h",
328 "socket/ssl_client_socket.cc",
329 "socket/ssl_client_socket.h",
330 "socket/ssl_client_socket_impl.cc",
331 "socket/ssl_client_socket_impl.h",
332 "socket/ssl_socket.h",
ckrasic73f7240b2017-01-24 00:06:45333 "ssl/channel_id_service.cc",
334 "ssl/channel_id_service.h",
335 "ssl/channel_id_store.cc",
336 "ssl/channel_id_store.h",
mattm436ccfe2017-06-19 20:24:08337 "ssl/client_cert_identity.cc",
338 "ssl/client_cert_identity.h",
339 "ssl/client_cert_identity_mac.cc",
340 "ssl/client_cert_identity_mac.h",
ckrasic73f7240b2017-01-24 00:06:45341 "ssl/default_channel_id_store.cc",
342 "ssl/default_channel_id_store.h",
ckrasic73f7240b2017-01-24 00:06:45343 "ssl/openssl_ssl_util.cc",
344 "ssl/openssl_ssl_util.h",
345 "ssl/ssl_cert_request_info.cc",
346 "ssl/ssl_cert_request_info.h",
347 "ssl/ssl_cipher_suite_names.cc",
348 "ssl/ssl_cipher_suite_names.h",
349 "ssl/ssl_client_auth_cache.cc",
350 "ssl/ssl_client_auth_cache.h",
351 "ssl/ssl_client_cert_type.h",
352 "ssl/ssl_client_session_cache.cc",
353 "ssl/ssl_client_session_cache.h",
354 "ssl/ssl_config.cc",
355 "ssl/ssl_config.h",
356 "ssl/ssl_config_service.cc",
357 "ssl/ssl_config_service.h",
358 "ssl/ssl_connection_status_flags.h",
359 "ssl/ssl_info.cc",
360 "ssl/ssl_info.h",
361 "ssl/ssl_private_key.h",
362 "ssl/ssl_server_config.cc",
363 "ssl/ssl_server_config.h",
364 "ssl/token_binding.cc",
365 "ssl/token_binding.h",
366 ]
kapishnikovabe280e2016-04-14 19:07:16367 net_unfiltered_sources = []
368
369 deps = [
xunjieli0b7f5b62016-12-06 20:43:48370 ":constants",
kapishnikovabe280e2016-04-14 19:07:16371 ":net_resources",
372 "//base",
373 "//net/base/registry_controlled_domains",
eranm9657f672017-05-05 12:25:19374 "//net/data/ssl/certificate_transparency:ct_log_list",
kapishnikovabe280e2016-04-14 19:07:16375 "//third_party/protobuf:protobuf_lite",
376 "//url:url_features",
377 ]
378
xunjieli815ad5b2017-07-18 15:51:35379 if (include_transport_security_state_preload_list) {
380 deps += [ "//net/http:generate_transport_security_state" ]
381 }
382
kapishnikovabe280e2016-04-14 19:07:16383 public_deps = [
384 ":net_quic_proto",
rhalavatia9b551d2017-02-09 12:03:00385 ":traffic_annotation",
kapishnikovabe280e2016-04-14 19:07:16386 "//crypto",
387 "//crypto:platform",
bcfd0b70c42017-06-14 00:13:20388 "//third_party/boringssl",
kapishnikovabe280e2016-04-14 19:07:16389 ]
390
391 if (!is_nacl) {
ckrasic73f7240b2017-01-24 00:06:45392 sources += [
393 "android/cellular_signal_strength.cc",
394 "android/cellular_signal_strength.h",
395 "android/cert_verify_result_android.cc",
396 "android/cert_verify_result_android.h",
397 "android/gurl_utils.cc",
ckrasic73f7240b2017-01-24 00:06:45398 "android/http_auth_negotiate_android.cc",
399 "android/http_auth_negotiate_android.h",
400 "android/keystore.cc",
401 "android/keystore.h",
402 "android/legacy_openssl.h",
ckrasic73f7240b2017-01-24 00:06:45403 "android/network_change_notifier_android.cc",
404 "android/network_change_notifier_android.h",
405 "android/network_change_notifier_delegate_android.cc",
406 "android/network_change_notifier_delegate_android.h",
407 "android/network_change_notifier_factory_android.cc",
408 "android/network_change_notifier_factory_android.h",
409 "android/network_library.cc",
410 "android/network_library.h",
411 "android/traffic_stats.cc",
412 "android/traffic_stats.h",
413 "base/address_tracker_linux.cc",
414 "base/address_tracker_linux.h",
bnc4fab8022017-03-24 16:35:03415 "base/arena.cc",
416 "base/arena.h",
ckrasic73f7240b2017-01-24 00:06:45417 "base/backoff_entry.cc",
418 "base/backoff_entry.h",
419 "base/backoff_entry_serializer.cc",
420 "base/backoff_entry_serializer.h",
421 "base/cache_type.h",
422 "base/chunked_upload_data_stream.cc",
423 "base/chunked_upload_data_stream.h",
ckrasic73f7240b2017-01-24 00:06:45424 "base/data_url.cc",
425 "base/data_url.h",
426 "base/elements_upload_data_stream.cc",
427 "base/elements_upload_data_stream.h",
428 "base/expiring_cache.h",
429 "base/file_stream.cc",
430 "base/file_stream.h",
431 "base/file_stream_context.cc",
432 "base/file_stream_context.h",
433 "base/file_stream_context_posix.cc",
434 "base/file_stream_context_win.cc",
435 "base/filename_util.cc",
436 "base/filename_util.h",
437 "base/filename_util_internal.cc",
438 "base/filename_util_internal.h",
Bence Békyd5c16edf2017-08-04 17:32:30439 "base/hex_utils.cc",
440 "base/hex_utils.h",
ckrasic73f7240b2017-01-24 00:06:45441 "base/host_mapping_rules.cc",
442 "base/host_mapping_rules.h",
443 "base/int128.cc",
444 "base/int128.h",
445 "base/iovec.h",
446 "base/ip_pattern.cc",
447 "base/ip_pattern.h",
448 "base/layered_network_delegate.cc",
449 "base/layered_network_delegate.h",
bnc4fab8022017-03-24 16:35:03450 "base/linked_hash_map.h",
ckrasic73f7240b2017-01-24 00:06:45451 "base/load_flags.h",
452 "base/load_flags_list.h",
453 "base/load_states.h",
454 "base/load_states_list.h",
455 "base/logging_network_change_observer.cc",
456 "base/logging_network_change_observer.h",
ckrasic73f7240b2017-01-24 00:06:45457 "base/mime_sniffer.cc",
458 "base/mime_sniffer.h",
459 "base/mime_util.cc",
460 "base/mime_util.h",
461 "base/net_errors_win.cc",
462 "base/net_info_source_list.h",
463 "base/network_activity_monitor.cc",
464 "base/network_activity_monitor.h",
465 "base/network_change_notifier.cc",
466 "base/network_change_notifier.h",
467 "base/network_change_notifier_factory.h",
468 "base/network_change_notifier_linux.cc",
469 "base/network_change_notifier_linux.h",
470 "base/network_change_notifier_mac.cc",
471 "base/network_change_notifier_mac.h",
472 "base/network_change_notifier_win.cc",
473 "base/network_change_notifier_win.h",
474 "base/network_config_watcher_mac.cc",
475 "base/network_config_watcher_mac.h",
476 "base/network_delegate.cc",
477 "base/network_delegate.h",
478 "base/network_delegate_impl.cc",
479 "base/network_delegate_impl.h",
Sergey Ulanov5c33235ae2017-07-06 23:55:07480 "base/network_interfaces_getifaddrs.cc",
481 "base/network_interfaces_getifaddrs.h",
ckrasic73f7240b2017-01-24 00:06:45482 "base/network_interfaces_linux.cc",
wychen36575ffb2017-04-01 05:50:47483 "base/network_interfaces_linux.h",
Sergey Ulanov5c33235ae2017-07-06 23:55:07484 "base/network_interfaces_nacl.cc",
485 "base/network_interfaces_posix.cc",
486 "base/network_interfaces_posix.h",
ckrasic73f7240b2017-01-24 00:06:45487 "base/network_interfaces_win.cc",
thakisb8590c92017-03-23 18:14:53488 "base/network_interfaces_win.h",
ckrasic73f7240b2017-01-24 00:06:45489 "base/network_throttle_manager.h",
490 "base/network_throttle_manager_impl.cc",
491 "base/network_throttle_manager_impl.h",
492 "base/percentile_estimator.cc",
493 "base/percentile_estimator.h",
494 "base/platform_mime_util.h",
495 "base/platform_mime_util_linux.cc",
496 "base/platform_mime_util_mac.mm",
497 "base/platform_mime_util_win.cc",
498 "base/prioritized_dispatcher.cc",
499 "base/prioritized_dispatcher.h",
500 "base/priority_queue.h",
501 "base/proxy_delegate.h",
502 "base/request_priority.cc",
503 "base/request_priority.h",
504 "base/sdch_dictionary.cc",
505 "base/sdch_dictionary.h",
506 "base/sdch_manager.cc",
507 "base/sdch_manager.h",
508 "base/sdch_net_log_params.cc",
509 "base/sdch_net_log_params.h",
510 "base/sdch_observer.cc",
511 "base/sdch_observer.h",
512 "base/sdch_problem_code_list.h",
513 "base/sdch_problem_codes.h",
514 "base/static_cookie_policy.cc",
515 "base/static_cookie_policy.h",
516 "base/test_data_stream.cc",
517 "base/test_data_stream.h",
518 "base/upload_bytes_element_reader.cc",
519 "base/upload_bytes_element_reader.h",
520 "base/upload_data_stream.cc",
521 "base/upload_data_stream.h",
522 "base/upload_element_reader.cc",
523 "base/upload_element_reader.h",
524 "base/upload_file_element_reader.cc",
525 "base/upload_file_element_reader.h",
526 "base/upload_progress.h",
527 "base/winsock_init.cc",
528 "base/winsock_init.h",
529 "base/winsock_util.cc",
530 "base/winsock_util.h",
531 "cert/caching_cert_verifier.cc",
532 "cert/caching_cert_verifier.h",
533 "cert/cert_database_android.cc",
534 "cert/cert_database_ios.cc",
535 "cert/cert_database_mac.cc",
536 "cert/cert_database_nss.cc",
537 "cert/cert_database_win.cc",
538 "cert/cert_net_fetcher.h",
539 "cert/cert_verify_proc.cc",
540 "cert/cert_verify_proc.h",
541 "cert/cert_verify_proc_android.cc",
542 "cert/cert_verify_proc_android.h",
eroman8ccd62d2017-03-16 23:54:26543 "cert/cert_verify_proc_builtin.cc",
544 "cert/cert_verify_proc_builtin.h",
ckrasic73f7240b2017-01-24 00:06:45545 "cert/cert_verify_proc_ios.cc",
546 "cert/cert_verify_proc_ios.h",
547 "cert/cert_verify_proc_mac.cc",
548 "cert/cert_verify_proc_mac.h",
549 "cert/cert_verify_proc_nss.cc",
550 "cert/cert_verify_proc_nss.h",
ckrasic73f7240b2017-01-24 00:06:45551 "cert/cert_verify_proc_win.cc",
552 "cert/cert_verify_proc_win.h",
553 "cert/crl_set_storage.cc",
554 "cert/crl_set_storage.h",
ckrasic73f7240b2017-01-24 00:06:45555 "cert/ct_log_response_parser.cc",
556 "cert/ct_log_response_parser.h",
557 "cert/ct_log_verifier.cc",
558 "cert/ct_log_verifier.h",
559 "cert/ct_log_verifier_util.cc",
560 "cert/ct_log_verifier_util.h",
561 "cert/ct_objects_extractor.cc",
562 "cert/ct_objects_extractor.h",
563 "cert/ct_sct_to_string.cc",
564 "cert/ct_sct_to_string.h",
565 "cert/ct_serialization.cc",
566 "cert/ct_serialization.h",
567 "cert/ct_signed_certificate_timestamp_log_param.cc",
568 "cert/ct_signed_certificate_timestamp_log_param.h",
569 "cert/ev_root_ca_metadata.cc",
570 "cert/ev_root_ca_metadata.h",
eromanf628d6b2017-04-19 22:47:27571 "cert/internal/system_trust_store.cc",
572 "cert/internal/system_trust_store.h",
mattmea4ed8232017-02-28 23:13:23573 "cert/internal/trust_store_mac.cc",
574 "cert/internal/trust_store_mac.h",
ckrasic73f7240b2017-01-24 00:06:45575 "cert/internal/trust_store_nss.cc",
576 "cert/internal/trust_store_nss.h",
577 "cert/jwk_serializer.cc",
578 "cert/jwk_serializer.h",
eromanf2971fd2017-04-20 20:10:45579 "cert/known_roots_mac.cc",
580 "cert/known_roots_mac.h",
581 "cert/known_roots_nss.cc",
582 "cert/known_roots_nss.h",
583 "cert/known_roots_win.cc",
584 "cert/known_roots_win.h",
ckrasic73f7240b2017-01-24 00:06:45585 "cert/merkle_audit_proof.cc",
586 "cert/merkle_audit_proof.h",
587 "cert/merkle_consistency_proof.cc",
588 "cert/merkle_consistency_proof.h",
589 "cert/merkle_tree_leaf.cc",
590 "cert/merkle_tree_leaf.h",
591 "cert/multi_log_ct_verifier.cc",
592 "cert/multi_log_ct_verifier.h",
593 "cert/multi_threaded_cert_verifier.cc",
594 "cert/multi_threaded_cert_verifier.h",
595 "cert/nss_cert_database.cc",
596 "cert/nss_cert_database.h",
597 "cert/nss_cert_database_chromeos.cc",
598 "cert/nss_cert_database_chromeos.h",
599 "cert/nss_profile_filter_chromeos.cc",
600 "cert/nss_profile_filter_chromeos.h",
601 "cert/test_keychain_search_list_mac.cc",
602 "cert/test_keychain_search_list_mac.h",
603 "cert/test_root_certs.cc",
604 "cert/test_root_certs.h",
605 "cert/test_root_certs_android.cc",
606 "cert/test_root_certs_mac.cc",
607 "cert/test_root_certs_nss.cc",
ckrasic73f7240b2017-01-24 00:06:45608 "cert/test_root_certs_win.cc",
mmenke392ec462017-03-23 18:49:35609 "cert/x509_certificate_known_roots_win.h",
ckrasic73f7240b2017-01-24 00:06:45610 "cert/x509_certificate_nss.cc",
ckrasic73f7240b2017-01-24 00:06:45611 "cert/x509_util_android.cc",
mattm4cede8d2017-04-11 02:55:01612 "cert/x509_util_ios.cc",
613 "cert/x509_util_ios.h",
mattm1a07e632017-05-16 05:55:50614 "cert/x509_util_ios_and_mac.cc",
615 "cert/x509_util_ios_and_mac.h",
ckrasic73f7240b2017-01-24 00:06:45616 "cert/x509_util_mac.cc",
617 "cert/x509_util_mac.h",
618 "cert/x509_util_nss.cc",
619 "cert/x509_util_nss.h",
mattm2fe429a2017-06-20 01:53:44620 "cert/x509_util_win.cc",
621 "cert/x509_util_win.h",
ckrasic73f7240b2017-01-24 00:06:45622 "cert_net/cert_net_fetcher_impl.cc",
623 "cert_net/cert_net_fetcher_impl.h",
624 "cert_net/nss_ocsp.cc",
625 "cert_net/nss_ocsp.h",
626 "cookies/canonical_cookie.cc",
627 "cookies/canonical_cookie.h",
628 "cookies/cookie_constants.cc",
629 "cookies/cookie_constants.h",
630 "cookies/cookie_monster.cc",
631 "cookies/cookie_monster.h",
632 "cookies/cookie_options.cc",
633 "cookies/cookie_options.h",
634 "cookies/cookie_store.cc",
635 "cookies/cookie_store.h",
636 "cookies/cookie_util.cc",
637 "cookies/cookie_util.h",
638 "cookies/parsed_cookie.cc",
639 "cookies/parsed_cookie.h",
Maks Orlovich036fd1f2017-08-07 17:51:11640 "disk_cache/backend_cleanup_tracker.cc",
641 "disk_cache/backend_cleanup_tracker.h",
ckrasic73f7240b2017-01-24 00:06:45642 "disk_cache/blockfile/addr.cc",
643 "disk_cache/blockfile/addr.h",
644 "disk_cache/blockfile/backend_impl.cc",
645 "disk_cache/blockfile/backend_impl.h",
646 "disk_cache/blockfile/bitmap.cc",
647 "disk_cache/blockfile/bitmap.h",
648 "disk_cache/blockfile/block_files.cc",
649 "disk_cache/blockfile/block_files.h",
650 "disk_cache/blockfile/disk_format.cc",
651 "disk_cache/blockfile/disk_format.h",
652 "disk_cache/blockfile/disk_format_base.h",
653 "disk_cache/blockfile/entry_impl.cc",
654 "disk_cache/blockfile/entry_impl.h",
655 "disk_cache/blockfile/errors.h",
656 "disk_cache/blockfile/eviction.cc",
657 "disk_cache/blockfile/eviction.h",
658 "disk_cache/blockfile/experiments.h",
659 "disk_cache/blockfile/file.cc",
660 "disk_cache/blockfile/file.h",
661 "disk_cache/blockfile/file_block.h",
662 "disk_cache/blockfile/file_ios.cc",
663 "disk_cache/blockfile/file_lock.cc",
664 "disk_cache/blockfile/file_lock.h",
665 "disk_cache/blockfile/file_posix.cc",
666 "disk_cache/blockfile/file_win.cc",
667 "disk_cache/blockfile/histogram_macros.h",
668 "disk_cache/blockfile/in_flight_backend_io.cc",
669 "disk_cache/blockfile/in_flight_backend_io.h",
670 "disk_cache/blockfile/in_flight_io.cc",
671 "disk_cache/blockfile/in_flight_io.h",
672 "disk_cache/blockfile/mapped_file.cc",
673 "disk_cache/blockfile/mapped_file.h",
674 "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc",
675 "disk_cache/blockfile/mapped_file_posix.cc",
676 "disk_cache/blockfile/mapped_file_win.cc",
677 "disk_cache/blockfile/rankings.cc",
678 "disk_cache/blockfile/rankings.h",
679 "disk_cache/blockfile/sparse_control.cc",
680 "disk_cache/blockfile/sparse_control.h",
681 "disk_cache/blockfile/stats.cc",
682 "disk_cache/blockfile/stats.h",
683 "disk_cache/blockfile/storage_block-inl.h",
684 "disk_cache/blockfile/storage_block.h",
685 "disk_cache/blockfile/stress_support.h",
686 "disk_cache/blockfile/trace.cc",
687 "disk_cache/blockfile/trace.h",
688 "disk_cache/blockfile/webfonts_histogram.cc",
689 "disk_cache/blockfile/webfonts_histogram.h",
690 "disk_cache/cache_util.cc",
691 "disk_cache/cache_util.h",
692 "disk_cache/cache_util_posix.cc",
693 "disk_cache/cache_util_win.cc",
694 "disk_cache/disk_cache.cc",
695 "disk_cache/disk_cache.h",
696 "disk_cache/memory/mem_backend_impl.cc",
697 "disk_cache/memory/mem_backend_impl.h",
698 "disk_cache/memory/mem_entry_impl.cc",
699 "disk_cache/memory/mem_entry_impl.h",
700 "disk_cache/net_log_parameters.cc",
701 "disk_cache/net_log_parameters.h",
702 "disk_cache/simple/simple_backend_impl.cc",
703 "disk_cache/simple/simple_backend_impl.h",
704 "disk_cache/simple/simple_backend_version.h",
705 "disk_cache/simple/simple_entry_format.cc",
706 "disk_cache/simple/simple_entry_format.h",
707 "disk_cache/simple/simple_entry_format_history.h",
708 "disk_cache/simple/simple_entry_impl.cc",
709 "disk_cache/simple/simple_entry_impl.h",
710 "disk_cache/simple/simple_entry_operation.cc",
711 "disk_cache/simple/simple_entry_operation.h",
712 "disk_cache/simple/simple_experiment.cc",
713 "disk_cache/simple/simple_experiment.h",
714 "disk_cache/simple/simple_histogram_macros.h",
715 "disk_cache/simple/simple_index.cc",
716 "disk_cache/simple/simple_index.h",
717 "disk_cache/simple/simple_index_delegate.h",
718 "disk_cache/simple/simple_index_file.cc",
719 "disk_cache/simple/simple_index_file.h",
720 "disk_cache/simple/simple_index_file_posix.cc",
721 "disk_cache/simple/simple_index_file_win.cc",
722 "disk_cache/simple/simple_net_log_parameters.cc",
723 "disk_cache/simple/simple_net_log_parameters.h",
724 "disk_cache/simple/simple_synchronous_entry.cc",
725 "disk_cache/simple/simple_synchronous_entry.h",
726 "disk_cache/simple/simple_util.cc",
727 "disk_cache/simple/simple_util.h",
728 "disk_cache/simple/simple_util_posix.cc",
729 "disk_cache/simple/simple_util_win.cc",
730 "disk_cache/simple/simple_version_upgrade.cc",
731 "disk_cache/simple/simple_version_upgrade.h",
732 "dns/address_sorter.h",
733 "dns/address_sorter_posix.cc",
734 "dns/address_sorter_posix.h",
735 "dns/address_sorter_win.cc",
736 "dns/dns_client.cc",
737 "dns/dns_client.h",
738 "dns/dns_config_service.cc",
739 "dns/dns_config_service.h",
740 "dns/dns_config_service_posix.cc",
741 "dns/dns_config_service_posix.h",
742 "dns/dns_config_service_win.cc",
743 "dns/dns_config_service_win.h",
744 "dns/dns_config_watcher_mac.cc",
745 "dns/dns_config_watcher_mac.h",
746 "dns/dns_hosts.cc",
747 "dns/dns_hosts.h",
748 "dns/dns_protocol.h",
749 "dns/dns_query.cc",
750 "dns/dns_query.h",
751 "dns/dns_reloader.cc",
752 "dns/dns_reloader.h",
753 "dns/dns_response.cc",
754 "dns/dns_response.h",
755 "dns/dns_session.cc",
756 "dns/dns_session.h",
757 "dns/dns_socket_pool.cc",
758 "dns/dns_socket_pool.h",
759 "dns/dns_transaction.cc",
760 "dns/dns_transaction.h",
761 "dns/host_cache.cc",
762 "dns/host_cache.h",
763 "dns/host_resolver.cc",
764 "dns/host_resolver.h",
765 "dns/host_resolver_impl.cc",
766 "dns/host_resolver_impl.h",
767 "dns/host_resolver_proc.cc",
768 "dns/host_resolver_proc.h",
769 "dns/mapped_host_resolver.cc",
770 "dns/mapped_host_resolver.h",
771 "dns/mdns_cache.cc",
772 "dns/mdns_cache.h",
773 "dns/mdns_client.cc",
774 "dns/mdns_client.h",
775 "dns/mdns_client_impl.cc",
776 "dns/mdns_client_impl.h",
777 "dns/notify_watcher_mac.cc",
778 "dns/notify_watcher_mac.h",
779 "dns/record_parsed.cc",
780 "dns/record_parsed.h",
781 "dns/record_rdata.cc",
782 "dns/record_rdata.h",
783 "dns/serial_worker.cc",
784 "dns/serial_worker.h",
785 "filter/filter_source_stream.cc",
786 "filter/filter_source_stream.h",
787 "filter/gzip_header.cc",
788 "filter/gzip_header.h",
789 "filter/gzip_source_stream.cc",
790 "filter/gzip_source_stream.h",
ckrasic73f7240b2017-01-24 00:06:45791 "filter/source_stream.cc",
792 "filter/source_stream.h",
793 "filter/source_stream_type_list.h",
794 "http/bidirectional_stream.cc",
795 "http/bidirectional_stream.h",
796 "http/bidirectional_stream_impl.cc",
797 "http/bidirectional_stream_impl.h",
798 "http/bidirectional_stream_request_info.cc",
799 "http/bidirectional_stream_request_info.h",
wangyix64ccc57c2017-06-01 23:14:16800 "http/broken_alternative_services.cc",
801 "http/broken_alternative_services.h",
ckrasic73f7240b2017-01-24 00:06:45802 "http/failing_http_transaction_factory.cc",
803 "http/failing_http_transaction_factory.h",
804 "http/http_auth.cc",
805 "http/http_auth.h",
806 "http/http_auth_cache.cc",
807 "http/http_auth_cache.h",
808 "http/http_auth_controller.cc",
809 "http/http_auth_controller.h",
810 "http/http_auth_filter.cc",
811 "http/http_auth_filter.h",
ckrasic73f7240b2017-01-24 00:06:45812 "http/http_auth_gssapi_posix.cc",
813 "http/http_auth_gssapi_posix.h",
814 "http/http_auth_handler.cc",
815 "http/http_auth_handler.h",
816 "http/http_auth_handler_basic.cc",
817 "http/http_auth_handler_basic.h",
818 "http/http_auth_handler_digest.cc",
819 "http/http_auth_handler_digest.h",
820 "http/http_auth_handler_factory.cc",
821 "http/http_auth_handler_factory.h",
822 "http/http_auth_handler_negotiate.cc",
823 "http/http_auth_handler_negotiate.h",
824 "http/http_auth_handler_ntlm.cc",
825 "http/http_auth_handler_ntlm.h",
826 "http/http_auth_handler_ntlm_portable.cc",
827 "http/http_auth_handler_ntlm_win.cc",
828 "http/http_auth_multi_round_parse.cc",
829 "http/http_auth_multi_round_parse.h",
830 "http/http_auth_preferences.cc",
831 "http/http_auth_preferences.h",
832 "http/http_auth_sspi_win.cc",
833 "http/http_auth_sspi_win.h",
834 "http/http_basic_state.cc",
835 "http/http_basic_state.h",
836 "http/http_basic_stream.cc",
837 "http/http_basic_stream.h",
838 "http/http_cache.cc",
839 "http/http_cache.h",
840 "http/http_cache_lookup_manager.cc",
841 "http/http_cache_lookup_manager.h",
842 "http/http_cache_transaction.cc",
843 "http/http_cache_transaction.h",
shivanishac6582e12017-07-14 22:18:19844 "http/http_cache_writers.cc",
845 "http/http_cache_writers.h",
ckrasic73f7240b2017-01-24 00:06:45846 "http/http_chunked_decoder.cc",
847 "http/http_chunked_decoder.h",
848 "http/http_content_disposition.cc",
849 "http/http_content_disposition.h",
850 "http/http_network_layer.cc",
851 "http/http_network_layer.h",
852 "http/http_network_session.cc",
853 "http/http_network_session.h",
854 "http/http_network_session_peer.cc",
855 "http/http_network_session_peer.h",
856 "http/http_network_transaction.cc",
857 "http/http_network_transaction.h",
858 "http/http_proxy_client_socket.cc",
859 "http/http_proxy_client_socket.h",
860 "http/http_proxy_client_socket_pool.cc",
861 "http/http_proxy_client_socket_pool.h",
862 "http/http_proxy_client_socket_wrapper.cc",
863 "http/http_proxy_client_socket_wrapper.h",
864 "http/http_request_info.cc",
865 "http/http_request_info.h",
866 "http/http_response_body_drainer.cc",
867 "http/http_response_body_drainer.h",
868 "http/http_server_properties.cc",
869 "http/http_server_properties.h",
870 "http/http_server_properties_impl.cc",
871 "http/http_server_properties_impl.h",
872 "http/http_server_properties_manager.cc",
873 "http/http_server_properties_manager.h",
874 "http/http_status_code.cc",
875 "http/http_status_code.h",
876 "http/http_stream.h",
877 "http/http_stream_factory.cc",
878 "http/http_stream_factory.h",
879 "http/http_stream_factory_impl.cc",
880 "http/http_stream_factory_impl.h",
881 "http/http_stream_factory_impl_job.cc",
882 "http/http_stream_factory_impl_job.h",
883 "http/http_stream_factory_impl_job_controller.cc",
884 "http/http_stream_factory_impl_job_controller.h",
885 "http/http_stream_factory_impl_request.cc",
886 "http/http_stream_factory_impl_request.h",
887 "http/http_stream_parser.cc",
888 "http/http_stream_parser.h",
889 "http/http_transaction.h",
890 "http/http_transaction_factory.h",
891 "http/http_version.h",
ckrasic73f7240b2017-01-24 00:06:45892 "http/partial_data.cc",
893 "http/partial_data.h",
894 "http/proxy_client_socket.cc",
895 "http/proxy_client_socket.h",
896 "http/proxy_connect_redirect_http_stream.cc",
897 "http/proxy_connect_redirect_http_stream.h",
898 "http/transport_security_persister.cc",
899 "http/transport_security_persister.h",
900 "http/transport_security_state_static.h",
901 "http/url_security_manager.cc",
902 "http/url_security_manager.h",
903 "http/url_security_manager_posix.cc",
904 "http/url_security_manager_win.cc",
905 "http2/decoder/decode_buffer.cc",
906 "http2/decoder/decode_buffer.h",
907 "http2/decoder/decode_http2_structures.cc",
908 "http2/decoder/decode_http2_structures.h",
909 "http2/decoder/decode_status.cc",
910 "http2/decoder/decode_status.h",
911 "http2/decoder/frame_decoder_state.cc",
912 "http2/decoder/frame_decoder_state.h",
913 "http2/decoder/http2_frame_decoder.cc",
914 "http2/decoder/http2_frame_decoder.h",
915 "http2/decoder/http2_frame_decoder_listener.cc",
916 "http2/decoder/http2_frame_decoder_listener.h",
917 "http2/decoder/http2_structure_decoder.cc",
918 "http2/decoder/http2_structure_decoder.h",
919 "http2/decoder/payload_decoders/altsvc_payload_decoder.cc",
920 "http2/decoder/payload_decoders/altsvc_payload_decoder.h",
921 "http2/decoder/payload_decoders/continuation_payload_decoder.cc",
922 "http2/decoder/payload_decoders/continuation_payload_decoder.h",
923 "http2/decoder/payload_decoders/data_payload_decoder.cc",
924 "http2/decoder/payload_decoders/data_payload_decoder.h",
925 "http2/decoder/payload_decoders/goaway_payload_decoder.cc",
926 "http2/decoder/payload_decoders/goaway_payload_decoder.h",
927 "http2/decoder/payload_decoders/headers_payload_decoder.cc",
928 "http2/decoder/payload_decoders/headers_payload_decoder.h",
929 "http2/decoder/payload_decoders/ping_payload_decoder.cc",
930 "http2/decoder/payload_decoders/ping_payload_decoder.h",
931 "http2/decoder/payload_decoders/priority_payload_decoder.cc",
932 "http2/decoder/payload_decoders/priority_payload_decoder.h",
933 "http2/decoder/payload_decoders/push_promise_payload_decoder.cc",
934 "http2/decoder/payload_decoders/push_promise_payload_decoder.h",
935 "http2/decoder/payload_decoders/rst_stream_payload_decoder.cc",
936 "http2/decoder/payload_decoders/rst_stream_payload_decoder.h",
937 "http2/decoder/payload_decoders/settings_payload_decoder.cc",
938 "http2/decoder/payload_decoders/settings_payload_decoder.h",
939 "http2/decoder/payload_decoders/unknown_payload_decoder.cc",
940 "http2/decoder/payload_decoders/unknown_payload_decoder.h",
941 "http2/decoder/payload_decoders/window_update_payload_decoder.cc",
942 "http2/decoder/payload_decoders/window_update_payload_decoder.h",
943 "http2/hpack/decoder/hpack_block_decoder.cc",
944 "http2/hpack/decoder/hpack_block_decoder.h",
Bence Békybad9ef92017-07-28 13:36:27945 "http2/hpack/decoder/hpack_decoder.cc",
946 "http2/hpack/decoder/hpack_decoder.h",
ckrasic73f7240b2017-01-24 00:06:45947 "http2/hpack/decoder/hpack_decoder_listener.cc",
948 "http2/hpack/decoder/hpack_decoder_listener.h",
949 "http2/hpack/decoder/hpack_decoder_state.cc",
950 "http2/hpack/decoder/hpack_decoder_state.h",
951 "http2/hpack/decoder/hpack_decoder_string_buffer.cc",
952 "http2/hpack/decoder/hpack_decoder_string_buffer.h",
953 "http2/hpack/decoder/hpack_decoder_tables.cc",
954 "http2/hpack/decoder/hpack_decoder_tables.h",
955 "http2/hpack/decoder/hpack_entry_decoder.cc",
956 "http2/hpack/decoder/hpack_entry_decoder.h",
957 "http2/hpack/decoder/hpack_entry_decoder_listener.cc",
958 "http2/hpack/decoder/hpack_entry_decoder_listener.h",
959 "http2/hpack/decoder/hpack_entry_type_decoder.cc",
960 "http2/hpack/decoder/hpack_entry_type_decoder.h",
961 "http2/hpack/decoder/hpack_string_decoder.cc",
962 "http2/hpack/decoder/hpack_string_decoder.h",
963 "http2/hpack/decoder/hpack_string_decoder_listener.cc",
964 "http2/hpack/decoder/hpack_string_decoder_listener.h",
965 "http2/hpack/decoder/hpack_varint_decoder.cc",
966 "http2/hpack/decoder/hpack_varint_decoder.h",
967 "http2/hpack/decoder/hpack_whole_entry_buffer.cc",
968 "http2/hpack/decoder/hpack_whole_entry_buffer.h",
969 "http2/hpack/decoder/hpack_whole_entry_listener.cc",
970 "http2/hpack/decoder/hpack_whole_entry_listener.h",
ckrasic73f7240b2017-01-24 00:06:45971 "http2/hpack/hpack_static_table_entries.inc",
972 "http2/hpack/hpack_string.cc",
973 "http2/hpack/hpack_string.h",
974 "http2/hpack/http2_hpack_constants.cc",
975 "http2/hpack/http2_hpack_constants.h",
Bence Békyd1406522017-08-07 18:05:08976 "http2/hpack/huffman/hpack_huffman_decoder.cc",
977 "http2/hpack/huffman/hpack_huffman_decoder.h",
ckrasic73f7240b2017-01-24 00:06:45978 "http2/http2_constants.cc",
979 "http2/http2_constants.h",
980 "http2/http2_structures.cc",
981 "http2/http2_structures.h",
Bence Béky6d0fa2c2017-06-28 17:42:01982 "http2/platform/api/http2_export.h",
bnc7c36d9b2017-02-09 20:35:43983 "http2/platform/api/http2_reconstruct_object.h",
Bence Békye53090e2017-07-12 02:58:40984 "http2/platform/api/http2_string.h",
985 "http2/platform/api/http2_string_piece.h",
986 "http2/platform/api/http2_string_utils.h",
Bence Béky6d0fa2c2017-06-28 17:42:01987 "http2/platform/impl/http2_export_impl.h",
bnc7c36d9b2017-02-09 20:35:43988 "http2/platform/impl/http2_reconstruct_object_impl.h",
Bence Békye53090e2017-07-12 02:58:40989 "http2/platform/impl/http2_string_impl.h",
990 "http2/platform/impl/http2_string_piece_impl.h",
991 "http2/platform/impl/http2_string_utils_impl.h",
ckrasic73f7240b2017-01-24 00:06:45992 "http2/tools/http2_bug_tracker.h",
993 "log/file_net_log_observer.cc",
994 "log/file_net_log_observer.h",
995 "log/net_log_util.cc",
996 "log/net_log_util.h",
997 "log/trace_net_log_observer.cc",
998 "log/trace_net_log_observer.h",
ckrasic73f7240b2017-01-24 00:06:45999 "nqe/cached_network_quality.cc",
1000 "nqe/cached_network_quality.h",
1001 "nqe/effective_connection_type.cc",
1002 "nqe/effective_connection_type.h",
tbansal1bd4a952017-06-06 23:01:461003 "nqe/effective_connection_type_observer.h",
ckrasic73f7240b2017-01-24 00:06:451004 "nqe/event_creator.cc",
1005 "nqe/event_creator.h",
1006 "nqe/external_estimate_provider.h",
1007 "nqe/network_id.h",
1008 "nqe/network_qualities_prefs_manager.cc",
1009 "nqe/network_qualities_prefs_manager.h",
1010 "nqe/network_quality.cc",
1011 "nqe/network_quality.h",
1012 "nqe/network_quality_estimator.cc",
1013 "nqe/network_quality_estimator.h",
1014 "nqe/network_quality_estimator_params.cc",
1015 "nqe/network_quality_estimator_params.h",
tbansal82edab42017-06-19 05:55:251016 "nqe/network_quality_estimator_util.cc",
1017 "nqe/network_quality_estimator_util.h",
Devdeep Ray35f50662017-08-11 02:41:301018 "nqe/network_quality_observation.cc",
ckrasic73f7240b2017-01-24 00:06:451019 "nqe/network_quality_observation.h",
Tarun Bansald2677a12017-08-31 01:26:381020 "nqe/network_quality_observation_source.cc",
ckrasic73f7240b2017-01-24 00:06:451021 "nqe/network_quality_observation_source.h",
tbansal1bd4a952017-06-06 23:01:461022 "nqe/network_quality_provider.cc",
1023 "nqe/network_quality_provider.h",
ckrasic73f7240b2017-01-24 00:06:451024 "nqe/network_quality_store.cc",
1025 "nqe/network_quality_store.h",
Devdeep Ray35f50662017-08-11 02:41:301026 "nqe/observation_buffer.cc",
ckrasic73f7240b2017-01-24 00:06:451027 "nqe/observation_buffer.h",
tbansal1bd4a952017-06-06 23:01:461028 "nqe/rtt_throughput_estimates_observer.h",
ckrasic73f7240b2017-01-24 00:06:451029 "nqe/socket_watcher.cc",
1030 "nqe/socket_watcher.h",
1031 "nqe/socket_watcher_factory.cc",
1032 "nqe/socket_watcher_factory.h",
1033 "nqe/throughput_analyzer.cc",
1034 "nqe/throughput_analyzer.h",
1035 "nqe/weighted_observation.h",
zentarob89acda42017-07-14 01:28:571036 "ntlm/des.cc",
1037 "ntlm/des.h",
1038 "ntlm/md4.cc",
1039 "ntlm/md4.h",
1040 "ntlm/ntlm.cc",
1041 "ntlm/ntlm.h",
zentarob74795682017-07-14 00:58:221042 "ntlm/ntlm_buffer_reader.cc",
1043 "ntlm/ntlm_buffer_reader.h",
1044 "ntlm/ntlm_buffer_writer.cc",
1045 "ntlm/ntlm_buffer_writer.h",
Zentaro Kavanaghdd556612017-08-03 20:27:041046 "ntlm/ntlm_client.cc",
1047 "ntlm/ntlm_client.h",
zentarob74795682017-07-14 00:58:221048 "ntlm/ntlm_constants.h",
ckrasic73f7240b2017-01-24 00:06:451049 "proxy/dhcp_proxy_script_adapter_fetcher_win.cc",
1050 "proxy/dhcp_proxy_script_adapter_fetcher_win.h",
1051 "proxy/dhcp_proxy_script_fetcher.cc",
1052 "proxy/dhcp_proxy_script_fetcher.h",
1053 "proxy/dhcp_proxy_script_fetcher_factory.cc",
1054 "proxy/dhcp_proxy_script_fetcher_factory.h",
1055 "proxy/dhcp_proxy_script_fetcher_win.cc",
1056 "proxy/dhcp_proxy_script_fetcher_win.h",
1057 "proxy/dhcpcsvc_init_win.cc",
1058 "proxy/dhcpcsvc_init_win.h",
1059 "proxy/multi_threaded_proxy_resolver.cc",
1060 "proxy/multi_threaded_proxy_resolver.h",
1061 "proxy/network_delegate_error_observer.cc",
1062 "proxy/network_delegate_error_observer.h",
1063 "proxy/polling_proxy_config_service.cc",
1064 "proxy/polling_proxy_config_service.h",
1065 "proxy/proxy_bypass_rules.cc",
1066 "proxy/proxy_bypass_rules.h",
1067 "proxy/proxy_config.cc",
1068 "proxy/proxy_config.h",
1069 "proxy/proxy_config_service.h",
1070 "proxy/proxy_config_service_android.cc",
1071 "proxy/proxy_config_service_android.h",
1072 "proxy/proxy_config_service_fixed.cc",
1073 "proxy/proxy_config_service_fixed.h",
1074 "proxy/proxy_config_service_ios.cc",
1075 "proxy/proxy_config_service_ios.h",
1076 "proxy/proxy_config_service_linux.cc",
1077 "proxy/proxy_config_service_linux.h",
1078 "proxy/proxy_config_service_mac.cc",
1079 "proxy/proxy_config_service_mac.h",
1080 "proxy/proxy_config_service_win.cc",
1081 "proxy/proxy_config_service_win.h",
1082 "proxy/proxy_config_source.cc",
1083 "proxy/proxy_config_source.h",
1084 "proxy/proxy_info.cc",
1085 "proxy/proxy_info.h",
1086 "proxy/proxy_list.cc",
1087 "proxy/proxy_list.h",
1088 "proxy/proxy_resolver.h",
1089 "proxy/proxy_resolver_error_observer.h",
1090 "proxy/proxy_resolver_factory.cc",
1091 "proxy/proxy_resolver_factory.h",
1092 "proxy/proxy_resolver_mac.cc",
1093 "proxy/proxy_resolver_mac.h",
1094 "proxy/proxy_resolver_script.h",
1095 "proxy/proxy_resolver_script_data.cc",
1096 "proxy/proxy_resolver_script_data.h",
1097 "proxy/proxy_resolver_winhttp.cc",
1098 "proxy/proxy_resolver_winhttp.h",
1099 "proxy/proxy_retry_info.h",
1100 "proxy/proxy_script_decider.cc",
1101 "proxy/proxy_script_decider.h",
1102 "proxy/proxy_script_fetcher.h",
1103 "proxy/proxy_script_fetcher_impl.cc",
1104 "proxy/proxy_script_fetcher_impl.h",
1105 "proxy/proxy_server.cc",
1106 "proxy/proxy_server.h",
1107 "proxy/proxy_server_mac.cc",
1108 "proxy/proxy_service.cc",
1109 "proxy/proxy_service.h",
1110 "quic/chromium/bidirectional_stream_quic_impl.cc",
1111 "quic/chromium/bidirectional_stream_quic_impl.h",
1112 "quic/chromium/crypto/channel_id_chromium.cc",
1113 "quic/chromium/crypto/channel_id_chromium.h",
1114 "quic/chromium/crypto/proof_source_chromium.cc",
1115 "quic/chromium/crypto/proof_source_chromium.h",
1116 "quic/chromium/crypto/proof_verifier_chromium.cc",
1117 "quic/chromium/crypto/proof_verifier_chromium.h",
1118 "quic/chromium/network_connection.cc",
1119 "quic/chromium/network_connection.h",
1120 "quic/chromium/properties_based_quic_server_info.cc",
1121 "quic/chromium/properties_based_quic_server_info.h",
1122 "quic/chromium/quic_address_mismatch.cc",
1123 "quic/chromium/quic_address_mismatch.h",
1124 "quic/chromium/quic_chromium_alarm_factory.cc",
1125 "quic/chromium/quic_chromium_alarm_factory.h",
1126 "quic/chromium/quic_chromium_client_session.cc",
1127 "quic/chromium/quic_chromium_client_session.h",
1128 "quic/chromium/quic_chromium_client_stream.cc",
1129 "quic/chromium/quic_chromium_client_stream.h",
1130 "quic/chromium/quic_chromium_connection_helper.cc",
1131 "quic/chromium/quic_chromium_connection_helper.h",
1132 "quic/chromium/quic_chromium_packet_reader.cc",
1133 "quic/chromium/quic_chromium_packet_reader.h",
1134 "quic/chromium/quic_chromium_packet_writer.cc",
1135 "quic/chromium/quic_chromium_packet_writer.h",
1136 "quic/chromium/quic_clock_skew_detector.cc",
1137 "quic/chromium/quic_clock_skew_detector.h",
1138 "quic/chromium/quic_connection_logger.cc",
1139 "quic/chromium/quic_connection_logger.h",
1140 "quic/chromium/quic_crypto_client_stream_factory.cc",
1141 "quic/chromium/quic_crypto_client_stream_factory.h",
1142 "quic/chromium/quic_http_stream.cc",
1143 "quic/chromium/quic_http_stream.h",
1144 "quic/chromium/quic_http_utils.cc",
1145 "quic/chromium/quic_http_utils.h",
Yixin Wang0d2c6b7e12017-08-16 21:12:551146 "quic/chromium/quic_proxy_client_socket.cc",
1147 "quic/chromium/quic_proxy_client_socket.h",
ckrasic73f7240b2017-01-24 00:06:451148 "quic/chromium/quic_server_info.cc",
1149 "quic/chromium/quic_server_info.h",
1150 "quic/chromium/quic_stream_factory.cc",
1151 "quic/chromium/quic_stream_factory.h",
1152 "quic/chromium/quic_utils_chromium.cc",
1153 "quic/chromium/quic_utils_chromium.h",
1154 "quic/core/congestion_control/bandwidth_sampler.cc",
1155 "quic/core/congestion_control/bandwidth_sampler.h",
1156 "quic/core/congestion_control/bbr_sender.cc",
1157 "quic/core/congestion_control/bbr_sender.h",
1158 "quic/core/congestion_control/cubic.cc",
1159 "quic/core/congestion_control/cubic.h",
1160 "quic/core/congestion_control/cubic_bytes.cc",
1161 "quic/core/congestion_control/cubic_bytes.h",
1162 "quic/core/congestion_control/general_loss_algorithm.cc",
1163 "quic/core/congestion_control/general_loss_algorithm.h",
1164 "quic/core/congestion_control/hybrid_slow_start.cc",
1165 "quic/core/congestion_control/hybrid_slow_start.h",
1166 "quic/core/congestion_control/loss_detection_interface.h",
1167 "quic/core/congestion_control/pacing_sender.cc",
1168 "quic/core/congestion_control/pacing_sender.h",
1169 "quic/core/congestion_control/prr_sender.cc",
1170 "quic/core/congestion_control/prr_sender.h",
1171 "quic/core/congestion_control/rtt_stats.cc",
1172 "quic/core/congestion_control/rtt_stats.h",
1173 "quic/core/congestion_control/send_algorithm_interface.cc",
1174 "quic/core/congestion_control/send_algorithm_interface.h",
1175 "quic/core/congestion_control/tcp_cubic_sender_base.cc",
1176 "quic/core/congestion_control/tcp_cubic_sender_base.h",
ckrasic73f7240b2017-01-24 00:06:451177 "quic/core/congestion_control/tcp_cubic_sender_bytes.cc",
ckrasicb07e1602017-01-26 01:39:021178 "quic/core/congestion_control/tcp_cubic_sender_bytes.h",
ckrasic73f7240b2017-01-24 00:06:451179 "quic/core/congestion_control/tcp_cubic_sender_packets.cc",
1180 "quic/core/congestion_control/tcp_cubic_sender_packets.h",
1181 "quic/core/congestion_control/windowed_filter.h",
1182 "quic/core/crypto/aead_base_decrypter.cc",
1183 "quic/core/crypto/aead_base_decrypter.h",
1184 "quic/core/crypto/aead_base_encrypter.cc",
1185 "quic/core/crypto/aead_base_encrypter.h",
1186 "quic/core/crypto/aes_128_gcm_12_decrypter.cc",
1187 "quic/core/crypto/aes_128_gcm_12_decrypter.h",
1188 "quic/core/crypto/aes_128_gcm_12_encrypter.cc",
1189 "quic/core/crypto/aes_128_gcm_12_encrypter.h",
1190 "quic/core/crypto/cert_compressor.cc",
1191 "quic/core/crypto/cert_compressor.h",
1192 "quic/core/crypto/chacha20_poly1305_decrypter.cc",
1193 "quic/core/crypto/chacha20_poly1305_decrypter.h",
1194 "quic/core/crypto/chacha20_poly1305_encrypter.cc",
1195 "quic/core/crypto/chacha20_poly1305_encrypter.h",
1196 "quic/core/crypto/channel_id.cc",
1197 "quic/core/crypto/channel_id.h",
1198 "quic/core/crypto/common_cert_set.cc",
1199 "quic/core/crypto/common_cert_set.h",
1200 "quic/core/crypto/crypto_framer.cc",
1201 "quic/core/crypto/crypto_framer.h",
1202 "quic/core/crypto/crypto_handshake.cc",
1203 "quic/core/crypto/crypto_handshake.h",
1204 "quic/core/crypto/crypto_handshake_message.cc",
1205 "quic/core/crypto/crypto_handshake_message.h",
Fan Yang2a1699a2017-07-25 16:44:551206 "quic/core/crypto/crypto_message_parser.h",
ckrasic73f7240b2017-01-24 00:06:451207 "quic/core/crypto/crypto_protocol.h",
1208 "quic/core/crypto/crypto_secret_boxer.cc",
1209 "quic/core/crypto/crypto_secret_boxer.h",
1210 "quic/core/crypto/crypto_server_config_protobuf.cc",
1211 "quic/core/crypto/crypto_server_config_protobuf.h",
1212 "quic/core/crypto/crypto_utils.cc",
1213 "quic/core/crypto/crypto_utils.h",
1214 "quic/core/crypto/curve25519_key_exchange.cc",
1215 "quic/core/crypto/curve25519_key_exchange.h",
1216 "quic/core/crypto/ephemeral_key_source.h",
1217 "quic/core/crypto/key_exchange.h",
ckrasic73f7240b2017-01-24 00:06:451218 "quic/core/crypto/null_decrypter.cc",
1219 "quic/core/crypto/null_decrypter.h",
1220 "quic/core/crypto/null_encrypter.cc",
1221 "quic/core/crypto/null_encrypter.h",
1222 "quic/core/crypto/p256_key_exchange.cc",
1223 "quic/core/crypto/p256_key_exchange.h",
1224 "quic/core/crypto/proof_source.cc",
1225 "quic/core/crypto/proof_source.h",
1226 "quic/core/crypto/proof_verifier.h",
1227 "quic/core/crypto/quic_compressed_certs_cache.cc",
1228 "quic/core/crypto/quic_compressed_certs_cache.h",
1229 "quic/core/crypto/quic_crypto_client_config.cc",
1230 "quic/core/crypto/quic_crypto_client_config.h",
1231 "quic/core/crypto/quic_crypto_proof.cc",
1232 "quic/core/crypto/quic_crypto_proof.h",
1233 "quic/core/crypto/quic_crypto_server_config.cc",
1234 "quic/core/crypto/quic_crypto_server_config.h",
1235 "quic/core/crypto/quic_decrypter.cc",
1236 "quic/core/crypto/quic_decrypter.h",
1237 "quic/core/crypto/quic_encrypter.cc",
1238 "quic/core/crypto/quic_encrypter.h",
1239 "quic/core/crypto/quic_random.cc",
1240 "quic/core/crypto/quic_random.h",
Ryan Hamilton88151482017-09-06 14:55:451241 "quic/core/crypto/quic_tls_adapter.cc",
1242 "quic/core/crypto/quic_tls_adapter.h",
ckrasic73f7240b2017-01-24 00:06:451243 "quic/core/crypto/scoped_evp_aead_ctx.cc",
1244 "quic/core/crypto/scoped_evp_aead_ctx.h",
ckrasic73f7240b2017-01-24 00:06:451245 "quic/core/frames/quic_ack_frame.cc",
1246 "quic/core/frames/quic_ack_frame.h",
1247 "quic/core/frames/quic_blocked_frame.cc",
1248 "quic/core/frames/quic_blocked_frame.h",
1249 "quic/core/frames/quic_connection_close_frame.cc",
1250 "quic/core/frames/quic_connection_close_frame.h",
1251 "quic/core/frames/quic_frame.cc",
1252 "quic/core/frames/quic_frame.h",
1253 "quic/core/frames/quic_goaway_frame.cc",
1254 "quic/core/frames/quic_goaway_frame.h",
1255 "quic/core/frames/quic_mtu_discovery_frame.h",
1256 "quic/core/frames/quic_padding_frame.cc",
1257 "quic/core/frames/quic_padding_frame.h",
ckrasic73f7240b2017-01-24 00:06:451258 "quic/core/frames/quic_ping_frame.h",
1259 "quic/core/frames/quic_rst_stream_frame.cc",
1260 "quic/core/frames/quic_rst_stream_frame.h",
1261 "quic/core/frames/quic_stop_waiting_frame.cc",
1262 "quic/core/frames/quic_stop_waiting_frame.h",
1263 "quic/core/frames/quic_stream_frame.cc",
1264 "quic/core/frames/quic_stream_frame.h",
1265 "quic/core/frames/quic_window_update_frame.cc",
1266 "quic/core/frames/quic_window_update_frame.h",
vasilvv8b7782e2017-05-12 01:52:031267 "quic/core/packet_number_indexed_queue.h",
ckrasic73f7240b2017-01-24 00:06:451268 "quic/core/quic_ack_listener_interface.cc",
1269 "quic/core/quic_ack_listener_interface.h",
1270 "quic/core/quic_alarm.cc",
1271 "quic/core/quic_alarm.h",
ckrasicb07e1602017-01-26 01:39:021272 "quic/core/quic_alarm_factory.h",
ckrasic73f7240b2017-01-24 00:06:451273 "quic/core/quic_arena_scoped_ptr.h",
1274 "quic/core/quic_bandwidth.cc",
1275 "quic/core/quic_bandwidth.h",
1276 "quic/core/quic_blocked_writer_interface.h",
1277 "quic/core/quic_buffer_allocator.cc",
1278 "quic/core/quic_buffer_allocator.h",
1279 "quic/core/quic_buffered_packet_store.cc",
1280 "quic/core/quic_buffered_packet_store.h",
1281 "quic/core/quic_client_promised_info.cc",
1282 "quic/core/quic_client_promised_info.h",
1283 "quic/core/quic_client_push_promise_index.cc",
1284 "quic/core/quic_client_push_promise_index.h",
ckrasic73f7240b2017-01-24 00:06:451285 "quic/core/quic_config.cc",
1286 "quic/core/quic_config.h",
1287 "quic/core/quic_connection.cc",
1288 "quic/core/quic_connection.h",
1289 "quic/core/quic_connection_close_delegate_interface.h",
1290 "quic/core/quic_connection_stats.cc",
1291 "quic/core/quic_connection_stats.h",
1292 "quic/core/quic_constants.cc",
1293 "quic/core/quic_constants.h",
Fan Yang2a1699a2017-07-25 16:44:551294 "quic/core/quic_crypto_client_handshaker.cc",
1295 "quic/core/quic_crypto_client_handshaker.h",
ckrasic73f7240b2017-01-24 00:06:451296 "quic/core/quic_crypto_client_stream.cc",
1297 "quic/core/quic_crypto_client_stream.h",
Fan Yang2a1699a2017-07-25 16:44:551298 "quic/core/quic_crypto_handshaker.cc",
1299 "quic/core/quic_crypto_handshaker.h",
1300 "quic/core/quic_crypto_server_handshaker.cc",
1301 "quic/core/quic_crypto_server_handshaker.h",
ckrasic73f7240b2017-01-24 00:06:451302 "quic/core/quic_crypto_server_stream.cc",
1303 "quic/core/quic_crypto_server_stream.h",
1304 "quic/core/quic_crypto_stream.cc",
1305 "quic/core/quic_crypto_stream.h",
1306 "quic/core/quic_data_reader.cc",
1307 "quic/core/quic_data_reader.h",
1308 "quic/core/quic_data_writer.cc",
1309 "quic/core/quic_data_writer.h",
1310 "quic/core/quic_error_codes.cc",
1311 "quic/core/quic_error_codes.h",
ckrasicb07e1602017-01-26 01:39:021312 "quic/core/quic_flags_list.h",
ckrasic73f7240b2017-01-24 00:06:451313 "quic/core/quic_flow_controller.cc",
1314 "quic/core/quic_flow_controller.h",
1315 "quic/core/quic_framer.cc",
1316 "quic/core/quic_framer.h",
1317 "quic/core/quic_header_list.cc",
1318 "quic/core/quic_header_list.h",
1319 "quic/core/quic_headers_stream.cc",
1320 "quic/core/quic_headers_stream.h",
1321 "quic/core/quic_iovector.h",
ckrasic73f7240b2017-01-24 00:06:451322 "quic/core/quic_one_block_arena.h",
1323 "quic/core/quic_packet_creator.cc",
1324 "quic/core/quic_packet_creator.h",
1325 "quic/core/quic_packet_generator.cc",
1326 "quic/core/quic_packet_generator.h",
1327 "quic/core/quic_packet_writer.h",
1328 "quic/core/quic_packets.cc",
1329 "quic/core/quic_packets.h",
1330 "quic/core/quic_pending_retransmission.h",
1331 "quic/core/quic_received_packet_manager.cc",
1332 "quic/core/quic_received_packet_manager.h",
1333 "quic/core/quic_sent_packet_manager.cc",
1334 "quic/core/quic_sent_packet_manager.h",
1335 "quic/core/quic_server_id.cc",
1336 "quic/core/quic_server_id.h",
1337 "quic/core/quic_server_session_base.cc",
1338 "quic/core/quic_server_session_base.h",
1339 "quic/core/quic_session.cc",
1340 "quic/core/quic_session.h",
1341 "quic/core/quic_simple_buffer_allocator.cc",
1342 "quic/core/quic_simple_buffer_allocator.h",
1343 "quic/core/quic_socket_address_coder.cc",
1344 "quic/core/quic_socket_address_coder.h",
Ryan Hamiltonc4402302017-08-10 01:55:461345 "quic/core/quic_spdy_client_session_base.cc",
1346 "quic/core/quic_spdy_client_session_base.h",
ckrasic73f7240b2017-01-24 00:06:451347 "quic/core/quic_spdy_session.cc",
1348 "quic/core/quic_spdy_session.h",
1349 "quic/core/quic_spdy_stream.cc",
1350 "quic/core/quic_spdy_stream.h",
1351 "quic/core/quic_stream.cc",
1352 "quic/core/quic_stream.h",
fayangdf3cb2b2017-07-05 15:03:381353 "quic/core/quic_stream_frame_data_producer.h",
1354 "quic/core/quic_stream_send_buffer.cc",
1355 "quic/core/quic_stream_send_buffer.h",
ckrasic73f7240b2017-01-24 00:06:451356 "quic/core/quic_stream_sequencer.cc",
1357 "quic/core/quic_stream_sequencer.h",
1358 "quic/core/quic_stream_sequencer_buffer.cc",
1359 "quic/core/quic_stream_sequencer_buffer.h",
1360 "quic/core/quic_sustained_bandwidth_recorder.cc",
1361 "quic/core/quic_sustained_bandwidth_recorder.h",
1362 "quic/core/quic_tag.cc",
1363 "quic/core/quic_tag.h",
1364 "quic/core/quic_time.cc",
1365 "quic/core/quic_time.h",
1366 "quic/core/quic_transmission_info.cc",
1367 "quic/core/quic_transmission_info.h",
1368 "quic/core/quic_types.cc",
1369 "quic/core/quic_types.h",
1370 "quic/core/quic_unacked_packet_map.cc",
1371 "quic/core/quic_unacked_packet_map.h",
1372 "quic/core/quic_utils.cc",
1373 "quic/core/quic_utils.h",
1374 "quic/core/quic_version_manager.cc",
1375 "quic/core/quic_version_manager.h",
1376 "quic/core/quic_versions.cc",
1377 "quic/core/quic_versions.h",
1378 "quic/core/quic_write_blocked_list.cc",
1379 "quic/core/quic_write_blocked_list.h",
1380 "quic/core/spdy_utils.cc",
1381 "quic/core/spdy_utils.h",
1382 "quic/platform/api/quic_aligned.h",
1383 "quic/platform/api/quic_bug_tracker.h",
1384 "quic/platform/api/quic_clock.cc",
1385 "quic/platform/api/quic_clock.h",
fayangbaec8ff52017-01-28 03:26:121386 "quic/platform/api/quic_containers.h",
fayang3ae2fa22017-03-02 18:03:401387 "quic/platform/api/quic_endian.h",
xunjieli48e4f102017-04-11 23:06:531388 "quic/platform/api/quic_estimate_memory_usage.h",
ckrasic73f7240b2017-01-24 00:06:451389 "quic/platform/api/quic_export.h",
vasilvv93dc0c32017-02-24 23:53:511390 "quic/platform/api/quic_flag_utils.h",
rchfc6809b62017-04-19 01:37:011391 "quic/platform/api/quic_flags.h",
mpw3f859532017-02-16 20:00:311392 "quic/platform/api/quic_hostname_utils.cc",
1393 "quic/platform/api/quic_hostname_utils.h",
ckrasic73f7240b2017-01-24 00:06:451394 "quic/platform/api/quic_ip_address.cc",
1395 "quic/platform/api/quic_ip_address.h",
1396 "quic/platform/api/quic_ip_address_family.h",
1397 "quic/platform/api/quic_logging.h",
1398 "quic/platform/api/quic_lru_cache.h",
ckrasicb07e1602017-01-26 01:39:021399 "quic/platform/api/quic_map_util.h",
Fan Yang62cae30f2017-09-01 20:50:511400 "quic/platform/api/quic_mem_slice.h",
1401 "quic/platform/api/quic_mem_slice_span.h",
ckrasic73f7240b2017-01-24 00:06:451402 "quic/platform/api/quic_mutex.cc",
1403 "quic/platform/api/quic_mutex.h",
jokulik35917302017-05-04 04:04:081404 "quic/platform/api/quic_pcc_sender.h",
ckrasic73f7240b2017-01-24 00:06:451405 "quic/platform/api/quic_ptr_util.h",
1406 "quic/platform/api/quic_reference_counted.h",
1407 "quic/platform/api/quic_socket_address.cc",
1408 "quic/platform/api/quic_socket_address.h",
ckrasicb07e1602017-01-26 01:39:021409 "quic/platform/api/quic_stack_trace.h",
ckrasic73f7240b2017-01-24 00:06:451410 "quic/platform/api/quic_str_cat.h",
fayang19c30772017-03-09 15:06:171411 "quic/platform/api/quic_string_piece.h",
ckrasic73f7240b2017-01-24 00:06:451412 "quic/platform/api/quic_text_utils.h",
fayang32caee402017-02-13 21:00:081413 "quic/platform/api/quic_url.cc",
1414 "quic/platform/api/quic_url.h",
fayang527c6c302017-01-24 15:38:311415 "quic/platform/api/quic_url_utils.cc",
1416 "quic/platform/api/quic_url_utils.h",
ckrasic73f7240b2017-01-24 00:06:451417 "quic/platform/impl/quic_aligned_impl.h",
1418 "quic/platform/impl/quic_bug_tracker_impl.h",
1419 "quic/platform/impl/quic_chromium_clock.cc",
1420 "quic/platform/impl/quic_chromium_clock.h",
fayangbaec8ff52017-01-28 03:26:121421 "quic/platform/impl/quic_containers_impl.h",
fayang3ae2fa22017-03-02 18:03:401422 "quic/platform/impl/quic_endian_impl.h",
xunjieli48e4f102017-04-11 23:06:531423 "quic/platform/impl/quic_estimate_memory_usage_impl.h",
ckrasic73f7240b2017-01-24 00:06:451424 "quic/platform/impl/quic_export_impl.h",
vasilvv93dc0c32017-02-24 23:53:511425 "quic/platform/impl/quic_flag_utils_impl.h",
rchfc6809b62017-04-19 01:37:011426 "quic/platform/impl/quic_flags_impl.cc",
1427 "quic/platform/impl/quic_flags_impl.h",
mpw3f859532017-02-16 20:00:311428 "quic/platform/impl/quic_hostname_utils_impl.cc",
1429 "quic/platform/impl/quic_hostname_utils_impl.h",
ckrasic73f7240b2017-01-24 00:06:451430 "quic/platform/impl/quic_ip_address_impl.cc",
1431 "quic/platform/impl/quic_ip_address_impl.h",
1432 "quic/platform/impl/quic_logging_impl.h",
1433 "quic/platform/impl/quic_lru_cache_impl.h",
ckrasicb07e1602017-01-26 01:39:021434 "quic/platform/impl/quic_map_util_impl.h",
Fan Yang62cae30f2017-09-01 20:50:511435 "quic/platform/impl/quic_mem_slice_impl.cc",
1436 "quic/platform/impl/quic_mem_slice_impl.h",
1437 "quic/platform/impl/quic_mem_slice_span_impl.cc",
1438 "quic/platform/impl/quic_mem_slice_span_impl.h",
ckrasic73f7240b2017-01-24 00:06:451439 "quic/platform/impl/quic_mutex_impl.cc",
1440 "quic/platform/impl/quic_mutex_impl.h",
jokulik35917302017-05-04 04:04:081441 "quic/platform/impl/quic_pcc_sender_impl.h",
ckrasic73f7240b2017-01-24 00:06:451442 "quic/platform/impl/quic_ptr_util_impl.h",
1443 "quic/platform/impl/quic_reference_counted_impl.h",
1444 "quic/platform/impl/quic_socket_address_impl.cc",
1445 "quic/platform/impl/quic_socket_address_impl.h",
ckrasicb07e1602017-01-26 01:39:021446 "quic/platform/impl/quic_stack_trace_impl.h",
ckrasic73f7240b2017-01-24 00:06:451447 "quic/platform/impl/quic_str_cat_impl.h",
fayang19c30772017-03-09 15:06:171448 "quic/platform/impl/quic_string_piece_impl.h",
ckrasic73f7240b2017-01-24 00:06:451449 "quic/platform/impl/quic_text_utils_impl.h",
fayang32caee402017-02-13 21:00:081450 "quic/platform/impl/quic_url_impl.cc",
1451 "quic/platform/impl/quic_url_impl.h",
fayang527c6c302017-01-24 15:38:311452 "quic/platform/impl/quic_url_utils_impl.cc",
1453 "quic/platform/impl/quic_url_utils_impl.h",
rch7b8e0afb12017-05-03 01:07:221454 "quic/quartc/quartc_clock_interface.h",
ckrasic73f7240b2017-01-24 00:06:451455 "quic/quartc/quartc_factory.cc",
1456 "quic/quartc/quartc_factory.h",
1457 "quic/quartc/quartc_factory_interface.h",
1458 "quic/quartc/quartc_packet_writer.cc",
1459 "quic/quartc/quartc_packet_writer.h",
1460 "quic/quartc/quartc_session.cc",
1461 "quic/quartc/quartc_session.h",
1462 "quic/quartc/quartc_session_interface.h",
1463 "quic/quartc/quartc_stream.cc",
1464 "quic/quartc/quartc_stream.h",
1465 "quic/quartc/quartc_stream_interface.h",
ckrasicb07e1602017-01-26 01:39:021466 "quic/quartc/quartc_task_runner_interface.h",
ckrasic73f7240b2017-01-24 00:06:451467 "socket/client_socket_factory.cc",
1468 "socket/client_socket_factory.h",
1469 "socket/client_socket_pool.cc",
1470 "socket/client_socket_pool.h",
1471 "socket/client_socket_pool_base.cc",
1472 "socket/client_socket_pool_base.h",
1473 "socket/client_socket_pool_manager.cc",
1474 "socket/client_socket_pool_manager.h",
1475 "socket/client_socket_pool_manager_impl.cc",
1476 "socket/client_socket_pool_manager_impl.h",
1477 "socket/datagram_client_socket.h",
1478 "socket/datagram_server_socket.h",
1479 "socket/datagram_socket.h",
1480 "socket/diff_serv_code_point.h",
1481 "socket/server_socket.cc",
1482 "socket/server_socket.h",
1483 "socket/socket_descriptor.cc",
1484 "socket/socket_descriptor.h",
1485 "socket/socket_net_log_params.cc",
1486 "socket/socket_net_log_params.h",
tfarina8a407062017-04-06 13:14:171487 "socket/socket_options.cc",
1488 "socket/socket_options.h",
ckrasic73f7240b2017-01-24 00:06:451489 "socket/socket_posix.cc",
1490 "socket/socket_posix.h",
1491 "socket/socks5_client_socket.cc",
1492 "socket/socks5_client_socket.h",
1493 "socket/socks_client_socket.cc",
1494 "socket/socks_client_socket.h",
1495 "socket/socks_client_socket_pool.cc",
1496 "socket/socks_client_socket_pool.h",
1497 "socket/ssl_client_socket_pool.cc",
1498 "socket/ssl_client_socket_pool.h",
1499 "socket/ssl_server_socket.h",
1500 "socket/ssl_server_socket_impl.cc",
1501 "socket/ssl_server_socket_impl.h",
1502 "socket/stream_socket.cc",
1503 "socket/stream_socket.h",
1504 "socket/tcp_client_socket.cc",
1505 "socket/tcp_client_socket.h",
1506 "socket/tcp_server_socket.cc",
1507 "socket/tcp_server_socket.h",
ckrasic73f7240b2017-01-24 00:06:451508 "socket/tcp_socket.h",
1509 "socket/tcp_socket_posix.cc",
1510 "socket/tcp_socket_posix.h",
1511 "socket/tcp_socket_win.cc",
1512 "socket/tcp_socket_win.h",
1513 "socket/transport_client_socket_pool.cc",
1514 "socket/transport_client_socket_pool.h",
1515 "socket/udp_client_socket.cc",
1516 "socket/udp_client_socket.h",
1517 "socket/udp_net_log_parameters.cc",
1518 "socket/udp_net_log_parameters.h",
1519 "socket/udp_server_socket.cc",
1520 "socket/udp_server_socket.h",
1521 "socket/udp_socket.h",
1522 "socket/udp_socket_posix.cc",
1523 "socket/udp_socket_posix.h",
1524 "socket/udp_socket_win.cc",
1525 "socket/udp_socket_win.h",
ckrasic73f7240b2017-01-24 00:06:451526 "socket/websocket_endpoint_lock_manager.cc",
1527 "socket/websocket_endpoint_lock_manager.h",
1528 "socket/websocket_transport_client_socket_pool.cc",
1529 "socket/websocket_transport_client_socket_pool.h",
1530 "socket/websocket_transport_connect_sub_job.cc",
1531 "socket/websocket_transport_connect_sub_job.h",
bnc8f8f7d302017-04-24 18:08:061532 "spdy/chromium/bidirectional_stream_spdy_impl.cc",
1533 "spdy/chromium/bidirectional_stream_spdy_impl.h",
1534 "spdy/chromium/buffered_spdy_framer.cc",
1535 "spdy/chromium/buffered_spdy_framer.h",
1536 "spdy/chromium/header_coalescer.cc",
1537 "spdy/chromium/header_coalescer.h",
1538 "spdy/chromium/http2_priority_dependencies.cc",
1539 "spdy/chromium/http2_priority_dependencies.h",
1540 "spdy/chromium/multiplexed_http_stream.cc",
1541 "spdy/chromium/multiplexed_http_stream.h",
1542 "spdy/chromium/multiplexed_session.cc",
1543 "spdy/chromium/multiplexed_session.h",
1544 "spdy/chromium/server_push_delegate.h",
1545 "spdy/chromium/spdy_buffer.cc",
1546 "spdy/chromium/spdy_buffer.h",
1547 "spdy/chromium/spdy_buffer_producer.cc",
1548 "spdy/chromium/spdy_buffer_producer.h",
1549 "spdy/chromium/spdy_flags.cc",
1550 "spdy/chromium/spdy_flags.h",
1551 "spdy/chromium/spdy_http_stream.cc",
1552 "spdy/chromium/spdy_http_stream.h",
1553 "spdy/chromium/spdy_http_utils.cc",
1554 "spdy/chromium/spdy_http_utils.h",
1555 "spdy/chromium/spdy_log_util.cc",
1556 "spdy/chromium/spdy_log_util.h",
1557 "spdy/chromium/spdy_proxy_client_socket.cc",
1558 "spdy/chromium/spdy_proxy_client_socket.h",
1559 "spdy/chromium/spdy_read_queue.cc",
1560 "spdy/chromium/spdy_read_queue.h",
1561 "spdy/chromium/spdy_session.cc",
1562 "spdy/chromium/spdy_session.h",
1563 "spdy/chromium/spdy_session_key.cc",
1564 "spdy/chromium/spdy_session_key.h",
1565 "spdy/chromium/spdy_session_pool.cc",
1566 "spdy/chromium/spdy_session_pool.h",
1567 "spdy/chromium/spdy_stream.cc",
1568 "spdy/chromium/spdy_stream.h",
1569 "spdy/chromium/spdy_write_queue.cc",
1570 "spdy/chromium/spdy_write_queue.h",
1571 "spdy/core/fuzzing/hpack_fuzz_util.cc",
1572 "spdy/core/fuzzing/hpack_fuzz_util.h",
1573 "spdy/core/hpack/hpack_constants.cc",
1574 "spdy/core/hpack/hpack_constants.h",
Dianna Hu33dcd6c2017-07-24 15:01:461575 "spdy/core/hpack/hpack_decoder_adapter.cc",
1576 "spdy/core/hpack/hpack_decoder_adapter.h",
bnc8f8f7d302017-04-24 18:08:061577 "spdy/core/hpack/hpack_encoder.cc",
1578 "spdy/core/hpack/hpack_encoder.h",
1579 "spdy/core/hpack/hpack_entry.cc",
1580 "spdy/core/hpack/hpack_entry.h",
1581 "spdy/core/hpack/hpack_header_table.cc",
1582 "spdy/core/hpack/hpack_header_table.h",
bnc8f8f7d302017-04-24 18:08:061583 "spdy/core/hpack/hpack_huffman_table.cc",
1584 "spdy/core/hpack/hpack_huffman_table.h",
bnc8f8f7d302017-04-24 18:08:061585 "spdy/core/hpack/hpack_output_stream.cc",
1586 "spdy/core/hpack/hpack_output_stream.h",
1587 "spdy/core/hpack/hpack_static_table.cc",
1588 "spdy/core/hpack/hpack_static_table.h",
1589 "spdy/core/http2_frame_decoder_adapter.cc",
1590 "spdy/core/http2_frame_decoder_adapter.h",
bnc8f8f7d302017-04-24 18:08:061591 "spdy/core/priority_write_scheduler.h",
1592 "spdy/core/spdy_alt_svc_wire_format.cc",
1593 "spdy/core/spdy_alt_svc_wire_format.h",
1594 "spdy/core/spdy_bitmasks.h",
1595 "spdy/core/spdy_bug_tracker.h",
1596 "spdy/core/spdy_frame_builder.cc",
1597 "spdy/core/spdy_frame_builder.h",
1598 "spdy/core/spdy_frame_reader.cc",
1599 "spdy/core/spdy_frame_reader.h",
1600 "spdy/core/spdy_framer.cc",
1601 "spdy/core/spdy_framer.h",
bnc8f8f7d302017-04-24 18:08:061602 "spdy/core/spdy_header_block.cc",
1603 "spdy/core/spdy_header_block.h",
bnc8f8f7d302017-04-24 18:08:061604 "spdy/core/spdy_headers_handler_interface.h",
1605 "spdy/core/spdy_pinnable_buffer_piece.cc",
1606 "spdy/core/spdy_pinnable_buffer_piece.h",
1607 "spdy/core/spdy_prefixed_buffer_reader.cc",
1608 "spdy/core/spdy_prefixed_buffer_reader.h",
1609 "spdy/core/spdy_protocol.cc",
1610 "spdy/core/spdy_protocol.h",
1611 "spdy/core/write_scheduler.h",
1612 "spdy/core/zero_copy_output_buffer.h",
bnc8078c9db2017-02-09 20:06:381613 "spdy/platform/api/spdy_estimate_memory_usage.h",
bncc4c12fd2017-04-27 19:11:441614 "spdy/platform/api/spdy_export.h",
bncdae95a82017-04-27 14:05:101615 "spdy/platform/api/spdy_ptr_util.h",
diannahu401e364c2017-04-07 01:17:471616 "spdy/platform/api/spdy_string.h",
bnca16616c2017-03-21 13:58:251617 "spdy/platform/api/spdy_string_piece.h",
bnced7be41d2017-03-28 17:30:241618 "spdy/platform/api/spdy_string_utils.h",
bnc8078c9db2017-02-09 20:06:381619 "spdy/platform/impl/spdy_estimate_memory_usage_impl.h",
bncc4c12fd2017-04-27 19:11:441620 "spdy/platform/impl/spdy_export_impl.h",
bncdae95a82017-04-27 14:05:101621 "spdy/platform/impl/spdy_ptr_util_impl.h",
diannahu401e364c2017-04-07 01:17:471622 "spdy/platform/impl/spdy_string_impl.h",
bnca16616c2017-03-21 13:58:251623 "spdy/platform/impl/spdy_string_piece_impl.h",
bnced7be41d2017-03-28 17:30:241624 "spdy/platform/impl/spdy_string_utils_impl.h",
ckrasic73f7240b2017-01-24 00:06:451625 "ssl/client_cert_store.h",
1626 "ssl/client_cert_store_mac.cc",
1627 "ssl/client_cert_store_mac.h",
1628 "ssl/client_cert_store_nss.cc",
1629 "ssl/client_cert_store_nss.h",
1630 "ssl/client_cert_store_win.cc",
1631 "ssl/client_cert_store_win.h",
1632 "ssl/ssl_config_service_defaults.cc",
1633 "ssl/ssl_config_service_defaults.h",
1634 "ssl/ssl_key_logger.cc",
1635 "ssl/ssl_key_logger.h",
ckrasic73f7240b2017-01-24 00:06:451636 "ssl/ssl_platform_key_android.cc",
thakisb8590c92017-03-23 18:14:531637 "ssl/ssl_platform_key_android.h",
ckrasic73f7240b2017-01-24 00:06:451638 "ssl/ssl_platform_key_mac.cc",
thakisb8590c92017-03-23 18:14:531639 "ssl/ssl_platform_key_mac.h",
ckrasic73f7240b2017-01-24 00:06:451640 "ssl/ssl_platform_key_nss.cc",
mattm436ccfe2017-06-19 20:24:081641 "ssl/ssl_platform_key_nss.h",
ckrasic73f7240b2017-01-24 00:06:451642 "ssl/ssl_platform_key_util.cc",
1643 "ssl/ssl_platform_key_util.h",
1644 "ssl/ssl_platform_key_win.cc",
1645 "ssl/test_ssl_private_key.cc",
1646 "ssl/test_ssl_private_key.h",
1647 "ssl/threaded_ssl_private_key.cc",
1648 "ssl/threaded_ssl_private_key.h",
1649 "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
1650 "third_party/mozilla_security_manager/nsNSSCertificateDB.h",
1651 "third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
1652 "third_party/mozilla_security_manager/nsPKCS12Blob.h",
1653 "url_request/data_protocol_handler.cc",
1654 "url_request/data_protocol_handler.h",
1655 "url_request/http_user_agent_settings.h",
Julia Tuttlef9b74062017-07-27 14:44:051656 "url_request/network_error_logging_delegate.cc",
1657 "url_request/network_error_logging_delegate.h",
ckrasic73f7240b2017-01-24 00:06:451658 "url_request/redirect_info.cc",
1659 "url_request/redirect_info.h",
1660 "url_request/report_sender.cc",
1661 "url_request/report_sender.h",
ckrasic73f7240b2017-01-24 00:06:451662 "url_request/static_http_user_agent_settings.cc",
1663 "url_request/static_http_user_agent_settings.h",
1664 "url_request/url_fetcher.cc",
1665 "url_request/url_fetcher.h",
1666 "url_request/url_fetcher_core.cc",
1667 "url_request/url_fetcher_core.h",
1668 "url_request/url_fetcher_delegate.cc",
1669 "url_request/url_fetcher_delegate.h",
1670 "url_request/url_fetcher_factory.h",
1671 "url_request/url_fetcher_impl.cc",
1672 "url_request/url_fetcher_impl.h",
1673 "url_request/url_fetcher_response_writer.cc",
1674 "url_request/url_fetcher_response_writer.h",
1675 "url_request/url_range_request_job.cc",
1676 "url_request/url_range_request_job.h",
1677 "url_request/url_request.cc",
1678 "url_request/url_request.h",
1679 "url_request/url_request_context.cc",
1680 "url_request/url_request_context.h",
1681 "url_request/url_request_context_builder.cc",
1682 "url_request/url_request_context_builder.h",
1683 "url_request/url_request_context_getter.cc",
1684 "url_request/url_request_context_getter.h",
1685 "url_request/url_request_context_getter_observer.h",
1686 "url_request/url_request_context_storage.cc",
1687 "url_request/url_request_context_storage.h",
1688 "url_request/url_request_data_job.cc",
1689 "url_request/url_request_data_job.h",
1690 "url_request/url_request_error_job.cc",
1691 "url_request/url_request_error_job.h",
1692 "url_request/url_request_filter.cc",
1693 "url_request/url_request_filter.h",
1694 "url_request/url_request_http_job.cc",
1695 "url_request/url_request_http_job.h",
1696 "url_request/url_request_intercepting_job_factory.cc",
1697 "url_request/url_request_intercepting_job_factory.h",
1698 "url_request/url_request_interceptor.cc",
1699 "url_request/url_request_interceptor.h",
1700 "url_request/url_request_job.cc",
1701 "url_request/url_request_job.h",
1702 "url_request/url_request_job_factory.cc",
1703 "url_request/url_request_job_factory.h",
1704 "url_request/url_request_job_factory_impl.cc",
1705 "url_request/url_request_job_factory_impl.h",
1706 "url_request/url_request_job_manager.cc",
1707 "url_request/url_request_job_manager.h",
1708 "url_request/url_request_netlog_params.cc",
1709 "url_request/url_request_netlog_params.h",
1710 "url_request/url_request_redirect_job.cc",
1711 "url_request/url_request_redirect_job.h",
1712 "url_request/url_request_simple_job.cc",
1713 "url_request/url_request_simple_job.h",
1714 "url_request/url_request_status.cc",
1715 "url_request/url_request_status.h",
1716 "url_request/url_request_test_job.cc",
1717 "url_request/url_request_test_job.h",
1718 "url_request/url_request_throttler_entry.cc",
1719 "url_request/url_request_throttler_entry.h",
1720 "url_request/url_request_throttler_entry_interface.h",
1721 "url_request/url_request_throttler_manager.cc",
1722 "url_request/url_request_throttler_manager.h",
1723 "url_request/view_cache_helper.cc",
1724 "url_request/view_cache_helper.h",
1725 "url_request/websocket_handshake_userdata_key.cc",
1726 "url_request/websocket_handshake_userdata_key.h",
1727 "websockets/websocket_handshake_request_info.h",
1728 "websockets/websocket_handshake_response_info.h",
1729 "websockets/websocket_handshake_stream_base.h",
1730 "websockets/websocket_stream.h",
1731 ]
kapishnikovabe280e2016-04-14 19:07:161732 deps += [
1733 "//base/third_party/dynamic_annotations",
kapishnikovabe280e2016-04-14 19:07:161734 "//sdch",
1735 "//third_party/zlib",
1736 ]
1737
mmenkefd9d15c2017-06-29 13:45:541738 if (enable_reporting) {
1739 sources += [
1740 "reporting/reporting_browsing_data_remover.cc",
1741 "reporting/reporting_browsing_data_remover.h",
1742 "reporting/reporting_cache.cc",
1743 "reporting/reporting_cache.h",
1744 "reporting/reporting_client.cc",
1745 "reporting/reporting_client.h",
1746 "reporting/reporting_context.cc",
1747 "reporting/reporting_context.h",
1748 "reporting/reporting_delegate.cc",
1749 "reporting/reporting_delegate.h",
1750 "reporting/reporting_delivery_agent.cc",
1751 "reporting/reporting_delivery_agent.h",
1752 "reporting/reporting_endpoint_manager.cc",
1753 "reporting/reporting_endpoint_manager.h",
1754 "reporting/reporting_feature.cc",
1755 "reporting/reporting_feature.h",
1756 "reporting/reporting_garbage_collector.cc",
1757 "reporting/reporting_garbage_collector.h",
1758 "reporting/reporting_header_parser.cc",
1759 "reporting/reporting_header_parser.h",
1760 "reporting/reporting_network_change_observer.cc",
1761 "reporting/reporting_network_change_observer.h",
1762 "reporting/reporting_observer.cc",
1763 "reporting/reporting_observer.h",
1764 "reporting/reporting_persister.cc",
1765 "reporting/reporting_persister.h",
1766 "reporting/reporting_policy.cc",
1767 "reporting/reporting_policy.h",
1768 "reporting/reporting_report.cc",
1769 "reporting/reporting_report.h",
1770 "reporting/reporting_service.cc",
1771 "reporting/reporting_service.h",
1772 "reporting/reporting_uploader.cc",
1773 "reporting/reporting_uploader.h",
1774 ]
1775 }
1776
kapishnikovabe280e2016-04-14 19:07:161777 if (!use_kerberos) {
1778 sources -= [
1779 "http/http_auth_handler_negotiate.cc",
1780 "http/http_auth_handler_negotiate.h",
1781 ]
1782 }
1783
1784 if (is_posix) {
1785 if (posix_avoid_mmap) {
1786 sources -= [ "disk_cache/blockfile/mapped_file_posix.cc" ]
1787 } else {
1788 sources -= [ "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc" ]
1789 }
1790 }
1791
zentarob74795682017-07-14 00:58:221792 if (is_win) {
1793 sources -= [
zentarob89acda42017-07-14 01:28:571794 "ntlm/des.cc",
1795 "ntlm/des.h",
1796 "ntlm/md4.cc",
1797 "ntlm/md4.h",
1798 "ntlm/ntlm.cc",
1799 "ntlm/ntlm.h",
zentarob74795682017-07-14 00:58:221800 "ntlm/ntlm_buffer_reader.cc",
1801 "ntlm/ntlm_buffer_reader.h",
1802 "ntlm/ntlm_buffer_writer.cc",
1803 "ntlm/ntlm_buffer_writer.h",
Zentaro Kavanaghdd556612017-08-03 20:27:041804 "ntlm/ntlm_client.cc",
1805 "ntlm/ntlm_client.h",
zentarob74795682017-07-14 00:58:221806 "ntlm/ntlm_constants.h",
1807 ]
1808 }
1809
kapishnikovabe280e2016-04-14 19:07:161810 if (!enable_built_in_dns) {
1811 sources -= [
1812 "dns/address_sorter_posix.cc",
1813 "dns/address_sorter_posix.h",
1814 "dns/dns_client.cc",
1815 ]
1816 }
1817
mattm4cede8d2017-04-11 02:55:011818 if (use_byte_certs) {
mattm4cede8d2017-04-11 02:55:011819 if (use_nss_certs) {
1820 sources -= [ "cert/x509_certificate_nss.cc" ]
1821 }
mattm4cede8d2017-04-11 02:55:011822 } else {
1823 sources -= [ "cert/x509_certificate_bytes.cc" ]
1824 }
1825
kapishnikovabe280e2016-04-14 19:07:161826 if (!use_kerberos || is_android) {
1827 sources -= [
1828 "http/http_auth_gssapi_posix.cc",
1829 "http/http_auth_gssapi_posix.h",
1830 ]
1831 }
1832
Sergey Ulanov5c33235ae2017-07-06 23:55:071833 if (!is_nacl) {
Matt Mueller15004212017-09-08 04:44:131834 sources -= [
1835 "base/network_interfaces_nacl.cc",
1836 "cert/cert_database_stub.cc",
1837 ]
Sergey Ulanov5c33235ae2017-07-06 23:55:071838 }
1839
1840 # Use getifaddrs() on POSIX platforms, except Linux and Android.
1841 if (!is_posix || is_linux || is_android) {
1842 sources -= [
1843 "base/network_interfaces_getifaddrs.cc",
1844 "base/network_interfaces_getifaddrs.h",
1845 ]
1846 }
1847
mostynb75e8d632016-08-02 16:46:531848 if (use_gio) {
dsinclair8490e052016-05-04 15:33:331849 deps += [ "//build/linux/libgio" ]
kapishnikovabe280e2016-04-14 19:07:161850 }
1851
1852 if (!use_nss_certs) {
1853 sources -= [
kapishnikovabe280e2016-04-14 19:07:161854 "cert/cert_database_nss.cc",
mattm9c63d442016-09-03 00:45:511855 "cert/internal/trust_store_nss.cc",
1856 "cert/internal/trust_store_nss.h",
eromanf2971fd2017-04-20 20:10:451857 "cert/known_roots_nss.cc",
1858 "cert/known_roots_nss.h",
kapishnikovabe280e2016-04-14 19:07:161859 "cert/nss_cert_database.cc",
1860 "cert/nss_cert_database.h",
1861 "cert/x509_certificate_nss.cc",
1862 "ssl/client_cert_store_nss.cc",
1863 "ssl/client_cert_store_nss.h",
kapishnikovabe280e2016-04-14 19:07:161864 "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
1865 "third_party/mozilla_security_manager/nsNSSCertificateDB.h",
1866 "third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
1867 "third_party/mozilla_security_manager/nsPKCS12Blob.h",
1868 ]
1869 if (is_chromeos) {
1870 # These were already removed on non-ChromeOS.
1871 sources -= [
1872 "cert/nss_cert_database_chromeos.cc",
1873 "cert/nss_cert_database_chromeos.h",
1874 "cert/nss_profile_filter_chromeos.cc",
1875 "cert/nss_profile_filter_chromeos.h",
1876 ]
1877 }
mattmbbf7fc02017-06-19 23:38:191878 sources -= [ "ssl/ssl_platform_key_nss.cc" ]
svaldez2135be52016-04-20 16:34:531879 } else {
davidben8d569f52016-07-29 16:03:181880 sources += [
1881 "third_party/nss/ssl/cmpcert.cc",
1882 "third_party/nss/ssl/cmpcert.h",
1883 ]
kapishnikovabe280e2016-04-14 19:07:161884 }
1885
svaldez2135be52016-04-20 16:34:531886 if (!use_nss_certs) {
kapishnikovabe280e2016-04-14 19:07:161887 # These files are part of the partial implementation of NSS for
1888 # cert verification, so keep them in that case.
1889 sources -= [
1890 "cert/cert_verify_proc_nss.cc",
1891 "cert/cert_verify_proc_nss.h",
1892 "cert/test_root_certs_nss.cc",
svaldez2135be52016-04-20 16:34:531893 "cert/x509_util_nss.cc",
kapishnikovabe280e2016-04-14 19:07:161894 "cert_net/nss_ocsp.cc",
1895 "cert_net/nss_ocsp.h",
1896 ]
1897 }
1898
kapishnikovabe280e2016-04-14 19:07:161899 if (is_chromecast && use_nss_certs) {
mattm436ccfe2017-06-19 20:24:081900 sources -= [
1901 "ssl/client_cert_store_nss.cc",
1902 "ssl/client_cert_store_nss.h",
1903 "ssl/ssl_platform_key_nss.cc",
1904 ]
kapishnikovabe280e2016-04-14 19:07:161905 }
1906
1907 if (!enable_mdns) {
1908 sources -= [
1909 "dns/mdns_cache.cc",
1910 "dns/mdns_cache.h",
1911 "dns/mdns_client.cc",
1912 "dns/mdns_client.h",
1913 "dns/mdns_client_impl.cc",
1914 "dns/mdns_client_impl.h",
kapishnikovabe280e2016-04-14 19:07:161915 ]
1916 }
1917
1918 if (is_win) {
1919 sources -= [ "http/http_auth_handler_ntlm_portable.cc" ]
1920 } else { # !is_win
1921 sources -= [
1922 "base/winsock_init.cc",
1923 "base/winsock_init.h",
1924 "base/winsock_util.cc",
1925 "base/winsock_util.h",
1926 "proxy/proxy_resolver_winhttp.cc",
1927 "proxy/proxy_resolver_winhttp.h",
1928 ]
1929 }
1930
1931 if (is_ios) {
1932 # Add back some sources that were otherwise filtered out.
1933 # iOS needs some Mac files.
1934 net_unfiltered_sources += [
1935 "base/mac/url_conversions.h",
1936 "base/mac/url_conversions.mm",
1937 "base/network_change_notifier_mac.cc",
wychenebb66ffb2017-04-05 07:19:371938 "base/network_change_notifier_mac.h",
kapishnikovabe280e2016-04-14 19:07:161939 "base/network_config_watcher_mac.cc",
wychenebb66ffb2017-04-05 07:19:371940 "base/network_config_watcher_mac.h",
kapishnikovabe280e2016-04-14 19:07:161941 "base/platform_mime_util_mac.mm",
svaldez2135be52016-04-20 16:34:531942 "cert/test_root_certs_mac.cc",
mattm1a07e632017-05-16 05:55:501943 "cert/x509_util_ios_and_mac.cc",
1944 "cert/x509_util_ios_and_mac.h",
kapishnikovabe280e2016-04-14 19:07:161945 "proxy/proxy_resolver_mac.cc",
wychenebb66ffb2017-04-05 07:19:371946 "proxy/proxy_resolver_mac.h",
kapishnikovabe280e2016-04-14 19:07:161947 "proxy/proxy_server_mac.cc",
1948 ]
1949
1950 sources -= [ "disk_cache/blockfile/file_posix.cc" ]
1951 }
1952
kapishnikovabe280e2016-04-14 19:07:161953 if (is_ios || is_mac) {
ckrasic73f7240b2017-01-24 00:06:451954 sources += [
1955 "base/mac/url_conversions.h",
1956 "base/mac/url_conversions.mm",
1957 ]
kapishnikovabe280e2016-04-14 19:07:161958 }
1959
1960 if (is_android) {
1961 deps += [ ":net_jni_headers" ]
1962
1963 # Add some Linux sources that were excluded by the filter, but which
1964 # are needed.
1965 net_unfiltered_sources += [
1966 "base/address_tracker_linux.cc",
1967 "base/address_tracker_linux.h",
1968 "base/network_interfaces_linux.cc",
1969 "base/network_interfaces_linux.h",
1970 "base/platform_mime_util_linux.cc",
1971 ]
1972 }
Sergey Ulanov49085572017-07-10 23:25:461973
1974 if (is_fuchsia) {
1975 sources += [
1976 "base/platform_mime_util_fuchsia.cc",
1977 "cert/cert_database_fuchsia.cc",
1978 "cert/test_root_certs_fuchsia.cc",
1979 ]
1980 }
kapishnikovabe280e2016-04-14 19:07:161981 } else {
1982 public_deps += [ "//native_client_sdk/src/libraries/nacl_io" ]
1983 }
xunjieli905496a2015-08-31 15:51:171984
Sergey Ulanov21dea152017-09-13 00:50:501985 if (enable_unix_sockets) {
1986 sources += [
1987 "socket/unix_domain_client_socket_posix.cc",
1988 "socket/unix_domain_client_socket_posix.h",
1989 "socket/unix_domain_server_socket_posix.cc",
1990 "socket/unix_domain_server_socket_posix.h",
1991 ]
1992 }
1993
xunjieli905496a2015-08-31 15:51:171994 # Add back some sources that were otherwise filtered out.
1995 set_sources_assignment_filter([])
kapishnikovabe280e2016-04-14 19:07:161996 sources += net_unfiltered_sources
xunjieli905496a2015-08-31 15:51:171997 set_sources_assignment_filter(sources_assignment_filter)
1998
1999 cflags = []
kapishnikovabe280e2016-04-14 19:07:162000 configs += net_configs
xunjieli905496a2015-08-31 15:51:172001
brettwa1228ebb2016-10-28 03:51:342002 public_deps += [
2003 ":features",
2004 "//url",
2005 ]
[email protected]4625ade2014-04-15 19:26:442006
2007 if (is_mac) {
[email protected]4625ade2014-04-15 19:26:442008 libs = [
rsesek02aa51c2016-05-11 02:13:572009 "CFNetwork.framework",
2010 "CoreServices.framework",
[email protected]ab9ce6e2014-04-17 20:33:192011 "Foundation.framework",
2012 "Security.framework",
2013 "SystemConfiguration.framework",
2014 "resolv",
[email protected]4625ade2014-04-15 19:26:442015 ]
2016 }
2017
2018 if (is_ios) {
[email protected]4625ade2014-04-15 19:26:442019 libs = [
[email protected]ab9ce6e2014-04-17 20:33:192020 "CFNetwork.framework",
2021 "MobileCoreServices.framework",
2022 "Security.framework",
2023 "SystemConfiguration.framework",
2024 "resolv",
[email protected]4625ade2014-04-15 19:26:442025 ]
xunjieli06d93982015-08-27 17:13:022026 }
xunjieli4c8c6922015-08-27 16:02:402027
jam5332a632016-04-01 22:36:052028 if (is_win) {
2029 libs = [
2030 "crypt32.lib",
2031 "dhcpcsvc.lib",
2032 "iphlpapi.lib",
davidben62399192016-09-13 01:54:222033 "ncrypt.lib",
jam5332a632016-04-01 22:36:052034 "rpcrt4.lib",
2035 "secur32.lib",
2036 "urlmon.lib",
2037 "winhttp.lib",
2038 ]
2039 }
2040
sergeyu99d83f92015-09-14 23:03:332041 if (!is_nacl) {
2042 if (!disable_file_support) {
ckrasic73f7240b2017-01-24 00:06:452043 sources += [
2044 "base/directory_lister.cc",
2045 "base/directory_lister.h",
2046 "base/directory_listing.cc",
2047 "base/directory_listing.h",
2048 "url_request/file_protocol_handler.cc",
2049 "url_request/file_protocol_handler.h",
2050 "url_request/url_request_file_dir_job.cc",
2051 "url_request/url_request_file_dir_job.h",
2052 "url_request/url_request_file_job.cc",
2053 "url_request/url_request_file_job.h",
2054 ]
sergeyu99d83f92015-09-14 23:03:332055 }
xunjieli06d93982015-08-27 17:13:022056
sergeyu99d83f92015-09-14 23:03:332057 if (!disable_ftp_support) {
ckrasic73f7240b2017-01-24 00:06:452058 sources += [
2059 "ftp/ftp_auth_cache.cc",
2060 "ftp/ftp_auth_cache.h",
2061 "ftp/ftp_ctrl_response_buffer.cc",
2062 "ftp/ftp_ctrl_response_buffer.h",
2063 "ftp/ftp_directory_listing_parser.cc",
2064 "ftp/ftp_directory_listing_parser.h",
2065 "ftp/ftp_directory_listing_parser_ls.cc",
2066 "ftp/ftp_directory_listing_parser_ls.h",
2067 "ftp/ftp_directory_listing_parser_vms.cc",
2068 "ftp/ftp_directory_listing_parser_vms.h",
2069 "ftp/ftp_directory_listing_parser_windows.cc",
2070 "ftp/ftp_directory_listing_parser_windows.h",
2071 "ftp/ftp_network_layer.cc",
2072 "ftp/ftp_network_layer.h",
2073 "ftp/ftp_network_session.cc",
2074 "ftp/ftp_network_session.h",
2075 "ftp/ftp_network_transaction.cc",
2076 "ftp/ftp_network_transaction.h",
2077 "ftp/ftp_request_info.h",
2078 "ftp/ftp_response_info.cc",
2079 "ftp/ftp_response_info.h",
2080 "ftp/ftp_server_type_histograms.cc",
2081 "ftp/ftp_server_type_histograms.h",
2082 "ftp/ftp_transaction.h",
2083 "ftp/ftp_transaction_factory.h",
2084 "ftp/ftp_util.cc",
2085 "ftp/ftp_util.h",
2086 "url_request/ftp_protocol_handler.cc",
2087 "url_request/ftp_protocol_handler.h",
2088 "url_request/url_request_ftp_job.cc",
2089 "url_request/url_request_ftp_job.h",
2090 ]
sergeyu99d83f92015-09-14 23:03:332091 }
xunjieli905496a2015-08-31 15:51:172092
sergeyu99d83f92015-09-14 23:03:332093 if (enable_websockets) {
ckrasic73f7240b2017-01-24 00:06:452094 sources += [
2095 "websockets/websocket_basic_handshake_stream.cc",
2096 "websockets/websocket_basic_handshake_stream.h",
2097 "websockets/websocket_basic_stream.cc",
2098 "websockets/websocket_basic_stream.h",
2099 "websockets/websocket_channel.cc",
2100 "websockets/websocket_channel.h",
2101 "websockets/websocket_deflate_parameters.cc",
2102 "websockets/websocket_deflate_parameters.h",
2103 "websockets/websocket_deflate_predictor.h",
2104 "websockets/websocket_deflate_predictor_impl.cc",
2105 "websockets/websocket_deflate_predictor_impl.h",
2106 "websockets/websocket_deflate_stream.cc",
2107 "websockets/websocket_deflate_stream.h",
2108 "websockets/websocket_deflater.cc",
2109 "websockets/websocket_deflater.h",
2110 "websockets/websocket_errors.cc",
2111 "websockets/websocket_errors.h",
mmenke392ec462017-03-23 18:49:352112 "websockets/websocket_event_interface.h",
ckrasic73f7240b2017-01-24 00:06:452113 "websockets/websocket_extension.cc",
2114 "websockets/websocket_extension.h",
2115 "websockets/websocket_extension_parser.cc",
2116 "websockets/websocket_extension_parser.h",
2117 "websockets/websocket_frame.cc",
2118 "websockets/websocket_frame.h",
2119 "websockets/websocket_frame_parser.cc",
2120 "websockets/websocket_frame_parser.h",
2121 "websockets/websocket_handshake_challenge.cc",
2122 "websockets/websocket_handshake_challenge.h",
2123 "websockets/websocket_handshake_constants.cc",
2124 "websockets/websocket_handshake_constants.h",
2125 "websockets/websocket_handshake_request_info.cc",
2126 "websockets/websocket_handshake_request_info.h",
2127 "websockets/websocket_handshake_response_info.cc",
2128 "websockets/websocket_handshake_response_info.h",
2129 "websockets/websocket_handshake_stream_base.h",
2130 "websockets/websocket_handshake_stream_create_helper.cc",
2131 "websockets/websocket_handshake_stream_create_helper.h",
2132 "websockets/websocket_inflater.cc",
2133 "websockets/websocket_inflater.h",
2134 "websockets/websocket_stream.cc",
2135 "websockets/websocket_stream.h",
2136 ]
sergeyu99d83f92015-09-14 23:03:332137 }
xunjieli905496a2015-08-31 15:51:172138
sergeyu99d83f92015-09-14 23:03:332139 # ICU support.
kapishnikovabe280e2016-04-14 19:07:162140 if (use_platform_icu_alternatives) {
2141 if (is_android) {
2142 # Use ICU alternative on Android.
torned8b7d9252016-08-04 19:41:452143 sources += [ "base/net_string_util_icu_alternatives_android.cc" ]
kapishnikovabe280e2016-04-14 19:07:162144 deps += [ ":net_jni_headers" ]
2145 } else if (is_ios) {
2146 # Use ICU alternative on iOS.
2147 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ]
2148 } else {
2149 assert(false,
2150 "ICU alternative is not implemented for platform: " + target_os)
2151 }
2152 } else {
2153 # Use ICU.
2154 deps += [
2155 "//base:i18n",
2156 "//third_party/icu",
2157 ]
2158 sources += [
2159 "base/filename_util_icu.cc",
2160 "base/net_string_util_icu.cc",
2161 ]
2162 }
eustasfbec9132015-12-30 14:56:512163
2164 # Brotli support.
kapishnikovabe280e2016-04-14 19:07:162165 if (!disable_brotli_filter) {
thakisb8590c92017-03-23 18:14:532166 sources += [
2167 "filter/brotli_source_stream.cc",
2168 "filter/brotli_source_stream.h",
2169 ]
eustas6ed4c412016-12-14 13:53:342170 deps += [ "//third_party/brotli:dec" ]
kapishnikovabe280e2016-04-14 19:07:162171 } else {
xunjieli084a9292016-09-23 18:15:042172 sources += [ "filter/brotli_source_stream_disabled.cc" ]
kapishnikovabe280e2016-04-14 19:07:162173 }
[email protected]85191ed2014-05-15 00:41:492174 }
[email protected]4625ade2014-04-15 19:26:442175}
2176
2177grit("net_resources") {
2178 source = "base/net_resources.grd"
[email protected]b89c53842014-07-23 16:32:322179 outputs = [
2180 "grit/net_resources.h",
2181 "net_resources.pak",
[email protected]b89c53842014-07-23 16:32:322182 ]
[email protected]4625ade2014-04-15 19:26:442183}
2184
rtennetib6f1c0d2015-04-03 17:52:062185proto_library("net_quic_proto") {
kapishnikovabe280e2016-04-14 19:07:162186 visibility = [ ":net" ]
brettw2e7db0a2015-04-24 22:59:172187
rtennetib6f1c0d2015-04-03 17:52:062188 sources = [
rchd4db7c152016-07-29 21:58:122189 "quic/core/proto/cached_network_parameters.proto",
2190 "quic/core/proto/source_address_token.proto",
rtennetib6f1c0d2015-04-03 17:52:062191 ]
2192 cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:"
2193 cc_include = "net/base/net_export.h"
brettw7ef80452016-06-30 00:43:182194 component_build_force_source_set = true
rtennetib6f1c0d2015-04-03 17:52:062195
2196 defines = [ "NET_IMPLEMENTATION" ]
2197
2198 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
2199}
2200
ckrasic73f7240b2017-01-24 00:06:452201if (!is_proto_quic) {
2202 static_library("extras") {
2203 sources = [
2204 "extras/sqlite/cookie_crypto_delegate.h",
2205 "extras/sqlite/sqlite_channel_id_store.cc",
2206 "extras/sqlite/sqlite_channel_id_store.h",
2207 "extras/sqlite/sqlite_persistent_cookie_store.cc",
2208 "extras/sqlite/sqlite_persistent_cookie_store.h",
2209 ]
2210 configs += [ "//build/config/compiler:wexit_time_destructors" ]
2211 deps = [
2212 ":net",
2213 "//base",
2214 "//sql:sql",
2215 ]
2216 }
mef327a8e42014-08-29 17:10:032217}
2218
[email protected]8a3f8242014-06-05 18:05:122219static_library("http_server") {
[email protected]4625ade2014-04-15 19:26:442220 sources = [
2221 "server/http_connection.cc",
2222 "server/http_connection.h",
2223 "server/http_server.cc",
2224 "server/http_server.h",
2225 "server/http_server_request_info.cc",
2226 "server/http_server_request_info.h",
2227 "server/http_server_response_info.cc",
2228 "server/http_server_response_info.h",
2229 "server/web_socket.cc",
2230 "server/web_socket.h",
dgozmana6e70092014-12-12 14:46:212231 "server/web_socket_encoder.cc",
2232 "server/web_socket_encoder.h",
[email protected]4625ade2014-04-15 19:26:442233 ]
jambc6cc8e2014-11-14 17:56:292234 configs += [
brettwd1c719a2015-02-19 23:17:042235 "//build/config/compiler:no_size_t_to_int_warning",
jambc6cc8e2014-11-14 17:56:292236 "//build/config/compiler:wexit_time_destructors",
jambc6cc8e2014-11-14 17:56:292237 ]
[email protected]4625ade2014-04-15 19:26:442238 deps = [
2239 ":net",
2240 "//base",
2241 ]
2242}
2243
sdefresne3001f172016-03-16 10:30:032244if (!is_ios) {
2245 executable("dump_cache") {
2246 testonly = true
2247 sources = [
2248 "tools/dump_cache/dump_cache.cc",
2249 "tools/dump_cache/dump_files.cc",
2250 "tools/dump_cache/dump_files.h",
2251 ]
[email protected]4625ade2014-04-15 19:26:442252
sdefresne3001f172016-03-16 10:30:032253 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2254 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312255
sdefresne3001f172016-03-16 10:30:032256 deps = [
2257 ":net",
2258 ":test_support",
2259 "//base",
thomasanderson84fa8b02017-05-18 23:38:472260 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072261 "//build/win:default_exe_manifest",
sdefresne3001f172016-03-16 10:30:032262 ]
2263 }
[email protected]8603c5de2014-04-16 20:34:312264}
2265
eroman12951312017-05-05 22:55:512266# This section can be updated from globbing rules using:
2267# python ./tools/update_ios_bundle_data.py
sdefresneb0a31642016-03-18 11:04:452268bundle_data("test_support_bundle_data") {
sdefresne04f91142016-04-21 08:41:592269 visibility = [ ":test_support" ]
sdefresneb0a31642016-03-18 11:04:452270 testonly = true
ckrasic73f7240b2017-01-24 00:06:452271 sources = [
zhongyid7dd2db12017-04-14 17:01:252272 "data/quic_http_response_cache_data_with_push/test.example.com/favicon.ico",
2273 "data/quic_http_response_cache_data_with_push/test.example.com/index.html",
2274 "data/quic_http_response_cache_data_with_push/test.example.com/index2.html",
2275 "data/quic_http_response_cache_data_with_push/test.example.com/kitten-1.jpg",
ckrasic73f7240b2017-01-24 00:06:452276 "data/ssl/certificates/1024-rsa-ee-by-1024-rsa-intermediate.pem",
2277 "data/ssl/certificates/1024-rsa-ee-by-2048-rsa-intermediate.pem",
2278 "data/ssl/certificates/1024-rsa-ee-by-768-rsa-intermediate.pem",
2279 "data/ssl/certificates/1024-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2280 "data/ssl/certificates/1024-rsa-intermediate.pem",
2281 "data/ssl/certificates/10_year_validity.pem",
2282 "data/ssl/certificates/11_year_validity.pem",
2283 "data/ssl/certificates/2029_globalsign_com_cert.pem",
2284 "data/ssl/certificates/2048-rsa-ee-by-1024-rsa-intermediate.pem",
2285 "data/ssl/certificates/2048-rsa-ee-by-2048-rsa-intermediate.pem",
2286 "data/ssl/certificates/2048-rsa-ee-by-768-rsa-intermediate.pem",
2287 "data/ssl/certificates/2048-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2288 "data/ssl/certificates/2048-rsa-intermediate.pem",
2289 "data/ssl/certificates/2048-rsa-root.pem",
2290 "data/ssl/certificates/39_months_after_2015_04.pem",
2291 "data/ssl/certificates/40_months_after_2015_04.pem",
2292 "data/ssl/certificates/60_months_after_2012_07.pem",
2293 "data/ssl/certificates/61_months_after_2012_07.pem",
2294 "data/ssl/certificates/768-rsa-ee-by-1024-rsa-intermediate.pem",
2295 "data/ssl/certificates/768-rsa-ee-by-2048-rsa-intermediate.pem",
2296 "data/ssl/certificates/768-rsa-ee-by-768-rsa-intermediate.pem",
2297 "data/ssl/certificates/768-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2298 "data/ssl/certificates/768-rsa-intermediate.pem",
eroman12951312017-05-05 22:55:512299 "data/ssl/certificates/README",
ckrasic73f7240b2017-01-24 00:06:452300 "data/ssl/certificates/aia-cert.pem",
2301 "data/ssl/certificates/aia-intermediate.der",
2302 "data/ssl/certificates/aia-root.pem",
2303 "data/ssl/certificates/bad_validity.pem",
2304 "data/ssl/certificates/client-empty-password.p12",
2305 "data/ssl/certificates/client-nokey.p12",
2306 "data/ssl/certificates/client-null-password.p12",
2307 "data/ssl/certificates/client.p12",
2308 "data/ssl/certificates/client_1.key",
2309 "data/ssl/certificates/client_1.pem",
2310 "data/ssl/certificates/client_1.pk8",
2311 "data/ssl/certificates/client_1_ca.pem",
2312 "data/ssl/certificates/client_2.key",
2313 "data/ssl/certificates/client_2.pem",
2314 "data/ssl/certificates/client_2.pk8",
2315 "data/ssl/certificates/client_2_ca.pem",
2316 "data/ssl/certificates/client_3.key",
2317 "data/ssl/certificates/client_3.pem",
2318 "data/ssl/certificates/client_3.pk8",
2319 "data/ssl/certificates/client_3_ca.pem",
2320 "data/ssl/certificates/client_4.key",
2321 "data/ssl/certificates/client_4.pem",
2322 "data/ssl/certificates/client_4.pk8",
2323 "data/ssl/certificates/client_4_ca.pem",
2324 "data/ssl/certificates/client_5.key",
2325 "data/ssl/certificates/client_5.pem",
2326 "data/ssl/certificates/client_5.pk8",
2327 "data/ssl/certificates/client_5_ca.pem",
2328 "data/ssl/certificates/client_6.key",
2329 "data/ssl/certificates/client_6.pem",
2330 "data/ssl/certificates/client_6.pk8",
2331 "data/ssl/certificates/client_6_ca.pem",
2332 "data/ssl/certificates/client_root_ca.pem",
ckrasic73f7240b2017-01-24 00:06:452333 "data/ssl/certificates/crit-codeSigning-chain.pem",
2334 "data/ssl/certificates/crlset_by_intermediate_serial.raw",
2335 "data/ssl/certificates/crlset_by_leaf_spki.raw",
2336 "data/ssl/certificates/crlset_by_root_serial.raw",
2337 "data/ssl/certificates/cross-signed-leaf.pem",
2338 "data/ssl/certificates/cross-signed-root-md5.pem",
2339 "data/ssl/certificates/cross-signed-root-sha256.pem",
2340 "data/ssl/certificates/ct-test-embedded-cert.pem",
2341 "data/ssl/certificates/ct-test-embedded-with-intermediate-chain.pem",
2342 "data/ssl/certificates/ct-test-embedded-with-intermediate-preca-chain.pem",
2343 "data/ssl/certificates/ct-test-embedded-with-preca-chain.pem",
2344 "data/ssl/certificates/diginotar_cyber_ca.pem",
2345 "data/ssl/certificates/diginotar_pkioverheid.pem",
2346 "data/ssl/certificates/diginotar_pkioverheid_g2.pem",
2347 "data/ssl/certificates/diginotar_public_ca_2025.pem",
2348 "data/ssl/certificates/diginotar_root_ca.pem",
2349 "data/ssl/certificates/diginotar_services_1024_ca.pem",
2350 "data/ssl/certificates/dod_ca_13_cert.der",
2351 "data/ssl/certificates/dod_ca_17_cert.der",
2352 "data/ssl/certificates/dod_root_ca_2_cert.der",
2353 "data/ssl/certificates/duplicate_cn_1.p12",
2354 "data/ssl/certificates/duplicate_cn_1.pem",
2355 "data/ssl/certificates/duplicate_cn_2.p12",
2356 "data/ssl/certificates/duplicate_cn_2.pem",
2357 "data/ssl/certificates/eku-test-root.pem",
2358 "data/ssl/certificates/empty_subject_cert.der",
2359 "data/ssl/certificates/expired_cert.pem",
2360 "data/ssl/certificates/explicit-policy-chain.pem",
2361 "data/ssl/certificates/foaf.me.chromium-test-cert.der",
2362 "data/ssl/certificates/google.binary.p7b",
2363 "data/ssl/certificates/google.chain.pem",
2364 "data/ssl/certificates/google.pem_cert.p7b",
2365 "data/ssl/certificates/google.pem_pkcs7.p7b",
2366 "data/ssl/certificates/google.single.der",
2367 "data/ssl/certificates/google.single.pem",
2368 "data/ssl/certificates/google_diginotar.pem",
2369 "data/ssl/certificates/googlenew.chain.pem",
2370 "data/ssl/certificates/intermediate_ca_cert.pem",
2371 "data/ssl/certificates/invalid_key_usage_cert.der",
2372 "data/ssl/certificates/large_key.pem",
2373 "data/ssl/certificates/localhost_cert.pem",
2374 "data/ssl/certificates/mit.davidben.der",
2375 "data/ssl/certificates/multi-root-A-by-B.pem",
2376 "data/ssl/certificates/multi-root-B-by-C.pem",
2377 "data/ssl/certificates/multi-root-B-by-F.pem",
2378 "data/ssl/certificates/multi-root-BFE.keychain",
2379 "data/ssl/certificates/multi-root-C-by-D.pem",
2380 "data/ssl/certificates/multi-root-C-by-E.pem",
2381 "data/ssl/certificates/multi-root-D-by-D.pem",
2382 "data/ssl/certificates/multi-root-E-by-E.pem",
2383 "data/ssl/certificates/multi-root-F-by-E.pem",
2384 "data/ssl/certificates/multi-root-chain1.pem",
2385 "data/ssl/certificates/multi-root-chain2.pem",
2386 "data/ssl/certificates/multi-root-crlset-C.raw",
2387 "data/ssl/certificates/multi-root-crlset-CD-and-FE.raw",
2388 "data/ssl/certificates/multi-root-crlset-D-and-E.raw",
2389 "data/ssl/certificates/multi-root-crlset-E.raw",
2390 "data/ssl/certificates/multi-root-crlset-unrelated.raw",
eroman12951312017-05-05 22:55:512391 "data/ssl/certificates/multi-root.keychain",
ckrasic73f7240b2017-01-24 00:06:452392 "data/ssl/certificates/multivalue_rdn.pem",
2393 "data/ssl/certificates/name_constraint_bad.pem",
2394 "data/ssl/certificates/name_constraint_good.pem",
2395 "data/ssl/certificates/ndn.ca.crt",
2396 "data/ssl/certificates/nist.der",
2397 "data/ssl/certificates/no_subject_common_name_cert.pem",
2398 "data/ssl/certificates/non-crit-codeSigning-chain.pem",
2399 "data/ssl/certificates/ocsp-test-root.pem",
2400 "data/ssl/certificates/ok_cert.pem",
2401 "data/ssl/certificates/ok_cert_by_intermediate.pem",
2402 "data/ssl/certificates/post_june_2016.pem",
2403 "data/ssl/certificates/pre_br_validity_bad_121.pem",
2404 "data/ssl/certificates/pre_br_validity_bad_2020.pem",
2405 "data/ssl/certificates/pre_br_validity_ok.pem",
2406 "data/ssl/certificates/pre_june_2016.pem",
2407 "data/ssl/certificates/prime256v1-ecdsa-ee-by-1024-rsa-intermediate.pem",
2408 "data/ssl/certificates/prime256v1-ecdsa-ee-by-2048-rsa-intermediate.pem",
2409 "data/ssl/certificates/prime256v1-ecdsa-ee-by-768-rsa-intermediate.pem",
2410 "data/ssl/certificates/prime256v1-ecdsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2411 "data/ssl/certificates/prime256v1-ecdsa-intermediate.pem",
2412 "data/ssl/certificates/punycodetest.pem",
2413 "data/ssl/certificates/quic_chain.crt",
2414 "data/ssl/certificates/quic_intermediate.crt",
2415 "data/ssl/certificates/quic_intermediate.key",
2416 "data/ssl/certificates/quic_root.crt",
2417 "data/ssl/certificates/quic_root.key",
2418 "data/ssl/certificates/quic_test.example.com.crt",
2419 "data/ssl/certificates/quic_test.example.com.key",
2420 "data/ssl/certificates/quic_test.example.com.key.pkcs8",
eroman12951312017-05-05 22:55:512421 "data/ssl/certificates/quic_test.example.com.key.pkcs8.pem",
ckrasic73f7240b2017-01-24 00:06:452422 "data/ssl/certificates/quic_test.example.com.key.sct",
2423 "data/ssl/certificates/quic_test_ecc.example.com.crt",
2424 "data/ssl/certificates/quic_test_ecc.example.com.key",
2425 "data/ssl/certificates/quic_test_ecc.example.com.sct",
2426 "data/ssl/certificates/redundant-server-chain.pem",
2427 "data/ssl/certificates/redundant-validated-chain-root.pem",
2428 "data/ssl/certificates/redundant-validated-chain.pem",
2429 "data/ssl/certificates/reject_intranet_hosts.pem",
2430 "data/ssl/certificates/root_ca_cert.pem",
2431 "data/ssl/certificates/salesforce_com_test.pem",
2432 "data/ssl/certificates/self-signed-invalid-name.pem",
2433 "data/ssl/certificates/self-signed-invalid-sig.pem",
2434 "data/ssl/certificates/sha1_2016.pem",
2435 "data/ssl/certificates/sha1_dec_2015.pem",
2436 "data/ssl/certificates/sha1_jan_2016.pem",
2437 "data/ssl/certificates/spdy_pooling.pem",
2438 "data/ssl/certificates/start_after_expiry.pem",
2439 "data/ssl/certificates/subjectAltName_sanity_check.pem",
elawrencec7484f52017-04-05 21:46:422440 "data/ssl/certificates/subjectAltName_www_example_com.pem",
ckrasic73f7240b2017-01-24 00:06:452441 "data/ssl/certificates/thawte.single.pem",
2442 "data/ssl/certificates/tls_feature_extension.pem",
2443 "data/ssl/certificates/tripadvisor-verisign-chain.pem",
eroman12951312017-05-05 22:55:512444 "data/ssl/certificates/trustcenter.websecurity.symantec.com.pem",
ckrasic73f7240b2017-01-24 00:06:452445 "data/ssl/certificates/twitter-chain.pem",
2446 "data/ssl/certificates/unescaped.pem",
2447 "data/ssl/certificates/unittest.key.bin",
2448 "data/ssl/certificates/unittest.originbound.der",
2449 "data/ssl/certificates/unittest.originbound.key.der",
2450 "data/ssl/certificates/unittest.selfsigned.der",
2451 "data/ssl/certificates/verisign_class3_g5_crosssigned-trusted.keychain",
2452 "data/ssl/certificates/verisign_class3_g5_crosssigned.pem",
2453 "data/ssl/certificates/verisign_intermediate_ca_2011.pem",
2454 "data/ssl/certificates/verisign_intermediate_ca_2016.pem",
2455 "data/ssl/certificates/weak_digest_md2_ee.pem",
2456 "data/ssl/certificates/weak_digest_md2_intermediate.pem",
2457 "data/ssl/certificates/weak_digest_md2_root.pem",
2458 "data/ssl/certificates/weak_digest_md4_ee.pem",
2459 "data/ssl/certificates/weak_digest_md4_intermediate.pem",
2460 "data/ssl/certificates/weak_digest_md4_root.pem",
2461 "data/ssl/certificates/weak_digest_md5_ee.pem",
2462 "data/ssl/certificates/weak_digest_md5_intermediate.pem",
2463 "data/ssl/certificates/weak_digest_md5_root.pem",
2464 "data/ssl/certificates/weak_digest_sha1_ee.pem",
2465 "data/ssl/certificates/weak_digest_sha1_intermediate.pem",
2466 "data/ssl/certificates/weak_digest_sha1_root.pem",
2467 "data/ssl/certificates/websocket_cacert.pem",
2468 "data/ssl/certificates/websocket_client_cert.p12",
2469 "data/ssl/certificates/wildcard.pem",
ckrasic73f7240b2017-01-24 00:06:452470 "data/ssl/certificates/www_us_army_mil_cert.der",
2471 "data/ssl/certificates/x509_verify_results.chain.pem",
2472 ]
sdefresneb0a31642016-03-18 11:04:452473 outputs = [
2474 "{{bundle_resources_dir}}/" +
2475 "{{source_root_relative_dir}}/{{source_file_part}}",
2476 ]
2477}
2478
brettw3871f522016-07-14 22:08:342479static_library("test_support") {
Brett Wilson8f80ad0b2014-09-08 19:50:242480 testonly = true
[email protected]8603c5de2014-04-16 20:34:312481 sources = [
[email protected]8603c5de2014-04-16 20:34:312482 "base/load_timing_info_test_util.cc",
2483 "base/load_timing_info_test_util.h",
2484 "base/mock_file_stream.cc",
2485 "base/mock_file_stream.h",
2486 "base/test_completion_callback.cc",
2487 "base/test_completion_callback.h",
[email protected]8603c5de2014-04-16 20:34:312488 "cert/mock_cert_verifier.cc",
2489 "cert/mock_cert_verifier.h",
ryanchung987b2ff2016-02-19 00:17:122490 "cert/mock_client_cert_verifier.cc",
2491 "cert/mock_client_cert_verifier.h",
[email protected]8603c5de2014-04-16 20:34:312492 "cookies/cookie_monster_store_test.cc",
2493 "cookies/cookie_monster_store_test.h",
2494 "cookies/cookie_store_test_callbacks.cc",
2495 "cookies/cookie_store_test_callbacks.h",
2496 "cookies/cookie_store_test_helpers.cc",
2497 "cookies/cookie_store_test_helpers.h",
drogerfd8b2772015-12-04 14:34:562498 "cookies/cookie_store_unittest.h",
[email protected]8603c5de2014-04-16 20:34:312499 "disk_cache/disk_cache_test_base.cc",
2500 "disk_cache/disk_cache_test_base.h",
2501 "disk_cache/disk_cache_test_util.cc",
2502 "disk_cache/disk_cache_test_util.h",
2503 "dns/dns_test_util.cc",
2504 "dns/dns_test_util.h",
2505 "dns/mock_host_resolver.cc",
2506 "dns/mock_host_resolver.h",
2507 "dns/mock_mdns_socket_factory.cc",
2508 "dns/mock_mdns_socket_factory.h",
Matt Menke1dd3f2f2017-08-09 17:10:062509 "filter/filter_source_stream_test_util.cc",
2510 "filter/filter_source_stream_test_util.h",
xunjieli6cc8b84b2016-11-08 15:23:392511 "filter/mock_source_stream.cc",
2512 "filter/mock_source_stream.h",
zhongyi3c412982016-06-18 00:34:302513 "http/http_stream_factory_test_util.cc",
2514 "http/http_stream_factory_test_util.h",
[email protected]8a3f8242014-06-05 18:05:122515 "http/http_transaction_test_util.cc",
2516 "http/http_transaction_test_util.h",
vishal.b62985ca92015-04-17 08:45:512517 "log/test_net_log.cc",
2518 "log/test_net_log.h",
mmenke43758e62015-05-04 21:09:462519 "log/test_net_log_entry.cc",
2520 "log/test_net_log_entry.h",
mmenke0034c542015-05-05 22:34:592521 "log/test_net_log_util.cc",
mmenke43758e62015-05-04 21:09:462522 "log/test_net_log_util.h",
tbansal785a6ab2016-10-10 20:19:282523 "nqe/network_quality_estimator_test_util.cc",
2524 "nqe/network_quality_estimator_test_util.h",
[email protected]8603c5de2014-04-16 20:34:312525 "proxy/mock_proxy_resolver.cc",
2526 "proxy/mock_proxy_resolver.h",
2527 "proxy/mock_proxy_script_fetcher.cc",
2528 "proxy/mock_proxy_script_fetcher.h",
2529 "proxy/proxy_config_service_common_unittest.cc",
2530 "proxy/proxy_config_service_common_unittest.h",
2531 "socket/socket_test_util.cc",
2532 "socket/socket_test_util.h",
bnc8f8f7d302017-04-24 18:08:062533 "spdy/chromium/spdy_test_util_common.cc",
2534 "spdy/chromium/spdy_test_util_common.h",
mattm436ccfe2017-06-19 20:24:082535 "ssl/client_cert_identity_test_util.cc",
2536 "ssl/client_cert_identity_test_util.h",
2537 "ssl/ssl_private_key_test_util.cc",
2538 "ssl/ssl_private_key_test_util.h",
[email protected]8603c5de2014-04-16 20:34:312539 "test/cert_test_util.cc",
2540 "test/cert_test_util.h",
[email protected]83e1ae32014-07-18 10:57:072541 "test/cert_test_util_nss.cc",
nharper2e171cf2015-06-01 20:29:232542 "test/channel_id_test_util.cc",
2543 "test/channel_id_test_util.h",
[email protected]8603c5de2014-04-16 20:34:312544 "test/ct_test_util.cc",
2545 "test/ct_test_util.h",
svaldez7d25c562015-10-30 19:09:452546 "test/embedded_test_server/default_handlers.cc",
2547 "test/embedded_test_server/default_handlers.h",
[email protected]8603c5de2014-04-16 20:34:312548 "test/embedded_test_server/embedded_test_server.cc",
2549 "test/embedded_test_server/embedded_test_server.h",
mmenke392ec462017-03-23 18:49:352550 "test/embedded_test_server/embedded_test_server_connection_listener.h",
[email protected]8603c5de2014-04-16 20:34:312551 "test/embedded_test_server/http_connection.cc",
2552 "test/embedded_test_server/http_connection.h",
2553 "test/embedded_test_server/http_request.cc",
2554 "test/embedded_test_server/http_request.h",
2555 "test/embedded_test_server/http_response.cc",
2556 "test/embedded_test_server/http_response.h",
svaldez6e7e82a22015-10-28 19:39:532557 "test/embedded_test_server/request_handler_util.cc",
2558 "test/embedded_test_server/request_handler_util.h",
mmenke93be9ca2017-05-23 16:29:132559 "test/embedded_test_server/simple_connection_listener.cc",
2560 "test/embedded_test_server/simple_connection_listener.h",
sammc6ac3fe52015-02-25 06:00:282561 "test/event_waiter.h",
johnme36ae5802016-05-10 15:46:242562 "test/gtest_util.h",
mattmc1ec9d92017-05-25 01:40:302563 "test/keychain_test_util_mac.cc",
2564 "test/keychain_test_util_mac.h",
[email protected]8603c5de2014-04-16 20:34:312565 "test/net_test_suite.cc",
2566 "test/net_test_suite.h",
2567 "test/python_utils.cc",
2568 "test/python_utils.h",
johnme36ae5802016-05-10 15:46:242569 "test/scoped_disable_exit_on_dfatal.cc",
2570 "test/scoped_disable_exit_on_dfatal.h",
brettw6315e032015-11-27 18:38:362571 "test/test_certificate_data.h",
rsleevia69c79a2016-06-22 03:28:432572 "test/test_data_directory.cc",
2573 "test/test_data_directory.h",
sherouk51b4b098b2015-08-10 09:00:432574 "test/url_request/ssl_certificate_error_job.cc",
2575 "test/url_request/ssl_certificate_error_job.h",
Brett Wilson32ce17a2014-11-10 17:45:302576 "test/url_request/url_request_failed_job.cc",
2577 "test/url_request/url_request_failed_job.h",
xunjieli5d1f9892016-05-18 20:44:342578 "test/url_request/url_request_hanging_read_job.cc",
2579 "test/url_request/url_request_hanging_read_job.h",
mef3e826cf2014-12-13 18:40:402580 "test/url_request/url_request_mock_data_job.cc",
2581 "test/url_request/url_request_mock_data_job.h",
jam8e45cd72015-01-20 16:33:442582 "test/url_request/url_request_slow_download_job.cc",
2583 "test/url_request/url_request_slow_download_job.h",
rhalavatia9b551d2017-02-09 12:03:002584 "traffic_annotation/network_traffic_annotation_test_helper.h",
[email protected]8603c5de2014-04-16 20:34:312585 "url_request/test_url_fetcher_factory.cc",
2586 "url_request/test_url_fetcher_factory.h",
2587 "url_request/url_request_test_util.cc",
2588 "url_request/url_request_test_util.h",
2589 ]
sherouk3eee4a82015-09-01 10:42:332590 if (!is_ios) {
2591 sources += [
2592 "test/spawned_test_server/base_test_server.cc",
2593 "test/spawned_test_server/base_test_server.h",
2594 "test/spawned_test_server/local_test_server.cc",
2595 "test/spawned_test_server/local_test_server.h",
2596 "test/spawned_test_server/local_test_server_posix.cc",
2597 "test/spawned_test_server/local_test_server_win.cc",
2598 "test/spawned_test_server/spawned_test_server.h",
2599 ]
2600 }
[email protected]8603c5de2014-04-16 20:34:312601
brettwbc8b2a22015-07-28 18:24:422602 configs += [
2603 "//build/config:precompiled_headers",
2604
2605 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2606 "//build/config/compiler:no_size_t_to_int_warning",
2607 ]
[email protected]8603c5de2014-04-16 20:34:312608
Brett Wilsone53895272014-09-23 23:41:462609 public_deps = [
rhalavatia9b551d2017-02-09 12:03:002610 ":traffic_annotation",
[email protected]8603c5de2014-04-16 20:34:312611 "//base",
2612 "//base/test:test_support",
[email protected]22fe91d2014-08-12 17:07:122613 "//crypto",
[email protected]59ff2d42014-04-22 22:25:232614 "//net",
[email protected]8603c5de2014-04-16 20:34:312615 "//net/tools/tld_cleanup",
2616 "//testing/gmock",
2617 "//testing/gtest",
2618 "//url",
2619 ]
2620
Matt Menke1dd3f2f2017-08-09 17:10:062621 deps = [
2622 "//third_party/zlib",
2623 ]
sdefresne04f91142016-04-21 08:41:592624
jbudorick944eb922016-06-20 15:38:302625 data = [
2626 "data/",
2627 ]
2628
rsesek7d4ab4bc2016-07-22 17:35:132629 if (is_ios) {
2630 deps += [ ":test_support_bundle_data" ]
2631 } else {
jamb533b7e2015-03-04 17:12:052632 public_deps += [ "//third_party/protobuf:py_proto" ]
2633 }
2634
svaldez2135be52016-04-20 16:34:532635 if (use_nss_certs) {
scottmg34fb7e52014-12-03 23:27:242636 public_deps += [ "//crypto:platform" ]
[email protected]8603c5de2014-04-16 20:34:312637 }
2638
Sergey Ulanov2a0b0192017-08-31 23:09:402639 if (use_remote_test_server) {
sherouk3eee4a82015-09-01 10:42:332640 sources += [
[email protected]8603c5de2014-04-16 20:34:312641 "test/spawned_test_server/remote_test_server.cc",
2642 "test/spawned_test_server/remote_test_server.h",
Sergey Ulanov937d6eb2017-08-28 22:35:382643 "test/spawned_test_server/remote_test_server_config.cc",
2644 "test/spawned_test_server/remote_test_server_config.h",
Sergey Ulanov2a0b0192017-08-31 23:09:402645 "test/spawned_test_server/remote_test_server_proxy.cc",
2646 "test/spawned_test_server/remote_test_server_proxy.h",
Sergey Ulanov932f5ca2017-09-05 21:36:022647 "test/spawned_test_server/remote_test_server_spawner_request.cc",
2648 "test/spawned_test_server/remote_test_server_spawner_request.h",
[email protected]8603c5de2014-04-16 20:34:312649 ]
2650 }
2651
2652 if (use_v8_in_net) {
Brett Wilsone53895272014-09-23 23:41:462653 public_deps += [ ":net_with_v8" ]
[email protected]8603c5de2014-04-16 20:34:312654 }
2655
2656 if (!enable_mdns) {
2657 sources -= [
2658 "dns/mock_mdns_socket_factory.cc",
2659 "dns/mock_mdns_socket_factory.h",
2660 ]
2661 }
2662
davidben15d69d482014-09-29 18:24:082663 if (!use_nss_certs) {
scottmg34fb7e52014-12-03 23:27:242664 sources -= [ "test/cert_test_util_nss.cc" ]
[email protected]83e1ae32014-07-18 10:57:072665 }
xunjielia6888202015-04-14 21:34:252666
2667 if (!disable_file_support) {
2668 sources += [
2669 "test/url_request/url_request_mock_http_job.cc",
2670 "test/url_request/url_request_mock_http_job.h",
2671 "url_request/test_url_request_interceptor.cc",
2672 "url_request/test_url_request_interceptor.h",
2673 ]
2674 }
[email protected]8603c5de2014-04-16 20:34:312675}
2676
2677if (use_v8_in_net) {
2678 component("net_with_v8") {
2679 sources = [
2680 "proxy/proxy_resolver_v8.cc",
2681 "proxy/proxy_resolver_v8.h",
2682 "proxy/proxy_resolver_v8_tracing.cc",
2683 "proxy/proxy_resolver_v8_tracing.h",
sammcf2d1ea02015-06-29 02:58:472684 "proxy/proxy_resolver_v8_tracing_wrapper.cc",
2685 "proxy/proxy_resolver_v8_tracing_wrapper.h",
[email protected]8603c5de2014-04-16 20:34:312686 "proxy/proxy_service_v8.cc",
2687 "proxy/proxy_service_v8.h",
2688 ]
2689
2690 defines = [ "NET_IMPLEMENTATION" ]
dprankea22b0732015-10-21 21:15:112691
[email protected]8603c5de2014-04-16 20:34:312692 configs += [
brettwd1c719a2015-02-19 23:17:042693 "//build/config/compiler:no_size_t_to_int_warning",
[email protected]8603c5de2014-04-16 20:34:312694 "//build/config/compiler:wexit_time_destructors",
dprankea22b0732015-10-21 21:15:112695 "//v8:external_startup_data",
[email protected]8603c5de2014-04-16 20:34:312696 ]
2697
Brett Wilsone53895272014-09-23 23:41:462698 public_deps = [
xunjieli0b7f5b62016-12-06 20:43:482699 ":constants",
[email protected]8603c5de2014-04-16 20:34:312700 ":net",
Brett Wilsone53895272014-09-23 23:41:462701 ]
2702 deps = [
[email protected]8603c5de2014-04-16 20:34:312703 "//base",
2704 "//gin",
2705 "//url",
2706 "//v8",
2707 ]
2708 }
2709}
2710
mmenke93be9ca2017-05-23 16:29:132711if (enable_net_mojo) {
amistry7e6ebfdc82015-02-13 04:19:112712 source_set("net_browser_services") {
2713 sources = [
2714 "dns/mojo_host_resolver_impl.cc",
2715 "dns/mojo_host_resolver_impl.h",
sammc1d5df4d2015-05-05 05:06:172716 "proxy/mojo_proxy_resolver_factory.h",
eromandcacef22015-06-01 19:36:352717 "proxy/proxy_resolver_factory_mojo.cc",
2718 "proxy/proxy_resolver_factory_mojo.h",
amistry6e1ed1b2015-03-12 05:24:012719 "proxy/proxy_service_mojo.cc",
2720 "proxy/proxy_service_mojo.h",
mmenkee2ad9922017-06-08 20:27:362721 "url_request/url_request_context_builder_mojo.cc",
2722 "url_request/url_request_context_builder_mojo.h",
amistry7e6ebfdc82015-02-13 04:19:112723 ]
2724
2725 public_deps = [
scottmg5bf34202017-01-26 05:49:022726 ":net",
brettwbc44c0a92015-02-20 22:30:392727 "//base",
rockot85dce0862015-11-13 01:33:592728 "//mojo/public/cpp/bindings",
amistry7e6ebfdc82015-02-13 04:19:112729 "//net/interfaces",
amistry7e6ebfdc82015-02-13 04:19:112730 ]
2731 }
2732
sammc5403aa1d2015-02-25 04:59:212733 source_set("net_utility_services") {
2734 sources = [
sammc6ac3fe52015-02-25 06:00:282735 "dns/host_resolver_mojo.cc",
2736 "dns/host_resolver_mojo.h",
sammc352f7492015-02-25 09:45:242737 "proxy/mojo_proxy_resolver_factory_impl.cc",
2738 "proxy/mojo_proxy_resolver_factory_impl.h",
sammc5403aa1d2015-02-25 04:59:212739 "proxy/mojo_proxy_resolver_impl.cc",
2740 "proxy/mojo_proxy_resolver_impl.h",
sammca3242c92015-07-10 02:38:512741 "proxy/mojo_proxy_resolver_v8_tracing_bindings.h",
sammc5403aa1d2015-02-25 04:59:212742 ]
2743
rockot9509ec82015-04-14 02:50:562744 deps = [
2745 ":net_with_v8",
tfarina8ac4d17f2015-12-16 02:11:112746 "//base",
rockot9509ec82015-04-14 02:50:562747 ]
2748
sammc5403aa1d2015-02-25 04:59:212749 public_deps = [
sammc5403aa1d2015-02-25 04:59:212750 ":net",
rockot85dce0862015-11-13 01:33:592751 "//mojo/public/cpp/bindings",
sammc5403aa1d2015-02-25 04:59:212752 "//net/interfaces",
sammc5403aa1d2015-02-25 04:59:212753 ]
2754 }
amistry7e6ebfdc82015-02-13 04:19:112755}
2756
[email protected]8603c5de2014-04-16 20:34:312757if (!is_ios && !is_android) {
mattm36d89682016-06-08 22:22:402758 executable("cert_verify_tool") {
2759 testonly = true
2760 sources = [
2761 "tools/cert_verify_tool/cert_verify_tool.cc",
2762 "tools/cert_verify_tool/cert_verify_tool_util.cc",
2763 "tools/cert_verify_tool/cert_verify_tool_util.h",
2764 "tools/cert_verify_tool/verify_using_cert_verify_proc.cc",
2765 "tools/cert_verify_tool/verify_using_cert_verify_proc.h",
mattm3c66edc2016-07-13 22:40:422766 "tools/cert_verify_tool/verify_using_path_builder.cc",
2767 "tools/cert_verify_tool/verify_using_path_builder.h",
mattm36d89682016-06-08 22:22:402768 ]
2769
2770 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2771 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
2772 deps = [
2773 ":net",
2774 ":test_support",
2775 "//base",
thomasanderson84fa8b02017-05-18 23:38:472776 "//build/config:exe_and_shlib_deps",
mattm36d89682016-06-08 22:22:402777 "//build/win:default_exe_manifest",
2778 ]
mattm49957fe2017-03-02 01:45:292779
2780 if (is_mac) {
2781 libs = [ "Security.framework" ]
2782 }
mattm36d89682016-06-08 22:22:402783 }
2784
[email protected]8603c5de2014-04-16 20:34:312785 executable("crash_cache") {
Brett Wilson8f80ad0b2014-09-08 19:50:242786 testonly = true
scottmg34fb7e52014-12-03 23:27:242787 sources = [
2788 "tools/crash_cache/crash_cache.cc",
2789 ]
dpranke43276212015-02-20 02:55:192790
brettwd1c719a2015-02-19 23:17:042791 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2792 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312793 deps = [
2794 ":net",
[email protected]b2b2bf52014-05-28 20:26:572795 ":test_support",
[email protected]8603c5de2014-04-16 20:34:312796 "//base",
thomasanderson84fa8b02017-05-18 23:38:472797 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072798 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312799 ]
2800 }
2801
2802 executable("crl_set_dump") {
Brett Wilson8f80ad0b2014-09-08 19:50:242803 testonly = true
scottmg34fb7e52014-12-03 23:27:242804 sources = [
2805 "tools/crl_set_dump/crl_set_dump.cc",
2806 ]
dpranke43276212015-02-20 02:55:192807
brettwd1c719a2015-02-19 23:17:042808 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2809 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312810 deps = [
2811 ":net",
2812 "//base",
thomasanderson84fa8b02017-05-18 23:38:472813 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072814 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312815 ]
2816 }
2817
2818 executable("dns_fuzz_stub") {
Brett Wilson8f80ad0b2014-09-08 19:50:242819 testonly = true
scottmg34fb7e52014-12-03 23:27:242820 sources = [
2821 "tools/dns_fuzz_stub/dns_fuzz_stub.cc",
2822 ]
dpranke43276212015-02-20 02:55:192823
brettwd1c719a2015-02-19 23:17:042824 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2825 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312826 deps = [
2827 ":net",
2828 "//base",
thomasanderson84fa8b02017-05-18 23:38:472829 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072830 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312831 ]
2832 }
2833
2834 executable("gdig") {
Brett Wilson8f80ad0b2014-09-08 19:50:242835 testonly = true
[email protected]8603c5de2014-04-16 20:34:312836 sources = [
2837 "tools/gdig/file_net_log.cc",
thakisb8590c92017-03-23 18:14:532838 "tools/gdig/file_net_log.h",
[email protected]8603c5de2014-04-16 20:34:312839 "tools/gdig/gdig.cc",
2840 ]
2841 deps = [
2842 ":net",
2843 "//base",
thomasanderson84fa8b02017-05-18 23:38:472844 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072845 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312846 ]
2847 }
2848
2849 executable("get_server_time") {
Brett Wilson8f80ad0b2014-09-08 19:50:242850 testonly = true
scottmg34fb7e52014-12-03 23:27:242851 sources = [
2852 "tools/get_server_time/get_server_time.cc",
2853 ]
dpranke43276212015-02-20 02:55:192854
brettwd1c719a2015-02-19 23:17:042855 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2856 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312857 deps = [
2858 ":net",
2859 "//base",
2860 "//base:i18n",
thomasanderson84fa8b02017-05-18 23:38:472861 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072862 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312863 "//url",
2864 ]
2865 }
2866
rockot9c67e5f2015-03-12 20:01:212867 executable("hpack_example_generator") {
2868 testonly = true
2869 sources = [
bnc8f8f7d302017-04-24 18:08:062870 "spdy/core/fuzzing/hpack_example_generator.cc",
rockot9c67e5f2015-03-12 20:01:212871 ]
2872
2873 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2874 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
2875 deps = [
rockot9c67e5f2015-03-12 20:01:212876 ":net",
brettwba7a73d2015-08-31 22:17:392877 "//base",
thomasanderson84fa8b02017-05-18 23:38:472878 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072879 "//build/win:default_exe_manifest",
rockot9c67e5f2015-03-12 20:01:212880 ]
2881 }
2882
[email protected]8603c5de2014-04-16 20:34:312883 if (use_v8_in_net) {
2884 executable("net_watcher") {
Brett Wilson8f80ad0b2014-09-08 19:50:242885 testonly = true
scottmg34fb7e52014-12-03 23:27:242886 sources = [
2887 "tools/net_watcher/net_watcher.cc",
2888 ]
[email protected]8603c5de2014-04-16 20:34:312889 deps = [
2890 ":net",
2891 ":net_with_v8",
2892 "//base",
thomasanderson84fa8b02017-05-18 23:38:472893 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072894 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312895 ]
[email protected]8603c5de2014-04-16 20:34:312896 }
2897 }
2898
2899 executable("run_testserver") {
Brett Wilson8f80ad0b2014-09-08 19:50:242900 testonly = true
scottmg34fb7e52014-12-03 23:27:242901 sources = [
2902 "tools/testserver/run_testserver.cc",
2903 ]
[email protected]8603c5de2014-04-16 20:34:312904 deps = [
[email protected]b2b2bf52014-05-28 20:26:572905 ":test_support",
[email protected]8603c5de2014-04-16 20:34:312906 "//base",
2907 "//base/test:test_support",
thomasanderson84fa8b02017-05-18 23:38:472908 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072909 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312910 "//testing/gtest",
2911 ]
2912 }
2913
2914 executable("stress_cache") {
Brett Wilson8f80ad0b2014-09-08 19:50:242915 testonly = true
scottmg34fb7e52014-12-03 23:27:242916 sources = [
rvargase23fcf652015-03-04 19:59:222917 "tools/stress_cache/stress_cache.cc",
scottmg34fb7e52014-12-03 23:27:242918 ]
dpranke43276212015-02-20 02:55:192919
brettwd1c719a2015-02-19 23:17:042920 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2921 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312922 deps = [
2923 ":net",
[email protected]b2b2bf52014-05-28 20:26:572924 ":test_support",
[email protected]8603c5de2014-04-16 20:34:312925 "//base",
thomasanderson84fa8b02017-05-18 23:38:472926 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072927 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312928 ]
2929 }
2930
2931 executable("tld_cleanup") {
scottmg34fb7e52014-12-03 23:27:242932 sources = [
2933 "tools/tld_cleanup/tld_cleanup.cc",
2934 ]
dpranke43276212015-02-20 02:55:192935
brettwd1c719a2015-02-19 23:17:042936 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2937 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312938 deps = [
2939 "//base",
2940 "//base:i18n",
thomasanderson84fa8b02017-05-18 23:38:472941 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072942 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312943 "//net/tools/tld_cleanup",
2944 ]
2945 }
2946}
2947
gabadie0774bee2016-05-12 14:02:582948if (is_linux || is_mac) {
gabadie64af64a2016-03-29 16:36:422949 executable("cachetool") {
2950 testonly = true
2951 sources = [
2952 "tools/cachetool/cachetool.cc",
2953 ]
2954 deps = [
2955 ":net",
2956 ":test_support",
2957 "//base",
thomasandersonb7a52772017-05-26 19:26:422958 "//build/config:exe_and_shlib_deps",
gabadie64af64a2016-03-29 16:36:422959 ]
2960 }
2961
2962 executable("content_decoder_tool") {
2963 testonly = true
2964 sources = [
gabadie64af64a2016-03-29 16:36:422965 "tools/content_decoder_tool/content_decoder_tool.cc",
xunjielibb2d9f202016-11-01 16:37:272966 "tools/content_decoder_tool/content_decoder_tool.h",
2967 "tools/content_decoder_tool/content_decoder_tool_bin.cc",
gabadie64af64a2016-03-29 16:36:422968 ]
2969 deps = [
2970 ":net",
2971 ":test_support",
2972 "//base",
thomasandersonb7a52772017-05-26 19:26:422973 "//build/config:exe_and_shlib_deps",
gabadie64af64a2016-03-29 16:36:422974 "//url",
2975 ]
2976 }
gabadie0774bee2016-05-12 14:02:582977}
gabadie64af64a2016-03-29 16:36:422978
gabadie0774bee2016-05-12 14:02:582979if (is_linux) {
[email protected]8a3f8242014-06-05 18:05:122980 static_library("epoll_server") {
[email protected]8603c5de2014-04-16 20:34:312981 sources = [
2982 "tools/epoll_server/epoll_server.cc",
2983 "tools/epoll_server/epoll_server.h",
2984 ]
2985 deps = [
2986 ":net",
2987 "//base",
2988 ]
2989 }
2990
rch216445c2015-03-27 00:23:282991 source_set("epoll_quic_tools") {
[email protected]8603c5de2014-04-16 20:34:312992 sources = [
rchdfdb0642016-12-03 03:37:202993 "tools/quic/platform/impl/quic_epoll_clock.cc",
2994 "tools/quic/platform/impl/quic_epoll_clock.h",
rch33a6ce82016-12-06 18:41:402995 "tools/quic/platform/impl/quic_socket_utils.cc",
2996 "tools/quic/platform/impl/quic_socket_utils.h",
[email protected]8603c5de2014-04-16 20:34:312997 "tools/quic/quic_client.cc",
2998 "tools/quic/quic_client.h",
Ryan Hamiltonc4402302017-08-10 01:55:462999 "tools/quic/quic_client_epoll_network_helper.cc",
3000 "tools/quic/quic_client_epoll_network_helper.h",
[email protected]8603c5de2014-04-16 20:34:313001 "tools/quic/quic_default_packet_writer.cc",
3002 "tools/quic/quic_default_packet_writer.h",
rch16c74d1d2016-04-22 06:14:073003 "tools/quic/quic_epoll_alarm_factory.cc",
3004 "tools/quic/quic_epoll_alarm_factory.h",
[email protected]8603c5de2014-04-16 20:34:313005 "tools/quic/quic_epoll_connection_helper.cc",
3006 "tools/quic/quic_epoll_connection_helper.h",
rtennetifb3fa6c2015-03-16 23:04:553007 "tools/quic/quic_packet_reader.cc",
3008 "tools/quic/quic_packet_reader.h",
[email protected]8603c5de2014-04-16 20:34:313009 "tools/quic/quic_packet_writer_wrapper.cc",
3010 "tools/quic/quic_packet_writer_wrapper.h",
3011 "tools/quic/quic_server.cc",
3012 "tools/quic/quic_server.h",
[email protected]8603c5de2014-04-16 20:34:313013 ]
3014 deps = [
[email protected]8603c5de2014-04-16 20:34:313015 ":epoll_server",
3016 ":net",
tfarina8ac4d17f2015-12-16 02:11:113017 ":simple_quic_tools",
[email protected]8603c5de2014-04-16 20:34:313018 "//base",
3019 "//base/third_party/dynamic_annotations",
3020 "//crypto",
[email protected]edfd0f42014-07-22 18:20:373021 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:313022 "//url",
3023 ]
3024 }
3025
rch216445c2015-03-27 00:23:283026 executable("epoll_quic_client") {
scottmg34fb7e52014-12-03 23:27:243027 sources = [
3028 "tools/quic/quic_client_bin.cc",
3029 ]
[email protected]8603c5de2014-04-16 20:34:313030 deps = [
rch216445c2015-03-27 00:23:283031 ":epoll_quic_tools",
agrieved7a71c882015-11-20 19:53:283032 ":epoll_server",
rch216445c2015-03-27 00:23:283033 ":net",
3034 ":simple_quic_tools",
3035 "//base",
thomasanderson84fa8b02017-05-18 23:38:473036 "//build/config:exe_and_shlib_deps",
rch216445c2015-03-27 00:23:283037 "//third_party/boringssl",
3038 ]
3039 }
3040
3041 executable("epoll_quic_server") {
3042 sources = [
3043 "tools/quic/quic_server_bin.cc",
3044 ]
3045 deps = [
rch216445c2015-03-27 00:23:283046 ":epoll_quic_tools",
agrieved7a71c882015-11-20 19:53:283047 ":epoll_server",
[email protected]8603c5de2014-04-16 20:34:313048 ":net",
rchda78df5a2015-03-22 05:16:373049 ":simple_quic_tools",
[email protected]8603c5de2014-04-16 20:34:313050 "//base",
thomasanderson84fa8b02017-05-18 23:38:473051 "//build/config:exe_and_shlib_deps",
[email protected]edfd0f42014-07-22 18:20:373052 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:313053 ]
3054 }
[email protected]8603c5de2014-04-16 20:34:313055}
3056
[email protected]ef0eb442014-05-15 09:32:183057if (is_android) {
3058 generate_jni("net_jni_headers") {
3059 sources = [
tbansalc04b7aa2016-07-02 06:54:373060 "android/java/src/org/chromium/net/AndroidCellularSignalStrength.java",
[email protected]ef0eb442014-05-15 09:32:183061 "android/java/src/org/chromium/net/AndroidCertVerifyResult.java",
3062 "android/java/src/org/chromium/net/AndroidKeyStore.java",
3063 "android/java/src/org/chromium/net/AndroidNetworkLibrary.java",
tbansal59a1ddc2015-09-14 17:35:013064 "android/java/src/org/chromium/net/AndroidTrafficStats.java",
[email protected]ef0eb442014-05-15 09:32:183065 "android/java/src/org/chromium/net/GURLUtils.java",
aberentec894a52015-07-09 14:45:533066 "android/java/src/org/chromium/net/HttpNegotiateAuthenticator.java",
xunjieli905496a2015-08-31 15:51:173067 "android/java/src/org/chromium/net/NetStringUtil.java",
[email protected]ef0eb442014-05-15 09:32:183068 "android/java/src/org/chromium/net/NetworkChangeNotifier.java",
3069 "android/java/src/org/chromium/net/ProxyChangeListener.java",
3070 "android/java/src/org/chromium/net/X509Util.java",
3071 ]
3072 jni_package = "net"
3073 }
cjhopmandad5f4272014-09-05 01:00:553074 generate_jni("net_test_jni_headers") {
3075 sources = [
3076 "android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java",
mgershd21d6d142016-12-14 23:06:363077 "android/javatests/src/org/chromium/net/AndroidNetworkLibraryTestUtil.java",
pauljensen6815aef2017-05-05 03:00:063078 "android/javatests/src/org/chromium/net/AndroidProxyConfigServiceTestUtil.java",
aberentec894a52015-07-09 14:45:533079 "test/android/javatests/src/org/chromium/net/test/DummySpnegoAuthenticator.java",
jbudorickccffb982015-12-22 01:21:353080 "test/android/javatests/src/org/chromium/net/test/EmbeddedTestServerImpl.java",
cjhopmandad5f4272014-09-05 01:00:553081 ]
brettwcdccaf02015-07-27 16:27:093082 jni_package = "net/test"
cjhopmandad5f4272014-09-05 01:00:553083 }
[email protected]ef0eb442014-05-15 09:32:183084}
[email protected]8603c5de2014-04-16 20:34:313085
3086if (is_android || is_linux) {
3087 executable("disk_cache_memory_test") {
Brett Wilson8f80ad0b2014-09-08 19:50:243088 testonly = true
scottmg34fb7e52014-12-03 23:27:243089 sources = [
3090 "tools/disk_cache_memory_test/disk_cache_memory_test.cc",
3091 ]
[email protected]8603c5de2014-04-16 20:34:313092 deps = [
3093 ":net",
3094 "//base",
thomasanderson84fa8b02017-05-18 23:38:473095 "//build/config:exe_and_shlib_deps",
[email protected]8603c5de2014-04-16 20:34:313096 ]
3097 }
3098}
[email protected]8a3f8242014-06-05 18:05:123099
xunjielicc6b1d02017-06-05 16:51:403100source_set("quic_test_tools") {
3101 testonly = true
3102 sources = [
3103 "quic/chromium/crypto_test_utils_chromium.cc",
3104 "quic/platform/api/quic_test.h",
fayang221f04f2017-06-12 14:33:583105 "quic/platform/api/quic_test_loopback.cc",
3106 "quic/platform/api/quic_test_loopback.h",
Fan Yang62cae30f2017-09-01 20:50:513107 "quic/platform/api/quic_test_mem_slice_vector.h",
xunjielicc6b1d02017-06-05 16:51:403108 "quic/platform/impl/quic_test_impl.cc",
3109 "quic/platform/impl/quic_test_impl.h",
fayang221f04f2017-06-12 14:33:583110 "quic/platform/impl/quic_test_loopback_impl.cc",
3111 "quic/platform/impl/quic_test_loopback_impl.h",
Fan Yang62cae30f2017-09-01 20:50:513112 "quic/platform/impl/quic_test_mem_slice_vector_impl.cc",
3113 "quic/platform/impl/quic_test_mem_slice_vector_impl.h",
xunjielicc6b1d02017-06-05 16:51:403114 "quic/test_tools/crypto_test_utils.cc",
3115 "quic/test_tools/crypto_test_utils.h",
xunjielicc6b1d02017-06-05 16:51:403116 "quic/test_tools/failing_proof_source.cc",
3117 "quic/test_tools/failing_proof_source.h",
3118 "quic/test_tools/fake_proof_source.cc",
3119 "quic/test_tools/fake_proof_source.h",
3120 "quic/test_tools/mock_clock.cc",
3121 "quic/test_tools/mock_clock.h",
3122 "quic/test_tools/mock_crypto_client_stream.cc",
3123 "quic/test_tools/mock_crypto_client_stream.h",
3124 "quic/test_tools/mock_quic_client_promised_info.cc",
3125 "quic/test_tools/mock_quic_client_promised_info.h",
3126 "quic/test_tools/mock_quic_dispatcher.cc",
3127 "quic/test_tools/mock_quic_dispatcher.h",
3128 "quic/test_tools/mock_quic_spdy_client_stream.cc",
3129 "quic/test_tools/mock_quic_spdy_client_stream.h",
3130 "quic/test_tools/mock_random.cc",
3131 "quic/test_tools/mock_random.h",
3132 "quic/test_tools/quic_buffered_packet_store_peer.cc",
3133 "quic/test_tools/quic_buffered_packet_store_peer.h",
3134 "quic/test_tools/quic_client_promised_info_peer.cc",
3135 "quic/test_tools/quic_client_promised_info_peer.h",
3136 "quic/test_tools/quic_config_peer.cc",
3137 "quic/test_tools/quic_config_peer.h",
3138 "quic/test_tools/quic_connection_peer.cc",
3139 "quic/test_tools/quic_connection_peer.h",
3140 "quic/test_tools/quic_crypto_server_config_peer.cc",
3141 "quic/test_tools/quic_crypto_server_config_peer.h",
3142 "quic/test_tools/quic_flow_controller_peer.cc",
3143 "quic/test_tools/quic_flow_controller_peer.h",
3144 "quic/test_tools/quic_framer_peer.cc",
3145 "quic/test_tools/quic_framer_peer.h",
3146 "quic/test_tools/quic_packet_creator_peer.cc",
3147 "quic/test_tools/quic_packet_creator_peer.h",
3148 "quic/test_tools/quic_packet_generator_peer.cc",
3149 "quic/test_tools/quic_packet_generator_peer.h",
3150 "quic/test_tools/quic_sent_packet_manager_peer.cc",
3151 "quic/test_tools/quic_sent_packet_manager_peer.h",
3152 "quic/test_tools/quic_session_peer.cc",
3153 "quic/test_tools/quic_session_peer.h",
3154 "quic/test_tools/quic_spdy_session_peer.cc",
3155 "quic/test_tools/quic_spdy_session_peer.h",
3156 "quic/test_tools/quic_spdy_stream_peer.cc",
3157 "quic/test_tools/quic_spdy_stream_peer.h",
3158 "quic/test_tools/quic_stream_peer.cc",
3159 "quic/test_tools/quic_stream_peer.h",
Fan Yang97d44ba22017-08-07 17:00:033160 "quic/test_tools/quic_stream_send_buffer_peer.cc",
3161 "quic/test_tools/quic_stream_send_buffer_peer.h",
xunjielicc6b1d02017-06-05 16:51:403162 "quic/test_tools/quic_stream_sequencer_buffer_peer.cc",
3163 "quic/test_tools/quic_stream_sequencer_buffer_peer.h",
3164 "quic/test_tools/quic_stream_sequencer_peer.cc",
3165 "quic/test_tools/quic_stream_sequencer_peer.h",
3166 "quic/test_tools/quic_sustained_bandwidth_recorder_peer.cc",
3167 "quic/test_tools/quic_sustained_bandwidth_recorder_peer.h",
3168 "quic/test_tools/quic_test_utils.cc",
3169 "quic/test_tools/quic_test_utils.h",
3170 "quic/test_tools/quic_time_wait_list_manager_peer.cc",
3171 "quic/test_tools/quic_time_wait_list_manager_peer.h",
3172 "quic/test_tools/rtt_stats_peer.cc",
3173 "quic/test_tools/rtt_stats_peer.h",
fayangdf3cb2b2017-07-05 15:03:383174 "quic/test_tools/simple_data_producer.cc",
3175 "quic/test_tools/simple_data_producer.h",
xunjielicc6b1d02017-06-05 16:51:403176 "quic/test_tools/simple_quic_framer.cc",
3177 "quic/test_tools/simple_quic_framer.h",
3178 "quic/test_tools/simulator/actor.cc",
3179 "quic/test_tools/simulator/actor.h",
3180 "quic/test_tools/simulator/alarm_factory.cc",
3181 "quic/test_tools/simulator/alarm_factory.h",
3182 "quic/test_tools/simulator/link.cc",
3183 "quic/test_tools/simulator/link.h",
3184 "quic/test_tools/simulator/packet_filter.cc",
3185 "quic/test_tools/simulator/packet_filter.h",
3186 "quic/test_tools/simulator/port.cc",
3187 "quic/test_tools/simulator/port.h",
3188 "quic/test_tools/simulator/queue.cc",
3189 "quic/test_tools/simulator/queue.h",
3190 "quic/test_tools/simulator/quic_endpoint.cc",
3191 "quic/test_tools/simulator/quic_endpoint.h",
3192 "quic/test_tools/simulator/simulator.cc",
3193 "quic/test_tools/simulator/simulator.h",
3194 "quic/test_tools/simulator/switch.cc",
3195 "quic/test_tools/simulator/switch.h",
3196 "quic/test_tools/simulator/traffic_policer.cc",
3197 "quic/test_tools/simulator/traffic_policer.h",
3198 "tools/quic/test_tools/mock_quic_session_visitor.cc",
3199 "tools/quic/test_tools/mock_quic_session_visitor.h",
3200 ]
3201 deps = [
3202 ":net",
3203 ":simple_quic_tools",
3204 ":test_support",
3205 "//base",
3206 "//crypto:test_support",
3207 "//testing/gmock",
3208 "//testing/gtest",
3209 "//third_party/boringssl",
3210 "//third_party/protobuf:protobuf_lite",
3211 ]
3212
3213 if (is_linux) {
3214 sources += [
3215 "tools/quic/test_tools/limited_mtu_test_writer.cc",
3216 "tools/quic/test_tools/limited_mtu_test_writer.h",
3217 "tools/quic/test_tools/mock_epoll_server.cc",
3218 "tools/quic/test_tools/mock_epoll_server.h",
3219 "tools/quic/test_tools/mock_quic_time_wait_list_manager.cc",
3220 "tools/quic/test_tools/mock_quic_time_wait_list_manager.h",
3221 "tools/quic/test_tools/packet_dropping_test_writer.cc",
3222 "tools/quic/test_tools/packet_dropping_test_writer.h",
3223 "tools/quic/test_tools/packet_reordering_writer.cc",
3224 "tools/quic/test_tools/packet_reordering_writer.h",
3225 "tools/quic/test_tools/quic_client_peer.cc",
3226 "tools/quic/test_tools/quic_client_peer.h",
3227 "tools/quic/test_tools/quic_dispatcher_peer.cc",
3228 "tools/quic/test_tools/quic_dispatcher_peer.h",
3229 "tools/quic/test_tools/quic_server_peer.cc",
3230 "tools/quic/test_tools/quic_server_peer.h",
3231 "tools/quic/test_tools/quic_test_client.cc",
3232 "tools/quic/test_tools/quic_test_client.h",
3233 "tools/quic/test_tools/quic_test_server.cc",
3234 "tools/quic/test_tools/quic_test_server.h",
3235 "tools/quic/test_tools/server_thread.cc",
3236 "tools/quic/test_tools/server_thread.h",
3237 ]
3238 deps += [
3239 ":epoll_quic_tools",
3240 ":epoll_server",
3241 ]
3242 }
3243}
3244
rch47ad01f2015-03-20 21:17:233245source_set("simple_quic_tools") {
rcha9d12ce12015-03-19 23:06:493246 sources = [
ckrasica7fd1242016-05-14 20:36:013247 "tools/quic/chlo_extractor.cc",
3248 "tools/quic/chlo_extractor.h",
rtennetid67b3a722015-08-18 05:15:313249 "tools/quic/quic_client_base.cc",
3250 "tools/quic/quic_client_base.h",
Ryan Hamiltonc4402302017-08-10 01:55:463251 "tools/quic/quic_client_message_loop_network_helper.cc",
3252 "tools/quic/quic_client_message_loop_network_helper.h",
rchc99f380c2015-03-26 19:50:563253 "tools/quic/quic_dispatcher.cc",
3254 "tools/quic/quic_dispatcher.h",
vasilvv28270e8f2016-12-01 21:38:093255 "tools/quic/quic_http_response_cache.cc",
3256 "tools/quic/quic_http_response_cache.h",
rchc99f380c2015-03-26 19:50:563257 "tools/quic/quic_per_connection_packet_writer.cc",
3258 "tools/quic/quic_per_connection_packet_writer.h",
brettw25ca8922016-03-18 22:59:583259 "tools/quic/quic_process_packet_interface.h",
rcha9d12ce12015-03-19 23:06:493260 "tools/quic/quic_simple_client.cc",
3261 "tools/quic/quic_simple_client.h",
ianswett6c7b7ed2016-09-13 19:35:273262 "tools/quic/quic_simple_crypto_server_stream_helper.cc",
3263 "tools/quic/quic_simple_crypto_server_stream_helper.h",
alyssara473d6f2016-08-04 16:54:043264 "tools/quic/quic_simple_dispatcher.cc",
3265 "tools/quic/quic_simple_dispatcher.h",
rch216445c2015-03-27 00:23:283266 "tools/quic/quic_simple_per_connection_packet_writer.cc",
3267 "tools/quic/quic_simple_per_connection_packet_writer.h",
3268 "tools/quic/quic_simple_server.cc",
3269 "tools/quic/quic_simple_server.h",
3270 "tools/quic/quic_simple_server_packet_writer.cc",
3271 "tools/quic/quic_simple_server_packet_writer.h",
jokulikc971baf92016-01-06 00:36:393272 "tools/quic/quic_simple_server_session.cc",
3273 "tools/quic/quic_simple_server_session.h",
mpwb5c8da92016-06-05 20:07:313274 "tools/quic/quic_simple_server_session_helper.cc",
3275 "tools/quic/quic_simple_server_session_helper.h",
danzhb7551342015-12-18 02:06:403276 "tools/quic/quic_simple_server_stream.cc",
3277 "tools/quic/quic_simple_server_stream.h",
Ryan Hamiltonc4402302017-08-10 01:55:463278 "tools/quic/quic_spdy_client_base.cc",
3279 "tools/quic/quic_spdy_client_base.h",
3280 "tools/quic/quic_spdy_client_session.cc",
3281 "tools/quic/quic_spdy_client_session.h",
rched113b22015-03-26 04:54:053282 "tools/quic/quic_spdy_client_stream.cc",
3283 "tools/quic/quic_spdy_client_stream.h",
rchaa4ec092016-12-02 00:34:193284 "tools/quic/quic_spdy_server_stream_base.cc",
3285 "tools/quic/quic_spdy_server_stream_base.h",
rch0e945472015-03-26 15:19:213286 "tools/quic/quic_time_wait_list_manager.cc",
3287 "tools/quic/quic_time_wait_list_manager.h",
jrid04ea362016-06-23 03:07:373288 "tools/quic/stateless_rejector.cc",
3289 "tools/quic/stateless_rejector.h",
rchda78df5a2015-03-22 05:16:373290 "tools/quic/synchronous_host_resolver.cc",
3291 "tools/quic/synchronous_host_resolver.h",
rcha9d12ce12015-03-19 23:06:493292 ]
3293 deps = [
3294 ":net",
3295 "//base",
rch47ad01f2015-03-20 21:17:233296 "//base/third_party/dynamic_annotations",
3297 "//url",
3298 ]
3299}
3300
rhalavatia9b551d2017-02-09 12:03:003301source_set("traffic_annotation") {
3302 sources = [
3303 "traffic_annotation/network_traffic_annotation.h",
3304 ]
rhalavati99c6fcef2017-05-25 07:53:013305 deps = [
3306 "//base",
3307 ]
rhalavatia9b551d2017-02-09 12:03:003308}
3309
sherouk51b4b098b2015-08-10 09:00:433310if (!is_ios) {
3311 executable("quic_client") {
3312 sources = [
3313 "tools/quic/quic_simple_client_bin.cc",
3314 ]
3315 deps = [
3316 ":net",
3317 ":simple_quic_tools",
3318 "//base",
thomasanderson84fa8b02017-05-18 23:38:473319 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:073320 "//build/win:default_exe_manifest",
sherouk51b4b098b2015-08-10 09:00:433321 "//url",
3322 ]
3323 }
3324 executable("quic_server") {
3325 sources = [
3326 "tools/quic/quic_simple_server_bin.cc",
3327 ]
3328 deps = [
3329 ":net",
3330 ":simple_quic_tools",
3331 "//base",
thomasanderson84fa8b02017-05-18 23:38:473332 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:073333 "//build/win:default_exe_manifest",
sherouk51b4b098b2015-08-10 09:00:433334 "//third_party/boringssl",
3335 "//third_party/protobuf:protobuf_lite",
3336 ]
3337 }
rchf80f62d12016-05-11 00:47:313338 executable("quic_packet_printer") {
3339 sources = [
3340 "tools/quic/quic_packet_printer_bin.cc",
3341 ]
3342 deps = [
3343 ":net",
3344 ":simple_quic_tools",
3345 "//base",
thomasanderson84fa8b02017-05-18 23:38:473346 "//build/config:exe_and_shlib_deps",
rchf80f62d12016-05-11 00:47:313347 "//build/win:default_exe_manifest",
3348 "//third_party/boringssl",
3349 "//third_party/protobuf:protobuf_lite",
3350 ]
3351 }
mpwbbea85d2016-08-27 14:39:213352 executable("quic_reject_reason_decoder") {
3353 sources = [
3354 "tools/quic/quic_reject_reason_decoder_bin.cc",
3355 ]
3356 deps = [
3357 ":net",
3358 ":simple_quic_tools",
3359 "//base",
thomasanderson84fa8b02017-05-18 23:38:473360 "//build/config:exe_and_shlib_deps",
mpwbbea85d2016-08-27 14:39:213361 "//build/win:default_exe_manifest",
3362 "//third_party/boringssl",
3363 "//third_party/protobuf:protobuf_lite",
3364 ]
3365 }
danzh1401f0a2016-05-19 13:41:103366 executable("crypto_message_printer") {
3367 sources = [
3368 "tools/quic/crypto_message_printer_bin.cc",
3369 ]
3370 deps = [
3371 ":net",
3372 "//base",
thomasanderson84fa8b02017-05-18 23:38:473373 "//build/config:exe_and_shlib_deps",
danzh1401f0a2016-05-19 13:41:103374 "//build/win:default_exe_manifest",
3375 ]
3376 }
rch216445c2015-03-27 00:23:283377}
3378
eromand5207a92017-05-05 17:49:363379# This section can be updated from globbing rules using:
3380# python ./tools/update_ios_bundle_data.py
sdefresneb0a31642016-03-18 11:04:453381bundle_data("net_unittests_bundle_data") {
3382 testonly = true
ckrasic73f7240b2017-01-24 00:06:453383 sources = [
3384 "data/cert_issuer_source_aia_unittest/i.pem",
3385 "data/cert_issuer_source_aia_unittest/i2.pem",
3386 "data/cert_issuer_source_aia_unittest/i3.pem",
eromand5207a92017-05-05 17:49:363387 "data/cert_issuer_source_aia_unittest/root.pem",
ckrasic73f7240b2017-01-24 00:06:453388 "data/cert_issuer_source_aia_unittest/target_file_aia.pem",
3389 "data/cert_issuer_source_aia_unittest/target_file_and_http_aia.pem",
3390 "data/cert_issuer_source_aia_unittest/target_invalid_and_http_aia.pem",
3391 "data/cert_issuer_source_aia_unittest/target_invalid_url_aia.pem",
3392 "data/cert_issuer_source_aia_unittest/target_no_aia.pem",
3393 "data/cert_issuer_source_aia_unittest/target_one_aia.pem",
3394 "data/cert_issuer_source_aia_unittest/target_six_aia.pem",
3395 "data/cert_issuer_source_aia_unittest/target_three_aia.pem",
3396 "data/cert_issuer_source_aia_unittest/target_two_aia.pem",
3397 "data/cert_issuer_source_static_unittest/c1.pem",
3398 "data/cert_issuer_source_static_unittest/c2.pem",
3399 "data/cert_issuer_source_static_unittest/d.pem",
3400 "data/cert_issuer_source_static_unittest/e1.pem",
3401 "data/cert_issuer_source_static_unittest/e2.pem",
3402 "data/cert_issuer_source_static_unittest/i1_1.pem",
3403 "data/cert_issuer_source_static_unittest/i1_2.pem",
3404 "data/cert_issuer_source_static_unittest/i2.pem",
3405 "data/cert_issuer_source_static_unittest/i3_1.pem",
3406 "data/cert_issuer_source_static_unittest/i3_2.pem",
3407 "data/cert_issuer_source_static_unittest/root.pem",
3408 "data/certificate_policies_unittest/anypolicy.pem",
3409 "data/certificate_policies_unittest/anypolicy_with_qualifier.pem",
3410 "data/certificate_policies_unittest/invalid-anypolicy_with_custom_qualifier.pem",
3411 "data/certificate_policies_unittest/invalid-empty.pem",
3412 "data/certificate_policies_unittest/invalid-policy_1_2_3_dupe.pem",
3413 "data/certificate_policies_unittest/invalid-policy_1_2_3_policyinformation_unconsumed_data.pem",
3414 "data/certificate_policies_unittest/invalid-policy_1_2_3_policyqualifierinfo_unconsumed_data.pem",
3415 "data/certificate_policies_unittest/invalid-policy_1_2_3_with_empty_qualifiers_sequence.pem",
3416 "data/certificate_policies_unittest/invalid-policy_identifier_not_oid.pem",
3417 "data/certificate_policies_unittest/policy_1_2_3.pem",
3418 "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4.pem",
3419 "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4_with_qualifiers.pem",
3420 "data/certificate_policies_unittest/policy_1_2_3_with_custom_qualifier.pem",
3421 "data/certificate_policies_unittest/policy_1_2_3_with_qualifier.pem",
jam29f1aed42017-06-06 21:37:433422 "data/embedded_test_server/mock-headers-without-crlf.html",
3423 "data/embedded_test_server/mock-headers-without-crlf.html.mock-http-headers",
ckrasic73f7240b2017-01-24 00:06:453424 "data/filter_unittests/google.br",
3425 "data/filter_unittests/google.txt",
3426 "data/name_constraints_unittest/directoryname-excludeall.pem",
3427 "data/name_constraints_unittest/directoryname-excluded.pem",
3428 "data/name_constraints_unittest/directoryname.pem",
3429 "data/name_constraints_unittest/directoryname_and_dnsname.pem",
3430 "data/name_constraints_unittest/directoryname_and_dnsname_and_ipaddress.pem",
3431 "data/name_constraints_unittest/dnsname-exclude_dot.pem",
3432 "data/name_constraints_unittest/dnsname-excludeall.pem",
3433 "data/name_constraints_unittest/dnsname-excluded.pem",
3434 "data/name_constraints_unittest/dnsname-excluded_with_leading_dot.pem",
3435 "data/name_constraints_unittest/dnsname-permitted_two_dot.pem",
3436 "data/name_constraints_unittest/dnsname-permitted_with_leading_dot.pem",
3437 "data/name_constraints_unittest/dnsname-with_max.pem",
3438 "data/name_constraints_unittest/dnsname-with_min_0.pem",
3439 "data/name_constraints_unittest/dnsname-with_min_0_and_max.pem",
3440 "data/name_constraints_unittest/dnsname-with_min_1.pem",
3441 "data/name_constraints_unittest/dnsname-with_min_1_and_max.pem",
3442 "data/name_constraints_unittest/dnsname.pem",
3443 "data/name_constraints_unittest/dnsname2.pem",
3444 "data/name_constraints_unittest/edipartyname-excluded.pem",
3445 "data/name_constraints_unittest/edipartyname-permitted.pem",
3446 "data/name_constraints_unittest/invalid-empty_excluded_subtree.pem",
3447 "data/name_constraints_unittest/invalid-empty_permitted_subtree.pem",
3448 "data/name_constraints_unittest/invalid-no_subtrees.pem",
3449 "data/name_constraints_unittest/ipaddress-excludeall.pem",
3450 "data/name_constraints_unittest/ipaddress-excluded.pem",
3451 "data/name_constraints_unittest/ipaddress-invalid_addr.pem",
3452 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_1.pem",
3453 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_2.pem",
3454 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_3.pem",
3455 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_4.pem",
3456 "data/name_constraints_unittest/ipaddress-permit_all.pem",
3457 "data/name_constraints_unittest/ipaddress-permit_prefix1.pem",
3458 "data/name_constraints_unittest/ipaddress-permit_prefix31.pem",
3459 "data/name_constraints_unittest/ipaddress-permit_singlehost.pem",
3460 "data/name_constraints_unittest/ipaddress.pem",
3461 "data/name_constraints_unittest/name-ca.pem",
3462 "data/name_constraints_unittest/name-de.pem",
3463 "data/name_constraints_unittest/name-empty.pem",
3464 "data/name_constraints_unittest/name-jp-tokyo.pem",
3465 "data/name_constraints_unittest/name-jp.pem",
3466 "data/name_constraints_unittest/name-us-arizona-1.1.1.1.pem",
3467 "data/name_constraints_unittest/name-us-arizona-192.168.1.1.pem",
3468 "data/name_constraints_unittest/name-us-arizona-email.pem",
3469 "data/name_constraints_unittest/name-us-arizona-foo.com.pem",
3470 "data/name_constraints_unittest/name-us-arizona-ipv6.pem",
3471 "data/name_constraints_unittest/name-us-arizona-permitted.example.com.pem",
3472 "data/name_constraints_unittest/name-us-arizona.pem",
3473 "data/name_constraints_unittest/name-us-california-192.168.1.1.pem",
3474 "data/name_constraints_unittest/name-us-california-mountain_view.pem",
3475 "data/name_constraints_unittest/name-us-california-permitted.example.com.pem",
3476 "data/name_constraints_unittest/name-us-california.pem",
3477 "data/name_constraints_unittest/name-us.pem",
3478 "data/name_constraints_unittest/othername-excluded.pem",
3479 "data/name_constraints_unittest/othername-permitted.pem",
3480 "data/name_constraints_unittest/registeredid-excluded.pem",
3481 "data/name_constraints_unittest/registeredid-permitted.pem",
3482 "data/name_constraints_unittest/rfc822name-excluded.pem",
3483 "data/name_constraints_unittest/rfc822name-permitted.pem",
3484 "data/name_constraints_unittest/san-edipartyname.pem",
3485 "data/name_constraints_unittest/san-excluded-directoryname.pem",
3486 "data/name_constraints_unittest/san-excluded-dnsname.pem",
3487 "data/name_constraints_unittest/san-excluded-ipaddress.pem",
3488 "data/name_constraints_unittest/san-invalid-empty.pem",
3489 "data/name_constraints_unittest/san-invalid-ipaddress.pem",
3490 "data/name_constraints_unittest/san-othername.pem",
3491 "data/name_constraints_unittest/san-permitted.pem",
3492 "data/name_constraints_unittest/san-registeredid.pem",
3493 "data/name_constraints_unittest/san-rfc822name.pem",
3494 "data/name_constraints_unittest/san-uri.pem",
3495 "data/name_constraints_unittest/san-x400address.pem",
3496 "data/name_constraints_unittest/uri-excluded.pem",
3497 "data/name_constraints_unittest/uri-permitted.pem",
3498 "data/name_constraints_unittest/x400address-excluded.pem",
3499 "data/name_constraints_unittest/x400address-permitted.pem",
Eric Romana2f6f55d2017-09-07 23:34:573500 "data/ocsp_unittest/bad_ocsp_type.pem",
3501 "data/ocsp_unittest/bad_signature.pem",
3502 "data/ocsp_unittest/bad_status.pem",
3503 "data/ocsp_unittest/good_response.pem",
3504 "data/ocsp_unittest/good_response_next_update.pem",
3505 "data/ocsp_unittest/has_extension.pem",
3506 "data/ocsp_unittest/has_single_extension.pem",
3507 "data/ocsp_unittest/has_version.pem",
3508 "data/ocsp_unittest/malformed_status.pem",
3509 "data/ocsp_unittest/missing_response.pem",
3510 "data/ocsp_unittest/multiple_response.pem",
3511 "data/ocsp_unittest/no_response.pem",
3512 "data/ocsp_unittest/ocsp_extra_certs.pem",
3513 "data/ocsp_unittest/ocsp_sign_bad_indirect.pem",
3514 "data/ocsp_unittest/ocsp_sign_direct.pem",
3515 "data/ocsp_unittest/ocsp_sign_indirect.pem",
3516 "data/ocsp_unittest/ocsp_sign_indirect_missing.pem",
3517 "data/ocsp_unittest/other_response.pem",
3518 "data/ocsp_unittest/responder_id.pem",
3519 "data/ocsp_unittest/responder_name.pem",
3520 "data/ocsp_unittest/revoke_response.pem",
3521 "data/ocsp_unittest/revoke_response_reason.pem",
3522 "data/ocsp_unittest/unknown_response.pem",
Eric Roman7b45a272017-08-02 03:21:443523 "data/parse_certificate_unittest/bad_key_usage.pem",
3524 "data/parse_certificate_unittest/bad_policy_qualifiers.pem",
3525 "data/parse_certificate_unittest/bad_signature_algorithm_oid.pem",
3526 "data/parse_certificate_unittest/bad_validity.pem",
ckrasic73f7240b2017-01-24 00:06:453527 "data/parse_certificate_unittest/basic_constraints_ca_false.pem",
3528 "data/parse_certificate_unittest/basic_constraints_ca_no_path.pem",
3529 "data/parse_certificate_unittest/basic_constraints_ca_path_9.pem",
3530 "data/parse_certificate_unittest/basic_constraints_negative_path.pem",
3531 "data/parse_certificate_unittest/basic_constraints_not_ca.pem",
3532 "data/parse_certificate_unittest/basic_constraints_path_too_large.pem",
3533 "data/parse_certificate_unittest/basic_constraints_pathlen_255.pem",
3534 "data/parse_certificate_unittest/basic_constraints_pathlen_256.pem",
3535 "data/parse_certificate_unittest/basic_constraints_pathlen_not_ca.pem",
3536 "data/parse_certificate_unittest/basic_constraints_unconsumed_data.pem",
3537 "data/parse_certificate_unittest/cert_algorithm_not_sequence.pem",
3538 "data/parse_certificate_unittest/cert_data_after_signature.pem",
3539 "data/parse_certificate_unittest/cert_empty_sequence.pem",
3540 "data/parse_certificate_unittest/cert_missing_signature.pem",
3541 "data/parse_certificate_unittest/cert_not_sequence.pem",
3542 "data/parse_certificate_unittest/cert_signature_not_bit_string.pem",
3543 "data/parse_certificate_unittest/cert_skeleton.pem",
3544 "data/parse_certificate_unittest/cert_version3.pem",
Eric Romandb460e92017-08-01 17:17:343545 "data/parse_certificate_unittest/crldp_1uri_noissuer.pem",
3546 "data/parse_certificate_unittest/crldp_3uri_noissuer.pem",
3547 "data/parse_certificate_unittest/crldp_full_name_as_dirname.pem",
3548 "data/parse_certificate_unittest/crldp_issuer_as_dirname.pem",
ckrasic73f7240b2017-01-24 00:06:453549 "data/parse_certificate_unittest/extended_key_usage.pem",
3550 "data/parse_certificate_unittest/extension_critical.pem",
3551 "data/parse_certificate_unittest/extension_critical_0.pem",
3552 "data/parse_certificate_unittest/extension_critical_3.pem",
3553 "data/parse_certificate_unittest/extension_not_critical.pem",
3554 "data/parse_certificate_unittest/extensions_data_after_sequence.pem",
3555 "data/parse_certificate_unittest/extensions_duplicate_key_usage.pem",
3556 "data/parse_certificate_unittest/extensions_empty_sequence.pem",
3557 "data/parse_certificate_unittest/extensions_not_sequence.pem",
3558 "data/parse_certificate_unittest/extensions_real.pem",
Eric Roman7b45a272017-08-02 03:21:443559 "data/parse_certificate_unittest/failed_signature_algorithm.pem",
eromand312c062017-05-19 03:06:293560 "data/parse_certificate_unittest/inhibit_any_policy.pem",
Eric Roman7b45a272017-08-02 03:21:443561 "data/parse_certificate_unittest/issuer_bad_printable_string.pem",
ckrasic73f7240b2017-01-24 00:06:453562 "data/parse_certificate_unittest/key_usage.pem",
Eric Roman7b45a272017-08-02 03:21:443563 "data/parse_certificate_unittest/name_constraints_bad_ip.pem",
ckrasic73f7240b2017-01-24 00:06:453564 "data/parse_certificate_unittest/policies.pem",
eroman25ead1bcf82017-05-13 06:44:583565 "data/parse_certificate_unittest/policy_constraints_empty.pem",
3566 "data/parse_certificate_unittest/policy_constraints_inhibit.pem",
3567 "data/parse_certificate_unittest/policy_constraints_inhibit_require.pem",
3568 "data/parse_certificate_unittest/policy_constraints_require.pem",
Eric Roman7b45a272017-08-02 03:21:443569 "data/parse_certificate_unittest/policy_qualifiers_empty_sequence.pem",
mattm312644de2017-05-16 08:13:183570 "data/parse_certificate_unittest/serial_37_bytes.pem",
3571 "data/parse_certificate_unittest/serial_negative.pem",
Eric Roman5d1934622017-08-03 03:57:093572 "data/parse_certificate_unittest/serial_not_minimal.pem",
3573 "data/parse_certificate_unittest/serial_not_number.pem",
3574 "data/parse_certificate_unittest/serial_zero.pem",
mattm312644de2017-05-16 08:13:183575 "data/parse_certificate_unittest/serial_zero_padded.pem",
3576 "data/parse_certificate_unittest/serial_zero_padded_21_bytes.pem",
mattm2fe429a2017-06-20 01:53:443577 "data/parse_certificate_unittest/signature_algorithm_null.pem",
ckrasic73f7240b2017-01-24 00:06:453578 "data/parse_certificate_unittest/subject_alt_name.pem",
Eric Roman7b45a272017-08-02 03:21:443579 "data/parse_certificate_unittest/subject_blank_subjectaltname_not_critical.pem",
3580 "data/parse_certificate_unittest/subject_not_ascii.pem",
3581 "data/parse_certificate_unittest/subject_not_printable_string.pem",
mattm788812f2017-05-05 23:49:093582 "data/parse_certificate_unittest/subject_t61string.pem",
3583 "data/parse_certificate_unittest/subject_t61string_1-32.pem",
3584 "data/parse_certificate_unittest/subject_t61string_126-160.pem",
3585 "data/parse_certificate_unittest/subject_t61string_actual.pem",
Eric Roman7b45a272017-08-02 03:21:443586 "data/parse_certificate_unittest/subjectaltname_bad_ip.pem",
3587 "data/parse_certificate_unittest/subjectaltname_dns_not_ascii.pem",
3588 "data/parse_certificate_unittest/subjectaltname_general_names_empty_sequence.pem",
3589 "data/parse_certificate_unittest/subjectaltname_trailing_data.pem",
ckrasic73f7240b2017-01-24 00:06:453590 "data/parse_certificate_unittest/tbs_explicit_v1.pem",
ckrasic73f7240b2017-01-24 00:06:453591 "data/parse_certificate_unittest/tbs_v1.pem",
3592 "data/parse_certificate_unittest/tbs_v1_extensions.pem",
3593 "data/parse_certificate_unittest/tbs_v2_extensions.pem",
3594 "data/parse_certificate_unittest/tbs_v2_issuer_and_subject_unique_id.pem",
3595 "data/parse_certificate_unittest/tbs_v2_issuer_unique_id.pem",
3596 "data/parse_certificate_unittest/tbs_v2_no_optionals.pem",
3597 "data/parse_certificate_unittest/tbs_v3_all_optionals.pem",
3598 "data/parse_certificate_unittest/tbs_v3_data_after_extensions.pem",
3599 "data/parse_certificate_unittest/tbs_v3_extensions.pem",
3600 "data/parse_certificate_unittest/tbs_v3_extensions_not_sequence.pem",
3601 "data/parse_certificate_unittest/tbs_v3_no_optionals.pem",
3602 "data/parse_certificate_unittest/tbs_v3_real.pem",
3603 "data/parse_certificate_unittest/tbs_v4.pem",
3604 "data/parse_certificate_unittest/tbs_validity_both_generalized_time.pem",
3605 "data/parse_certificate_unittest/tbs_validity_both_utc_time.pem",
3606 "data/parse_certificate_unittest/tbs_validity_generalized_time_and_utc_time.pem",
3607 "data/parse_certificate_unittest/tbs_validity_relaxed.pem",
3608 "data/parse_certificate_unittest/tbs_validity_utc_time_and_generalized_time.pem",
Eric Roman7b45a272017-08-02 03:21:443609 "data/parse_certificate_unittest/v1_explicit_version.pem",
ckrasic73f7240b2017-01-24 00:06:453610 "data/test.html",
3611 "data/url_request_unittest/308-without-location-header",
3612 "data/url_request_unittest/308-without-location-header.mock-http-headers",
3613 "data/url_request_unittest/BullRunSpeech.txt",
3614 "data/url_request_unittest/content-type-normalization.html",
3615 "data/url_request_unittest/content-type-normalization.html.mock-http-headers",
Emily Stark4cfecf072017-08-08 01:05:513616 "data/url_request_unittest/expect-ct-header-multiple.html",
3617 "data/url_request_unittest/expect-ct-header-multiple.html.mock-http-headers",
3618 "data/url_request_unittest/expect-ct-header-preload.html",
3619 "data/url_request_unittest/expect-ct-header-preload.html.mock-http-headers",
ckrasic73f7240b2017-01-24 00:06:453620 "data/url_request_unittest/expect-ct-header.html",
3621 "data/url_request_unittest/expect-ct-header.html.mock-http-headers",
3622 "data/url_request_unittest/filedir-sentinel",
3623 "data/url_request_unittest/gzip-encoded",
3624 "data/url_request_unittest/gzip-encoded.mock-http-headers",
3625 "data/url_request_unittest/hpkp-headers-report-only.html",
3626 "data/url_request_unittest/hpkp-headers-report-only.html.mock-http-headers",
3627 "data/url_request_unittest/hpkp-headers.html",
3628 "data/url_request_unittest/hpkp-headers.html.mock-http-headers",
3629 "data/url_request_unittest/hsts-and-hpkp-headers.html",
3630 "data/url_request_unittest/hsts-and-hpkp-headers.html.mock-http-headers",
3631 "data/url_request_unittest/hsts-and-hpkp-headers2.html",
3632 "data/url_request_unittest/hsts-and-hpkp-headers2.html.mock-http-headers",
3633 "data/url_request_unittest/hsts-headers.html",
3634 "data/url_request_unittest/hsts-headers.html.mock-http-headers",
3635 "data/url_request_unittest/hsts-multiple-headers.html",
3636 "data/url_request_unittest/hsts-multiple-headers.html.mock-http-headers",
3637 "data/url_request_unittest/redirect-test.html",
3638 "data/url_request_unittest/redirect-test.html.mock-http-headers",
3639 "data/url_request_unittest/redirect-to-data.html",
3640 "data/url_request_unittest/redirect-to-data.html.mock-http-headers",
3641 "data/url_request_unittest/redirect-to-echoall",
3642 "data/url_request_unittest/redirect-to-echoall.mock-http-headers",
3643 "data/url_request_unittest/redirect-to-file.html",
3644 "data/url_request_unittest/redirect-to-file.html.mock-http-headers",
3645 "data/url_request_unittest/redirect-to-invalid-url.html",
3646 "data/url_request_unittest/redirect-to-invalid-url.html.mock-http-headers",
3647 "data/url_request_unittest/redirect301-to-echo",
3648 "data/url_request_unittest/redirect301-to-echo.mock-http-headers",
3649 "data/url_request_unittest/redirect301-to-https",
3650 "data/url_request_unittest/redirect301-to-https.mock-http-headers",
3651 "data/url_request_unittest/redirect302-to-echo",
3652 "data/url_request_unittest/redirect302-to-echo-cacheable",
3653 "data/url_request_unittest/redirect302-to-echo-cacheable.mock-http-headers",
3654 "data/url_request_unittest/redirect302-to-echo.mock-http-headers",
3655 "data/url_request_unittest/redirect302-to-https",
3656 "data/url_request_unittest/redirect302-to-https.mock-http-headers",
3657 "data/url_request_unittest/redirect303-to-echo",
3658 "data/url_request_unittest/redirect303-to-echo.mock-http-headers",
3659 "data/url_request_unittest/redirect303-to-https",
3660 "data/url_request_unittest/redirect303-to-https.mock-http-headers",
3661 "data/url_request_unittest/redirect307-to-echo",
3662 "data/url_request_unittest/redirect307-to-echo.mock-http-headers",
3663 "data/url_request_unittest/redirect307-to-https",
3664 "data/url_request_unittest/redirect307-to-https.mock-http-headers",
3665 "data/url_request_unittest/redirect308-to-echo",
3666 "data/url_request_unittest/redirect308-to-echo.mock-http-headers",
3667 "data/url_request_unittest/redirect308-to-https",
3668 "data/url_request_unittest/redirect308-to-https.mock-http-headers",
3669 "data/url_request_unittest/simple.html",
3670 "data/url_request_unittest/simple.html.mock-http-headers",
3671 "data/url_request_unittest/two-content-lengths.html",
3672 "data/url_request_unittest/two-content-lengths.html.mock-http-headers",
3673 "data/url_request_unittest/with-headers.html",
3674 "data/url_request_unittest/with-headers.html.mock-http-headers",
eroman266bda9e2017-05-03 01:28:043675 "data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/chain.pem",
3676 "data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/main.test",
eroman266bda9e2017-05-03 01:28:043677 "data/verify_certificate_chain_unittest/expired-intermediate/chain.pem",
eromane7af9002017-05-13 05:04:013678 "data/verify_certificate_chain_unittest/expired-intermediate/not-after.test",
3679 "data/verify_certificate_chain_unittest/expired-intermediate/not-before.test",
eromanc1a8b5d02017-05-03 21:52:103680 "data/verify_certificate_chain_unittest/expired-root/chain.pem",
eromane7af9002017-05-13 05:04:013681 "data/verify_certificate_chain_unittest/expired-root/not-after-ta-with-constraints.test",
3682 "data/verify_certificate_chain_unittest/expired-root/not-after.test",
3683 "data/verify_certificate_chain_unittest/expired-root/not-before.test",
eroman266bda9e2017-05-03 01:28:043684 "data/verify_certificate_chain_unittest/expired-target/chain.pem",
eromane7af9002017-05-13 05:04:013685 "data/verify_certificate_chain_unittest/expired-target/not-after.test",
3686 "data/verify_certificate_chain_unittest/expired-target/not-before.test",
eroman266bda9e2017-05-03 01:28:043687 "data/verify_certificate_chain_unittest/incorrect-trust-anchor/chain.pem",
3688 "data/verify_certificate_chain_unittest/incorrect-trust-anchor/main.test",
3689 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/chain.pem",
3690 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/main.test",
3691 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/chain.pem",
3692 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/main.test",
eroman7333d9b2017-06-23 01:50:253693 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/any.test",
3694 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/chain.pem",
3695 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/clientauth.test",
3696 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/serverauth.test",
3697 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/any.test",
3698 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/chain.pem",
3699 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/clientauth.test",
3700 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/serverauth.test",
Eric Romanc8c2d6a2017-08-01 22:55:303701 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-chain.pem",
3702 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-any.test",
3703 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-clientAuth.test",
3704 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-serverAuth.test",
3705 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-chain.pem",
3706 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-any.test",
3707 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-clientAuth.test",
3708 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-serverAuth.test",
eroman266bda9e2017-05-03 01:28:043709 "data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/chain.pem",
3710 "data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/main.test",
3711 "data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/chain.pem",
3712 "data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/main.test",
eroman266bda9e2017-05-03 01:28:043713 "data/verify_certificate_chain_unittest/intermediate-signed-with-md5/chain.pem",
3714 "data/verify_certificate_chain_unittest/intermediate-signed-with-md5/main.test",
3715 "data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/chain.pem",
3716 "data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/main.test",
3717 "data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/chain.pem",
3718 "data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/main.test",
3719 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.pem",
3720 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.test",
3721 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.pem",
3722 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.test",
3723 "data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.pem",
3724 "data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.test",
3725 "data/verify_certificate_chain_unittest/key-rollover/newchain.pem",
3726 "data/verify_certificate_chain_unittest/key-rollover/newchain.test",
3727 "data/verify_certificate_chain_unittest/key-rollover/oldchain.pem",
3728 "data/verify_certificate_chain_unittest/key-rollover/oldchain.test",
3729 "data/verify_certificate_chain_unittest/key-rollover/rolloverchain.pem",
3730 "data/verify_certificate_chain_unittest/key-rollover/rolloverchain.test",
3731 "data/verify_certificate_chain_unittest/non-self-signed-root/chain.pem",
3732 "data/verify_certificate_chain_unittest/non-self-signed-root/main.test",
eromanc1a8b5d02017-05-03 21:52:103733 "data/verify_certificate_chain_unittest/non-self-signed-root/ta-with-constraints.test",
eroman605a5cc2017-06-03 02:45:243734 "data/verify_certificate_chain_unittest/pkits_errors/4.1.2.txt",
3735 "data/verify_certificate_chain_unittest/pkits_errors/4.1.3.txt",
3736 "data/verify_certificate_chain_unittest/pkits_errors/4.1.4.txt",
3737 "data/verify_certificate_chain_unittest/pkits_errors/4.1.5.txt",
3738 "data/verify_certificate_chain_unittest/pkits_errors/4.1.6.txt",
3739 "data/verify_certificate_chain_unittest/pkits_errors/4.10.1.txt",
3740 "data/verify_certificate_chain_unittest/pkits_errors/4.10.10.txt",
3741 "data/verify_certificate_chain_unittest/pkits_errors/4.10.2.txt",
3742 "data/verify_certificate_chain_unittest/pkits_errors/4.10.3.txt",
3743 "data/verify_certificate_chain_unittest/pkits_errors/4.10.4.txt",
3744 "data/verify_certificate_chain_unittest/pkits_errors/4.10.5.txt",
3745 "data/verify_certificate_chain_unittest/pkits_errors/4.10.6.txt",
3746 "data/verify_certificate_chain_unittest/pkits_errors/4.10.7.txt",
3747 "data/verify_certificate_chain_unittest/pkits_errors/4.10.8.txt",
3748 "data/verify_certificate_chain_unittest/pkits_errors/4.11.1.txt",
3749 "data/verify_certificate_chain_unittest/pkits_errors/4.11.10.txt",
3750 "data/verify_certificate_chain_unittest/pkits_errors/4.11.11.txt",
3751 "data/verify_certificate_chain_unittest/pkits_errors/4.11.3.txt",
3752 "data/verify_certificate_chain_unittest/pkits_errors/4.11.5.txt",
3753 "data/verify_certificate_chain_unittest/pkits_errors/4.11.6.txt",
3754 "data/verify_certificate_chain_unittest/pkits_errors/4.11.8.txt",
3755 "data/verify_certificate_chain_unittest/pkits_errors/4.11.9.txt",
3756 "data/verify_certificate_chain_unittest/pkits_errors/4.12.1.txt",
3757 "data/verify_certificate_chain_unittest/pkits_errors/4.12.10.txt",
3758 "data/verify_certificate_chain_unittest/pkits_errors/4.12.3.txt",
3759 "data/verify_certificate_chain_unittest/pkits_errors/4.12.4.txt",
3760 "data/verify_certificate_chain_unittest/pkits_errors/4.12.5.txt",
3761 "data/verify_certificate_chain_unittest/pkits_errors/4.12.6.txt",
3762 "data/verify_certificate_chain_unittest/pkits_errors/4.12.8.txt",
3763 "data/verify_certificate_chain_unittest/pkits_errors/4.13.10.txt",
3764 "data/verify_certificate_chain_unittest/pkits_errors/4.13.12.txt",
3765 "data/verify_certificate_chain_unittest/pkits_errors/4.13.13.txt",
3766 "data/verify_certificate_chain_unittest/pkits_errors/4.13.15.txt",
3767 "data/verify_certificate_chain_unittest/pkits_errors/4.13.16.txt",
3768 "data/verify_certificate_chain_unittest/pkits_errors/4.13.17.txt",
3769 "data/verify_certificate_chain_unittest/pkits_errors/4.13.2.txt",
3770 "data/verify_certificate_chain_unittest/pkits_errors/4.13.20.txt",
3771 "data/verify_certificate_chain_unittest/pkits_errors/4.13.21.txt",
3772 "data/verify_certificate_chain_unittest/pkits_errors/4.13.22.txt",
3773 "data/verify_certificate_chain_unittest/pkits_errors/4.13.23.txt",
3774 "data/verify_certificate_chain_unittest/pkits_errors/4.13.24.txt",
3775 "data/verify_certificate_chain_unittest/pkits_errors/4.13.25.txt",
3776 "data/verify_certificate_chain_unittest/pkits_errors/4.13.26.txt",
3777 "data/verify_certificate_chain_unittest/pkits_errors/4.13.27.txt",
3778 "data/verify_certificate_chain_unittest/pkits_errors/4.13.28.txt",
3779 "data/verify_certificate_chain_unittest/pkits_errors/4.13.29.txt",
3780 "data/verify_certificate_chain_unittest/pkits_errors/4.13.3.txt",
3781 "data/verify_certificate_chain_unittest/pkits_errors/4.13.31.txt",
3782 "data/verify_certificate_chain_unittest/pkits_errors/4.13.33.txt",
3783 "data/verify_certificate_chain_unittest/pkits_errors/4.13.34.txt",
3784 "data/verify_certificate_chain_unittest/pkits_errors/4.13.35.txt",
3785 "data/verify_certificate_chain_unittest/pkits_errors/4.13.36.txt",
3786 "data/verify_certificate_chain_unittest/pkits_errors/4.13.37.txt",
3787 "data/verify_certificate_chain_unittest/pkits_errors/4.13.38.txt",
3788 "data/verify_certificate_chain_unittest/pkits_errors/4.13.7.txt",
3789 "data/verify_certificate_chain_unittest/pkits_errors/4.13.8.txt",
3790 "data/verify_certificate_chain_unittest/pkits_errors/4.13.9.txt",
3791 "data/verify_certificate_chain_unittest/pkits_errors/4.16.2.txt",
3792 "data/verify_certificate_chain_unittest/pkits_errors/4.2.1.txt",
3793 "data/verify_certificate_chain_unittest/pkits_errors/4.2.2.txt",
3794 "data/verify_certificate_chain_unittest/pkits_errors/4.2.5.txt",
3795 "data/verify_certificate_chain_unittest/pkits_errors/4.2.6.txt",
3796 "data/verify_certificate_chain_unittest/pkits_errors/4.2.7.txt",
3797 "data/verify_certificate_chain_unittest/pkits_errors/4.3.1.txt",
3798 "data/verify_certificate_chain_unittest/pkits_errors/4.3.2.txt",
3799 "data/verify_certificate_chain_unittest/pkits_errors/4.6.1.txt",
3800 "data/verify_certificate_chain_unittest/pkits_errors/4.6.10.txt",
3801 "data/verify_certificate_chain_unittest/pkits_errors/4.6.11.txt",
3802 "data/verify_certificate_chain_unittest/pkits_errors/4.6.12.txt",
3803 "data/verify_certificate_chain_unittest/pkits_errors/4.6.16.txt",
3804 "data/verify_certificate_chain_unittest/pkits_errors/4.6.2.txt",
3805 "data/verify_certificate_chain_unittest/pkits_errors/4.6.3.txt",
3806 "data/verify_certificate_chain_unittest/pkits_errors/4.6.5.txt",
3807 "data/verify_certificate_chain_unittest/pkits_errors/4.6.6.txt",
3808 "data/verify_certificate_chain_unittest/pkits_errors/4.6.9.txt",
3809 "data/verify_certificate_chain_unittest/pkits_errors/4.7.1.txt",
3810 "data/verify_certificate_chain_unittest/pkits_errors/4.7.2.txt",
3811 "data/verify_certificate_chain_unittest/pkits_errors/4.8.1.txt",
3812 "data/verify_certificate_chain_unittest/pkits_errors/4.8.12.txt",
3813 "data/verify_certificate_chain_unittest/pkits_errors/4.8.14.txt",
3814 "data/verify_certificate_chain_unittest/pkits_errors/4.8.2.txt",
3815 "data/verify_certificate_chain_unittest/pkits_errors/4.8.3.txt",
3816 "data/verify_certificate_chain_unittest/pkits_errors/4.8.4.txt",
3817 "data/verify_certificate_chain_unittest/pkits_errors/4.8.5.txt",
3818 "data/verify_certificate_chain_unittest/pkits_errors/4.8.6.txt",
3819 "data/verify_certificate_chain_unittest/pkits_errors/4.8.7.txt",
3820 "data/verify_certificate_chain_unittest/pkits_errors/4.8.8.txt",
3821 "data/verify_certificate_chain_unittest/pkits_errors/4.8.9.txt",
3822 "data/verify_certificate_chain_unittest/pkits_errors/4.9.3.txt",
3823 "data/verify_certificate_chain_unittest/pkits_errors/4.9.5.txt",
3824 "data/verify_certificate_chain_unittest/pkits_errors/4.9.7.txt",
3825 "data/verify_certificate_chain_unittest/pkits_errors/4.9.8.txt",
eromanc1a8b5d02017-05-03 21:52:103826 "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/chain.pem",
3827 "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/main.test",
3828 "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/ta-with-constraints.test",
eroman7333d9b2017-06-23 01:50:253829 "data/verify_certificate_chain_unittest/root-eku-clientauth/chain.pem",
3830 "data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth-ta-with-constraints.test",
3831 "data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth.test",
eromanc1a8b5d02017-05-03 21:52:103832 "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/chain.pem",
3833 "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/main.test",
3834 "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/ta-with-constraints.test",
eroman266bda9e2017-05-03 01:28:043835 "data/verify_certificate_chain_unittest/target-and-intermediate/chain.pem",
eromand1c9c9b2017-05-04 19:23:453836 "data/verify_certificate_chain_unittest/target-and-intermediate/distrusted-root.test",
eroman266bda9e2017-05-03 01:28:043837 "data/verify_certificate_chain_unittest/target-and-intermediate/main.test",
eromand1c9c9b2017-05-04 19:23:453838 "data/verify_certificate_chain_unittest/target-and-intermediate/unspecified-trust-root.test",
eroman7333d9b2017-06-23 01:50:253839 "data/verify_certificate_chain_unittest/target-eku-clientauth/any.test",
3840 "data/verify_certificate_chain_unittest/target-eku-clientauth/chain.pem",
3841 "data/verify_certificate_chain_unittest/target-eku-clientauth/clientauth.test",
3842 "data/verify_certificate_chain_unittest/target-eku-clientauth/serverauth.test",
3843 "data/verify_certificate_chain_unittest/target-eku-none/any.test",
3844 "data/verify_certificate_chain_unittest/target-eku-none/chain.pem",
3845 "data/verify_certificate_chain_unittest/target-eku-none/clientauth.test",
3846 "data/verify_certificate_chain_unittest/target-eku-none/serverauth.test",
Eric Roman5431d702017-07-26 01:58:183847 "data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/chain.pem",
3848 "data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/main.test",
eroman266bda9e2017-05-03 01:28:043849 "data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/chain.pem",
3850 "data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/main.test",
3851 "data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/chain.pem",
3852 "data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/main.test",
eroman266bda9e2017-05-03 01:28:043853 "data/verify_certificate_chain_unittest/target-not-end-entity/chain.pem",
3854 "data/verify_certificate_chain_unittest/target-not-end-entity/main.test",
eromane7899432017-05-04 16:40:483855 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.pem",
3856 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.test",
3857 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.pem",
3858 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.test",
3859 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.pem",
3860 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.test",
3861 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.pem",
3862 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.test",
3863 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.pem",
3864 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.test",
3865 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.pem",
3866 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.test",
3867 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.pem",
3868 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.test",
3869 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.pem",
3870 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.test",
eroman266bda9e2017-05-03 01:28:043871 "data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/chain.pem",
3872 "data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/main.test",
3873 "data/verify_certificate_chain_unittest/target-signed-using-ecdsa/chain.pem",
3874 "data/verify_certificate_chain_unittest/target-signed-using-ecdsa/main.test",
3875 "data/verify_certificate_chain_unittest/target-signed-with-md5/chain.pem",
3876 "data/verify_certificate_chain_unittest/target-signed-with-md5/main.test",
3877 "data/verify_certificate_chain_unittest/target-unknown-critical-extension/chain.pem",
3878 "data/verify_certificate_chain_unittest/target-unknown-critical-extension/main.test",
3879 "data/verify_certificate_chain_unittest/target-wrong-signature/chain.pem",
3880 "data/verify_certificate_chain_unittest/target-wrong-signature/main.test",
eroman178f2c62017-06-07 01:03:443881 "data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/chain.pem",
3882 "data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/main.test",
3883 "data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/chain.pem",
3884 "data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/main.test",
eroman266bda9e2017-05-03 01:28:043885 "data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/chain.pem",
3886 "data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/main.test",
eromanc1a8b5d02017-05-03 21:52:103887 "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/chain.pem",
3888 "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/main.test",
3889 "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/ta-with-constraints.test",
ckrasic73f7240b2017-01-24 00:06:453890 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-dupe_attr.pem",
3891 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_attr.pem",
3892 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_rdn.pem",
3893 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap.pem",
3894 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-dupe_attr.pem",
3895 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_attr.pem",
3896 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_rdn.pem",
3897 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace.pem",
3898 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-dupe_attr.pem",
3899 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_attr.pem",
3900 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_rdn.pem",
3901 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled.pem",
3902 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-dupe_attr.pem",
3903 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_attr.pem",
3904 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_rdn.pem",
3905 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap.pem",
3906 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-dupe_attr.pem",
3907 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_attr.pem",
3908 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_rdn.pem",
3909 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace.pem",
3910 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_1.pem",
3911 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_2.pem",
3912 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-dupe_attr.pem",
3913 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_attr.pem",
3914 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_rdn.pem",
3915 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled.pem",
3916 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-dupe_attr.pem",
3917 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_attr.pem",
3918 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_rdn.pem",
3919 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap.pem",
3920 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-dupe_attr.pem",
3921 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_attr.pem",
3922 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_rdn.pem",
3923 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace.pem",
3924 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-dupe_attr.pem",
3925 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_attr.pem",
3926 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_rdn.pem",
3927 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled.pem",
3928 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-dupe_attr.pem",
3929 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_attr.pem",
3930 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_rdn.pem",
3931 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap.pem",
3932 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-dupe_attr.pem",
3933 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_attr.pem",
3934 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_rdn.pem",
3935 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace.pem",
3936 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-dupe_attr.pem",
3937 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_attr.pem",
3938 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_rdn.pem",
3939 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled.pem",
3940 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-dupe_attr.pem",
3941 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_attr.pem",
3942 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_rdn.pem",
3943 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap.pem",
3944 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-dupe_attr.pem",
3945 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_attr.pem",
3946 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_rdn.pem",
3947 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace.pem",
3948 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-dupe_attr.pem",
3949 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_attr.pem",
3950 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_rdn.pem",
3951 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled.pem",
3952 "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_1.pem",
3953 "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_2.pem",
3954 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-badAttributeType.pem",
3955 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-empty.pem",
3956 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-extradata.pem",
3957 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-onlyOneElement.pem",
3958 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-setNotSequence.pem",
3959 "data/verify_name_match_unittest/names/invalid-Name-setInsteadOfSequence.pem",
3960 "data/verify_name_match_unittest/names/invalid-RDN-empty.pem",
3961 "data/verify_name_match_unittest/names/invalid-RDN-sequenceInsteadOfSet.pem",
3962 "data/verify_name_match_unittest/names/unicode-mixed-normalized.pem",
3963 "data/verify_name_match_unittest/names/unicode-mixed-unnormalized.pem",
3964 "data/verify_name_match_unittest/names/unicode_bmp-BMPSTRING-unmangled.pem",
3965 "data/verify_name_match_unittest/names/unicode_bmp-UNIVERSALSTRING-unmangled.pem",
3966 "data/verify_name_match_unittest/names/unicode_bmp-UTF8-unmangled.pem",
3967 "data/verify_name_match_unittest/names/unicode_supplementary-UNIVERSALSTRING-unmangled.pem",
3968 "data/verify_name_match_unittest/names/unicode_supplementary-UTF8-unmangled.pem",
3969 "data/verify_name_match_unittest/names/valid-Name-empty.pem",
3970 "data/verify_name_match_unittest/names/valid-minimal.pem",
3971 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-spki-params-null.pem",
3972 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-unused-bits-signature.pem",
3973 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecdh-key.pem",
3974 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecmqv-key.pem",
3975 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-rsa-algorithm.pem",
3976 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-wrong-signature-format.pem",
3977 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512.pem",
3978 "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256-corrupted-data.pem",
3979 "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256.pem",
3980 "data/verify_signed_data_unittest/ecdsa-using-rsa-key.pem",
3981 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-length.pem",
3982 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-null.pem",
3983 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-key-params-absent.pem",
3984 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-using-pss-key-no-params.pem",
3985 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-wrong-algorithm.pem",
3986 "data/verify_signed_data_unittest/rsa-pkcs1-sha1.pem",
3987 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-key-encoded-ber.pem",
3988 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-spki-non-null-params.pem",
3989 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-ecdsa-algorithm.pem",
3990 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-id-ea-rsa.pem",
3991 "data/verify_signed_data_unittest/rsa-pkcs1-sha256.pem",
3992 "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-no-params.pem",
3993 "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-with-null-params.pem",
3994 "data/verify_signed_data_unittest/rsa-pss-sha1-salt20.pem",
3995 "data/verify_signed_data_unittest/rsa-pss-sha1-wrong-salt.pem",
3996 "data/verify_signed_data_unittest/rsa-pss-sha256-mgf1-sha512-salt33.pem",
3997 "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-params.pem",
3998 "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-wrong-params.pem",
3999 "data/verify_signed_data_unittest/rsa-pss-sha256-salt10.pem",
4000 "data/verify_signed_data_unittest/rsa-using-ec-key.pem",
4001 "data/verify_signed_data_unittest/rsa2048-pkcs1-sha512.pem",
4002 "third_party/nist-pkits/certs/AllCertificatesNoPoliciesTest2EE.crt",
4003 "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest10EE.crt",
4004 "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest13EE.crt",
4005 "third_party/nist-pkits/certs/AllCertificatesanyPolicyTest11EE.crt",
4006 "third_party/nist-pkits/certs/AnyPolicyTest14EE.crt",
4007 "third_party/nist-pkits/certs/BadCRLIssuerNameCACert.crt",
4008 "third_party/nist-pkits/certs/BadCRLSignatureCACert.crt",
4009 "third_party/nist-pkits/certs/BadSignedCACert.crt",
4010 "third_party/nist-pkits/certs/BadnotAfterDateCACert.crt",
4011 "third_party/nist-pkits/certs/BadnotBeforeDateCACert.crt",
4012 "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCACert.crt",
4013 "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCRLCert.crt",
4014 "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyCACert.crt",
4015 "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyOldWithNewCACert.crt",
4016 "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyCACert.crt",
4017 "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyNewWithOldCACert.crt",
4018 "third_party/nist-pkits/certs/CPSPointerQualifierTest20EE.crt",
4019 "third_party/nist-pkits/certs/DSACACert.crt",
4020 "third_party/nist-pkits/certs/DSAParametersInheritedCACert.crt",
4021 "third_party/nist-pkits/certs/DifferentPoliciesTest12EE.crt",
4022 "third_party/nist-pkits/certs/DifferentPoliciesTest3EE.crt",
4023 "third_party/nist-pkits/certs/DifferentPoliciesTest4EE.crt",
4024 "third_party/nist-pkits/certs/DifferentPoliciesTest5EE.crt",
4025 "third_party/nist-pkits/certs/DifferentPoliciesTest7EE.crt",
4026 "third_party/nist-pkits/certs/DifferentPoliciesTest8EE.crt",
4027 "third_party/nist-pkits/certs/DifferentPoliciesTest9EE.crt",
4028 "third_party/nist-pkits/certs/GeneralizedTimeCRLnextUpdateCACert.crt",
4029 "third_party/nist-pkits/certs/GoodCACert.crt",
4030 "third_party/nist-pkits/certs/GoodsubCACert.crt",
4031 "third_party/nist-pkits/certs/GoodsubCAPanyPolicyMapping1to2CACert.crt",
4032 "third_party/nist-pkits/certs/InvalidBadCRLIssuerNameTest5EE.crt",
4033 "third_party/nist-pkits/certs/InvalidBadCRLSignatureTest4EE.crt",
4034 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest7EE.crt",
4035 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest8EE.crt",
4036 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedNewWithOldTest5EE.crt",
4037 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedOldWithNewTest2EE.crt",
4038 "third_party/nist-pkits/certs/InvalidCASignatureTest2EE.crt",
4039 "third_party/nist-pkits/certs/InvalidCAnotAfterDateTest5EE.crt",
4040 "third_party/nist-pkits/certs/InvalidCAnotBeforeDateTest1EE.crt",
4041 "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest31EE.crt",
4042 "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest33EE.crt",
4043 "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest38EE.crt",
4044 "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest28EE.crt",
4045 "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest29EE.crt",
4046 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest10EE.crt",
4047 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest12EE.crt",
4048 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest13EE.crt",
4049 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest15EE.crt",
4050 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest16EE.crt",
4051 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest17EE.crt",
4052 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest20EE.crt",
4053 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest2EE.crt",
4054 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest3EE.crt",
4055 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest7EE.crt",
4056 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest8EE.crt",
4057 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest9EE.crt",
4058 "third_party/nist-pkits/certs/InvalidDSASignatureTest6EE.crt",
4059 "third_party/nist-pkits/certs/InvalidEESignatureTest3EE.crt",
4060 "third_party/nist-pkits/certs/InvalidEEnotAfterDateTest6EE.crt",
4061 "third_party/nist-pkits/certs/InvalidEEnotBeforeDateTest2EE.crt",
4062 "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest23EE.crt",
4063 "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest26EE.crt",
4064 "third_party/nist-pkits/certs/InvalidLongSerialNumberTest18EE.crt",
4065 "third_party/nist-pkits/certs/InvalidMappingFromanyPolicyTest7EE.crt",
4066 "third_party/nist-pkits/certs/InvalidMappingToanyPolicyTest8EE.crt",
4067 "third_party/nist-pkits/certs/InvalidMissingCRLTest1EE.crt",
4068 "third_party/nist-pkits/certs/InvalidMissingbasicConstraintsTest1EE.crt",
4069 "third_party/nist-pkits/certs/InvalidNameChainingOrderTest2EE.crt",
4070 "third_party/nist-pkits/certs/InvalidNameChainingTest1EE.crt",
4071 "third_party/nist-pkits/certs/InvalidNegativeSerialNumberTest15EE.crt",
4072 "third_party/nist-pkits/certs/InvalidOldCRLnextUpdateTest11EE.crt",
4073 "third_party/nist-pkits/certs/InvalidPolicyMappingTest10EE.crt",
4074 "third_party/nist-pkits/certs/InvalidPolicyMappingTest2EE.crt",
4075 "third_party/nist-pkits/certs/InvalidPolicyMappingTest4EE.crt",
4076 "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest22EE.crt",
4077 "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest24EE.crt",
4078 "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest26EE.crt",
4079 "third_party/nist-pkits/certs/InvalidRevokedCATest2EE.crt",
4080 "third_party/nist-pkits/certs/InvalidRevokedEETest3EE.crt",
4081 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest10EE.crt",
4082 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest8EE.crt",
4083 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest10EE.crt",
4084 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest11EE.crt",
4085 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest8EE.crt",
4086 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest9EE.crt",
4087 "third_party/nist-pkits/certs/InvalidSelfIssuedpathLenConstraintTest16EE.crt",
4088 "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest7EE.crt",
4089 "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest8EE.crt",
4090 "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest20EE.crt",
4091 "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest21EE.crt",
4092 "third_party/nist-pkits/certs/InvalidURInameConstraintsTest35EE.crt",
4093 "third_party/nist-pkits/certs/InvalidURInameConstraintsTest37EE.crt",
4094 "third_party/nist-pkits/certs/InvalidUnknownCRLEntryExtensionTest8EE.crt",
4095 "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest10EE.crt",
4096 "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest9EE.crt",
4097 "third_party/nist-pkits/certs/InvalidUnknownCriticalCertificateExtensionTest2EE.crt",
4098 "third_party/nist-pkits/certs/InvalidWrongCRLTest6EE.crt",
4099 "third_party/nist-pkits/certs/InvalidcAFalseTest2EE.crt",
4100 "third_party/nist-pkits/certs/InvalidcAFalseTest3EE.crt",
4101 "third_party/nist-pkits/certs/InvalidcRLIssuerTest27EE.crt",
4102 "third_party/nist-pkits/certs/InvalidcRLIssuerTest31EE.crt",
4103 "third_party/nist-pkits/certs/InvalidcRLIssuerTest32EE.crt",
4104 "third_party/nist-pkits/certs/InvalidcRLIssuerTest34EE.crt",
4105 "third_party/nist-pkits/certs/InvalidcRLIssuerTest35EE.crt",
4106 "third_party/nist-pkits/certs/InvaliddeltaCRLIndicatorNoBaseTest1EE.crt",
4107 "third_party/nist-pkits/certs/InvaliddeltaCRLTest10EE.crt",
4108 "third_party/nist-pkits/certs/InvaliddeltaCRLTest3EE.crt",
4109 "third_party/nist-pkits/certs/InvaliddeltaCRLTest4EE.crt",
4110 "third_party/nist-pkits/certs/InvaliddeltaCRLTest6EE.crt",
4111 "third_party/nist-pkits/certs/InvaliddeltaCRLTest9EE.crt",
4112 "third_party/nist-pkits/certs/InvaliddistributionPointTest2EE.crt",
4113 "third_party/nist-pkits/certs/InvaliddistributionPointTest3EE.crt",
4114 "third_party/nist-pkits/certs/InvaliddistributionPointTest6EE.crt",
4115 "third_party/nist-pkits/certs/InvaliddistributionPointTest8EE.crt",
4116 "third_party/nist-pkits/certs/InvaliddistributionPointTest9EE.crt",
4117 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest1EE.crt",
4118 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest4EE.crt",
4119 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest5EE.crt",
4120 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest6EE.crt",
4121 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest1EE.crt",
4122 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest3EE.crt",
4123 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest5EE.crt",
4124 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest6EE.crt",
4125 "third_party/nist-pkits/certs/InvalidkeyUsageCriticalcRLSignFalseTest4EE.crt",
4126 "third_party/nist-pkits/certs/InvalidkeyUsageCriticalkeyCertSignFalseTest1EE.crt",
4127 "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalcRLSignFalseTest5EE.crt",
4128 "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalkeyCertSignFalseTest2EE.crt",
4129 "third_party/nist-pkits/certs/InvalidonlyContainsAttributeCertsTest14EE.crt",
4130 "third_party/nist-pkits/certs/InvalidonlyContainsCACertsTest12EE.crt",
4131 "third_party/nist-pkits/certs/InvalidonlyContainsUserCertsTest11EE.crt",
4132 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest15EE.crt",
4133 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest16EE.crt",
4134 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest17EE.crt",
4135 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest20EE.crt",
4136 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest21EE.crt",
4137 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest10EE.crt",
4138 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest11EE.crt",
4139 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest12EE.crt",
4140 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest5EE.crt",
4141 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest6EE.crt",
4142 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest9EE.crt",
4143 "third_party/nist-pkits/certs/Invalidpre2000CRLnextUpdateTest12EE.crt",
4144 "third_party/nist-pkits/certs/Invalidpre2000UTCEEnotAfterDateTest7EE.crt",
4145 "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest3EE.crt",
4146 "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest5EE.crt",
4147 "third_party/nist-pkits/certs/LongSerialNumberCACert.crt",
4148 "third_party/nist-pkits/certs/Mapping1to2CACert.crt",
4149 "third_party/nist-pkits/certs/MappingFromanyPolicyCACert.crt",
4150 "third_party/nist-pkits/certs/MappingToanyPolicyCACert.crt",
4151 "third_party/nist-pkits/certs/MissingbasicConstraintsCACert.crt",
4152 "third_party/nist-pkits/certs/NameOrderingCACert.crt",
4153 "third_party/nist-pkits/certs/NegativeSerialNumberCACert.crt",
4154 "third_party/nist-pkits/certs/NoCRLCACert.crt",
4155 "third_party/nist-pkits/certs/NoPoliciesCACert.crt",
4156 "third_party/nist-pkits/certs/NoissuingDistributionPointCACert.crt",
4157 "third_party/nist-pkits/certs/OldCRLnextUpdateCACert.crt",
4158 "third_party/nist-pkits/certs/OverlappingPoliciesTest6EE.crt",
4159 "third_party/nist-pkits/certs/P12Mapping1to3CACert.crt",
4160 "third_party/nist-pkits/certs/P12Mapping1to3subCACert.crt",
4161 "third_party/nist-pkits/certs/P12Mapping1to3subsubCACert.crt",
4162 "third_party/nist-pkits/certs/P1Mapping1to234CACert.crt",
4163 "third_party/nist-pkits/certs/P1Mapping1to234subCACert.crt",
4164 "third_party/nist-pkits/certs/P1anyPolicyMapping1to2CACert.crt",
4165 "third_party/nist-pkits/certs/PanyPolicyMapping1to2CACert.crt",
4166 "third_party/nist-pkits/certs/PoliciesP1234CACert.crt",
4167 "third_party/nist-pkits/certs/PoliciesP1234subCAP123Cert.crt",
4168 "third_party/nist-pkits/certs/PoliciesP1234subsubCAP123P12Cert.crt",
4169 "third_party/nist-pkits/certs/PoliciesP123CACert.crt",
4170 "third_party/nist-pkits/certs/PoliciesP123subCAP12Cert.crt",
4171 "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P1Cert.crt",
4172 "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P2Cert.crt",
4173 "third_party/nist-pkits/certs/PoliciesP123subsubsubCAP12P2P1Cert.crt",
4174 "third_party/nist-pkits/certs/PoliciesP12CACert.crt",
4175 "third_party/nist-pkits/certs/PoliciesP12subCAP1Cert.crt",
4176 "third_party/nist-pkits/certs/PoliciesP12subsubCAP1P2Cert.crt",
4177 "third_party/nist-pkits/certs/PoliciesP2subCA2Cert.crt",
4178 "third_party/nist-pkits/certs/PoliciesP2subCACert.crt",
4179 "third_party/nist-pkits/certs/PoliciesP3CACert.crt",
4180 "third_party/nist-pkits/certs/RFC3280MandatoryAttributeTypesCACert.crt",
4181 "third_party/nist-pkits/certs/RFC3280OptionalAttributeTypesCACert.crt",
4182 "third_party/nist-pkits/certs/RevokedsubCACert.crt",
4183 "third_party/nist-pkits/certs/RolloverfromPrintableStringtoUTF8StringCACert.crt",
4184 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CRLSigningCert.crt",
4185 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CertificateSigningCACert.crt",
4186 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCRLSigningCert.crt",
4187 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCertificateSigningCACert.crt",
4188 "third_party/nist-pkits/certs/TrustAnchorRootCertificate.crt",
4189 "third_party/nist-pkits/certs/TwoCRLsCACert.crt",
4190 "third_party/nist-pkits/certs/UIDCACert.crt",
4191 "third_party/nist-pkits/certs/UTF8StringCaseInsensitiveMatchCACert.crt",
4192 "third_party/nist-pkits/certs/UTF8StringEncodedNamesCACert.crt",
4193 "third_party/nist-pkits/certs/UnknownCRLEntryExtensionCACert.crt",
4194 "third_party/nist-pkits/certs/UnknownCRLExtensionCACert.crt",
4195 "third_party/nist-pkits/certs/UserNoticeQualifierTest15EE.crt",
4196 "third_party/nist-pkits/certs/UserNoticeQualifierTest16EE.crt",
4197 "third_party/nist-pkits/certs/UserNoticeQualifierTest17EE.crt",
4198 "third_party/nist-pkits/certs/UserNoticeQualifierTest18EE.crt",
4199 "third_party/nist-pkits/certs/UserNoticeQualifierTest19EE.crt",
4200 "third_party/nist-pkits/certs/ValidBasicSelfIssuedCRLSigningKeyTest6EE.crt",
4201 "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest3EE.crt",
4202 "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest4EE.crt",
4203 "third_party/nist-pkits/certs/ValidBasicSelfIssuedOldWithNewTest1EE.crt",
4204 "third_party/nist-pkits/certs/ValidCertificatePathTest1EE.crt",
4205 "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest30EE.crt",
4206 "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest32EE.crt",
4207 "third_party/nist-pkits/certs/ValidDNandRFC822nameConstraintsTest27EE.crt",
4208 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest11EE.crt",
4209 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest14EE.crt",
4210 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest18EE.crt",
4211 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest19EE.crt",
4212 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest1EE.crt",
4213 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest4EE.crt",
4214 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest5EE.crt",
4215 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest6EE.crt",
4216 "third_party/nist-pkits/certs/ValidDSAParameterInheritanceTest5EE.crt",
4217 "third_party/nist-pkits/certs/ValidDSASignaturesTest4EE.crt",
4218 "third_party/nist-pkits/certs/ValidGeneralizedTimeCRLnextUpdateTest13EE.crt",
4219 "third_party/nist-pkits/certs/ValidGeneralizedTimenotAfterDateTest8EE.crt",
4220 "third_party/nist-pkits/certs/ValidGeneralizedTimenotBeforeDateTest4EE.crt",
4221 "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest22EE.crt",
4222 "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest24EE.crt",
4223 "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest25EE.crt",
4224 "third_party/nist-pkits/certs/ValidLongSerialNumberTest16EE.crt",
4225 "third_party/nist-pkits/certs/ValidLongSerialNumberTest17EE.crt",
4226 "third_party/nist-pkits/certs/ValidNameChainingCapitalizationTest5EE.crt",
4227 "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest3EE.crt",
4228 "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest4EE.crt",
4229 "third_party/nist-pkits/certs/ValidNameUIDsTest6EE.crt",
4230 "third_party/nist-pkits/certs/ValidNegativeSerialNumberTest14EE.crt",
4231 "third_party/nist-pkits/certs/ValidNoissuingDistributionPointTest10EE.crt",
4232 "third_party/nist-pkits/certs/ValidPolicyMappingTest11EE.crt",
4233 "third_party/nist-pkits/certs/ValidPolicyMappingTest12EE.crt",
4234 "third_party/nist-pkits/certs/ValidPolicyMappingTest13EE.crt",
4235 "third_party/nist-pkits/certs/ValidPolicyMappingTest14EE.crt",
4236 "third_party/nist-pkits/certs/ValidPolicyMappingTest1EE.crt",
4237 "third_party/nist-pkits/certs/ValidPolicyMappingTest3EE.crt",
4238 "third_party/nist-pkits/certs/ValidPolicyMappingTest5EE.crt",
4239 "third_party/nist-pkits/certs/ValidPolicyMappingTest6EE.crt",
4240 "third_party/nist-pkits/certs/ValidPolicyMappingTest9EE.crt",
4241 "third_party/nist-pkits/certs/ValidRFC3280MandatoryAttributeTypesTest7EE.crt",
4242 "third_party/nist-pkits/certs/ValidRFC3280OptionalAttributeTypesTest8EE.crt",
4243 "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest21EE.crt",
4244 "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest23EE.crt",
4245 "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest25EE.crt",
4246 "third_party/nist-pkits/certs/ValidRolloverfromPrintableStringtoUTF8StringTest10EE.crt",
4247 "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest7EE.crt",
4248 "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest9EE.crt",
4249 "third_party/nist-pkits/certs/ValidSelfIssuedinhibitPolicyMappingTest7EE.crt",
4250 "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest15EE.crt",
4251 "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest17EE.crt",
4252 "third_party/nist-pkits/certs/ValidSelfIssuedrequireExplicitPolicyTest6EE.crt",
4253 "third_party/nist-pkits/certs/ValidSeparateCertificateandCRLKeysTest19EE.crt",
4254 "third_party/nist-pkits/certs/ValidTwoCRLsTest7EE.crt",
4255 "third_party/nist-pkits/certs/ValidURInameConstraintsTest34EE.crt",
4256 "third_party/nist-pkits/certs/ValidURInameConstraintsTest36EE.crt",
4257 "third_party/nist-pkits/certs/ValidUTF8StringCaseInsensitiveMatchTest11EE.crt",
4258 "third_party/nist-pkits/certs/ValidUTF8StringEncodedNamesTest9EE.crt",
4259 "third_party/nist-pkits/certs/ValidUnknownNotCriticalCertificateExtensionTest1EE.crt",
4260 "third_party/nist-pkits/certs/ValidbasicConstraintsNotCriticalTest4EE.crt",
4261 "third_party/nist-pkits/certs/ValidcRLIssuerTest28EE.crt",
4262 "third_party/nist-pkits/certs/ValidcRLIssuerTest29EE.crt",
4263 "third_party/nist-pkits/certs/ValidcRLIssuerTest30EE.crt",
4264 "third_party/nist-pkits/certs/ValidcRLIssuerTest33EE.crt",
4265 "third_party/nist-pkits/certs/ValiddeltaCRLTest2EE.crt",
4266 "third_party/nist-pkits/certs/ValiddeltaCRLTest5EE.crt",
4267 "third_party/nist-pkits/certs/ValiddeltaCRLTest7EE.crt",
4268 "third_party/nist-pkits/certs/ValiddeltaCRLTest8EE.crt",
4269 "third_party/nist-pkits/certs/ValiddistributionPointTest1EE.crt",
4270 "third_party/nist-pkits/certs/ValiddistributionPointTest4EE.crt",
4271 "third_party/nist-pkits/certs/ValiddistributionPointTest5EE.crt",
4272 "third_party/nist-pkits/certs/ValiddistributionPointTest7EE.crt",
4273 "third_party/nist-pkits/certs/ValidinhibitAnyPolicyTest2EE.crt",
4274 "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest2EE.crt",
4275 "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest4EE.crt",
4276 "third_party/nist-pkits/certs/ValidkeyUsageNotCriticalTest3EE.crt",
4277 "third_party/nist-pkits/certs/ValidonlyContainsCACertsTest13EE.crt",
4278 "third_party/nist-pkits/certs/ValidonlySomeReasonsTest18EE.crt",
4279 "third_party/nist-pkits/certs/ValidonlySomeReasonsTest19EE.crt",
4280 "third_party/nist-pkits/certs/ValidpathLenConstraintTest13EE.crt",
4281 "third_party/nist-pkits/certs/ValidpathLenConstraintTest14EE.crt",
4282 "third_party/nist-pkits/certs/ValidpathLenConstraintTest7EE.crt",
4283 "third_party/nist-pkits/certs/ValidpathLenConstraintTest8EE.crt",
4284 "third_party/nist-pkits/certs/Validpre2000UTCnotBeforeDateTest3EE.crt",
4285 "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest1EE.crt",
4286 "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest2EE.crt",
4287 "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest4EE.crt",
4288 "third_party/nist-pkits/certs/WrongCRLCACert.crt",
4289 "third_party/nist-pkits/certs/anyPolicyCACert.crt",
4290 "third_party/nist-pkits/certs/basicConstraintsCriticalcAFalseCACert.crt",
4291 "third_party/nist-pkits/certs/basicConstraintsNotCriticalCACert.crt",
4292 "third_party/nist-pkits/certs/basicConstraintsNotCriticalcAFalseCACert.crt",
4293 "third_party/nist-pkits/certs/deltaCRLCA1Cert.crt",
4294 "third_party/nist-pkits/certs/deltaCRLCA2Cert.crt",
4295 "third_party/nist-pkits/certs/deltaCRLCA3Cert.crt",
4296 "third_party/nist-pkits/certs/deltaCRLIndicatorNoBaseCACert.crt",
4297 "third_party/nist-pkits/certs/distributionPoint1CACert.crt",
4298 "third_party/nist-pkits/certs/distributionPoint2CACert.crt",
4299 "third_party/nist-pkits/certs/indirectCRLCA1Cert.crt",
4300 "third_party/nist-pkits/certs/indirectCRLCA2Cert.crt",
4301 "third_party/nist-pkits/certs/indirectCRLCA3Cert.crt",
4302 "third_party/nist-pkits/certs/indirectCRLCA3cRLIssuerCert.crt",
4303 "third_party/nist-pkits/certs/indirectCRLCA4Cert.crt",
4304 "third_party/nist-pkits/certs/indirectCRLCA4cRLIssuerCert.crt",
4305 "third_party/nist-pkits/certs/indirectCRLCA5Cert.crt",
4306 "third_party/nist-pkits/certs/indirectCRLCA6Cert.crt",
4307 "third_party/nist-pkits/certs/inhibitAnyPolicy0CACert.crt",
4308 "third_party/nist-pkits/certs/inhibitAnyPolicy1CACert.crt",
4309 "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedCACert.crt",
4310 "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedsubCA2Cert.crt",
4311 "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA1Cert.crt",
4312 "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA2Cert.crt",
4313 "third_party/nist-pkits/certs/inhibitAnyPolicy1subCAIAP5Cert.crt",
4314 "third_party/nist-pkits/certs/inhibitAnyPolicy1subsubCA2Cert.crt",
4315 "third_party/nist-pkits/certs/inhibitAnyPolicy5CACert.crt",
4316 "third_party/nist-pkits/certs/inhibitAnyPolicy5subCACert.crt",
4317 "third_party/nist-pkits/certs/inhibitAnyPolicy5subsubCACert.crt",
4318 "third_party/nist-pkits/certs/inhibitAnyPolicyTest3EE.crt",
4319 "third_party/nist-pkits/certs/inhibitPolicyMapping0CACert.crt",
4320 "third_party/nist-pkits/certs/inhibitPolicyMapping0subCACert.crt",
4321 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12CACert.crt",
4322 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCACert.crt",
4323 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCAIPM5Cert.crt",
4324 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCACert.crt",
4325 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCAIPM5Cert.crt",
4326 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1CACert.crt",
4327 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedCACert.crt",
4328 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedsubCACert.crt",
4329 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subCACert.crt",
4330 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subsubCACert.crt",
4331 "third_party/nist-pkits/certs/inhibitPolicyMapping5CACert.crt",
4332 "third_party/nist-pkits/certs/inhibitPolicyMapping5subCACert.crt",
4333 "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubCACert.crt",
4334 "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubsubCACert.crt",
4335 "third_party/nist-pkits/certs/keyUsageCriticalcRLSignFalseCACert.crt",
4336 "third_party/nist-pkits/certs/keyUsageCriticalkeyCertSignFalseCACert.crt",
4337 "third_party/nist-pkits/certs/keyUsageNotCriticalCACert.crt",
4338 "third_party/nist-pkits/certs/keyUsageNotCriticalcRLSignFalseCACert.crt",
4339 "third_party/nist-pkits/certs/keyUsageNotCriticalkeyCertSignFalseCACert.crt",
4340 "third_party/nist-pkits/certs/nameConstraintsDN1CACert.crt",
4341 "third_party/nist-pkits/certs/nameConstraintsDN1SelfIssuedCACert.crt",
4342 "third_party/nist-pkits/certs/nameConstraintsDN1subCA1Cert.crt",
4343 "third_party/nist-pkits/certs/nameConstraintsDN1subCA2Cert.crt",
4344 "third_party/nist-pkits/certs/nameConstraintsDN1subCA3Cert.crt",
4345 "third_party/nist-pkits/certs/nameConstraintsDN2CACert.crt",
4346 "third_party/nist-pkits/certs/nameConstraintsDN3CACert.crt",
4347 "third_party/nist-pkits/certs/nameConstraintsDN3subCA1Cert.crt",
4348 "third_party/nist-pkits/certs/nameConstraintsDN3subCA2Cert.crt",
4349 "third_party/nist-pkits/certs/nameConstraintsDN4CACert.crt",
4350 "third_party/nist-pkits/certs/nameConstraintsDN5CACert.crt",
4351 "third_party/nist-pkits/certs/nameConstraintsDNS1CACert.crt",
4352 "third_party/nist-pkits/certs/nameConstraintsDNS2CACert.crt",
4353 "third_party/nist-pkits/certs/nameConstraintsRFC822CA1Cert.crt",
4354 "third_party/nist-pkits/certs/nameConstraintsRFC822CA2Cert.crt",
4355 "third_party/nist-pkits/certs/nameConstraintsRFC822CA3Cert.crt",
4356 "third_party/nist-pkits/certs/nameConstraintsURI1CACert.crt",
4357 "third_party/nist-pkits/certs/nameConstraintsURI2CACert.crt",
4358 "third_party/nist-pkits/certs/onlyContainsAttributeCertsCACert.crt",
4359 "third_party/nist-pkits/certs/onlyContainsCACertsCACert.crt",
4360 "third_party/nist-pkits/certs/onlyContainsUserCertsCACert.crt",
4361 "third_party/nist-pkits/certs/onlySomeReasonsCA1Cert.crt",
4362 "third_party/nist-pkits/certs/onlySomeReasonsCA2Cert.crt",
4363 "third_party/nist-pkits/certs/onlySomeReasonsCA3Cert.crt",
4364 "third_party/nist-pkits/certs/onlySomeReasonsCA4Cert.crt",
4365 "third_party/nist-pkits/certs/pathLenConstraint0CACert.crt",
4366 "third_party/nist-pkits/certs/pathLenConstraint0SelfIssuedCACert.crt",
4367 "third_party/nist-pkits/certs/pathLenConstraint0subCA2Cert.crt",
4368 "third_party/nist-pkits/certs/pathLenConstraint0subCACert.crt",
4369 "third_party/nist-pkits/certs/pathLenConstraint1CACert.crt",
4370 "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedCACert.crt",
4371 "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedsubCACert.crt",
4372 "third_party/nist-pkits/certs/pathLenConstraint1subCACert.crt",
4373 "third_party/nist-pkits/certs/pathLenConstraint6CACert.crt",
4374 "third_party/nist-pkits/certs/pathLenConstraint6subCA0Cert.crt",
4375 "third_party/nist-pkits/certs/pathLenConstraint6subCA1Cert.crt",
4376 "third_party/nist-pkits/certs/pathLenConstraint6subCA4Cert.crt",
4377 "third_party/nist-pkits/certs/pathLenConstraint6subsubCA00Cert.crt",
4378 "third_party/nist-pkits/certs/pathLenConstraint6subsubCA11Cert.crt",
4379 "third_party/nist-pkits/certs/pathLenConstraint6subsubCA41Cert.crt",
4380 "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA11XCert.crt",
4381 "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA41XCert.crt",
4382 "third_party/nist-pkits/certs/pre2000CRLnextUpdateCACert.crt",
4383 "third_party/nist-pkits/certs/requireExplicitPolicy0CACert.crt",
4384 "third_party/nist-pkits/certs/requireExplicitPolicy0subCACert.crt",
4385 "third_party/nist-pkits/certs/requireExplicitPolicy0subsubCACert.crt",
4386 "third_party/nist-pkits/certs/requireExplicitPolicy0subsubsubCACert.crt",
4387 "third_party/nist-pkits/certs/requireExplicitPolicy10CACert.crt",
4388 "third_party/nist-pkits/certs/requireExplicitPolicy10subCACert.crt",
4389 "third_party/nist-pkits/certs/requireExplicitPolicy10subsubCACert.crt",
4390 "third_party/nist-pkits/certs/requireExplicitPolicy10subsubsubCACert.crt",
4391 "third_party/nist-pkits/certs/requireExplicitPolicy2CACert.crt",
4392 "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedCACert.crt",
4393 "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedsubCACert.crt",
4394 "third_party/nist-pkits/certs/requireExplicitPolicy2subCACert.crt",
4395 "third_party/nist-pkits/certs/requireExplicitPolicy4CACert.crt",
4396 "third_party/nist-pkits/certs/requireExplicitPolicy4subCACert.crt",
4397 "third_party/nist-pkits/certs/requireExplicitPolicy4subsubCACert.crt",
4398 "third_party/nist-pkits/certs/requireExplicitPolicy4subsubsubCACert.crt",
4399 "third_party/nist-pkits/certs/requireExplicitPolicy5CACert.crt",
4400 "third_party/nist-pkits/certs/requireExplicitPolicy5subCACert.crt",
4401 "third_party/nist-pkits/certs/requireExplicitPolicy5subsubCACert.crt",
4402 "third_party/nist-pkits/certs/requireExplicitPolicy5subsubsubCACert.crt",
4403 "third_party/nist-pkits/certs/requireExplicitPolicy7CACert.crt",
4404 "third_party/nist-pkits/certs/requireExplicitPolicy7subCARE2Cert.crt",
4405 "third_party/nist-pkits/certs/requireExplicitPolicy7subsubCARE2RE4Cert.crt",
4406 "third_party/nist-pkits/certs/requireExplicitPolicy7subsubsubCARE2RE4Cert.crt",
4407 "third_party/nist-pkits/crls/BadCRLIssuerNameCACRL.crl",
4408 "third_party/nist-pkits/crls/BadCRLSignatureCACRL.crl",
4409 "third_party/nist-pkits/crls/BadSignedCACRL.crl",
4410 "third_party/nist-pkits/crls/BadnotAfterDateCACRL.crl",
4411 "third_party/nist-pkits/crls/BadnotBeforeDateCACRL.crl",
4412 "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCACRL.crl",
4413 "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCRLCertCRL.crl",
4414 "third_party/nist-pkits/crls/BasicSelfIssuedNewKeyCACRL.crl",
4415 "third_party/nist-pkits/crls/BasicSelfIssuedOldKeyCACRL.crl",
4416 "third_party/nist-pkits/crls/BasicSelfIssuedOldKeySelfIssuedCertCRL.crl",
4417 "third_party/nist-pkits/crls/DSACACRL.crl",
4418 "third_party/nist-pkits/crls/DSAParametersInheritedCACRL.crl",
4419 "third_party/nist-pkits/crls/GeneralizedTimeCRLnextUpdateCACRL.crl",
4420 "third_party/nist-pkits/crls/GoodCACRL.crl",
4421 "third_party/nist-pkits/crls/GoodsubCACRL.crl",
4422 "third_party/nist-pkits/crls/GoodsubCAPanyPolicyMapping1to2CACRL.crl",
4423 "third_party/nist-pkits/crls/LongSerialNumberCACRL.crl",
4424 "third_party/nist-pkits/crls/Mapping1to2CACRL.crl",
4425 "third_party/nist-pkits/crls/MappingFromanyPolicyCACRL.crl",
4426 "third_party/nist-pkits/crls/MappingToanyPolicyCACRL.crl",
4427 "third_party/nist-pkits/crls/MissingbasicConstraintsCACRL.crl",
4428 "third_party/nist-pkits/crls/NameOrderCACRL.crl",
4429 "third_party/nist-pkits/crls/NegativeSerialNumberCACRL.crl",
4430 "third_party/nist-pkits/crls/NoPoliciesCACRL.crl",
4431 "third_party/nist-pkits/crls/NoissuingDistributionPointCACRL.crl",
4432 "third_party/nist-pkits/crls/OldCRLnextUpdateCACRL.crl",
4433 "third_party/nist-pkits/crls/P12Mapping1to3CACRL.crl",
4434 "third_party/nist-pkits/crls/P12Mapping1to3subCACRL.crl",
4435 "third_party/nist-pkits/crls/P12Mapping1to3subsubCACRL.crl",
4436 "third_party/nist-pkits/crls/P1Mapping1to234CACRL.crl",
4437 "third_party/nist-pkits/crls/P1Mapping1to234subCACRL.crl",
4438 "third_party/nist-pkits/crls/P1anyPolicyMapping1to2CACRL.crl",
4439 "third_party/nist-pkits/crls/PanyPolicyMapping1to2CACRL.crl",
4440 "third_party/nist-pkits/crls/PoliciesP1234CACRL.crl",
4441 "third_party/nist-pkits/crls/PoliciesP1234subCAP123CRL.crl",
4442 "third_party/nist-pkits/crls/PoliciesP1234subsubCAP123P12CRL.crl",
4443 "third_party/nist-pkits/crls/PoliciesP123CACRL.crl",
4444 "third_party/nist-pkits/crls/PoliciesP123subCAP12CRL.crl",
4445 "third_party/nist-pkits/crls/PoliciesP123subsubCAP12P1CRL.crl",
4446 "third_party/nist-pkits/crls/PoliciesP123subsubCAP2P2CRL.crl",
4447 "third_party/nist-pkits/crls/PoliciesP123subsubsubCAP12P2P1CRL.crl",
4448 "third_party/nist-pkits/crls/PoliciesP12CACRL.crl",
4449 "third_party/nist-pkits/crls/PoliciesP12subCAP1CRL.crl",
4450 "third_party/nist-pkits/crls/PoliciesP12subsubCAP1P2CRL.crl",
4451 "third_party/nist-pkits/crls/PoliciesP2subCA2CRL.crl",
4452 "third_party/nist-pkits/crls/PoliciesP2subCACRL.crl",
4453 "third_party/nist-pkits/crls/PoliciesP3CACRL.crl",
4454 "third_party/nist-pkits/crls/RFC3280MandatoryAttributeTypesCACRL.crl",
4455 "third_party/nist-pkits/crls/RFC3280OptionalAttributeTypesCACRL.crl",
4456 "third_party/nist-pkits/crls/RevokedsubCACRL.crl",
4457 "third_party/nist-pkits/crls/RolloverfromPrintableStringtoUTF8StringCACRL.crl",
4458 "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCA2CRL.crl",
4459 "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCRL.crl",
4460 "third_party/nist-pkits/crls/TrustAnchorRootCRL.crl",
4461 "third_party/nist-pkits/crls/TwoCRLsCABadCRL.crl",
4462 "third_party/nist-pkits/crls/TwoCRLsCAGoodCRL.crl",
4463 "third_party/nist-pkits/crls/UIDCACRL.crl",
4464 "third_party/nist-pkits/crls/UTF8StringCaseInsensitiveMatchCACRL.crl",
4465 "third_party/nist-pkits/crls/UTF8StringEncodedNamesCACRL.crl",
4466 "third_party/nist-pkits/crls/UnknownCRLEntryExtensionCACRL.crl",
4467 "third_party/nist-pkits/crls/UnknownCRLExtensionCACRL.crl",
4468 "third_party/nist-pkits/crls/WrongCRLCACRL.crl",
4469 "third_party/nist-pkits/crls/anyPolicyCACRL.crl",
4470 "third_party/nist-pkits/crls/basicConstraintsCriticalcAFalseCACRL.crl",
4471 "third_party/nist-pkits/crls/basicConstraintsNotCriticalCACRL.crl",
4472 "third_party/nist-pkits/crls/basicConstraintsNotCriticalcAFalseCACRL.crl",
4473 "third_party/nist-pkits/crls/deltaCRLCA1CRL.crl",
4474 "third_party/nist-pkits/crls/deltaCRLCA1deltaCRL.crl",
4475 "third_party/nist-pkits/crls/deltaCRLCA2CRL.crl",
4476 "third_party/nist-pkits/crls/deltaCRLCA2deltaCRL.crl",
4477 "third_party/nist-pkits/crls/deltaCRLCA3CRL.crl",
4478 "third_party/nist-pkits/crls/deltaCRLCA3deltaCRL.crl",
4479 "third_party/nist-pkits/crls/deltaCRLIndicatorNoBaseCACRL.crl",
4480 "third_party/nist-pkits/crls/distributionPoint1CACRL.crl",
4481 "third_party/nist-pkits/crls/distributionPoint2CACRL.crl",
4482 "third_party/nist-pkits/crls/indirectCRLCA1CRL.crl",
4483 "third_party/nist-pkits/crls/indirectCRLCA3CRL.crl",
4484 "third_party/nist-pkits/crls/indirectCRLCA3cRLIssuerCRL.crl",
4485 "third_party/nist-pkits/crls/indirectCRLCA4cRLIssuerCRL.crl",
4486 "third_party/nist-pkits/crls/indirectCRLCA5CRL.crl",
4487 "third_party/nist-pkits/crls/inhibitAnyPolicy0CACRL.crl",
4488 "third_party/nist-pkits/crls/inhibitAnyPolicy1CACRL.crl",
4489 "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA1CRL.crl",
4490 "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA2CRL.crl",
4491 "third_party/nist-pkits/crls/inhibitAnyPolicy1subCAIAP5CRL.crl",
4492 "third_party/nist-pkits/crls/inhibitAnyPolicy1subsubCA2CRL.crl",
4493 "third_party/nist-pkits/crls/inhibitAnyPolicy5CACRL.crl",
4494 "third_party/nist-pkits/crls/inhibitAnyPolicy5subCACRL.crl",
4495 "third_party/nist-pkits/crls/inhibitAnyPolicy5subsubCACRL.crl",
4496 "third_party/nist-pkits/crls/inhibitPolicyMapping0CACRL.crl",
4497 "third_party/nist-pkits/crls/inhibitPolicyMapping0subCACRL.crl",
4498 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12CACRL.crl",
4499 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCACRL.crl",
4500 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCAIPM5CRL.crl",
4501 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCACRL.crl",
4502 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCAIPM5CRL.crl",
4503 "third_party/nist-pkits/crls/inhibitPolicyMapping1P1CACRL.crl",
4504 "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subCACRL.crl",
4505 "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subsubCACRL.crl",
4506 "third_party/nist-pkits/crls/inhibitPolicyMapping5CACRL.crl",
4507 "third_party/nist-pkits/crls/inhibitPolicyMapping5subCACRL.crl",
4508 "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubCACRL.crl",
4509 "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubsubCACRL.crl",
4510 "third_party/nist-pkits/crls/keyUsageCriticalcRLSignFalseCACRL.crl",
4511 "third_party/nist-pkits/crls/keyUsageCriticalkeyCertSignFalseCACRL.crl",
4512 "third_party/nist-pkits/crls/keyUsageNotCriticalCACRL.crl",
4513 "third_party/nist-pkits/crls/keyUsageNotCriticalcRLSignFalseCACRL.crl",
4514 "third_party/nist-pkits/crls/keyUsageNotCriticalkeyCertSignFalseCACRL.crl",
4515 "third_party/nist-pkits/crls/nameConstraintsDN1CACRL.crl",
4516 "third_party/nist-pkits/crls/nameConstraintsDN1subCA1CRL.crl",
4517 "third_party/nist-pkits/crls/nameConstraintsDN1subCA2CRL.crl",
4518 "third_party/nist-pkits/crls/nameConstraintsDN1subCA3CRL.crl",
4519 "third_party/nist-pkits/crls/nameConstraintsDN2CACRL.crl",
4520 "third_party/nist-pkits/crls/nameConstraintsDN3CACRL.crl",
4521 "third_party/nist-pkits/crls/nameConstraintsDN3subCA1CRL.crl",
4522 "third_party/nist-pkits/crls/nameConstraintsDN3subCA2CRL.crl",
4523 "third_party/nist-pkits/crls/nameConstraintsDN4CACRL.crl",
4524 "third_party/nist-pkits/crls/nameConstraintsDN5CACRL.crl",
4525 "third_party/nist-pkits/crls/nameConstraintsDNS1CACRL.crl",
4526 "third_party/nist-pkits/crls/nameConstraintsDNS2CACRL.crl",
4527 "third_party/nist-pkits/crls/nameConstraintsRFC822CA1CRL.crl",
4528 "third_party/nist-pkits/crls/nameConstraintsRFC822CA2CRL.crl",
4529 "third_party/nist-pkits/crls/nameConstraintsRFC822CA3CRL.crl",
4530 "third_party/nist-pkits/crls/nameConstraintsURI1CACRL.crl",
4531 "third_party/nist-pkits/crls/nameConstraintsURI2CACRL.crl",
4532 "third_party/nist-pkits/crls/onlyContainsAttributeCertsCACRL.crl",
4533 "third_party/nist-pkits/crls/onlyContainsCACertsCACRL.crl",
4534 "third_party/nist-pkits/crls/onlyContainsUserCertsCACRL.crl",
4535 "third_party/nist-pkits/crls/onlySomeReasonsCA1compromiseCRL.crl",
4536 "third_party/nist-pkits/crls/onlySomeReasonsCA1otherreasonsCRL.crl",
4537 "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL1.crl",
4538 "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL2.crl",
4539 "third_party/nist-pkits/crls/onlySomeReasonsCA3compromiseCRL.crl",
4540 "third_party/nist-pkits/crls/onlySomeReasonsCA3otherreasonsCRL.crl",
4541 "third_party/nist-pkits/crls/onlySomeReasonsCA4compromiseCRL.crl",
4542 "third_party/nist-pkits/crls/onlySomeReasonsCA4otherreasonsCRL.crl",
4543 "third_party/nist-pkits/crls/pathLenConstraint0CACRL.crl",
4544 "third_party/nist-pkits/crls/pathLenConstraint0subCA2CRL.crl",
4545 "third_party/nist-pkits/crls/pathLenConstraint0subCACRL.crl",
4546 "third_party/nist-pkits/crls/pathLenConstraint1CACRL.crl",
4547 "third_party/nist-pkits/crls/pathLenConstraint1subCACRL.crl",
4548 "third_party/nist-pkits/crls/pathLenConstraint6CACRL.crl",
4549 "third_party/nist-pkits/crls/pathLenConstraint6subCA0CRL.crl",
4550 "third_party/nist-pkits/crls/pathLenConstraint6subCA1CRL.crl",
4551 "third_party/nist-pkits/crls/pathLenConstraint6subCA4CRL.crl",
4552 "third_party/nist-pkits/crls/pathLenConstraint6subsubCA00CRL.crl",
4553 "third_party/nist-pkits/crls/pathLenConstraint6subsubCA11CRL.crl",
4554 "third_party/nist-pkits/crls/pathLenConstraint6subsubCA41CRL.crl",
4555 "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA11XCRL.crl",
4556 "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA41XCRL.crl",
4557 "third_party/nist-pkits/crls/pre2000CRLnextUpdateCACRL.crl",
4558 "third_party/nist-pkits/crls/requireExplicitPolicy0CACRL.crl",
4559 "third_party/nist-pkits/crls/requireExplicitPolicy0subCACRL.crl",
4560 "third_party/nist-pkits/crls/requireExplicitPolicy0subsubCACRL.crl",
4561 "third_party/nist-pkits/crls/requireExplicitPolicy0subsubsubCACRL.crl",
4562 "third_party/nist-pkits/crls/requireExplicitPolicy10CACRL.crl",
4563 "third_party/nist-pkits/crls/requireExplicitPolicy10subCACRL.crl",
4564 "third_party/nist-pkits/crls/requireExplicitPolicy10subsubCACRL.crl",
4565 "third_party/nist-pkits/crls/requireExplicitPolicy10subsubsubCACRL.crl",
4566 "third_party/nist-pkits/crls/requireExplicitPolicy2CACRL.crl",
4567 "third_party/nist-pkits/crls/requireExplicitPolicy2subCACRL.crl",
4568 "third_party/nist-pkits/crls/requireExplicitPolicy4CACRL.crl",
4569 "third_party/nist-pkits/crls/requireExplicitPolicy4subCACRL.crl",
4570 "third_party/nist-pkits/crls/requireExplicitPolicy4subsubCACRL.crl",
4571 "third_party/nist-pkits/crls/requireExplicitPolicy4subsubsubCACRL.crl",
4572 "third_party/nist-pkits/crls/requireExplicitPolicy5CACRL.crl",
4573 "third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl",
4574 "third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl",
4575 "third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl",
4576 "third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl",
4577 "third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl",
4578 "third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl",
4579 "third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.crl",
4580 ]
sdefresneb0a31642016-03-18 11:04:454581 outputs = [
4582 "{{bundle_resources_dir}}/" +
4583 "{{source_root_relative_dir}}/{{source_file_part}}",
4584 ]
4585}
4586
dpranke64df2832015-07-31 22:33:364587test("net_unittests") {
ckrasic73f7240b2017-01-24 00:06:454588 sources = [
4589 "android/cellular_signal_strength_unittest.cc",
4590 "android/dummy_spnego_authenticator.cc",
4591 "android/dummy_spnego_authenticator.h",
4592 "android/http_auth_negotiate_android_unittest.cc",
4593 "android/network_change_notifier_android_unittest.cc",
4594 "android/network_library_unittest.cc",
4595 "android/traffic_stats_unittest.cc",
4596 "base/address_family_unittest.cc",
4597 "base/address_list_unittest.cc",
4598 "base/address_tracker_linux_unittest.cc",
4599 "base/arena_unittest.cc",
4600 "base/backoff_entry_serializer_unittest.cc",
4601 "base/backoff_entry_unittest.cc",
4602 "base/chunked_upload_data_stream_unittest.cc",
4603 "base/data_url_unittest.cc",
4604 "base/directory_lister_unittest.cc",
4605 "base/directory_listing_unittest.cc",
4606 "base/elements_upload_data_stream_unittest.cc",
4607 "base/escape_unittest.cc",
4608 "base/expiring_cache_unittest.cc",
4609 "base/file_stream_unittest.cc",
4610 "base/filename_util_unittest.cc",
Bence Békyd5c16edf2017-08-04 17:32:304611 "base/hex_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:454612 "base/host_mapping_rules_unittest.cc",
4613 "base/host_port_pair_unittest.cc",
4614 "base/int128_unittest.cc",
fayangbaec8ff52017-01-28 03:26:124615 "base/interval_set_test.cc",
4616 "base/interval_test.cc",
ckrasic73f7240b2017-01-24 00:06:454617 "base/ip_address_unittest.cc",
4618 "base/ip_endpoint_unittest.cc",
4619 "base/ip_pattern_unittest.cc",
4620 "base/layered_network_delegate_unittest.cc",
4621 "base/lookup_string_in_fixed_set_unittest.cc",
4622 "base/mime_sniffer_unittest.cc",
4623 "base/mime_util_unittest.cc",
mgershaf9a9232017-04-13 20:19:034624 "base/mock_network_change_notifier.cc",
4625 "base/mock_network_change_notifier.h",
ckrasic73f7240b2017-01-24 00:06:454626 "base/network_activity_monitor_unittest.cc",
4627 "base/network_change_notifier_unittest.cc",
4628 "base/network_change_notifier_win_unittest.cc",
Sergey Ulanov5c33235ae2017-07-06 23:55:074629 "base/network_interfaces_getifaddrs_unittest.cc",
Sergey Ulanov5bb07d32017-07-12 04:14:544630 "base/network_interfaces_linux_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454631 "base/network_interfaces_unittest.cc",
Sergey Ulanov5bb07d32017-07-12 04:14:544632 "base/network_interfaces_win_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454633 "base/network_throttle_manager_impl_unittest.cc",
4634 "base/parse_number_unittest.cc",
4635 "base/percentile_estimator_unittest.cc",
4636 "base/port_util_unittest.cc",
4637 "base/prioritized_dispatcher_unittest.cc",
4638 "base/priority_queue_unittest.cc",
4639 "base/registry_controlled_domains/registry_controlled_domain_unittest.cc",
4640 "base/sdch_dictionary_unittest.cc",
4641 "base/sdch_manager_unittest.cc",
4642 "base/static_cookie_policy_unittest.cc",
4643 "base/test_completion_callback_unittest.cc",
4644 "base/test_proxy_delegate.cc",
4645 "base/test_proxy_delegate.h",
4646 "base/upload_bytes_element_reader_unittest.cc",
4647 "base/upload_file_element_reader_unittest.cc",
4648 "base/url_util_unittest.cc",
4649 "cert/caching_cert_verifier_unittest.cc",
4650 "cert/cert_verifier_unittest.cc",
estarkd91e0b22017-01-31 01:10:284651 "cert/cert_verify_proc_android_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454652 "cert/cert_verify_proc_ios_unittest.cc",
eromance65aff2017-02-04 00:05:324653 "cert/cert_verify_proc_mac_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454654 "cert/cert_verify_proc_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454655 "cert/crl_set_unittest.cc",
4656 "cert/ct_known_logs_unittest.cc",
4657 "cert/ct_log_response_parser_unittest.cc",
4658 "cert/ct_log_verifier_unittest.cc",
4659 "cert/ct_objects_extractor_unittest.cc",
4660 "cert/ct_policy_enforcer_unittest.cc",
4661 "cert/ct_serialization_unittest.cc",
4662 "cert/ev_root_ca_metadata_unittest.cc",
4663 "cert/internal/cert_issuer_source_aia_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454664 "cert/internal/cert_issuer_source_static_unittest.cc",
4665 "cert/internal/cert_issuer_source_sync_unittest.h",
4666 "cert/internal/certificate_policies_unittest.cc",
4667 "cert/internal/extended_key_usage_unittest.cc",
Matt Mueller9e3ad3032017-09-14 19:29:314668 "cert/internal/general_names_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454669 "cert/internal/name_constraints_unittest.cc",
eromanc95383ac2017-05-26 19:37:304670 "cert/internal/nist_pkits_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454671 "cert/internal/nist_pkits_unittest.h",
Eric Romana2f6f55d2017-09-07 23:34:574672 "cert/internal/ocsp_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454673 "cert/internal/parse_certificate_unittest.cc",
4674 "cert/internal/parse_name_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454675 "cert/internal/parsed_certificate_unittest.cc",
4676 "cert/internal/path_builder_pkits_unittest.cc",
4677 "cert/internal/path_builder_unittest.cc",
4678 "cert/internal/path_builder_verify_certificate_chain_unittest.cc",
4679 "cert/internal/signature_algorithm_unittest.cc",
Eric Roman5431d702017-07-26 01:58:184680 "cert/internal/simple_path_builder_delegate_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454681 "cert/internal/test_helpers.cc",
4682 "cert/internal/test_helpers.h",
4683 "cert/internal/trust_store_collection_unittest.cc",
mattmea4ed8232017-02-28 23:13:234684 "cert/internal/trust_store_mac_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454685 "cert/internal/trust_store_nss_unittest.cc",
4686 "cert/internal/verify_certificate_chain_pkits_unittest.cc",
4687 "cert/internal/verify_certificate_chain_typed_unittest.h",
4688 "cert/internal/verify_certificate_chain_unittest.cc",
4689 "cert/internal/verify_name_match_unittest.cc",
4690 "cert/internal/verify_signed_data_unittest.cc",
4691 "cert/jwk_serializer_unittest.cc",
4692 "cert/merkle_audit_proof_unittest.cc",
4693 "cert/merkle_tree_leaf_unittest.cc",
4694 "cert/multi_log_ct_verifier_unittest.cc",
4695 "cert/multi_threaded_cert_verifier_unittest.cc",
4696 "cert/nss_cert_database_chromeos_unittest.cc",
4697 "cert/nss_cert_database_unittest.cc",
4698 "cert/nss_profile_filter_chromeos_unittest.cc",
4699 "cert/pem_tokenizer_unittest.cc",
4700 "cert/signed_certificate_timestamp_unittest.cc",
4701 "cert/sth_distributor_unittest.cc",
4702 "cert/test_root_certs_unittest.cc",
4703 "cert/x509_cert_types_unittest.cc",
4704 "cert/x509_certificate_unittest.cc",
mattm1a07e632017-05-16 05:55:504705 "cert/x509_util_ios_and_mac_unittest.cc",
Matt Mueller10684c92017-08-09 07:24:094706 "cert/x509_util_nss_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454707 "cert/x509_util_unittest.cc",
4708 "cert_net/cert_net_fetcher_impl_unittest.cc",
4709 "cert_net/nss_ocsp_unittest.cc",
4710 "cookies/canonical_cookie_unittest.cc",
4711 "cookies/cookie_constants_unittest.cc",
4712 "cookies/cookie_monster_unittest.cc",
4713 "cookies/cookie_store_unittest.cc",
4714 "cookies/cookie_util_unittest.cc",
4715 "cookies/parsed_cookie_unittest.cc",
4716 "der/encode_values_unittest.cc",
4717 "der/input_unittest.cc",
4718 "der/parse_values_unittest.cc",
4719 "der/parser_unittest.cc",
Maks Orlovich036fd1f2017-08-07 17:51:114720 "disk_cache/backend_cleanup_tracker_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454721 "disk_cache/backend_unittest.cc",
4722 "disk_cache/blockfile/addr_unittest.cc",
4723 "disk_cache/blockfile/bitmap_unittest.cc",
4724 "disk_cache/blockfile/block_files_unittest.cc",
4725 "disk_cache/blockfile/mapped_file_unittest.cc",
4726 "disk_cache/blockfile/stats_unittest.cc",
4727 "disk_cache/blockfile/storage_block_unittest.cc",
4728 "disk_cache/cache_util_unittest.cc",
4729 "disk_cache/entry_unittest.cc",
4730 "disk_cache/simple/simple_experiment_unittest.cc",
4731 "disk_cache/simple/simple_index_file_unittest.cc",
4732 "disk_cache/simple/simple_index_unittest.cc",
4733 "disk_cache/simple/simple_test_util.cc",
4734 "disk_cache/simple/simple_test_util.h",
4735 "disk_cache/simple/simple_util_unittest.cc",
4736 "disk_cache/simple/simple_version_upgrade_unittest.cc",
4737 "dns/address_sorter_posix_unittest.cc",
4738 "dns/address_sorter_unittest.cc",
4739 "dns/dns_config_service_posix_unittest.cc",
4740 "dns/dns_config_service_unittest.cc",
4741 "dns/dns_config_service_win_unittest.cc",
4742 "dns/dns_hosts_unittest.cc",
4743 "dns/dns_query_unittest.cc",
4744 "dns/dns_response_unittest.cc",
4745 "dns/dns_session_unittest.cc",
juliatuttle8ff9d1532017-01-31 17:06:314746 "dns/dns_socket_pool_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454747 "dns/dns_transaction_unittest.cc",
4748 "dns/dns_util_unittest.cc",
4749 "dns/host_cache_unittest.cc",
4750 "dns/host_resolver_impl_unittest.cc",
4751 "dns/host_resolver_mojo_unittest.cc",
4752 "dns/mapped_host_resolver_unittest.cc",
4753 "dns/mdns_cache_unittest.cc",
4754 "dns/mdns_client_unittest.cc",
4755 "dns/mojo_host_resolver_impl_unittest.cc",
4756 "dns/record_parsed_unittest.cc",
4757 "dns/record_rdata_unittest.cc",
4758 "dns/serial_worker_unittest.cc",
4759 "extras/sqlite/sqlite_channel_id_store_unittest.cc",
4760 "extras/sqlite/sqlite_persistent_cookie_store_unittest.cc",
4761 "filter/brotli_source_stream_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454762 "filter/filter_source_stream_unittest.cc",
4763 "filter/gzip_source_stream_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454764 "ftp/ftp_auth_cache_unittest.cc",
4765 "ftp/ftp_ctrl_response_buffer_unittest.cc",
4766 "ftp/ftp_directory_listing_parser_ls_unittest.cc",
4767 "ftp/ftp_directory_listing_parser_unittest.cc",
4768 "ftp/ftp_directory_listing_parser_unittest.h",
4769 "ftp/ftp_directory_listing_parser_vms_unittest.cc",
4770 "ftp/ftp_directory_listing_parser_windows_unittest.cc",
4771 "ftp/ftp_network_transaction_unittest.cc",
4772 "ftp/ftp_util_unittest.cc",
4773 "http/bidirectional_stream_unittest.cc",
wangyix64ccc57c2017-06-01 23:14:164774 "http/broken_alternative_services_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454775 "http/http_auth_cache_unittest.cc",
4776 "http/http_auth_challenge_tokenizer_unittest.cc",
4777 "http/http_auth_controller_unittest.cc",
4778 "http/http_auth_filter_unittest.cc",
4779 "http/http_auth_gssapi_posix_unittest.cc",
4780 "http/http_auth_handler_basic_unittest.cc",
4781 "http/http_auth_handler_digest_unittest.cc",
4782 "http/http_auth_handler_factory_unittest.cc",
4783 "http/http_auth_handler_mock.cc",
4784 "http/http_auth_handler_mock.h",
4785 "http/http_auth_handler_negotiate_unittest.cc",
zentarob89acda42017-07-14 01:28:574786 "http/http_auth_handler_ntlm_portable_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454787 "http/http_auth_handler_unittest.cc",
4788 "http/http_auth_multi_round_parse_unittest.cc",
4789 "http/http_auth_preferences_unittest.cc",
4790 "http/http_auth_sspi_win_unittest.cc",
4791 "http/http_auth_unittest.cc",
4792 "http/http_basic_state_unittest.cc",
4793 "http/http_byte_range_unittest.cc",
4794 "http/http_cache_lookup_manager_unittest.cc",
4795 "http/http_cache_unittest.cc",
shivanishac6582e12017-07-14 22:18:194796 "http/http_cache_writers_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454797 "http/http_chunked_decoder_unittest.cc",
4798 "http/http_content_disposition_unittest.cc",
4799 "http/http_log_util_unittest.cc",
4800 "http/http_network_layer_unittest.cc",
4801 "http/http_network_transaction_ssl_unittest.cc",
4802 "http/http_network_transaction_unittest.cc",
4803 "http/http_proxy_client_socket_pool_unittest.cc",
4804 "http/http_request_headers_unittest.cc",
4805 "http/http_response_body_drainer_unittest.cc",
4806 "http/http_response_headers_unittest.cc",
4807 "http/http_response_info_unittest.cc",
4808 "http/http_security_headers_unittest.cc",
4809 "http/http_server_properties_impl_unittest.cc",
4810 "http/http_server_properties_manager_unittest.cc",
4811 "http/http_status_code_unittest.cc",
4812 "http/http_stream_factory_impl_job_controller_unittest.cc",
4813 "http/http_stream_factory_impl_request_unittest.cc",
4814 "http/http_stream_factory_impl_unittest.cc",
4815 "http/http_stream_parser_unittest.cc",
4816 "http/http_util_unittest.cc",
4817 "http/http_vary_data_unittest.cc",
4818 "http/mock_allow_http_auth_preferences.cc",
4819 "http/mock_allow_http_auth_preferences.h",
4820 "http/mock_gssapi_library_posix.cc",
4821 "http/mock_gssapi_library_posix.h",
4822 "http/mock_http_cache.cc",
4823 "http/mock_http_cache.h",
4824 "http/mock_sspi_library_win.cc",
4825 "http/mock_sspi_library_win.h",
4826 "http/transport_security_persister_unittest.cc",
4827 "http/transport_security_state_unittest.cc",
4828 "http/url_security_manager_unittest.cc",
4829 "http2/decoder/decode_buffer_test.cc",
4830 "http2/decoder/decode_http2_structures_test.cc",
4831 "http2/decoder/frame_decoder_state_test_util.cc",
4832 "http2/decoder/frame_decoder_state_test_util.h",
ckrasic73f7240b2017-01-24 00:06:454833 "http2/decoder/http2_frame_decoder_listener_test_util.cc",
4834 "http2/decoder/http2_frame_decoder_listener_test_util.h",
4835 "http2/decoder/http2_frame_decoder_test.cc",
4836 "http2/decoder/http2_structure_decoder_test.cc",
bnc0f57ba22017-01-27 02:43:364837 "http2/decoder/http2_structure_decoder_test_util.cc",
ckrasic73f7240b2017-01-24 00:06:454838 "http2/decoder/http2_structure_decoder_test_util.h",
4839 "http2/decoder/payload_decoders/altsvc_payload_decoder_test.cc",
4840 "http2/decoder/payload_decoders/continuation_payload_decoder_test.cc",
4841 "http2/decoder/payload_decoders/data_payload_decoder_test.cc",
4842 "http2/decoder/payload_decoders/goaway_payload_decoder_test.cc",
4843 "http2/decoder/payload_decoders/headers_payload_decoder_test.cc",
4844 "http2/decoder/payload_decoders/payload_decoder_base_test_util.cc",
4845 "http2/decoder/payload_decoders/payload_decoder_base_test_util.h",
4846 "http2/decoder/payload_decoders/ping_payload_decoder_test.cc",
4847 "http2/decoder/payload_decoders/priority_payload_decoder_test.cc",
4848 "http2/decoder/payload_decoders/push_promise_payload_decoder_test.cc",
4849 "http2/decoder/payload_decoders/rst_stream_payload_decoder_test.cc",
4850 "http2/decoder/payload_decoders/settings_payload_decoder_test.cc",
4851 "http2/decoder/payload_decoders/unknown_payload_decoder_test.cc",
4852 "http2/decoder/payload_decoders/window_update_payload_decoder_test.cc",
4853 "http2/hpack/decoder/hpack_block_collector.cc",
4854 "http2/hpack/decoder/hpack_block_collector.h",
4855 "http2/hpack/decoder/hpack_block_decoder_test.cc",
4856 "http2/hpack/decoder/hpack_decoder_state_test.cc",
4857 "http2/hpack/decoder/hpack_decoder_string_buffer_test.cc",
4858 "http2/hpack/decoder/hpack_decoder_tables_test.cc",
Bence Békybad9ef92017-07-28 13:36:274859 "http2/hpack/decoder/hpack_decoder_test.cc",
ckrasic73f7240b2017-01-24 00:06:454860 "http2/hpack/decoder/hpack_entry_collector.cc",
4861 "http2/hpack/decoder/hpack_entry_collector.h",
4862 "http2/hpack/decoder/hpack_entry_decoder_test.cc",
4863 "http2/hpack/decoder/hpack_entry_type_decoder_test.cc",
4864 "http2/hpack/decoder/hpack_string_collector.cc",
4865 "http2/hpack/decoder/hpack_string_collector.h",
4866 "http2/hpack/decoder/hpack_string_decoder_test.cc",
4867 "http2/hpack/decoder/hpack_varint_decoder_test.cc",
4868 "http2/hpack/decoder/hpack_whole_entry_buffer_test.cc",
ckrasic73f7240b2017-01-24 00:06:454869 "http2/hpack/hpack_string_test.cc",
4870 "http2/hpack/http2_hpack_constants_test.cc",
Bence Békyd1406522017-08-07 18:05:084871 "http2/hpack/huffman/hpack_huffman_decoder_test.cc",
ckrasic73f7240b2017-01-24 00:06:454872 "http2/hpack/tools/hpack_block_builder.cc",
4873 "http2/hpack/tools/hpack_block_builder.h",
4874 "http2/hpack/tools/hpack_block_builder_test.cc",
4875 "http2/hpack/tools/hpack_example.cc",
4876 "http2/hpack/tools/hpack_example.h",
4877 "http2/http2_constants_test.cc",
4878 "http2/http2_constants_test_util.cc",
4879 "http2/http2_constants_test_util.h",
4880 "http2/http2_structures_test.cc",
4881 "http2/http2_structures_test_util.cc",
4882 "http2/http2_structures_test_util.h",
Bence Békye53090e2017-07-12 02:58:404883 "http2/platform/api/http2_string_utils_test.cc",
bnc85ec3b102017-03-16 22:48:284884 "http2/test_tools/frame_parts.cc",
4885 "http2/test_tools/frame_parts.h",
4886 "http2/test_tools/frame_parts_collector.cc",
4887 "http2/test_tools/frame_parts_collector.h",
4888 "http2/test_tools/frame_parts_collector_listener.cc",
4889 "http2/test_tools/frame_parts_collector_listener.h",
ckrasic73f7240b2017-01-24 00:06:454890 "http2/tools/failure.cc",
4891 "http2/tools/failure.h",
4892 "http2/tools/http2_frame_builder.cc",
4893 "http2/tools/http2_frame_builder.h",
4894 "http2/tools/http2_random.cc",
4895 "http2/tools/http2_random.h",
4896 "http2/tools/random_decoder_test.cc",
4897 "http2/tools/random_decoder_test.h",
4898 "http2/tools/random_util.cc",
4899 "http2/tools/random_util.h",
4900 "log/file_net_log_observer_unittest.cc",
4901 "log/net_log_capture_mode_unittest.cc",
4902 "log/net_log_unittest.cc",
4903 "log/net_log_util_unittest.cc",
4904 "log/trace_net_log_observer_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454905 "nqe/effective_connection_type_unittest.cc",
tbansalf38471f2017-03-04 01:07:044906 "nqe/event_creator_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454907 "nqe/network_qualities_prefs_manager_unittest.cc",
tbansal35bdb0b2017-05-04 16:23:334908 "nqe/network_quality_estimator_params_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454909 "nqe/network_quality_estimator_unittest.cc",
tbansal82edab42017-06-19 05:55:254910 "nqe/network_quality_estimator_util_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454911 "nqe/network_quality_store_unittest.cc",
4912 "nqe/observation_buffer_unittest.cc",
tbansal180587c2017-02-16 15:13:234913 "nqe/socket_watcher_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454914 "nqe/throughput_analyzer_unittest.cc",
zentarob89acda42017-07-14 01:28:574915 "ntlm/des_unittest.cc",
Zentaro Kavanagh4e3aae82017-08-07 22:35:304916 "ntlm/md4_unittest.cc",
zentarob74795682017-07-14 00:58:224917 "ntlm/ntlm_buffer_reader_unittest.cc",
4918 "ntlm/ntlm_buffer_writer_unittest.cc",
Zentaro Kavanaghdd556612017-08-03 20:27:044919 "ntlm/ntlm_client_unittest.cc",
zentarob89acda42017-07-14 01:28:574920 "ntlm/ntlm_test_data.h",
4921 "ntlm/ntlm_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454922 "proxy/dhcp_proxy_script_adapter_fetcher_win_unittest.cc",
4923 "proxy/dhcp_proxy_script_fetcher_factory_unittest.cc",
4924 "proxy/dhcp_proxy_script_fetcher_win_unittest.cc",
4925 "proxy/mojo_proxy_resolver_factory_impl_unittest.cc",
4926 "proxy/mojo_proxy_resolver_impl_unittest.cc",
4927 "proxy/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc",
4928 "proxy/multi_threaded_proxy_resolver_unittest.cc",
4929 "proxy/network_delegate_error_observer_unittest.cc",
4930 "proxy/proxy_bypass_rules_unittest.cc",
4931 "proxy/proxy_config_service_android_unittest.cc",
4932 "proxy/proxy_config_service_linux_unittest.cc",
4933 "proxy/proxy_config_service_win_unittest.cc",
4934 "proxy/proxy_config_unittest.cc",
4935 "proxy/proxy_info_unittest.cc",
4936 "proxy/proxy_list_unittest.cc",
4937 "proxy/proxy_resolver_factory_mojo_unittest.cc",
4938 "proxy/proxy_resolver_v8_tracing_unittest.cc",
4939 "proxy/proxy_resolver_v8_tracing_wrapper_unittest.cc",
4940 "proxy/proxy_resolver_v8_unittest.cc",
4941 "proxy/proxy_script_decider_unittest.cc",
4942 "proxy/proxy_script_fetcher_impl_unittest.cc",
4943 "proxy/proxy_server_unittest.cc",
4944 "proxy/proxy_service_mojo_unittest.cc",
4945 "proxy/proxy_service_unittest.cc",
mmenke93be9ca2017-05-23 16:29:134946 "proxy/test_mojo_proxy_resolver_factory.cc",
4947 "proxy/test_mojo_proxy_resolver_factory.h",
ckrasic73f7240b2017-01-24 00:06:454948 "quic/chromium/bidirectional_stream_quic_impl_unittest.cc",
4949 "quic/chromium/crypto/proof_test_chromium.cc",
4950 "quic/chromium/crypto/proof_verifier_chromium_test.cc",
ckrasic73f7240b2017-01-24 00:06:454951 "quic/chromium/mock_crypto_client_stream_factory.cc",
4952 "quic/chromium/mock_crypto_client_stream_factory.h",
ckrasic73f7240b2017-01-24 00:06:454953 "quic/chromium/mock_quic_data.cc",
4954 "quic/chromium/mock_quic_data.h",
4955 "quic/chromium/network_connection_unittest.cc",
4956 "quic/chromium/properties_based_quic_server_info_test.cc",
4957 "quic/chromium/quic_address_mismatch_test.cc",
4958 "quic/chromium/quic_chromium_alarm_factory_test.cc",
4959 "quic/chromium/quic_chromium_client_session_peer.cc",
4960 "quic/chromium/quic_chromium_client_session_peer.h",
4961 "quic/chromium/quic_chromium_client_session_test.cc",
4962 "quic/chromium/quic_chromium_client_stream_test.cc",
4963 "quic/chromium/quic_chromium_connection_helper_test.cc",
4964 "quic/chromium/quic_clock_skew_detector_test.cc",
4965 "quic/chromium/quic_end_to_end_unittest.cc",
4966 "quic/chromium/quic_http_stream_test.cc",
4967 "quic/chromium/quic_http_utils_test.cc",
4968 "quic/chromium/quic_network_transaction_unittest.cc",
Yixin Wang0d2c6b7e12017-08-16 21:12:554969 "quic/chromium/quic_proxy_client_socket_unittest.cc",
rch99387f92017-04-03 21:12:044970 "quic/chromium/quic_stream_factory_peer.cc",
4971 "quic/chromium/quic_stream_factory_peer.h",
ckrasic73f7240b2017-01-24 00:06:454972 "quic/chromium/quic_stream_factory_test.cc",
4973 "quic/chromium/quic_test_packet_maker.cc",
4974 "quic/chromium/quic_test_packet_maker.h",
4975 "quic/chromium/quic_utils_chromium_test.cc",
rch1e369362017-04-03 19:44:514976 "quic/chromium/test_task_runner.cc",
4977 "quic/chromium/test_task_runner.h",
ckrasic73f7240b2017-01-24 00:06:454978 "quic/core/congestion_control/bandwidth_sampler_test.cc",
4979 "quic/core/congestion_control/bbr_sender_test.cc",
4980 "quic/core/congestion_control/cubic_bytes_test.cc",
4981 "quic/core/congestion_control/cubic_test.cc",
4982 "quic/core/congestion_control/general_loss_algorithm_test.cc",
4983 "quic/core/congestion_control/hybrid_slow_start_test.cc",
4984 "quic/core/congestion_control/pacing_sender_test.cc",
4985 "quic/core/congestion_control/prr_sender_test.cc",
4986 "quic/core/congestion_control/rtt_stats_test.cc",
4987 "quic/core/congestion_control/send_algorithm_test.cc",
4988 "quic/core/congestion_control/tcp_cubic_sender_bytes_test.cc",
4989 "quic/core/congestion_control/tcp_cubic_sender_packets_test.cc",
4990 "quic/core/congestion_control/windowed_filter_test.cc",
4991 "quic/core/crypto/aes_128_gcm_12_decrypter_test.cc",
4992 "quic/core/crypto/aes_128_gcm_12_encrypter_test.cc",
4993 "quic/core/crypto/cert_compressor_test.cc",
4994 "quic/core/crypto/chacha20_poly1305_decrypter_test.cc",
4995 "quic/core/crypto/chacha20_poly1305_encrypter_test.cc",
4996 "quic/core/crypto/channel_id_test.cc",
4997 "quic/core/crypto/common_cert_set_test.cc",
4998 "quic/core/crypto/crypto_framer_test.cc",
4999 "quic/core/crypto/crypto_handshake_message_test.cc",
5000 "quic/core/crypto/crypto_secret_boxer_test.cc",
5001 "quic/core/crypto/crypto_server_test.cc",
5002 "quic/core/crypto/crypto_utils_test.cc",
5003 "quic/core/crypto/curve25519_key_exchange_test.cc",
ckrasic73f7240b2017-01-24 00:06:455004 "quic/core/crypto/null_decrypter_test.cc",
5005 "quic/core/crypto/null_encrypter_test.cc",
5006 "quic/core/crypto/p256_key_exchange_test.cc",
5007 "quic/core/crypto/quic_compressed_certs_cache_test.cc",
5008 "quic/core/crypto/quic_crypto_client_config_test.cc",
5009 "quic/core/crypto/quic_crypto_server_config_test.cc",
5010 "quic/core/crypto/quic_random_test.cc",
Ryan Hamilton88151482017-09-06 14:55:455011 "quic/core/crypto/quic_tls_adapter_test.cc",
ckrasic73f7240b2017-01-24 00:06:455012 "quic/core/frames/quic_frames_test.cc",
vasilvv8b7782e2017-05-12 01:52:035013 "quic/core/packet_number_indexed_queue_test.cc",
ckrasic73f7240b2017-01-24 00:06:455014 "quic/core/quic_alarm_test.cc",
5015 "quic/core/quic_arena_scoped_ptr_test.cc",
5016 "quic/core/quic_bandwidth_test.cc",
5017 "quic/core/quic_buffered_packet_store_test.cc",
5018 "quic/core/quic_client_promised_info_test.cc",
5019 "quic/core/quic_client_push_promise_index_test.cc",
5020 "quic/core/quic_config_test.cc",
5021 "quic/core/quic_connection_test.cc",
5022 "quic/core/quic_crypto_client_stream_test.cc",
5023 "quic/core/quic_crypto_server_stream_test.cc",
5024 "quic/core/quic_crypto_stream_test.cc",
5025 "quic/core/quic_data_writer_test.cc",
5026 "quic/core/quic_error_codes_test.cc",
5027 "quic/core/quic_flow_controller_test.cc",
5028 "quic/core/quic_framer_test.cc",
5029 "quic/core/quic_header_list_test.cc",
5030 "quic/core/quic_headers_stream_test.cc",
xunjielicc6b1d02017-06-05 16:51:405031 "quic/test_tools/quic_test_utils_test.cc",
5032 "quic/test_tools/simulator/quic_endpoint_test.cc",
5033 "quic/test_tools/simulator/simulator_test.cc",
ckrasic73f7240b2017-01-24 00:06:455034
5035 # "quic/core/quic_multipath_received_packet_manager_test.cc",
5036 # "quic/core/quic_multipath_transmissions_map_test.cc",
5037 "quic/core/quic_one_block_arena_test.cc",
5038 "quic/core/quic_packet_creator_test.cc",
5039 "quic/core/quic_packet_generator_test.cc",
5040 "quic/core/quic_received_packet_manager_test.cc",
5041 "quic/core/quic_sent_packet_manager_test.cc",
5042 "quic/core/quic_server_id_test.cc",
5043 "quic/core/quic_server_session_base_test.cc",
5044 "quic/core/quic_session_test.cc",
5045 "quic/core/quic_simple_buffer_allocator_test.cc",
5046 "quic/core/quic_socket_address_coder_test.cc",
5047 "quic/core/quic_spdy_stream_test.cc",
fayangdf3cb2b2017-07-05 15:03:385048 "quic/core/quic_stream_send_buffer_test.cc",
ckrasic73f7240b2017-01-24 00:06:455049 "quic/core/quic_stream_sequencer_buffer_test.cc",
5050 "quic/core/quic_stream_sequencer_test.cc",
5051 "quic/core/quic_stream_test.cc",
5052 "quic/core/quic_sustained_bandwidth_recorder_test.cc",
5053 "quic/core/quic_tag_test.cc",
5054 "quic/core/quic_time_test.cc",
5055 "quic/core/quic_unacked_packet_map_test.cc",
5056 "quic/core/quic_utils_test.cc",
5057 "quic/core/quic_version_manager_test.cc",
5058 "quic/core/quic_versions_test.cc",
5059 "quic/core/quic_write_blocked_list_test.cc",
5060 "quic/core/spdy_utils_test.cc",
fayange992f9f2017-03-03 13:38:325061 "quic/platform/api/quic_endian_test.cc",
mpw3f859532017-02-16 20:00:315062 "quic/platform/api/quic_hostname_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:455063 "quic/platform/api/quic_lru_cache_test.cc",
Fan Yang62cae30f2017-09-01 20:50:515064 "quic/platform/api/quic_mem_slice_span_test.cc",
5065 "quic/platform/api/quic_mem_slice_test.cc",
ckrasic73f7240b2017-01-24 00:06:455066 "quic/platform/api/quic_reference_counted_test.cc",
5067 "quic/platform/api/quic_str_cat_test.cc",
5068 "quic/platform/api/quic_text_utils_test.cc",
fayang32caee402017-02-13 21:00:085069 "quic/platform/api/quic_url_test.cc",
ckrasic73f7240b2017-01-24 00:06:455070 "quic/platform/impl/quic_chromium_clock_test.cc",
jri3c1d5ca2017-06-02 04:52:235071 "quic/quartc/quartc_session_test.cc",
5072 "quic/quartc/quartc_stream_test.cc",
ckrasic73f7240b2017-01-24 00:06:455073 "quic/test_tools/crypto_test_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:455074 "socket/client_socket_pool_base_unittest.cc",
5075 "socket/mock_client_socket_pool_manager.cc",
5076 "socket/mock_client_socket_pool_manager.h",
5077 "socket/sequenced_socket_data_unittest.cc",
5078 "socket/socket_bio_adapter_unittest.cc",
5079 "socket/socks5_client_socket_unittest.cc",
5080 "socket/socks_client_socket_pool_unittest.cc",
5081 "socket/socks_client_socket_unittest.cc",
5082 "socket/ssl_client_socket_pool_unittest.cc",
5083 "socket/ssl_client_socket_unittest.cc",
5084 "socket/ssl_server_socket_unittest.cc",
5085 "socket/tcp_client_socket_unittest.cc",
5086 "socket/tcp_server_socket_unittest.cc",
5087 "socket/tcp_socket_unittest.cc",
5088 "socket/transport_client_socket_pool_test_util.cc",
5089 "socket/transport_client_socket_pool_test_util.h",
5090 "socket/transport_client_socket_pool_unittest.cc",
5091 "socket/transport_client_socket_unittest.cc",
5092 "socket/udp_socket_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455093 "socket/websocket_endpoint_lock_manager_unittest.cc",
5094 "socket/websocket_transport_client_socket_pool_unittest.cc",
bnc8f8f7d302017-04-24 18:08:065095 "spdy/chromium/bidirectional_stream_spdy_impl_unittest.cc",
5096 "spdy/chromium/buffered_spdy_framer_unittest.cc",
5097 "spdy/chromium/header_coalescer_test.cc",
5098 "spdy/chromium/http2_priority_dependencies_unittest.cc",
5099 "spdy/chromium/spdy_buffer_unittest.cc",
5100 "spdy/chromium/spdy_http_stream_unittest.cc",
5101 "spdy/chromium/spdy_http_utils_unittest.cc",
5102 "spdy/chromium/spdy_log_util_unittest.cc",
5103 "spdy/chromium/spdy_network_transaction_unittest.cc",
5104 "spdy/chromium/spdy_proxy_client_socket_unittest.cc",
5105 "spdy/chromium/spdy_read_queue_unittest.cc",
5106 "spdy/chromium/spdy_session_pool_unittest.cc",
5107 "spdy/chromium/spdy_session_test_util.cc",
5108 "spdy/chromium/spdy_session_test_util.h",
5109 "spdy/chromium/spdy_session_unittest.cc",
5110 "spdy/chromium/spdy_stream_test_util.cc",
5111 "spdy/chromium/spdy_stream_test_util.h",
5112 "spdy/chromium/spdy_stream_unittest.cc",
5113 "spdy/chromium/spdy_write_queue_unittest.cc",
5114 "spdy/core/array_output_buffer.cc",
5115 "spdy/core/array_output_buffer.h",
5116 "spdy/core/array_output_buffer_test.cc",
5117 "spdy/core/fuzzing/hpack_fuzz_util_test.cc",
Dianna Hu33dcd6c2017-07-24 15:01:465118 "spdy/core/hpack/hpack_decoder_adapter_test.cc",
bnc8f8f7d302017-04-24 18:08:065119 "spdy/core/hpack/hpack_encoder_test.cc",
5120 "spdy/core/hpack/hpack_entry_test.cc",
5121 "spdy/core/hpack/hpack_header_table_test.cc",
bnc8f8f7d302017-04-24 18:08:065122 "spdy/core/hpack/hpack_huffman_table_test.cc",
bnc8f8f7d302017-04-24 18:08:065123 "spdy/core/hpack/hpack_output_stream_test.cc",
5124 "spdy/core/hpack/hpack_round_trip_test.cc",
5125 "spdy/core/hpack/hpack_static_table_test.cc",
bnc8f8f7d302017-04-24 18:08:065126 "spdy/core/mock_spdy_framer_visitor.cc",
5127 "spdy/core/mock_spdy_framer_visitor.h",
5128 "spdy/core/priority_write_scheduler_test.cc",
5129 "spdy/core/spdy_alt_svc_wire_format_test.cc",
5130 "spdy/core/spdy_deframer_visitor.cc",
5131 "spdy/core/spdy_deframer_visitor.h",
5132 "spdy/core/spdy_deframer_visitor_test.cc",
5133 "spdy/core/spdy_frame_builder_test.cc",
5134 "spdy/core/spdy_frame_reader_test.cc",
5135 "spdy/core/spdy_framer_test.cc",
5136 "spdy/core/spdy_header_block_test.cc",
bnc8f8f7d302017-04-24 18:08:065137 "spdy/core/spdy_no_op_visitor.cc",
5138 "spdy/core/spdy_no_op_visitor.h",
5139 "spdy/core/spdy_pinnable_buffer_piece_test.cc",
5140 "spdy/core/spdy_prefixed_buffer_reader_test.cc",
5141 "spdy/core/spdy_protocol_test.cc",
5142 "spdy/core/spdy_protocol_test_utils.cc",
5143 "spdy/core/spdy_protocol_test_utils.h",
5144 "spdy/core/spdy_test_utils.cc",
5145 "spdy/core/spdy_test_utils.h",
bnced7be41d2017-03-28 17:30:245146 "spdy/platform/api/spdy_string_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:455147 "ssl/channel_id_service_unittest.cc",
mattm436ccfe2017-06-19 20:24:085148 "ssl/client_cert_identity_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455149 "ssl/client_cert_store_mac_unittest.cc",
5150 "ssl/client_cert_store_nss_unittest.cc",
5151 "ssl/client_cert_store_unittest-inl.h",
5152 "ssl/client_cert_store_win_unittest.cc",
5153 "ssl/default_channel_id_store_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455154 "ssl/ssl_cipher_suite_names_unittest.cc",
5155 "ssl/ssl_client_auth_cache_unittest.cc",
5156 "ssl/ssl_client_session_cache_unittest.cc",
5157 "ssl/ssl_config_service_unittest.cc",
5158 "ssl/ssl_config_unittest.cc",
5159 "ssl/ssl_connection_status_flags_unittest.cc",
5160 "ssl/ssl_platform_key_android_unittest.cc",
5161 "ssl/ssl_platform_key_mac_unittest.cc",
5162 "ssl/ssl_platform_key_nss_unittest.cc",
5163 "ssl/ssl_platform_key_util_unittest.cc",
davidbend6d1e4d2017-05-10 16:49:015164 "ssl/ssl_platform_key_win_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455165 "test/embedded_test_server/embedded_test_server_unittest.cc",
5166 "test/embedded_test_server/http_request_unittest.cc",
5167 "test/embedded_test_server/http_response_unittest.cc",
5168 "test/python_utils_unittest.cc",
5169 "test/run_all_unittests.cc",
5170 "third_party/nist-pkits/pkits_testcases-inl.h",
5171 "tools/content_decoder_tool/content_decoder_tool.cc",
5172 "tools/content_decoder_tool/content_decoder_tool.h",
5173 "tools/content_decoder_tool/content_decoder_tool_unittest.cc",
5174 "tools/quic/quic_simple_client_test.cc",
ckrasic73f7240b2017-01-24 00:06:455175 "tools/tld_cleanup/tld_cleanup_util_unittest.cc",
5176 "url_request/report_sender_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455177 "url_request/url_fetcher_impl_unittest.cc",
5178 "url_request/url_fetcher_response_writer_unittest.cc",
mmenkee2ad9922017-06-08 20:27:365179 "url_request/url_request_context_builder_mojo_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455180 "url_request/url_request_context_builder_unittest.cc",
5181 "url_request/url_request_context_unittest.cc",
5182 "url_request/url_request_data_job_unittest.cc",
5183 "url_request/url_request_file_dir_job_unittest.cc",
5184 "url_request/url_request_file_job_unittest.cc",
5185 "url_request/url_request_filter_unittest.cc",
5186 "url_request/url_request_ftp_job_unittest.cc",
5187 "url_request/url_request_http_job_unittest.cc",
5188 "url_request/url_request_job_factory_impl_unittest.cc",
5189 "url_request/url_request_job_unittest.cc",
5190 "url_request/url_request_quic_unittest.cc",
5191 "url_request/url_request_simple_job_unittest.cc",
5192 "url_request/url_request_throttler_simulation_unittest.cc",
5193 "url_request/url_request_throttler_test_support.cc",
5194 "url_request/url_request_throttler_test_support.h",
5195 "url_request/url_request_throttler_unittest.cc",
5196 "url_request/url_request_unittest.cc",
5197 "url_request/view_cache_helper_unittest.cc",
5198 ]
mattm1a07e632017-05-16 05:55:505199 net_unfiltered_sources = []
dpranke64df2832015-07-31 22:33:365200
5201 configs += [
5202 "//build/config:precompiled_headers",
5203
5204 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
5205 "//build/config/compiler:no_size_t_to_int_warning",
5206 ]
5207 defines = []
5208
5209 deps = [
dpranke64df2832015-07-31 22:33:365210 ":net",
xunjielicc6b1d02017-06-05 16:51:405211 ":quic_test_tools",
dpranke64df2832015-07-31 22:33:365212 ":simple_quic_tools",
5213 ":test_support",
5214 "//base",
dpranke64df2832015-07-31 22:33:365215 "//base/third_party/dynamic_annotations",
5216 "//crypto",
5217 "//crypto:platform",
5218 "//crypto:test_support",
dpranke64df2832015-07-31 22:33:365219 "//net/base/registry_controlled_domains",
eranm9657f672017-05-05 12:25:195220 "//net/data/ssl/certificate_transparency:ct_log_list",
martijnd369e6702017-03-21 18:36:455221 "//net/http:transport_security_state_unittest_data",
dpranke64df2832015-07-31 22:33:365222 "//testing/gmock",
5223 "//testing/gtest",
thomasanderson77bec4d2017-03-20 07:09:255224 "//third_party/protobuf:protobuf_lite",
dpranke64df2832015-07-31 22:33:365225 "//third_party/zlib",
5226 "//url",
kapishnikovabe280e2016-04-14 19:07:165227 "//url:url_features",
dpranke64df2832015-07-31 22:33:365228 ]
mmenkefd9d15c2017-06-29 13:45:545229
5230 if (enable_reporting) {
5231 sources += [
5232 "reporting/reporting_browsing_data_remover_unittest.cc",
5233 "reporting/reporting_cache_unittest.cc",
5234 "reporting/reporting_delivery_agent_unittest.cc",
5235 "reporting/reporting_endpoint_manager_unittest.cc",
5236 "reporting/reporting_garbage_collector_unittest.cc",
5237 "reporting/reporting_header_parser_unittest.cc",
5238 "reporting/reporting_network_change_observer_unittest.cc",
5239 "reporting/reporting_persister_unittest.cc",
5240 "reporting/reporting_service_unittest.cc",
5241 "reporting/reporting_test_util.cc",
5242 "reporting/reporting_test_util.h",
5243 "reporting/reporting_uploader_unittest.cc",
5244 ]
5245 }
5246
ckrasic73f7240b2017-01-24 00:06:455247 if (!is_proto_quic) {
5248 deps += [
5249 ":extras",
5250 "//base:i18n",
5251 "//sql",
5252 ]
5253 } else {
5254 sources -= [
5255 "extras/sqlite/sqlite_channel_id_store_unittest.cc",
5256 "extras/sqlite/sqlite_persistent_cookie_store_unittest.cc",
5257 ]
5258 }
dpranke64df2832015-07-31 22:33:365259
jbudorick944eb922016-06-20 15:38:305260 data = []
svaldez2135be52016-04-20 16:34:535261 data_deps = [
5262 "third_party/nist-pkits/",
5263 ]
dpranke64df2832015-07-31 22:33:365264
5265 if (is_linux || is_mac || is_win) {
5266 deps += [
5267 "//third_party/pyftpdlib/",
5268 "//third_party/pywebsocket/",
5269 "//third_party/tlslite/",
5270 ]
mattm6586b432016-02-12 04:52:395271 data_deps += [
dpranke64df2832015-07-31 22:33:365272 "//third_party/pyftpdlib/",
5273 "//third_party/pywebsocket/",
5274 "//third_party/tlslite/",
5275 ]
5276 data += [
5277 "tools/testserver/",
5278 "//third_party/pyftpdlib/",
5279 "//third_party/pywebsocket/",
5280 "//third_party/tlslite/",
5281 "$root_out_dir/pyproto/google/",
dprankef497c7962015-07-31 19:46:235282 ]
5283 }
5284
dpranke64df2832015-07-31 22:33:365285 if (is_desktop_linux) {
5286 deps += [ ":epoll_quic_tools" ]
5287 }
5288 if (is_linux) {
ckrasic73f7240b2017-01-24 00:06:455289 sources += [
5290 "tools/quic/chlo_extractor_test.cc",
5291 "tools/quic/end_to_end_test.cc",
5292 "tools/quic/platform/impl/quic_epoll_clock_test.cc",
5293 "tools/quic/platform/impl/quic_socket_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:455294 "tools/quic/quic_client_test.cc",
5295 "tools/quic/quic_dispatcher_test.cc",
5296 "tools/quic/quic_epoll_alarm_factory_test.cc",
5297 "tools/quic/quic_epoll_connection_helper_test.cc",
5298 "tools/quic/quic_http_response_cache_test.cc",
5299 "tools/quic/quic_server_test.cc",
5300 "tools/quic/quic_simple_server_session_helper_test.cc",
5301 "tools/quic/quic_simple_server_session_test.cc",
5302 "tools/quic/quic_simple_server_stream_test.cc",
5303 "tools/quic/quic_simple_server_test.cc",
Ryan Hamiltonc4402302017-08-10 01:55:465304 "tools/quic/quic_spdy_client_session_test.cc",
ckrasic73f7240b2017-01-24 00:06:455305 "tools/quic/quic_spdy_client_stream_test.cc",
5306 "tools/quic/quic_spdy_server_stream_base_test.cc",
5307 "tools/quic/quic_time_wait_list_manager_test.cc",
5308 "tools/quic/stateless_rejector_test.cc",
ckrasic73f7240b2017-01-24 00:06:455309 ]
dpranke64df2832015-07-31 22:33:365310 deps += [
5311 ":epoll_quic_tools",
5312 ":epoll_server",
brettwbc8b2a22015-07-28 18:24:425313 ]
dpranke64df2832015-07-31 22:33:365314 }
[email protected]8a3f8242014-06-05 18:05:125315
dpranke64df2832015-07-31 22:33:365316 if (is_mac || is_ios) {
ckrasic73f7240b2017-01-24 00:06:455317 sources += [ "base/mac/url_conversions_unittest.mm" ]
dpranke64df2832015-07-31 22:33:365318 }
5319
mattmaf868e72016-09-23 23:25:205320 if (is_mac) {
5321 libs = [ "Security.framework" ]
5322 }
5323
dpranke64df2832015-07-31 22:33:365324 if (is_chromeos) {
5325 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ]
5326 }
5327
ckrasic73f7240b2017-01-24 00:06:455328 if (!is_proto_quic && v8_use_external_startup_data) {
dpranke64df2832015-07-31 22:33:365329 deps += [ "//gin" ]
5330 }
5331
zentarob74795682017-07-14 00:58:225332 if (is_win) {
5333 sources -= [
zentarob89acda42017-07-14 01:28:575334 "http/http_auth_handler_ntlm_portable_unittest.cc",
5335 "ntlm/des_unittest.cc",
Zentaro Kavanagh4e3aae82017-08-07 22:35:305336 "ntlm/md4_unittest.cc",
zentarob74795682017-07-14 00:58:225337 "ntlm/ntlm_buffer_reader_unittest.cc",
5338 "ntlm/ntlm_buffer_writer_unittest.cc",
Zentaro Kavanaghdd556612017-08-03 20:27:045339 "ntlm/ntlm_client_unittest.cc",
zentarob89acda42017-07-14 01:28:575340 "ntlm/ntlm_test_data.h",
5341 "ntlm/ntlm_unittest.cc",
zentarob74795682017-07-14 00:58:225342 ]
5343 }
5344
Sergey Ulanov2a0b0192017-08-31 23:09:405345 if (use_remote_test_server) {
5346 sources +=
5347 [ "test/spawned_test_server/remote_test_server_proxy_unittests.cc" ]
5348 }
5349
Sergey Ulanov7c0bcaf2017-08-28 19:03:265350 if (is_fuchsia) {
5351 use_test_server = true
5352 }
5353
dpranke64df2832015-07-31 22:33:365354 if (!use_nss_certs) {
5355 sources -= [
mattm9c63d442016-09-03 00:45:515356 "cert/internal/trust_store_nss_unittest.cc",
dpranke64df2832015-07-31 22:33:365357 "cert/nss_cert_database_unittest.cc",
Matt Mueller10684c92017-08-09 07:24:095358 "cert/x509_util_nss_unittest.cc",
dpranke64df2832015-07-31 22:33:365359 "ssl/client_cert_store_nss_unittest.cc",
davidben983d610b2016-12-14 19:35:405360 "ssl/ssl_platform_key_nss_unittest.cc",
[email protected]8a3f8242014-06-05 18:05:125361 ]
dpranke64df2832015-07-31 22:33:365362 if (is_chromeos) { # Already removed for all non-ChromeOS builds.
davidben2bcbc6b2015-04-22 02:36:415363 sources -= [
dpranke64df2832015-07-31 22:33:365364 "cert/nss_cert_database_chromeos_unittest.cc",
5365 "cert/nss_profile_filter_chromeos_unittest.cc",
davidben2bcbc6b2015-04-22 02:36:415366 ]
brettw43ae0e12015-07-14 22:12:365367 }
[email protected]8a3f8242014-06-05 18:05:125368 }
dpranke64df2832015-07-31 22:33:365369
dpranke64df2832015-07-31 22:33:365370 if (use_kerberos) {
5371 defines += [ "USE_KERBEROS" ]
5372 }
5373
5374 # These are excluded on Android, because the actual Kerberos support, which
5375 # these test, is in a separate app on Android.
5376 if (!use_kerberos || is_android) {
5377 sources -= [
5378 "http/http_auth_gssapi_posix_unittest.cc",
5379 "http/mock_gssapi_library_posix.cc",
5380 "http/mock_gssapi_library_posix.h",
5381 ]
5382 }
5383 if (!use_kerberos) {
5384 sources -= [ "http/http_auth_handler_negotiate_unittest.cc" ]
5385 }
5386
svaldez2135be52016-04-20 16:34:535387 if (!use_nss_certs) {
svaldeza1714ab2016-03-18 20:47:535388 # Only include this test when using NSS for cert verification.
dpranke64df2832015-07-31 22:33:365389 sources -= [ "cert_net/nss_ocsp_unittest.cc" ]
5390 }
5391
jbudorick1273a842016-04-01 19:50:055392 if (enable_websockets) {
ckrasic73f7240b2017-01-24 00:06:455393 sources += [
5394 "server/http_connection_unittest.cc",
5395 "server/http_server_response_info_unittest.cc",
5396 "server/http_server_unittest.cc",
5397 "server/web_socket_encoder_unittest.cc",
5398 "websockets/websocket_basic_stream_test.cc",
5399 "websockets/websocket_channel_test.cc",
5400 "websockets/websocket_deflate_parameters_test.cc",
5401 "websockets/websocket_deflate_predictor_impl_test.cc",
5402 "websockets/websocket_deflate_stream_test.cc",
5403 "websockets/websocket_deflater_test.cc",
5404 "websockets/websocket_end_to_end_test.cc",
5405 "websockets/websocket_errors_test.cc",
5406 "websockets/websocket_extension_parser_test.cc",
5407 "websockets/websocket_extension_test.cc",
5408 "websockets/websocket_frame_parser_test.cc",
5409 "websockets/websocket_frame_test.cc",
5410 "websockets/websocket_handshake_challenge_test.cc",
5411 "websockets/websocket_handshake_stream_create_helper_test.cc",
5412 "websockets/websocket_inflater_test.cc",
5413 "websockets/websocket_stream_cookie_test.cc",
5414 "websockets/websocket_stream_create_test_base.cc",
5415 "websockets/websocket_stream_create_test_base.h",
5416 "websockets/websocket_stream_test.cc",
5417 "websockets/websocket_test_util.cc",
5418 "websockets/websocket_test_util.h",
5419 ]
jbudorick1273a842016-04-01 19:50:055420 deps += [ ":http_server" ]
dpranke64df2832015-07-31 22:33:365421 }
5422
5423 if (disable_file_support) {
5424 sources -= [
5425 "base/directory_lister_unittest.cc",
Thiago Farinad673bb122016-01-06 23:18:165426 "base/directory_listing_unittest.cc",
shahriar.rostamia8c06daf2016-02-12 00:07:045427 "url_request/url_request_file_dir_job_unittest.cc",
dpranke64df2832015-07-31 22:33:365428 "url_request/url_request_file_job_unittest.cc",
5429 ]
5430 }
5431
5432 if (disable_ftp_support) {
5433 sources -= [
5434 "ftp/ftp_auth_cache_unittest.cc",
5435 "ftp/ftp_ctrl_response_buffer_unittest.cc",
5436 "ftp/ftp_directory_listing_parser_ls_unittest.cc",
dpranke64df2832015-07-31 22:33:365437 "ftp/ftp_directory_listing_parser_unittest.cc",
5438 "ftp/ftp_directory_listing_parser_unittest.h",
5439 "ftp/ftp_directory_listing_parser_vms_unittest.cc",
5440 "ftp/ftp_directory_listing_parser_windows_unittest.cc",
5441 "ftp/ftp_network_transaction_unittest.cc",
5442 "ftp/ftp_util_unittest.cc",
5443 "url_request/url_request_ftp_job_unittest.cc",
5444 ]
5445 }
5446
5447 if (!enable_built_in_dns) {
5448 sources -= [
5449 "dns/address_sorter_posix_unittest.cc",
5450 "dns/address_sorter_unittest.cc",
5451 ]
5452 }
5453
xunjieli905496a2015-08-31 15:51:175454 if (use_v8_in_net) {
mmenkee2ad9922017-06-08 20:27:365455 deps += [ ":net_with_v8" ]
dpranke64df2832015-07-31 22:33:365456 } else {
5457 sources -= [
5458 "proxy/proxy_resolver_v8_tracing_unittest.cc",
5459 "proxy/proxy_resolver_v8_tracing_wrapper_unittest.cc",
5460 "proxy/proxy_resolver_v8_unittest.cc",
5461 ]
5462 }
5463
mmenke93be9ca2017-05-23 16:29:135464 if (enable_net_mojo) {
dpranke64df2832015-07-31 22:33:365465 deps += [
5466 ":net_browser_services",
5467 ":net_utility_services",
rockotc637caf9b2016-02-10 09:57:085468 "//mojo/edk/system",
dpranke64df2832015-07-31 22:33:365469 ]
5470 } else {
5471 sources -= [
5472 "dns/host_resolver_mojo_unittest.cc",
5473 "dns/mojo_host_resolver_impl_unittest.cc",
5474 "proxy/mojo_proxy_resolver_factory_impl_unittest.cc",
5475 "proxy/mojo_proxy_resolver_impl_unittest.cc",
5476 "proxy/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc",
5477 "proxy/proxy_resolver_factory_mojo_unittest.cc",
5478 "proxy/proxy_service_mojo_unittest.cc",
mmenke93be9ca2017-05-23 16:29:135479 "proxy/test_mojo_proxy_resolver_factory.cc",
5480 "proxy/test_mojo_proxy_resolver_factory.h",
mmenkee2ad9922017-06-08 20:27:365481 "url_request/url_request_context_builder_mojo_unittest.cc",
dpranke64df2832015-07-31 22:33:365482 ]
5483 }
5484
5485 if (!enable_mdns) {
5486 sources -= [
5487 "dns/mdns_cache_unittest.cc",
5488 "dns/mdns_client_unittest.cc",
dpranke64df2832015-07-31 22:33:365489 ]
5490 }
5491
5492 if (is_ios) {
dpranke64df2832015-07-31 22:33:365493 sources -= [
5494 # TODO(droger): The following tests are disabled because the
5495 # implementation is missing or incomplete.
dpranke64df2832015-07-31 22:33:365496 "disk_cache/backend_unittest.cc",
5497 "disk_cache/blockfile/block_files_unittest.cc",
5498
5499 # Need to read input data files.
dpranke64df2832015-07-31 22:33:365500 "socket/ssl_server_socket_unittest.cc",
bnc8f8f7d302017-04-24 18:08:065501 "spdy/core/fuzzing/hpack_fuzz_util_test.cc",
dpranke64df2832015-07-31 22:33:365502
5503 # Need TestServer.
5504 "cert_net/cert_net_fetcher_impl_unittest.cc",
5505 "proxy/proxy_script_fetcher_impl_unittest.cc",
5506 "socket/ssl_client_socket_unittest.cc",
5507 "url_request/url_fetcher_impl_unittest.cc",
5508 "url_request/url_request_context_builder_unittest.cc",
5509
5510 # Needs GetAppOutput().
5511 "test/python_utils_unittest.cc",
dpranke64df2832015-07-31 22:33:365512 ]
mattm1a07e632017-05-16 05:55:505513 net_unfiltered_sources += [ "cert/x509_util_ios_and_mac_unittest.cc" ]
rsesek7d4ab4bc2016-07-22 17:35:135514
5515 bundle_deps = [ ":net_unittests_bundle_data" ]
dpranke64df2832015-07-31 22:33:365516 }
5517
Sergey Ulanov21dea152017-09-13 00:50:505518 if (enable_unix_sockets) {
5519 sources += [
5520 "socket/unix_domain_client_socket_posix_unittest.cc",
5521 "socket/unix_domain_server_socket_posix_unittest.cc",
5522 ]
5523 }
5524
Sergey Ulanov5c33235ae2017-07-06 23:55:075525 # Use getifaddrs() on POSIX platforms, except Linux and Android.
5526 if (!is_posix || is_linux || is_android) {
5527 sources -= [ "base/network_interfaces_getifaddrs_unittest.cc" ]
5528 }
5529
kapishnikovabe280e2016-04-14 19:07:165530 # Unit tests that aren't supported by the current ICU alternatives on Android.
5531 if (is_android && use_platform_icu_alternatives) {
5532 sources -= [
5533 "base/filename_util_unittest.cc",
5534 "base/url_util_unittest.cc",
5535 "cert/x509_certificate_unittest.cc",
5536 "proxy/proxy_resolver_v8_unittest.cc",
5537 "url_request/url_request_job_unittest.cc",
5538 ]
5539 }
5540
5541 # Unit tests that are not supported by the current ICU alternatives on iOS.
5542 if (is_ios && use_platform_icu_alternatives) {
5543 sources -= [
5544 "base/filename_util_unittest.cc",
5545 "base/url_util_unittest.cc",
5546 "cert/x509_certificate_unittest.cc",
5547 "http/http_auth_handler_basic_unittest.cc",
5548 "http/http_auth_handler_digest_unittest.cc",
5549 "http/http_auth_handler_factory_unittest.cc",
5550 "http/http_auth_unittest.cc",
5551 "http/http_content_disposition_unittest.cc",
5552 "http/http_network_transaction_unittest.cc",
5553 "http/http_proxy_client_socket_pool_unittest.cc",
5554 "socket/ssl_client_socket_pool_unittest.cc",
bnc8f8f7d302017-04-24 18:08:065555 "spdy/chromium/spdy_network_transaction_unittest.cc",
5556 "spdy/chromium/spdy_proxy_client_socket_unittest.cc",
kapishnikovabe280e2016-04-14 19:07:165557 "url_request/url_request_job_unittest.cc",
5558 "url_request/url_request_unittest.cc",
5559 ]
5560 }
5561
5562 # Exclude brotli test if the support for brotli is disabled.
xunjielif54f24a02016-11-04 15:51:545563 if (disable_brotli_filter) {
xunjieli084a9292016-09-23 18:15:045564 sources -= [ "filter/brotli_source_stream_unittest.cc" ]
kapishnikovabe280e2016-04-14 19:07:165565 }
5566
dpranke64df2832015-07-31 22:33:365567 if (is_android) {
agrieve732db3a2016-04-26 19:18:195568 data_deps += [ "//net/tools/testserver:testserver_py" ]
agrieve97176362015-12-01 16:36:195569 deps += [
5570 ":net_test_jni_headers",
agrievea5517aa2015-10-23 03:03:455571 "//base:base_java_unittest_support",
5572 "//net/android:net_java",
agrievea5517aa2015-10-23 03:03:455573 "//net/android:net_java_test_support",
Yipeng Wangff2db2d2017-06-16 13:54:525574 "//net/android:net_java_test_support_provider",
agrieve97176362015-12-01 16:36:195575 "//net/android:net_javatests",
agrievea5517aa2015-10-23 03:03:455576 "//net/android:net_unittests_apk_resources",
agrieve97176362015-12-01 16:36:195577
5578 # TODO(mmenke): This depends on test_support_base, which depends on
5579 # icu. Figure out a way to remove that dependency.
5580 "//testing/android/native_test:native_test_native_code",
pkotwicz8c7027d2015-11-11 06:30:075581 "//v8:v8_external_startup_data_assets",
agrievea5517aa2015-10-23 03:03:455582 ]
5583 android_manifest = "//net/android/unittest_support/AndroidManifest.xml"
dpranke64df2832015-07-31 22:33:365584 set_sources_assignment_filter([])
Sergey Ulanov5bb07d32017-07-12 04:14:545585 sources += [
5586 "base/address_tracker_linux_unittest.cc",
5587 "base/network_interfaces_linux_unittest.cc",
5588 ]
dpranke64df2832015-07-31 22:33:365589 set_sources_assignment_filter(sources_assignment_filter)
agrieve3ac557f02016-04-12 15:52:005590 shard_timeout = 300
dpranke64df2832015-07-31 22:33:365591 }
5592
dpranke64df2832015-07-31 22:33:365593 # Symbols for crashes when running tests on swarming.
5594 if (symbol_level > 0) {
5595 if (is_win) {
5596 data += [ "$root_out_dir/net_unittests.exe.pdb" ]
5597 } else if (is_mac) {
dprankede2945b82016-04-15 22:14:135598 # TODO(crbug.com/330301): make this conditional on mac_strip_release.
5599 # data += [ "$root_out_dir/net_unittests.dSYM/" ]
dpranke64df2832015-07-31 22:33:365600 }
5601 }
maksim.sisovc69619d2016-05-20 19:23:555602
5603 if (is_win) {
davidbend6d1e4d2017-05-10 16:49:015604 libs = [
5605 "iphlpapi.lib",
5606 "ncrypt.lib",
5607 ]
maksim.sisovc69619d2016-05-20 19:23:555608 }
davidben983d610b2016-12-14 19:35:405609
5610 if (is_chromecast && use_nss_certs) {
mattm436ccfe2017-06-19 20:24:085611 sources -= [
5612 "ssl/client_cert_store_nss_unittest.cc",
5613 "ssl/ssl_platform_key_nss_unittest.cc",
5614 ]
davidben983d610b2016-12-14 19:35:405615 }
martijnb9aca9d2017-03-31 19:56:155616
5617 # Include transport_security_state_generator tests.
5618 if (host_toolchain == current_toolchain) {
5619 deps += [ "//net/tools/transport_security_state_generator:transport_security_state_generator_test_sources" ]
5620 }
mattm1a07e632017-05-16 05:55:505621
5622 # Add back some sources that were otherwise filtered out.
5623 set_sources_assignment_filter([])
5624 sources += net_unfiltered_sources
5625 set_sources_assignment_filter(sources_assignment_filter)
dpranke64df2832015-07-31 22:33:365626}
5627
5628# !is_android && !is_win && !is_mac
ckrasic73f7240b2017-01-24 00:06:455629if (!is_ios && !is_proto_quic) {
sdefresne3001f172016-03-16 10:30:035630 # TODO(crbug.com/594965): this should be converted to "app" template and
5631 # enabled on iOS too.
5632 executable("net_perftests") {
5633 testonly = true
5634 sources = [
5635 "base/mime_sniffer_perftest.cc",
5636 "cookies/cookie_monster_perftest.cc",
gavinpc28fe1122016-05-13 17:49:055637 "disk_cache/disk_cache_perftest.cc",
sdefresne3001f172016-03-16 10:30:035638 "extras/sqlite/sqlite_persistent_cookie_store_perftest.cc",
tfarina5dd13c22016-11-16 12:08:265639 "socket/udp_socket_perftest.cc",
xunjielicc6b1d02017-06-05 16:51:405640 "url_request/url_request_quic_perftest.cc",
sdefresne3001f172016-03-16 10:30:035641 ]
[email protected]8a3f8242014-06-05 18:05:125642
sdefresne3001f172016-03-16 10:30:035643 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
5644 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
5645 deps = [
5646 ":extras",
5647 ":net",
xunjielicc6b1d02017-06-05 16:51:405648 ":quic_test_tools",
5649 ":simple_quic_tools",
sdefresne3001f172016-03-16 10:30:035650 ":test_support",
5651 "//base",
5652 "//base:i18n",
5653 "//base/test:test_support_perf",
thomasanderson84fa8b02017-05-18 23:38:475654 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:075655 "//build/win:default_exe_manifest",
sdefresne3001f172016-03-16 10:30:035656 "//testing/gtest",
xunjielicc6b1d02017-06-05 16:51:405657 "//testing/perf",
sdefresne3001f172016-03-16 10:30:035658 "//url",
5659 ]
xunjieli5a866842017-06-09 18:16:205660 data = [
5661 # Needed for isolate script to execute.
5662 "//testing/scripts/common.py",
5663 "//testing/xvfb.py",
5664 "//testing/scripts/run_gtest_perf_test.py",
5665 "//tools/perf/generate_legacy_perf_dashboard_json.py",
5666 ]
sdefresne3001f172016-03-16 10:30:035667 if (enable_websockets) {
5668 sources += [ "websockets/websocket_frame_perftest.cc" ]
5669 }
rockot9c67e5f2015-03-12 20:01:215670
sebmarchanda6de3462016-12-14 21:14:015671 # Some linker failures have been observed for this target on the Win64
5672 # continuous builder, see crbug.com/659369.
5673 # TODO(sebmarchand): Remove this once we have some data.
5674 if (is_win && linkrepro_root_dir != "") {
5675 ldflags = [ "/LINKREPRO:" + linkrepro_root_dir + "/" + target_name ]
5676 }
rockot9c67e5f2015-03-12 20:01:215677 }
rockot9c67e5f2015-03-12 20:01:215678}
mefff34b822016-01-11 15:28:085679
eromanfe8659e2016-03-02 23:47:025680# Fuzzers
5681
mmenke35a30012016-07-15 19:20:125682# This has a global (InitGlobals) that must always be linked in, so
5683# must be a source set instead of a static library.
5684source_set("net_fuzzer_test_support") {
eroman02b4fe562016-03-04 12:15:165685 testonly = true
5686
5687 sources = [
csharrison37ef9852016-08-23 19:00:195688 "base/fuzzer_test_support.cc",
mmenkea7da0712016-11-21 21:12:315689 "dns/fuzzed_host_resolver.cc",
5690 "dns/fuzzed_host_resolver.h",
xunjieli75837332016-10-31 16:51:265691 "filter/fuzzed_source_stream.cc",
5692 "filter/fuzzed_source_stream.h",
tfarina5dd13c22016-11-16 12:08:265693 "socket/fuzzed_datagram_client_socket.cc",
5694 "socket/fuzzed_datagram_client_socket.h",
morlovich5e6e19b2017-01-30 14:38:165695 "socket/fuzzed_server_socket.cc",
5696 "socket/fuzzed_server_socket.h",
mmenke99b57172016-04-14 20:44:335697 "socket/fuzzed_socket.cc",
5698 "socket/fuzzed_socket.h",
mmenkec951d412016-04-28 19:05:225699 "socket/fuzzed_socket_factory.cc",
5700 "socket/fuzzed_socket_factory.h",
eroman02b4fe562016-03-04 12:15:165701 ]
csharrisonf30fc95f2016-08-19 21:43:445702 public_deps = [
5703 "//base/test:test_support",
5704 ]
eroman02b4fe562016-03-04 12:15:165705 deps = [
5706 "//base",
5707 "//base:i18n",
mmenke99b57172016-04-14 20:44:335708 "//net",
eroman02b4fe562016-03-04 12:15:165709 ]
5710}
5711
csharrisonaa314dc2016-04-29 20:15:375712fuzzer_test("net_data_job_fuzzer") {
5713 sources = [
5714 "url_request/url_request_data_job_fuzzer.cc",
5715 ]
5716 deps = [
5717 ":net_fuzzer_test_support",
5718 ":test_support",
5719 "//base",
5720 "//net",
5721 ]
5722}
5723
mmenke5552a6a2016-03-28 23:11:595724fuzzer_test("net_mime_sniffer_fuzzer") {
5725 sources = [
5726 "base/mime_sniffer_fuzzer.cc",
5727 ]
5728 deps = [
5729 ":net_fuzzer_test_support",
5730 "//base",
5731 "//net",
5732 ]
mmoroz4a561d32016-07-07 17:45:125733 dict = "data/fuzzer_dictionaries/net_mime_sniffer_fuzzer.dict"
mmenke5552a6a2016-03-28 23:11:595734}
5735
mmoroz565e8df22016-03-04 18:17:205736fuzzer_test("net_parse_proxy_list_pac_fuzzer") {
eromane6264fd2016-03-02 22:46:305737 sources = [
5738 "proxy/parse_proxy_list_pac_fuzzer.cc",
5739 ]
5740 deps = [
eroman02b4fe562016-03-04 12:15:165741 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305742 "//net",
5743 ]
5744}
5745
mmoroz565e8df22016-03-04 18:17:205746fuzzer_test("net_parse_proxy_list_fuzzer") {
eromane6264fd2016-03-02 22:46:305747 sources = [
5748 "proxy/parse_proxy_list_fuzzer.cc",
5749 ]
5750 deps = [
eroman02b4fe562016-03-04 12:15:165751 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305752 "//net",
5753 ]
5754}
5755
mmoroz565e8df22016-03-04 18:17:205756fuzzer_test("net_parse_proxy_bypass_rules_fuzzer") {
eromane6264fd2016-03-02 22:46:305757 sources = [
5758 "proxy/parse_proxy_bypass_rules_fuzzer.cc",
5759 ]
5760 deps = [
eroman02b4fe562016-03-04 12:15:165761 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305762 "//net",
5763 ]
5764}
5765
mmoroz565e8df22016-03-04 18:17:205766fuzzer_test("net_parse_proxy_rules_fuzzer") {
eromane6264fd2016-03-02 22:46:305767 sources = [
5768 "proxy/parse_proxy_rules_fuzzer.cc",
5769 ]
5770 deps = [
eroman02b4fe562016-03-04 12:15:165771 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305772 "//net",
5773 ]
metzman31db75e2016-08-03 22:33:275774 dict = "data/fuzzer_dictionaries/net_parse_proxy_bypass_rules_fuzzer.dict"
eromane6264fd2016-03-02 22:46:305775}
5776
mmoroz565e8df22016-03-04 18:17:205777fuzzer_test("net_parse_data_url_fuzzer") {
eromane6264fd2016-03-02 22:46:305778 sources = [
5779 "base/parse_data_url_fuzzer.cc",
5780 ]
5781 deps = [
eroman02b4fe562016-03-04 12:15:165782 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305783 "//base",
5784 "//net",
5785 ]
mmoroz4a561d32016-07-07 17:45:125786 dict = "data/fuzzer_dictionaries/net_parse_data_url_fuzzer.dict"
eromane6264fd2016-03-02 22:46:305787}
5788
mmoroz565e8df22016-03-04 18:17:205789fuzzer_test("net_parse_ip_pattern_fuzzer") {
eromane6264fd2016-03-02 22:46:305790 sources = [
5791 "base/parse_ip_pattern_fuzzer.cc",
5792 ]
5793 deps = [
eroman02b4fe562016-03-04 12:15:165794 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305795 "//net",
5796 ]
5797}
5798
mmoroz565e8df22016-03-04 18:17:205799fuzzer_test("net_get_domain_and_registry_fuzzer") {
eromane6264fd2016-03-02 22:46:305800 sources = [
5801 "base/registry_controlled_domains/get_domain_and_registry_fuzzer.cc",
5802 ]
5803 deps = [
eroman02b4fe562016-03-04 12:15:165804 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305805 "//base",
eromane6264fd2016-03-02 22:46:305806 "//net",
5807 ]
mmoroz4a561d32016-07-07 17:45:125808 dict = "data/fuzzer_dictionaries/net_get_domain_and_registry_fuzzer.dict"
eromane6264fd2016-03-02 22:46:305809}
5810
mattmafe43b82016-04-28 20:40:545811fuzzer_test("net_cert_verify_name_match_fuzzer") {
5812 sources = [
5813 "cert/internal/verify_name_match_fuzzer.cc",
5814 ]
5815 deps = [
5816 ":net_fuzzer_test_support",
5817 "//base",
5818 "//net",
5819 ]
5820}
5821
mattm2c637da42016-04-28 02:55:595822fuzzer_test("net_cert_normalize_name_fuzzer") {
5823 sources = [
5824 "cert/internal/verify_name_match_normalizename_fuzzer.cc",
5825 ]
5826 deps = [
5827 "//base",
5828 "//net",
5829 ]
5830}
5831
mattmafe43b82016-04-28 20:40:545832fuzzer_test("net_cert_verify_name_in_subtree_fuzzer") {
5833 sources = [
5834 "cert/internal/verify_name_match_verifynameinsubtree_fuzzer.cc",
5835 ]
5836 deps = [
5837 ":net_fuzzer_test_support",
5838 "//base",
5839 "//net",
5840 ]
5841}
5842
nharper85d3b6f2016-04-28 20:58:195843fuzzer_test("net_cert_parse_certificate_fuzzer") {
5844 sources = [
5845 "cert/internal/parse_certificate_fuzzer.cc",
5846 ]
5847 deps = [
5848 "//base",
5849 "//net",
5850 ]
5851}
5852
mmoroz565e8df22016-03-04 18:17:205853fuzzer_test("net_parse_cookie_line_fuzzer") {
eromane6264fd2016-03-02 22:46:305854 sources = [
5855 "cookies/parse_cookie_line_fuzzer.cc",
5856 ]
5857 deps = [
eroman02b4fe562016-03-04 12:15:165858 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305859 "//net",
5860 ]
5861}
5862
mmoroz565e8df22016-03-04 18:17:205863fuzzer_test("net_dns_record_fuzzer") {
eromanfe8659e2016-03-02 23:47:025864 sources = [
5865 "dns/dns_record_fuzzer.cc",
5866 ]
5867 deps = [
eroman02b4fe562016-03-04 12:15:165868 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:025869 "//base",
5870 "//net",
5871 ]
mmoroz4a561d32016-07-07 17:45:125872 dict = "data/fuzzer_dictionaries/net_dns_record_fuzzer.dict"
eromanfe8659e2016-03-02 23:47:025873}
5874
zhongyi273af9f2016-04-28 18:46:345875fuzzer_test("net_dns_hosts_parse_fuzzer") {
5876 sources = [
5877 "dns/dns_hosts_parse_fuzzer.cc",
5878 ]
5879 deps = [
5880 ":net_fuzzer_test_support",
5881 "//base",
5882 "//net",
5883 ]
mmoroz4a561d32016-07-07 17:45:125884 dict = "data/fuzzer_dictionaries/net_dns_hosts_parse_fuzzer.dict"
zhongyi273af9f2016-04-28 18:46:345885}
5886
mmenke91c17162016-06-02 16:03:235887fuzzer_test("net_host_resolver_impl_fuzzer") {
5888 sources = [
mmenke91c17162016-06-02 16:03:235889 "dns/host_resolver_impl_fuzzer.cc",
5890 ]
5891 deps = [
5892 ":net_fuzzer_test_support",
5893 ":test_support",
5894 "//base",
5895 "//net",
5896 ]
mmoroz4a561d32016-07-07 17:45:125897 dict = "data/fuzzer_dictionaries/net_host_resolver_impl_fuzzer.dict"
mmenke91c17162016-06-02 16:03:235898}
5899
mmenke44e8e9c2016-03-29 18:38:575900fuzzer_test("net_http_stream_parser_fuzzer") {
5901 sources = [
5902 "http/http_stream_parser_fuzzer.cc",
5903 ]
5904 deps = [
5905 ":net_fuzzer_test_support",
5906 ":test_support",
5907 "//base",
5908 "//net",
5909 ]
mmoroz4a561d32016-07-07 17:45:125910 dict = "data/fuzzer_dictionaries/net_http_stream_parser_fuzzer.dict"
mmenke44e8e9c2016-03-29 18:38:575911}
5912
Zentaro Kavanaghdd556612017-08-03 20:27:045913fuzzer_test("net_ntlm_ntlm_client_fuzzer") {
5914 sources = [
5915 "ntlm/ntlm_client_fuzzer.cc",
5916 ]
5917 deps = [
5918 ":net_fuzzer_test_support",
5919 ":test_support",
5920 "//base",
5921 "//net",
5922 "//net:net_unittests",
5923 ]
5924 dict = "data/fuzzer_dictionaries/net_ntlm_ntlm_client_fuzzer.dict"
5925 seed_corpus = "data/fuzzer_data/ntlm_client_fuzzer/"
5926}
5927
xunjielid5ffeaf2016-11-01 15:22:005928if (!disable_brotli_filter) {
5929 fuzzer_test("net_brotli_source_stream_fuzzer") {
5930 sources = [
5931 "filter/brotli_source_stream_fuzzer.cc",
5932 ]
5933 deps = [
5934 ":net_fuzzer_test_support",
5935 ":test_support",
5936 "//base",
5937 "//net",
5938 ]
5939 }
5940}
5941
xunjieli75837332016-10-31 16:51:265942fuzzer_test("net_gzip_source_stream_fuzzer") {
5943 sources = [
5944 "filter/gzip_source_stream_fuzzer.cc",
5945 ]
5946 deps = [
5947 ":net_fuzzer_test_support",
5948 ":test_support",
5949 "//base",
5950 "//net",
5951 ]
5952}
5953
mmoroz565e8df22016-03-04 18:17:205954fuzzer_test("net_ftp_ctrl_response_fuzzer") {
eromanfe8659e2016-03-02 23:47:025955 sources = [
5956 "ftp/ftp_ctrl_response_fuzzer.cc",
5957 ]
5958 deps = [
eroman02b4fe562016-03-04 12:15:165959 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:025960 "//base",
5961 "//net",
5962 ]
5963}
5964
mmoroz565e8df22016-03-04 18:17:205965fuzzer_test("net_ftp_directory_listing_fuzzer") {
eromanfe8659e2016-03-02 23:47:025966 sources = [
5967 "ftp/ftp_directory_listing_fuzzer.cc",
5968 ]
5969 deps = [
eroman02b4fe562016-03-04 12:15:165970 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:025971 "//base",
eromanfe8659e2016-03-02 23:47:025972 "//net",
5973 ]
5974}
5975
mmoroz565e8df22016-03-04 18:17:205976fuzzer_test("net_unescape_url_component_fuzzer") {
eromanfe8659e2016-03-02 23:47:025977 sources = [
5978 "base/unescape_url_component_fuzzer.cc",
5979 ]
5980 deps = [
eroman02b4fe562016-03-04 12:15:165981 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:025982 "//base",
5983 "//net",
5984 ]
mmoroz34eb0082016-03-11 14:32:015985 dict = "base/unescape_url_component_fuzzer.dict"
mmoroz062a4a62016-04-12 09:02:335986 libfuzzer_options = [ "max_len = 2048" ]
eromanfe8659e2016-03-02 23:47:025987}
5988
ricea7b870e72016-09-01 04:41:045989fuzzer_test("net_websocket_deflate_stream_fuzzer") {
5990 sources = [
5991 "websockets/websocket_deflate_stream_fuzzer.cc",
5992 ]
5993 deps = [
5994 ":net_fuzzer_test_support",
5995 "//net",
5996 ]
5997 dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict"
5998 libfuzzer_options = [ "max_len=512" ]
5999}
6000
riceaf9dcc092016-09-13 12:42:006001fuzzer_test("net_websocket_extension_parser_fuzzer") {
6002 sources = [
6003 "websockets/websocket_extension_parser_fuzzer.cc",
6004 ]
6005 deps = [
6006 ":net_fuzzer_test_support",
6007 "//net",
6008 ]
6009 dict = "data/fuzzer_dictionaries/net_websocket_extension_parser_fuzzer.dict"
6010 libfuzzer_options = [ "max_len = 256" ]
6011}
6012
mmoroz565e8df22016-03-04 18:17:206013fuzzer_test("net_websocket_frame_parser_fuzzer") {
eromanfe8659e2016-03-02 23:47:026014 sources = [
6015 "websockets/websocket_frame_parser_fuzzer.cc",
6016 ]
6017 deps = [
eroman02b4fe562016-03-04 12:15:166018 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026019 "//net",
6020 ]
mmoroz4a561d32016-07-07 17:45:126021 dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict"
ricea105ae612016-09-08 08:00:076022 libfuzzer_options = [ "max_len=256" ]
eromanfe8659e2016-03-02 23:47:026023}
6024
mmoroz565e8df22016-03-04 18:17:206025fuzzer_test("net_http_chunked_decoder_fuzzer") {
eromanfe8659e2016-03-02 23:47:026026 sources = [
6027 "http/http_chunked_decoder_fuzzer.cc",
6028 ]
6029 deps = [
eroman02b4fe562016-03-04 12:15:166030 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026031 "//net",
6032 ]
6033}
6034
mmenke8e9314bc2016-04-15 21:45:026035fuzzer_test("net_http_proxy_client_socket_fuzzer") {
6036 sources = [
6037 "http/http_proxy_client_socket_fuzzer.cc",
6038 ]
6039 deps = [
6040 ":net_fuzzer_test_support",
6041 ":test_support",
6042 "//base",
6043 "//net",
6044 ]
mmoroz4a561d32016-07-07 17:45:126045 dict = "data/fuzzer_dictionaries/net_http_proxy_client_socket_fuzzer.dict"
mmenke8e9314bc2016-04-15 21:45:026046}
6047
mmoroz9299ef9b2016-09-01 17:37:096048fuzzer_test("net_parse_url_hostname_to_address_fuzzer") {
6049 sources = [
6050 "base/parse_url_hostname_to_address_fuzzer.cc",
6051 ]
6052 deps = [
6053 ":net_fuzzer_test_support",
6054 "//base",
6055 "//net",
6056 ]
6057 libfuzzer_options = [ "max_len=512" ]
6058 seed_corpus = "data/fuzzer_data/hostnames/"
6059}
6060
mmoroz565e8df22016-03-04 18:17:206061fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") {
eromanfe8659e2016-03-02 23:47:026062 sources = [
rchd4db7c152016-07-29 21:58:126063 "quic/core/quic_crypto_framer_parse_message_fuzzer.cc",
eromanfe8659e2016-03-02 23:47:026064 ]
6065 deps = [
eroman02b4fe562016-03-04 12:15:166066 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026067 "//base",
6068 "//net",
6069 ]
6070}
mmenke99b57172016-04-14 20:44:336071
6072fuzzer_test("net_socks_client_socket_fuzzer") {
6073 sources = [
6074 "socket/socks_client_socket_fuzzer.cc",
6075 ]
6076 deps = [
6077 ":net_fuzzer_test_support",
6078 ":test_support",
6079 "//base",
6080 "//net",
6081 ]
6082}
6083
6084fuzzer_test("net_socks5_client_socket_fuzzer") {
6085 sources = [
6086 "socket/socks5_client_socket_fuzzer.cc",
6087 ]
6088 deps = [
6089 ":net_fuzzer_test_support",
6090 ":test_support",
6091 "//base",
6092 "//net",
6093 ]
6094}
mmenkec951d412016-04-28 19:05:226095
mmenkea7da0712016-11-21 21:12:316096fuzzer_test("net_url_request_ftp_fuzzer") {
6097 sources = [
6098 "url_request/url_request_ftp_fuzzer.cc",
6099 ]
6100 deps = [
6101 ":net_fuzzer_test_support",
6102 ":test_support",
6103 "//base",
6104 "//net",
6105 ]
6106 dict = "data/fuzzer_dictionaries/net_url_request_ftp_fuzzer.dict"
6107 seed_corpus = "data/fuzzer_data/net_url_request_ftp_fuzzer/"
6108}
6109
mmenkec951d412016-04-28 19:05:226110fuzzer_test("net_url_request_fuzzer") {
6111 sources = [
6112 "url_request/url_request_fuzzer.cc",
6113 ]
6114 deps = [
6115 ":net_fuzzer_test_support",
6116 ":test_support",
6117 "//base",
6118 "//net",
6119 ]
mmoroz4a561d32016-07-07 17:45:126120 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict"
mmenkec951d412016-04-28 19:05:226121}
csharrison88d2a612016-09-09 16:58:546122
6123fuzzer_test("net_auth_challenge_tokenizer_fuzzer") {
6124 sources = [
6125 "http/http_auth_challenge_tokenizer_fuzzer.cc",
6126 ]
6127 deps = [
6128 ":net_fuzzer_test_support",
6129 ":test_support",
6130 "//base",
6131 "//net",
6132 ]
6133}
martijndb9ad4f2016-10-26 18:34:096134
estarka57e8162017-04-21 18:01:056135fuzzer_test("net_http_security_headers_expect_ct_fuzzer") {
6136 sources = [
6137 "http/http_security_headers_expect_ct_fuzzer.cc",
6138 ]
6139 deps = [
6140 ":net_fuzzer_test_support",
6141 "//base",
6142 "//net",
6143 "//url",
6144 ]
6145 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
6146 seed_corpus = "data/fuzzer_data/http_security_headers/"
6147}
6148
martijndb9ad4f2016-10-26 18:34:096149fuzzer_test("net_http_security_headers_hsts_fuzzer") {
6150 sources = [
6151 "http/http_security_headers_hsts_fuzzer.cc",
6152 ]
6153 deps = [
6154 "//base",
6155 "//net",
6156 ]
6157 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
estarka57e8162017-04-21 18:01:056158 seed_corpus = "data/fuzzer_data/http_security_headers/"
martijndb9ad4f2016-10-26 18:34:096159}
6160
6161fuzzer_test("net_http_security_headers_hpkp_fuzzer") {
6162 sources = [
6163 "http/http_security_headers_hpkp_fuzzer.cc",
6164 ]
6165 deps = [
martijn15387afb2016-10-27 22:21:046166 ":net_fuzzer_test_support",
martijndb9ad4f2016-10-26 18:34:096167 "//base",
6168 "//net",
6169 "//url",
6170 ]
6171 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
estarka57e8162017-04-21 18:01:056172 seed_corpus = "data/fuzzer_data/http_security_headers/"
martijndb9ad4f2016-10-26 18:34:096173}
6174
6175fuzzer_test("net_http_security_headers_hpkp_report_only_fuzzer") {
6176 sources = [
6177 "http/http_security_headers_hpkp_report_only_fuzzer.cc",
6178 ]
6179 deps = [
martijn15387afb2016-10-27 22:21:046180 ":net_fuzzer_test_support",
martijndb9ad4f2016-10-26 18:34:096181 "//base",
6182 "//net",
6183 "//url",
6184 ]
6185 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
6186}
martijn40db4b762016-12-14 00:26:456187
martijnda940792016-12-29 01:36:516188fuzzer_test("net_http_transport_security_state_static_fuzzer") {
6189 sources = [
6190 "http/transport_security_state_static_fuzzer.cc",
6191 ]
6192 deps = [
6193 ":net_fuzzer_test_support",
6194 "//net",
6195 ]
6196 dict =
6197 "data/fuzzer_dictionaries/net_http_transport_security_state_fuzzer.dict"
6198}
6199
morlovich5e6e19b2017-01-30 14:38:166200fuzzer_test("net_http_server_fuzzer") {
6201 sources = [
6202 "server/http_server_fuzzer.cc",
6203 ]
6204 deps = [
6205 ":http_server",
6206 ":net_fuzzer_test_support",
6207 ":test_support",
6208 "//base",
6209 "//net",
6210 ]
6211 dict = "data/fuzzer_dictionaries/net_http_server_fuzzer.dict"
6212 seed_corpus = "data/fuzzer_data/http_server_requests/"
6213}
6214
morlovich833190ec2017-02-10 16:53:046215fuzzer_test("net_spdy_session_fuzzer") {
6216 sources = [
bnc8f8f7d302017-04-24 18:08:066217 "spdy/chromium/spdy_session_fuzzer.cc",
morlovich833190ec2017-02-10 16:53:046218 ]
6219 deps = [
6220 ":net_fuzzer_test_support",
6221 ":test_support",
6222 "//base",
6223 "//net",
6224 ]
6225 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
6226 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
6227}