blob: a1bcf23b7a0ce017bc6f7268485d4361f65e27e5 [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
Sergey Ulanovec1d3de2017-09-19 19:27:4755# Python works only on Linux, MacOS and Windows.
56enable_python_utils = !is_android && !is_fuchsia && !is_ios
57
brettwa1228ebb2016-10-28 03:51:3458buildflag_header("features") {
59 header = "net_features.h"
60 flags = [
61 "POSIX_AVOID_MMAP=$posix_avoid_mmap",
62 "DISABLE_FILE_SUPPORT=$disable_file_support",
63 "DISABLE_FTP_SUPPORT=$disable_ftp_support",
brettw5224a182016-10-28 22:13:0264 "ENABLE_MDNS=$enable_mdns",
mmenkefd9d15c2017-06-29 13:45:5465 "ENABLE_REPORTING=$enable_reporting",
brettwa1228ebb2016-10-28 03:51:3466 "ENABLE_WEBSOCKETS=$enable_websockets",
mattm4cede8d2017-04-11 02:55:0167 "USE_BYTE_CERTS=$use_byte_certs",
xunjieli815ad5b2017-07-18 15:51:3568 "INCLUDE_TRANSPORT_SECURITY_STATE_PRELOAD_LIST=$include_transport_security_state_preload_list",
brettwa1228ebb2016-10-28 03:51:3469 ]
[email protected]4625ade2014-04-15 19:26:4470}
71
xunjieli905496a2015-08-31 15:51:1772config("net_internal_config") {
[email protected]8603c5de2014-04-16 20:34:3173 defines = [
[email protected]8603c5de2014-04-16 20:34:3174 "DLOPEN_KERBEROS",
scottmg34fb7e52014-12-03 23:27:2475 "NET_IMPLEMENTATION",
[email protected]8603c5de2014-04-16 20:34:3176 ]
dpranke43276212015-02-20 02:55:1977
[email protected]4625ade2014-04-15 19:26:4478 if (use_kerberos) {
79 defines += [ "USE_KERBEROS" ]
80 if (is_android) {
xunjieli905496a2015-08-31 15:51:1781 include_dirs = [ "/usr/include/kerberosV" ]
[email protected]4625ade2014-04-15 19:26:4482 }
[email protected]4625ade2014-04-15 19:26:4483 }
84
85 if (enable_built_in_dns) {
86 defines += [ "ENABLE_BUILT_IN_DNS" ]
xunjieli905496a2015-08-31 15:51:1787 }
88}
89
kapishnikovabe280e2016-04-14 19:07:1690net_configs = [
xunjieli905496a2015-08-31 15:51:1791 ":net_internal_config",
92 "//build/config:precompiled_headers",
93
94 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
95 "//build/config/compiler:no_size_t_to_int_warning",
rsesek99679aa2016-06-28 21:24:1796 "//build/config/compiler:wexit_time_destructors",
xunjieli905496a2015-08-31 15:51:1797]
98
kapishnikovabe280e2016-04-14 19:07:1699if (use_glib && use_gconf && !is_chromeos) {
agrieve95ba4442016-04-25 15:47:13100 net_configs += [ "//build/config/linux/gconf" ]
kapishnikovabe280e2016-04-14 19:07:16101}
xunjieli905496a2015-08-31 15:51:17102
kapishnikovabe280e2016-04-14 19:07:16103if (is_linux) {
104 net_configs += [ "//build/config/linux:libresolv" ]
xunjieli905496a2015-08-31 15:51:17105}
106
xunjieli0b7f5b62016-12-06 20:43:48107source_set("constants") {
108 sources = [
109 "base/trace_constants.cc",
110 "base/trace_constants.h",
111 ]
112 deps = [
113 "//base",
114 ]
115}
116
xunjieli905496a2015-08-31 15:51:17117component("net") {
ckrasic73f7240b2017-01-24 00:06:45118 sources = [
119 "base/address_family.cc",
120 "base/address_family.h",
121 "base/address_list.cc",
122 "base/address_list.h",
ckrasic73f7240b2017-01-24 00:06:45123 "base/auth.cc",
124 "base/auth.h",
125 "base/completion_callback.h",
126 "base/escape.cc",
127 "base/escape.h",
128 "base/hash_value.cc",
129 "base/hash_value.h",
130 "base/host_port_pair.cc",
131 "base/host_port_pair.h",
fayangbaec8ff52017-01-28 03:26:12132 "base/interval.h",
133 "base/interval_set.h",
ckrasic73f7240b2017-01-24 00:06:45134 "base/io_buffer.cc",
135 "base/io_buffer.h",
136 "base/ip_address.cc",
137 "base/ip_address.h",
138 "base/ip_endpoint.cc",
139 "base/ip_endpoint.h",
ckrasic73f7240b2017-01-24 00:06:45140 "base/load_timing_info.cc",
141 "base/load_timing_info.h",
142 "base/lookup_string_in_fixed_set.cc",
143 "base/lookup_string_in_fixed_set.h",
144 "base/net_error_details.h",
145 "base/net_error_list.h",
146 "base/net_errors.cc",
147 "base/net_errors.h",
148 "base/net_errors_posix.cc",
149 "base/net_export.h",
150 "base/net_module.cc",
151 "base/net_module.h",
152 "base/net_string_util.h",
153 "base/network_interfaces.cc",
154 "base/network_interfaces.h",
ckrasic73f7240b2017-01-24 00:06:45155 "base/parse_number.cc",
156 "base/parse_number.h",
157 "base/port_util.cc",
158 "base/port_util.h",
mmenke392ec462017-03-23 18:49:35159 "base/privacy_mode.h",
ckrasic73f7240b2017-01-24 00:06:45160 "base/rand_callback.h",
161 "base/registry_controlled_domains/registry_controlled_domain.cc",
162 "base/registry_controlled_domains/registry_controlled_domain.h",
163 "base/sockaddr_storage.cc",
164 "base/sockaddr_storage.h",
165 "base/sys_addrinfo.h",
166 "base/url_util.cc",
167 "base/url_util.h",
ckrasic73f7240b2017-01-24 00:06:45168 "cert/asn1_util.cc",
169 "cert/asn1_util.h",
170 "cert/cert_database.cc",
171 "cert/cert_database.h",
Matt Mueller15004212017-09-08 04:44:13172 "cert/cert_database_stub.cc",
ckrasic73f7240b2017-01-24 00:06:45173 "cert/cert_status_flags.cc",
174 "cert/cert_status_flags.h",
mmenke392ec462017-03-23 18:49:35175 "cert/cert_status_flags_list.h",
ckrasic73f7240b2017-01-24 00:06:45176 "cert/cert_verifier.cc",
177 "cert/cert_verifier.h",
178 "cert/cert_verify_result.cc",
179 "cert/cert_verify_result.h",
180 "cert/client_cert_verifier.h",
181 "cert/crl_set.cc",
182 "cert/crl_set.h",
183 "cert/ct_known_logs.cc",
184 "cert/ct_known_logs.h",
ckrasic73f7240b2017-01-24 00:06:45185 "cert/ct_policy_enforcer.cc",
186 "cert/ct_policy_enforcer.h",
187 "cert/ct_policy_status.h",
188 "cert/ct_verifier.h",
189 "cert/ct_verify_result.cc",
190 "cert/ct_verify_result.h",
191 "cert/do_nothing_ct_verifier.cc",
192 "cert/do_nothing_ct_verifier.h",
193 "cert/internal/cert_error_id.cc",
194 "cert/internal/cert_error_id.h",
195 "cert/internal/cert_error_params.cc",
196 "cert/internal/cert_error_params.h",
ckrasic73f7240b2017-01-24 00:06:45197 "cert/internal/cert_errors.cc",
198 "cert/internal/cert_errors.h",
199 "cert/internal/cert_issuer_source.h",
200 "cert/internal/cert_issuer_source_aia.cc",
201 "cert/internal/cert_issuer_source_aia.h",
202 "cert/internal/cert_issuer_source_static.cc",
203 "cert/internal/cert_issuer_source_static.h",
204 "cert/internal/certificate_policies.cc",
205 "cert/internal/certificate_policies.h",
Eric Romancaa0a602017-07-28 21:17:11206 "cert/internal/common_cert_errors.cc",
207 "cert/internal/common_cert_errors.h",
ckrasic73f7240b2017-01-24 00:06:45208 "cert/internal/extended_key_usage.cc",
209 "cert/internal/extended_key_usage.h",
Matt Mueller9e3ad3032017-09-14 19:29:31210 "cert/internal/general_names.cc",
211 "cert/internal/general_names.h",
ckrasic73f7240b2017-01-24 00:06:45212 "cert/internal/name_constraints.cc",
213 "cert/internal/name_constraints.h",
Eric Romana2f6f55d2017-09-07 23:34:57214 "cert/internal/ocsp.cc",
215 "cert/internal/ocsp.h",
ckrasic73f7240b2017-01-24 00:06:45216 "cert/internal/parse_certificate.cc",
217 "cert/internal/parse_certificate.h",
218 "cert/internal/parse_name.cc",
219 "cert/internal/parse_name.h",
ckrasic73f7240b2017-01-24 00:06:45220 "cert/internal/parsed_certificate.cc",
221 "cert/internal/parsed_certificate.h",
222 "cert/internal/path_builder.cc",
223 "cert/internal/path_builder.h",
224 "cert/internal/signature_algorithm.cc",
225 "cert/internal/signature_algorithm.h",
Eric Roman5431d702017-07-26 01:58:18226 "cert/internal/simple_path_builder_delegate.cc",
227 "cert/internal/simple_path_builder_delegate.h",
ckrasic73f7240b2017-01-24 00:06:45228 "cert/internal/trust_store.cc",
229 "cert/internal/trust_store.h",
230 "cert/internal/trust_store_collection.cc",
231 "cert/internal/trust_store_collection.h",
232 "cert/internal/trust_store_in_memory.cc",
233 "cert/internal/trust_store_in_memory.h",
234 "cert/internal/verify_certificate_chain.cc",
235 "cert/internal/verify_certificate_chain.h",
236 "cert/internal/verify_name_match.cc",
237 "cert/internal/verify_name_match.h",
238 "cert/internal/verify_signed_data.cc",
239 "cert/internal/verify_signed_data.h",
240 "cert/ocsp_revocation_status.h",
241 "cert/ocsp_verify_result.cc",
242 "cert/ocsp_verify_result.h",
243 "cert/pem_tokenizer.cc",
244 "cert/pem_tokenizer.h",
245 "cert/sct_status_flags.cc",
246 "cert/sct_status_flags.h",
247 "cert/signed_certificate_timestamp.cc",
248 "cert/signed_certificate_timestamp.h",
249 "cert/signed_certificate_timestamp_and_status.cc",
250 "cert/signed_certificate_timestamp_and_status.h",
251 "cert/signed_tree_head.cc",
252 "cert/signed_tree_head.h",
253 "cert/sth_distributor.cc",
254 "cert/sth_distributor.h",
255 "cert/sth_observer.h",
256 "cert/sth_reporter.h",
Emily Starkd29cdae2017-09-16 01:59:34257 "cert/symantec_certs.cc",
258 "cert/symantec_certs.h",
ckrasic73f7240b2017-01-24 00:06:45259 "cert/x509_cert_types.cc",
260 "cert/x509_cert_types.h",
261 "cert/x509_certificate.cc",
262 "cert/x509_certificate.h",
davidben7c97df62017-05-04 00:20:23263 "cert/x509_certificate_bytes.cc",
ckrasic73f7240b2017-01-24 00:06:45264 "cert/x509_certificate_net_log_param.cc",
265 "cert/x509_certificate_net_log_param.h",
ckrasic73f7240b2017-01-24 00:06:45266 "cert/x509_util.cc",
267 "cert/x509_util.h",
ckrasic73f7240b2017-01-24 00:06:45268 "der/encode_values.cc",
269 "der/encode_values.h",
270 "der/input.cc",
271 "der/input.h",
272 "der/parse_values.cc",
273 "der/parse_values.h",
274 "der/parser.cc",
275 "der/parser.h",
276 "der/tag.cc",
277 "der/tag.h",
278 "dns/dns_util.cc",
279 "dns/dns_util.h",
280 "http/http_auth_challenge_tokenizer.cc",
281 "http/http_auth_challenge_tokenizer.h",
282 "http/http_auth_scheme.cc",
283 "http/http_auth_scheme.h",
284 "http/http_byte_range.cc",
285 "http/http_byte_range.h",
286 "http/http_log_util.cc",
287 "http/http_log_util.h",
Andrey Kosyakov83a6eee2017-08-14 19:20:04288 "http/http_raw_request_headers.cc",
289 "http/http_raw_request_headers.h",
ckrasic73f7240b2017-01-24 00:06:45290 "http/http_request_headers.cc",
291 "http/http_request_headers.h",
292 "http/http_response_headers.cc",
293 "http/http_response_headers.h",
294 "http/http_response_info.cc",
295 "http/http_response_info.h",
296 "http/http_security_headers.cc",
297 "http/http_security_headers.h",
mmenke392ec462017-03-23 18:49:35298 "http/http_status_code_list",
ckrasic73f7240b2017-01-24 00:06:45299 "http/http_util.cc",
300 "http/http_util.h",
301 "http/http_vary_data.cc",
302 "http/http_vary_data.h",
303 "http/transport_security_state.cc",
304 "http/transport_security_state.h",
xunjieli815ad5b2017-07-18 15:51:35305 "http/transport_security_state_source.cc",
martijn9b806ab22017-03-18 16:13:21306 "http/transport_security_state_source.h",
ckrasic73f7240b2017-01-24 00:06:45307 "log/net_log.cc",
308 "log/net_log.h",
309 "log/net_log_capture_mode.cc",
310 "log/net_log_capture_mode.h",
311 "log/net_log_entry.cc",
312 "log/net_log_entry.h",
mmenke392ec462017-03-23 18:49:35313 "log/net_log_event_type.h",
ckrasic73f7240b2017-01-24 00:06:45314 "log/net_log_event_type_list.h",
mmenke392ec462017-03-23 18:49:35315 "log/net_log_parameters_callback.h",
ckrasic73f7240b2017-01-24 00:06:45316 "log/net_log_source.cc",
317 "log/net_log_source.h",
mmenke392ec462017-03-23 18:49:35318 "log/net_log_source_type.h",
ckrasic73f7240b2017-01-24 00:06:45319 "log/net_log_source_type_list.h",
320 "log/net_log_with_source.cc",
321 "log/net_log_with_source.h",
322 "socket/client_socket_handle.cc",
323 "socket/client_socket_handle.h",
324 "socket/connection_attempts.h",
325 "socket/next_proto.cc",
326 "socket/next_proto.h",
xunjieli321a96f32017-03-07 19:42:17327 "socket/socket.cc",
ckrasic73f7240b2017-01-24 00:06:45328 "socket/socket.h",
329 "socket/socket_bio_adapter.cc",
330 "socket/socket_bio_adapter.h",
331 "socket/socket_performance_watcher.h",
332 "socket/socket_performance_watcher_factory.h",
333 "socket/ssl_client_socket.cc",
334 "socket/ssl_client_socket.h",
335 "socket/ssl_client_socket_impl.cc",
336 "socket/ssl_client_socket_impl.h",
337 "socket/ssl_socket.h",
ckrasic73f7240b2017-01-24 00:06:45338 "ssl/channel_id_service.cc",
339 "ssl/channel_id_service.h",
340 "ssl/channel_id_store.cc",
341 "ssl/channel_id_store.h",
mattm436ccfe2017-06-19 20:24:08342 "ssl/client_cert_identity.cc",
343 "ssl/client_cert_identity.h",
344 "ssl/client_cert_identity_mac.cc",
345 "ssl/client_cert_identity_mac.h",
ckrasic73f7240b2017-01-24 00:06:45346 "ssl/default_channel_id_store.cc",
347 "ssl/default_channel_id_store.h",
ckrasic73f7240b2017-01-24 00:06:45348 "ssl/openssl_ssl_util.cc",
349 "ssl/openssl_ssl_util.h",
350 "ssl/ssl_cert_request_info.cc",
351 "ssl/ssl_cert_request_info.h",
352 "ssl/ssl_cipher_suite_names.cc",
353 "ssl/ssl_cipher_suite_names.h",
354 "ssl/ssl_client_auth_cache.cc",
355 "ssl/ssl_client_auth_cache.h",
356 "ssl/ssl_client_cert_type.h",
357 "ssl/ssl_client_session_cache.cc",
358 "ssl/ssl_client_session_cache.h",
359 "ssl/ssl_config.cc",
360 "ssl/ssl_config.h",
361 "ssl/ssl_config_service.cc",
362 "ssl/ssl_config_service.h",
363 "ssl/ssl_connection_status_flags.h",
364 "ssl/ssl_info.cc",
365 "ssl/ssl_info.h",
366 "ssl/ssl_private_key.h",
367 "ssl/ssl_server_config.cc",
368 "ssl/ssl_server_config.h",
369 "ssl/token_binding.cc",
370 "ssl/token_binding.h",
371 ]
kapishnikovabe280e2016-04-14 19:07:16372 net_unfiltered_sources = []
373
374 deps = [
xunjieli0b7f5b62016-12-06 20:43:48375 ":constants",
kapishnikovabe280e2016-04-14 19:07:16376 ":net_resources",
377 "//base",
378 "//net/base/registry_controlled_domains",
eranm9657f672017-05-05 12:25:19379 "//net/data/ssl/certificate_transparency:ct_log_list",
kapishnikovabe280e2016-04-14 19:07:16380 "//third_party/protobuf:protobuf_lite",
381 "//url:url_features",
382 ]
383
xunjieli815ad5b2017-07-18 15:51:35384 if (include_transport_security_state_preload_list) {
385 deps += [ "//net/http:generate_transport_security_state" ]
386 }
387
kapishnikovabe280e2016-04-14 19:07:16388 public_deps = [
389 ":net_quic_proto",
rhalavatia9b551d2017-02-09 12:03:00390 ":traffic_annotation",
kapishnikovabe280e2016-04-14 19:07:16391 "//crypto",
392 "//crypto:platform",
bcfd0b70c42017-06-14 00:13:20393 "//third_party/boringssl",
kapishnikovabe280e2016-04-14 19:07:16394 ]
395
396 if (!is_nacl) {
ckrasic73f7240b2017-01-24 00:06:45397 sources += [
398 "android/cellular_signal_strength.cc",
399 "android/cellular_signal_strength.h",
400 "android/cert_verify_result_android.cc",
401 "android/cert_verify_result_android.h",
402 "android/gurl_utils.cc",
ckrasic73f7240b2017-01-24 00:06:45403 "android/http_auth_negotiate_android.cc",
404 "android/http_auth_negotiate_android.h",
405 "android/keystore.cc",
406 "android/keystore.h",
407 "android/legacy_openssl.h",
ckrasic73f7240b2017-01-24 00:06:45408 "android/network_change_notifier_android.cc",
409 "android/network_change_notifier_android.h",
410 "android/network_change_notifier_delegate_android.cc",
411 "android/network_change_notifier_delegate_android.h",
412 "android/network_change_notifier_factory_android.cc",
413 "android/network_change_notifier_factory_android.h",
414 "android/network_library.cc",
415 "android/network_library.h",
416 "android/traffic_stats.cc",
417 "android/traffic_stats.h",
418 "base/address_tracker_linux.cc",
419 "base/address_tracker_linux.h",
bnc4fab8022017-03-24 16:35:03420 "base/arena.cc",
421 "base/arena.h",
ckrasic73f7240b2017-01-24 00:06:45422 "base/backoff_entry.cc",
423 "base/backoff_entry.h",
424 "base/backoff_entry_serializer.cc",
425 "base/backoff_entry_serializer.h",
426 "base/cache_type.h",
427 "base/chunked_upload_data_stream.cc",
428 "base/chunked_upload_data_stream.h",
ckrasic73f7240b2017-01-24 00:06:45429 "base/data_url.cc",
430 "base/data_url.h",
431 "base/elements_upload_data_stream.cc",
432 "base/elements_upload_data_stream.h",
433 "base/expiring_cache.h",
434 "base/file_stream.cc",
435 "base/file_stream.h",
436 "base/file_stream_context.cc",
437 "base/file_stream_context.h",
438 "base/file_stream_context_posix.cc",
439 "base/file_stream_context_win.cc",
440 "base/filename_util.cc",
441 "base/filename_util.h",
442 "base/filename_util_internal.cc",
443 "base/filename_util_internal.h",
Bence Békyd5c16edf2017-08-04 17:32:30444 "base/hex_utils.cc",
445 "base/hex_utils.h",
ckrasic73f7240b2017-01-24 00:06:45446 "base/host_mapping_rules.cc",
447 "base/host_mapping_rules.h",
448 "base/int128.cc",
449 "base/int128.h",
450 "base/iovec.h",
451 "base/ip_pattern.cc",
452 "base/ip_pattern.h",
453 "base/layered_network_delegate.cc",
454 "base/layered_network_delegate.h",
bnc4fab8022017-03-24 16:35:03455 "base/linked_hash_map.h",
ckrasic73f7240b2017-01-24 00:06:45456 "base/load_flags.h",
457 "base/load_flags_list.h",
458 "base/load_states.h",
459 "base/load_states_list.h",
460 "base/logging_network_change_observer.cc",
461 "base/logging_network_change_observer.h",
ckrasic73f7240b2017-01-24 00:06:45462 "base/mime_sniffer.cc",
463 "base/mime_sniffer.h",
464 "base/mime_util.cc",
465 "base/mime_util.h",
466 "base/net_errors_win.cc",
467 "base/net_info_source_list.h",
468 "base/network_activity_monitor.cc",
469 "base/network_activity_monitor.h",
470 "base/network_change_notifier.cc",
471 "base/network_change_notifier.h",
472 "base/network_change_notifier_factory.h",
473 "base/network_change_notifier_linux.cc",
474 "base/network_change_notifier_linux.h",
475 "base/network_change_notifier_mac.cc",
476 "base/network_change_notifier_mac.h",
477 "base/network_change_notifier_win.cc",
478 "base/network_change_notifier_win.h",
479 "base/network_config_watcher_mac.cc",
480 "base/network_config_watcher_mac.h",
481 "base/network_delegate.cc",
482 "base/network_delegate.h",
483 "base/network_delegate_impl.cc",
484 "base/network_delegate_impl.h",
Sergey Ulanov5c33235ae2017-07-06 23:55:07485 "base/network_interfaces_getifaddrs.cc",
486 "base/network_interfaces_getifaddrs.h",
ckrasic73f7240b2017-01-24 00:06:45487 "base/network_interfaces_linux.cc",
wychen36575ffb2017-04-01 05:50:47488 "base/network_interfaces_linux.h",
Sergey Ulanov5c33235ae2017-07-06 23:55:07489 "base/network_interfaces_nacl.cc",
490 "base/network_interfaces_posix.cc",
491 "base/network_interfaces_posix.h",
ckrasic73f7240b2017-01-24 00:06:45492 "base/network_interfaces_win.cc",
thakisb8590c92017-03-23 18:14:53493 "base/network_interfaces_win.h",
ckrasic73f7240b2017-01-24 00:06:45494 "base/network_throttle_manager.h",
495 "base/network_throttle_manager_impl.cc",
496 "base/network_throttle_manager_impl.h",
497 "base/percentile_estimator.cc",
498 "base/percentile_estimator.h",
499 "base/platform_mime_util.h",
500 "base/platform_mime_util_linux.cc",
501 "base/platform_mime_util_mac.mm",
502 "base/platform_mime_util_win.cc",
503 "base/prioritized_dispatcher.cc",
504 "base/prioritized_dispatcher.h",
505 "base/priority_queue.h",
506 "base/proxy_delegate.h",
507 "base/request_priority.cc",
508 "base/request_priority.h",
ckrasic73f7240b2017-01-24 00:06:45509 "base/static_cookie_policy.cc",
510 "base/static_cookie_policy.h",
511 "base/test_data_stream.cc",
512 "base/test_data_stream.h",
513 "base/upload_bytes_element_reader.cc",
514 "base/upload_bytes_element_reader.h",
515 "base/upload_data_stream.cc",
516 "base/upload_data_stream.h",
517 "base/upload_element_reader.cc",
518 "base/upload_element_reader.h",
519 "base/upload_file_element_reader.cc",
520 "base/upload_file_element_reader.h",
521 "base/upload_progress.h",
522 "base/winsock_init.cc",
523 "base/winsock_init.h",
524 "base/winsock_util.cc",
525 "base/winsock_util.h",
526 "cert/caching_cert_verifier.cc",
527 "cert/caching_cert_verifier.h",
528 "cert/cert_database_android.cc",
529 "cert/cert_database_ios.cc",
530 "cert/cert_database_mac.cc",
531 "cert/cert_database_nss.cc",
532 "cert/cert_database_win.cc",
533 "cert/cert_net_fetcher.h",
534 "cert/cert_verify_proc.cc",
535 "cert/cert_verify_proc.h",
536 "cert/cert_verify_proc_android.cc",
537 "cert/cert_verify_proc_android.h",
eroman8ccd62d2017-03-16 23:54:26538 "cert/cert_verify_proc_builtin.cc",
539 "cert/cert_verify_proc_builtin.h",
ckrasic73f7240b2017-01-24 00:06:45540 "cert/cert_verify_proc_ios.cc",
541 "cert/cert_verify_proc_ios.h",
542 "cert/cert_verify_proc_mac.cc",
543 "cert/cert_verify_proc_mac.h",
544 "cert/cert_verify_proc_nss.cc",
545 "cert/cert_verify_proc_nss.h",
ckrasic73f7240b2017-01-24 00:06:45546 "cert/cert_verify_proc_win.cc",
547 "cert/cert_verify_proc_win.h",
548 "cert/crl_set_storage.cc",
549 "cert/crl_set_storage.h",
ckrasic73f7240b2017-01-24 00:06:45550 "cert/ct_log_response_parser.cc",
551 "cert/ct_log_response_parser.h",
552 "cert/ct_log_verifier.cc",
553 "cert/ct_log_verifier.h",
554 "cert/ct_log_verifier_util.cc",
555 "cert/ct_log_verifier_util.h",
556 "cert/ct_objects_extractor.cc",
557 "cert/ct_objects_extractor.h",
558 "cert/ct_sct_to_string.cc",
559 "cert/ct_sct_to_string.h",
560 "cert/ct_serialization.cc",
561 "cert/ct_serialization.h",
562 "cert/ct_signed_certificate_timestamp_log_param.cc",
563 "cert/ct_signed_certificate_timestamp_log_param.h",
564 "cert/ev_root_ca_metadata.cc",
565 "cert/ev_root_ca_metadata.h",
eromanf628d6b2017-04-19 22:47:27566 "cert/internal/system_trust_store.cc",
567 "cert/internal/system_trust_store.h",
mattmea4ed8232017-02-28 23:13:23568 "cert/internal/trust_store_mac.cc",
569 "cert/internal/trust_store_mac.h",
ckrasic73f7240b2017-01-24 00:06:45570 "cert/internal/trust_store_nss.cc",
571 "cert/internal/trust_store_nss.h",
572 "cert/jwk_serializer.cc",
573 "cert/jwk_serializer.h",
eromanf2971fd2017-04-20 20:10:45574 "cert/known_roots_mac.cc",
575 "cert/known_roots_mac.h",
576 "cert/known_roots_nss.cc",
577 "cert/known_roots_nss.h",
578 "cert/known_roots_win.cc",
579 "cert/known_roots_win.h",
ckrasic73f7240b2017-01-24 00:06:45580 "cert/merkle_audit_proof.cc",
581 "cert/merkle_audit_proof.h",
582 "cert/merkle_consistency_proof.cc",
583 "cert/merkle_consistency_proof.h",
584 "cert/merkle_tree_leaf.cc",
585 "cert/merkle_tree_leaf.h",
586 "cert/multi_log_ct_verifier.cc",
587 "cert/multi_log_ct_verifier.h",
588 "cert/multi_threaded_cert_verifier.cc",
589 "cert/multi_threaded_cert_verifier.h",
590 "cert/nss_cert_database.cc",
591 "cert/nss_cert_database.h",
592 "cert/nss_cert_database_chromeos.cc",
593 "cert/nss_cert_database_chromeos.h",
594 "cert/nss_profile_filter_chromeos.cc",
595 "cert/nss_profile_filter_chromeos.h",
596 "cert/test_keychain_search_list_mac.cc",
597 "cert/test_keychain_search_list_mac.h",
598 "cert/test_root_certs.cc",
599 "cert/test_root_certs.h",
600 "cert/test_root_certs_android.cc",
601 "cert/test_root_certs_mac.cc",
602 "cert/test_root_certs_nss.cc",
ckrasic73f7240b2017-01-24 00:06:45603 "cert/test_root_certs_win.cc",
mmenke392ec462017-03-23 18:49:35604 "cert/x509_certificate_known_roots_win.h",
ckrasic73f7240b2017-01-24 00:06:45605 "cert/x509_certificate_nss.cc",
ckrasic73f7240b2017-01-24 00:06:45606 "cert/x509_util_android.cc",
mattm4cede8d2017-04-11 02:55:01607 "cert/x509_util_ios.cc",
608 "cert/x509_util_ios.h",
mattm1a07e632017-05-16 05:55:50609 "cert/x509_util_ios_and_mac.cc",
610 "cert/x509_util_ios_and_mac.h",
ckrasic73f7240b2017-01-24 00:06:45611 "cert/x509_util_mac.cc",
612 "cert/x509_util_mac.h",
613 "cert/x509_util_nss.cc",
614 "cert/x509_util_nss.h",
mattm2fe429a2017-06-20 01:53:44615 "cert/x509_util_win.cc",
616 "cert/x509_util_win.h",
ckrasic73f7240b2017-01-24 00:06:45617 "cert_net/cert_net_fetcher_impl.cc",
618 "cert_net/cert_net_fetcher_impl.h",
619 "cert_net/nss_ocsp.cc",
620 "cert_net/nss_ocsp.h",
621 "cookies/canonical_cookie.cc",
622 "cookies/canonical_cookie.h",
623 "cookies/cookie_constants.cc",
624 "cookies/cookie_constants.h",
625 "cookies/cookie_monster.cc",
626 "cookies/cookie_monster.h",
627 "cookies/cookie_options.cc",
628 "cookies/cookie_options.h",
629 "cookies/cookie_store.cc",
630 "cookies/cookie_store.h",
631 "cookies/cookie_util.cc",
632 "cookies/cookie_util.h",
633 "cookies/parsed_cookie.cc",
634 "cookies/parsed_cookie.h",
Maks Orlovich036fd1f2017-08-07 17:51:11635 "disk_cache/backend_cleanup_tracker.cc",
636 "disk_cache/backend_cleanup_tracker.h",
ckrasic73f7240b2017-01-24 00:06:45637 "disk_cache/blockfile/addr.cc",
638 "disk_cache/blockfile/addr.h",
639 "disk_cache/blockfile/backend_impl.cc",
640 "disk_cache/blockfile/backend_impl.h",
641 "disk_cache/blockfile/bitmap.cc",
642 "disk_cache/blockfile/bitmap.h",
643 "disk_cache/blockfile/block_files.cc",
644 "disk_cache/blockfile/block_files.h",
645 "disk_cache/blockfile/disk_format.cc",
646 "disk_cache/blockfile/disk_format.h",
647 "disk_cache/blockfile/disk_format_base.h",
648 "disk_cache/blockfile/entry_impl.cc",
649 "disk_cache/blockfile/entry_impl.h",
650 "disk_cache/blockfile/errors.h",
651 "disk_cache/blockfile/eviction.cc",
652 "disk_cache/blockfile/eviction.h",
653 "disk_cache/blockfile/experiments.h",
654 "disk_cache/blockfile/file.cc",
655 "disk_cache/blockfile/file.h",
656 "disk_cache/blockfile/file_block.h",
657 "disk_cache/blockfile/file_ios.cc",
658 "disk_cache/blockfile/file_lock.cc",
659 "disk_cache/blockfile/file_lock.h",
660 "disk_cache/blockfile/file_posix.cc",
661 "disk_cache/blockfile/file_win.cc",
662 "disk_cache/blockfile/histogram_macros.h",
663 "disk_cache/blockfile/in_flight_backend_io.cc",
664 "disk_cache/blockfile/in_flight_backend_io.h",
665 "disk_cache/blockfile/in_flight_io.cc",
666 "disk_cache/blockfile/in_flight_io.h",
667 "disk_cache/blockfile/mapped_file.cc",
668 "disk_cache/blockfile/mapped_file.h",
669 "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc",
670 "disk_cache/blockfile/mapped_file_posix.cc",
671 "disk_cache/blockfile/mapped_file_win.cc",
672 "disk_cache/blockfile/rankings.cc",
673 "disk_cache/blockfile/rankings.h",
674 "disk_cache/blockfile/sparse_control.cc",
675 "disk_cache/blockfile/sparse_control.h",
676 "disk_cache/blockfile/stats.cc",
677 "disk_cache/blockfile/stats.h",
678 "disk_cache/blockfile/storage_block-inl.h",
679 "disk_cache/blockfile/storage_block.h",
680 "disk_cache/blockfile/stress_support.h",
681 "disk_cache/blockfile/trace.cc",
682 "disk_cache/blockfile/trace.h",
683 "disk_cache/blockfile/webfonts_histogram.cc",
684 "disk_cache/blockfile/webfonts_histogram.h",
685 "disk_cache/cache_util.cc",
686 "disk_cache/cache_util.h",
687 "disk_cache/cache_util_posix.cc",
688 "disk_cache/cache_util_win.cc",
689 "disk_cache/disk_cache.cc",
690 "disk_cache/disk_cache.h",
691 "disk_cache/memory/mem_backend_impl.cc",
692 "disk_cache/memory/mem_backend_impl.h",
693 "disk_cache/memory/mem_entry_impl.cc",
694 "disk_cache/memory/mem_entry_impl.h",
695 "disk_cache/net_log_parameters.cc",
696 "disk_cache/net_log_parameters.h",
697 "disk_cache/simple/simple_backend_impl.cc",
698 "disk_cache/simple/simple_backend_impl.h",
699 "disk_cache/simple/simple_backend_version.h",
700 "disk_cache/simple/simple_entry_format.cc",
701 "disk_cache/simple/simple_entry_format.h",
702 "disk_cache/simple/simple_entry_format_history.h",
703 "disk_cache/simple/simple_entry_impl.cc",
704 "disk_cache/simple/simple_entry_impl.h",
705 "disk_cache/simple/simple_entry_operation.cc",
706 "disk_cache/simple/simple_entry_operation.h",
707 "disk_cache/simple/simple_experiment.cc",
708 "disk_cache/simple/simple_experiment.h",
709 "disk_cache/simple/simple_histogram_macros.h",
710 "disk_cache/simple/simple_index.cc",
711 "disk_cache/simple/simple_index.h",
712 "disk_cache/simple/simple_index_delegate.h",
713 "disk_cache/simple/simple_index_file.cc",
714 "disk_cache/simple/simple_index_file.h",
715 "disk_cache/simple/simple_index_file_posix.cc",
716 "disk_cache/simple/simple_index_file_win.cc",
717 "disk_cache/simple/simple_net_log_parameters.cc",
718 "disk_cache/simple/simple_net_log_parameters.h",
719 "disk_cache/simple/simple_synchronous_entry.cc",
720 "disk_cache/simple/simple_synchronous_entry.h",
721 "disk_cache/simple/simple_util.cc",
722 "disk_cache/simple/simple_util.h",
723 "disk_cache/simple/simple_util_posix.cc",
724 "disk_cache/simple/simple_util_win.cc",
725 "disk_cache/simple/simple_version_upgrade.cc",
726 "disk_cache/simple/simple_version_upgrade.h",
727 "dns/address_sorter.h",
728 "dns/address_sorter_posix.cc",
729 "dns/address_sorter_posix.h",
730 "dns/address_sorter_win.cc",
731 "dns/dns_client.cc",
732 "dns/dns_client.h",
733 "dns/dns_config_service.cc",
734 "dns/dns_config_service.h",
735 "dns/dns_config_service_posix.cc",
736 "dns/dns_config_service_posix.h",
737 "dns/dns_config_service_win.cc",
738 "dns/dns_config_service_win.h",
739 "dns/dns_config_watcher_mac.cc",
740 "dns/dns_config_watcher_mac.h",
741 "dns/dns_hosts.cc",
742 "dns/dns_hosts.h",
743 "dns/dns_protocol.h",
744 "dns/dns_query.cc",
745 "dns/dns_query.h",
746 "dns/dns_reloader.cc",
747 "dns/dns_reloader.h",
748 "dns/dns_response.cc",
749 "dns/dns_response.h",
750 "dns/dns_session.cc",
751 "dns/dns_session.h",
752 "dns/dns_socket_pool.cc",
753 "dns/dns_socket_pool.h",
754 "dns/dns_transaction.cc",
755 "dns/dns_transaction.h",
756 "dns/host_cache.cc",
757 "dns/host_cache.h",
758 "dns/host_resolver.cc",
759 "dns/host_resolver.h",
760 "dns/host_resolver_impl.cc",
761 "dns/host_resolver_impl.h",
762 "dns/host_resolver_proc.cc",
763 "dns/host_resolver_proc.h",
764 "dns/mapped_host_resolver.cc",
765 "dns/mapped_host_resolver.h",
766 "dns/mdns_cache.cc",
767 "dns/mdns_cache.h",
768 "dns/mdns_client.cc",
769 "dns/mdns_client.h",
770 "dns/mdns_client_impl.cc",
771 "dns/mdns_client_impl.h",
772 "dns/notify_watcher_mac.cc",
773 "dns/notify_watcher_mac.h",
774 "dns/record_parsed.cc",
775 "dns/record_parsed.h",
776 "dns/record_rdata.cc",
777 "dns/record_rdata.h",
778 "dns/serial_worker.cc",
779 "dns/serial_worker.h",
780 "filter/filter_source_stream.cc",
781 "filter/filter_source_stream.h",
782 "filter/gzip_header.cc",
783 "filter/gzip_header.h",
784 "filter/gzip_source_stream.cc",
785 "filter/gzip_source_stream.h",
ckrasic73f7240b2017-01-24 00:06:45786 "filter/source_stream.cc",
787 "filter/source_stream.h",
788 "filter/source_stream_type_list.h",
789 "http/bidirectional_stream.cc",
790 "http/bidirectional_stream.h",
791 "http/bidirectional_stream_impl.cc",
792 "http/bidirectional_stream_impl.h",
793 "http/bidirectional_stream_request_info.cc",
794 "http/bidirectional_stream_request_info.h",
wangyix64ccc57c2017-06-01 23:14:16795 "http/broken_alternative_services.cc",
796 "http/broken_alternative_services.h",
ckrasic73f7240b2017-01-24 00:06:45797 "http/failing_http_transaction_factory.cc",
798 "http/failing_http_transaction_factory.h",
799 "http/http_auth.cc",
800 "http/http_auth.h",
801 "http/http_auth_cache.cc",
802 "http/http_auth_cache.h",
803 "http/http_auth_controller.cc",
804 "http/http_auth_controller.h",
805 "http/http_auth_filter.cc",
806 "http/http_auth_filter.h",
ckrasic73f7240b2017-01-24 00:06:45807 "http/http_auth_gssapi_posix.cc",
808 "http/http_auth_gssapi_posix.h",
809 "http/http_auth_handler.cc",
810 "http/http_auth_handler.h",
811 "http/http_auth_handler_basic.cc",
812 "http/http_auth_handler_basic.h",
813 "http/http_auth_handler_digest.cc",
814 "http/http_auth_handler_digest.h",
815 "http/http_auth_handler_factory.cc",
816 "http/http_auth_handler_factory.h",
817 "http/http_auth_handler_negotiate.cc",
818 "http/http_auth_handler_negotiate.h",
819 "http/http_auth_handler_ntlm.cc",
820 "http/http_auth_handler_ntlm.h",
821 "http/http_auth_handler_ntlm_portable.cc",
822 "http/http_auth_handler_ntlm_win.cc",
823 "http/http_auth_multi_round_parse.cc",
824 "http/http_auth_multi_round_parse.h",
825 "http/http_auth_preferences.cc",
826 "http/http_auth_preferences.h",
827 "http/http_auth_sspi_win.cc",
828 "http/http_auth_sspi_win.h",
829 "http/http_basic_state.cc",
830 "http/http_basic_state.h",
831 "http/http_basic_stream.cc",
832 "http/http_basic_stream.h",
833 "http/http_cache.cc",
834 "http/http_cache.h",
835 "http/http_cache_lookup_manager.cc",
836 "http/http_cache_lookup_manager.h",
837 "http/http_cache_transaction.cc",
838 "http/http_cache_transaction.h",
shivanishac6582e12017-07-14 22:18:19839 "http/http_cache_writers.cc",
840 "http/http_cache_writers.h",
ckrasic73f7240b2017-01-24 00:06:45841 "http/http_chunked_decoder.cc",
842 "http/http_chunked_decoder.h",
843 "http/http_content_disposition.cc",
844 "http/http_content_disposition.h",
845 "http/http_network_layer.cc",
846 "http/http_network_layer.h",
847 "http/http_network_session.cc",
848 "http/http_network_session.h",
849 "http/http_network_session_peer.cc",
850 "http/http_network_session_peer.h",
851 "http/http_network_transaction.cc",
852 "http/http_network_transaction.h",
853 "http/http_proxy_client_socket.cc",
854 "http/http_proxy_client_socket.h",
855 "http/http_proxy_client_socket_pool.cc",
856 "http/http_proxy_client_socket_pool.h",
857 "http/http_proxy_client_socket_wrapper.cc",
858 "http/http_proxy_client_socket_wrapper.h",
859 "http/http_request_info.cc",
860 "http/http_request_info.h",
861 "http/http_response_body_drainer.cc",
862 "http/http_response_body_drainer.h",
863 "http/http_server_properties.cc",
864 "http/http_server_properties.h",
865 "http/http_server_properties_impl.cc",
866 "http/http_server_properties_impl.h",
867 "http/http_server_properties_manager.cc",
868 "http/http_server_properties_manager.h",
869 "http/http_status_code.cc",
870 "http/http_status_code.h",
871 "http/http_stream.h",
872 "http/http_stream_factory.cc",
873 "http/http_stream_factory.h",
874 "http/http_stream_factory_impl.cc",
875 "http/http_stream_factory_impl.h",
876 "http/http_stream_factory_impl_job.cc",
877 "http/http_stream_factory_impl_job.h",
878 "http/http_stream_factory_impl_job_controller.cc",
879 "http/http_stream_factory_impl_job_controller.h",
880 "http/http_stream_factory_impl_request.cc",
881 "http/http_stream_factory_impl_request.h",
882 "http/http_stream_parser.cc",
883 "http/http_stream_parser.h",
884 "http/http_transaction.h",
885 "http/http_transaction_factory.h",
886 "http/http_version.h",
ckrasic73f7240b2017-01-24 00:06:45887 "http/partial_data.cc",
888 "http/partial_data.h",
889 "http/proxy_client_socket.cc",
890 "http/proxy_client_socket.h",
891 "http/proxy_connect_redirect_http_stream.cc",
892 "http/proxy_connect_redirect_http_stream.h",
893 "http/transport_security_persister.cc",
894 "http/transport_security_persister.h",
895 "http/transport_security_state_static.h",
896 "http/url_security_manager.cc",
897 "http/url_security_manager.h",
898 "http/url_security_manager_posix.cc",
899 "http/url_security_manager_win.cc",
900 "http2/decoder/decode_buffer.cc",
901 "http2/decoder/decode_buffer.h",
902 "http2/decoder/decode_http2_structures.cc",
903 "http2/decoder/decode_http2_structures.h",
904 "http2/decoder/decode_status.cc",
905 "http2/decoder/decode_status.h",
906 "http2/decoder/frame_decoder_state.cc",
907 "http2/decoder/frame_decoder_state.h",
908 "http2/decoder/http2_frame_decoder.cc",
909 "http2/decoder/http2_frame_decoder.h",
910 "http2/decoder/http2_frame_decoder_listener.cc",
911 "http2/decoder/http2_frame_decoder_listener.h",
912 "http2/decoder/http2_structure_decoder.cc",
913 "http2/decoder/http2_structure_decoder.h",
914 "http2/decoder/payload_decoders/altsvc_payload_decoder.cc",
915 "http2/decoder/payload_decoders/altsvc_payload_decoder.h",
916 "http2/decoder/payload_decoders/continuation_payload_decoder.cc",
917 "http2/decoder/payload_decoders/continuation_payload_decoder.h",
918 "http2/decoder/payload_decoders/data_payload_decoder.cc",
919 "http2/decoder/payload_decoders/data_payload_decoder.h",
920 "http2/decoder/payload_decoders/goaway_payload_decoder.cc",
921 "http2/decoder/payload_decoders/goaway_payload_decoder.h",
922 "http2/decoder/payload_decoders/headers_payload_decoder.cc",
923 "http2/decoder/payload_decoders/headers_payload_decoder.h",
924 "http2/decoder/payload_decoders/ping_payload_decoder.cc",
925 "http2/decoder/payload_decoders/ping_payload_decoder.h",
926 "http2/decoder/payload_decoders/priority_payload_decoder.cc",
927 "http2/decoder/payload_decoders/priority_payload_decoder.h",
928 "http2/decoder/payload_decoders/push_promise_payload_decoder.cc",
929 "http2/decoder/payload_decoders/push_promise_payload_decoder.h",
930 "http2/decoder/payload_decoders/rst_stream_payload_decoder.cc",
931 "http2/decoder/payload_decoders/rst_stream_payload_decoder.h",
932 "http2/decoder/payload_decoders/settings_payload_decoder.cc",
933 "http2/decoder/payload_decoders/settings_payload_decoder.h",
934 "http2/decoder/payload_decoders/unknown_payload_decoder.cc",
935 "http2/decoder/payload_decoders/unknown_payload_decoder.h",
936 "http2/decoder/payload_decoders/window_update_payload_decoder.cc",
937 "http2/decoder/payload_decoders/window_update_payload_decoder.h",
938 "http2/hpack/decoder/hpack_block_decoder.cc",
939 "http2/hpack/decoder/hpack_block_decoder.h",
Bence Békybad9ef92017-07-28 13:36:27940 "http2/hpack/decoder/hpack_decoder.cc",
941 "http2/hpack/decoder/hpack_decoder.h",
ckrasic73f7240b2017-01-24 00:06:45942 "http2/hpack/decoder/hpack_decoder_listener.cc",
943 "http2/hpack/decoder/hpack_decoder_listener.h",
944 "http2/hpack/decoder/hpack_decoder_state.cc",
945 "http2/hpack/decoder/hpack_decoder_state.h",
946 "http2/hpack/decoder/hpack_decoder_string_buffer.cc",
947 "http2/hpack/decoder/hpack_decoder_string_buffer.h",
948 "http2/hpack/decoder/hpack_decoder_tables.cc",
949 "http2/hpack/decoder/hpack_decoder_tables.h",
950 "http2/hpack/decoder/hpack_entry_decoder.cc",
951 "http2/hpack/decoder/hpack_entry_decoder.h",
952 "http2/hpack/decoder/hpack_entry_decoder_listener.cc",
953 "http2/hpack/decoder/hpack_entry_decoder_listener.h",
954 "http2/hpack/decoder/hpack_entry_type_decoder.cc",
955 "http2/hpack/decoder/hpack_entry_type_decoder.h",
956 "http2/hpack/decoder/hpack_string_decoder.cc",
957 "http2/hpack/decoder/hpack_string_decoder.h",
958 "http2/hpack/decoder/hpack_string_decoder_listener.cc",
959 "http2/hpack/decoder/hpack_string_decoder_listener.h",
960 "http2/hpack/decoder/hpack_varint_decoder.cc",
961 "http2/hpack/decoder/hpack_varint_decoder.h",
962 "http2/hpack/decoder/hpack_whole_entry_buffer.cc",
963 "http2/hpack/decoder/hpack_whole_entry_buffer.h",
964 "http2/hpack/decoder/hpack_whole_entry_listener.cc",
965 "http2/hpack/decoder/hpack_whole_entry_listener.h",
ckrasic73f7240b2017-01-24 00:06:45966 "http2/hpack/hpack_static_table_entries.inc",
967 "http2/hpack/hpack_string.cc",
968 "http2/hpack/hpack_string.h",
969 "http2/hpack/http2_hpack_constants.cc",
970 "http2/hpack/http2_hpack_constants.h",
Bence Békyd1406522017-08-07 18:05:08971 "http2/hpack/huffman/hpack_huffman_decoder.cc",
972 "http2/hpack/huffman/hpack_huffman_decoder.h",
ckrasic73f7240b2017-01-24 00:06:45973 "http2/http2_constants.cc",
974 "http2/http2_constants.h",
975 "http2/http2_structures.cc",
976 "http2/http2_structures.h",
Bence Béky6d0fa2c2017-06-28 17:42:01977 "http2/platform/api/http2_export.h",
bnc7c36d9b2017-02-09 20:35:43978 "http2/platform/api/http2_reconstruct_object.h",
Bence Békye53090e2017-07-12 02:58:40979 "http2/platform/api/http2_string.h",
980 "http2/platform/api/http2_string_piece.h",
981 "http2/platform/api/http2_string_utils.h",
Bence Béky6d0fa2c2017-06-28 17:42:01982 "http2/platform/impl/http2_export_impl.h",
bnc7c36d9b2017-02-09 20:35:43983 "http2/platform/impl/http2_reconstruct_object_impl.h",
Bence Békye53090e2017-07-12 02:58:40984 "http2/platform/impl/http2_string_impl.h",
985 "http2/platform/impl/http2_string_piece_impl.h",
986 "http2/platform/impl/http2_string_utils_impl.h",
ckrasic73f7240b2017-01-24 00:06:45987 "http2/tools/http2_bug_tracker.h",
988 "log/file_net_log_observer.cc",
989 "log/file_net_log_observer.h",
990 "log/net_log_util.cc",
991 "log/net_log_util.h",
992 "log/trace_net_log_observer.cc",
993 "log/trace_net_log_observer.h",
ckrasic73f7240b2017-01-24 00:06:45994 "nqe/cached_network_quality.cc",
995 "nqe/cached_network_quality.h",
996 "nqe/effective_connection_type.cc",
997 "nqe/effective_connection_type.h",
tbansal1bd4a952017-06-06 23:01:46998 "nqe/effective_connection_type_observer.h",
ckrasic73f7240b2017-01-24 00:06:45999 "nqe/event_creator.cc",
1000 "nqe/event_creator.h",
1001 "nqe/external_estimate_provider.h",
1002 "nqe/network_id.h",
1003 "nqe/network_qualities_prefs_manager.cc",
1004 "nqe/network_qualities_prefs_manager.h",
1005 "nqe/network_quality.cc",
1006 "nqe/network_quality.h",
1007 "nqe/network_quality_estimator.cc",
1008 "nqe/network_quality_estimator.h",
1009 "nqe/network_quality_estimator_params.cc",
1010 "nqe/network_quality_estimator_params.h",
tbansal82edab42017-06-19 05:55:251011 "nqe/network_quality_estimator_util.cc",
1012 "nqe/network_quality_estimator_util.h",
Devdeep Ray35f50662017-08-11 02:41:301013 "nqe/network_quality_observation.cc",
ckrasic73f7240b2017-01-24 00:06:451014 "nqe/network_quality_observation.h",
Tarun Bansald2677a12017-08-31 01:26:381015 "nqe/network_quality_observation_source.cc",
ckrasic73f7240b2017-01-24 00:06:451016 "nqe/network_quality_observation_source.h",
tbansal1bd4a952017-06-06 23:01:461017 "nqe/network_quality_provider.cc",
1018 "nqe/network_quality_provider.h",
ckrasic73f7240b2017-01-24 00:06:451019 "nqe/network_quality_store.cc",
1020 "nqe/network_quality_store.h",
Devdeep Ray35f50662017-08-11 02:41:301021 "nqe/observation_buffer.cc",
ckrasic73f7240b2017-01-24 00:06:451022 "nqe/observation_buffer.h",
tbansal1bd4a952017-06-06 23:01:461023 "nqe/rtt_throughput_estimates_observer.h",
ckrasic73f7240b2017-01-24 00:06:451024 "nqe/socket_watcher.cc",
1025 "nqe/socket_watcher.h",
1026 "nqe/socket_watcher_factory.cc",
1027 "nqe/socket_watcher_factory.h",
1028 "nqe/throughput_analyzer.cc",
1029 "nqe/throughput_analyzer.h",
1030 "nqe/weighted_observation.h",
zentarob89acda42017-07-14 01:28:571031 "ntlm/des.cc",
1032 "ntlm/des.h",
1033 "ntlm/md4.cc",
1034 "ntlm/md4.h",
1035 "ntlm/ntlm.cc",
1036 "ntlm/ntlm.h",
zentarob74795682017-07-14 00:58:221037 "ntlm/ntlm_buffer_reader.cc",
1038 "ntlm/ntlm_buffer_reader.h",
1039 "ntlm/ntlm_buffer_writer.cc",
1040 "ntlm/ntlm_buffer_writer.h",
Zentaro Kavanaghdd556612017-08-03 20:27:041041 "ntlm/ntlm_client.cc",
1042 "ntlm/ntlm_client.h",
zentarob74795682017-07-14 00:58:221043 "ntlm/ntlm_constants.h",
ckrasic73f7240b2017-01-24 00:06:451044 "proxy/dhcp_proxy_script_adapter_fetcher_win.cc",
1045 "proxy/dhcp_proxy_script_adapter_fetcher_win.h",
1046 "proxy/dhcp_proxy_script_fetcher.cc",
1047 "proxy/dhcp_proxy_script_fetcher.h",
1048 "proxy/dhcp_proxy_script_fetcher_factory.cc",
1049 "proxy/dhcp_proxy_script_fetcher_factory.h",
1050 "proxy/dhcp_proxy_script_fetcher_win.cc",
1051 "proxy/dhcp_proxy_script_fetcher_win.h",
1052 "proxy/dhcpcsvc_init_win.cc",
1053 "proxy/dhcpcsvc_init_win.h",
1054 "proxy/multi_threaded_proxy_resolver.cc",
1055 "proxy/multi_threaded_proxy_resolver.h",
1056 "proxy/network_delegate_error_observer.cc",
1057 "proxy/network_delegate_error_observer.h",
1058 "proxy/polling_proxy_config_service.cc",
1059 "proxy/polling_proxy_config_service.h",
1060 "proxy/proxy_bypass_rules.cc",
1061 "proxy/proxy_bypass_rules.h",
1062 "proxy/proxy_config.cc",
1063 "proxy/proxy_config.h",
1064 "proxy/proxy_config_service.h",
1065 "proxy/proxy_config_service_android.cc",
1066 "proxy/proxy_config_service_android.h",
1067 "proxy/proxy_config_service_fixed.cc",
1068 "proxy/proxy_config_service_fixed.h",
1069 "proxy/proxy_config_service_ios.cc",
1070 "proxy/proxy_config_service_ios.h",
1071 "proxy/proxy_config_service_linux.cc",
1072 "proxy/proxy_config_service_linux.h",
1073 "proxy/proxy_config_service_mac.cc",
1074 "proxy/proxy_config_service_mac.h",
1075 "proxy/proxy_config_service_win.cc",
1076 "proxy/proxy_config_service_win.h",
1077 "proxy/proxy_config_source.cc",
1078 "proxy/proxy_config_source.h",
1079 "proxy/proxy_info.cc",
1080 "proxy/proxy_info.h",
1081 "proxy/proxy_list.cc",
1082 "proxy/proxy_list.h",
1083 "proxy/proxy_resolver.h",
1084 "proxy/proxy_resolver_error_observer.h",
1085 "proxy/proxy_resolver_factory.cc",
1086 "proxy/proxy_resolver_factory.h",
1087 "proxy/proxy_resolver_mac.cc",
1088 "proxy/proxy_resolver_mac.h",
1089 "proxy/proxy_resolver_script.h",
1090 "proxy/proxy_resolver_script_data.cc",
1091 "proxy/proxy_resolver_script_data.h",
1092 "proxy/proxy_resolver_winhttp.cc",
1093 "proxy/proxy_resolver_winhttp.h",
1094 "proxy/proxy_retry_info.h",
1095 "proxy/proxy_script_decider.cc",
1096 "proxy/proxy_script_decider.h",
1097 "proxy/proxy_script_fetcher.h",
1098 "proxy/proxy_script_fetcher_impl.cc",
1099 "proxy/proxy_script_fetcher_impl.h",
1100 "proxy/proxy_server.cc",
1101 "proxy/proxy_server.h",
1102 "proxy/proxy_server_mac.cc",
1103 "proxy/proxy_service.cc",
1104 "proxy/proxy_service.h",
1105 "quic/chromium/bidirectional_stream_quic_impl.cc",
1106 "quic/chromium/bidirectional_stream_quic_impl.h",
1107 "quic/chromium/crypto/channel_id_chromium.cc",
1108 "quic/chromium/crypto/channel_id_chromium.h",
1109 "quic/chromium/crypto/proof_source_chromium.cc",
1110 "quic/chromium/crypto/proof_source_chromium.h",
1111 "quic/chromium/crypto/proof_verifier_chromium.cc",
1112 "quic/chromium/crypto/proof_verifier_chromium.h",
1113 "quic/chromium/network_connection.cc",
1114 "quic/chromium/network_connection.h",
1115 "quic/chromium/properties_based_quic_server_info.cc",
1116 "quic/chromium/properties_based_quic_server_info.h",
1117 "quic/chromium/quic_address_mismatch.cc",
1118 "quic/chromium/quic_address_mismatch.h",
1119 "quic/chromium/quic_chromium_alarm_factory.cc",
1120 "quic/chromium/quic_chromium_alarm_factory.h",
1121 "quic/chromium/quic_chromium_client_session.cc",
1122 "quic/chromium/quic_chromium_client_session.h",
1123 "quic/chromium/quic_chromium_client_stream.cc",
1124 "quic/chromium/quic_chromium_client_stream.h",
1125 "quic/chromium/quic_chromium_connection_helper.cc",
1126 "quic/chromium/quic_chromium_connection_helper.h",
1127 "quic/chromium/quic_chromium_packet_reader.cc",
1128 "quic/chromium/quic_chromium_packet_reader.h",
1129 "quic/chromium/quic_chromium_packet_writer.cc",
1130 "quic/chromium/quic_chromium_packet_writer.h",
1131 "quic/chromium/quic_clock_skew_detector.cc",
1132 "quic/chromium/quic_clock_skew_detector.h",
1133 "quic/chromium/quic_connection_logger.cc",
1134 "quic/chromium/quic_connection_logger.h",
1135 "quic/chromium/quic_crypto_client_stream_factory.cc",
1136 "quic/chromium/quic_crypto_client_stream_factory.h",
1137 "quic/chromium/quic_http_stream.cc",
1138 "quic/chromium/quic_http_stream.h",
1139 "quic/chromium/quic_http_utils.cc",
1140 "quic/chromium/quic_http_utils.h",
Yixin Wang0d2c6b7e12017-08-16 21:12:551141 "quic/chromium/quic_proxy_client_socket.cc",
1142 "quic/chromium/quic_proxy_client_socket.h",
ckrasic73f7240b2017-01-24 00:06:451143 "quic/chromium/quic_server_info.cc",
1144 "quic/chromium/quic_server_info.h",
1145 "quic/chromium/quic_stream_factory.cc",
1146 "quic/chromium/quic_stream_factory.h",
1147 "quic/chromium/quic_utils_chromium.cc",
1148 "quic/chromium/quic_utils_chromium.h",
1149 "quic/core/congestion_control/bandwidth_sampler.cc",
1150 "quic/core/congestion_control/bandwidth_sampler.h",
1151 "quic/core/congestion_control/bbr_sender.cc",
1152 "quic/core/congestion_control/bbr_sender.h",
1153 "quic/core/congestion_control/cubic.cc",
1154 "quic/core/congestion_control/cubic.h",
1155 "quic/core/congestion_control/cubic_bytes.cc",
1156 "quic/core/congestion_control/cubic_bytes.h",
1157 "quic/core/congestion_control/general_loss_algorithm.cc",
1158 "quic/core/congestion_control/general_loss_algorithm.h",
1159 "quic/core/congestion_control/hybrid_slow_start.cc",
1160 "quic/core/congestion_control/hybrid_slow_start.h",
1161 "quic/core/congestion_control/loss_detection_interface.h",
1162 "quic/core/congestion_control/pacing_sender.cc",
1163 "quic/core/congestion_control/pacing_sender.h",
1164 "quic/core/congestion_control/prr_sender.cc",
1165 "quic/core/congestion_control/prr_sender.h",
1166 "quic/core/congestion_control/rtt_stats.cc",
1167 "quic/core/congestion_control/rtt_stats.h",
1168 "quic/core/congestion_control/send_algorithm_interface.cc",
1169 "quic/core/congestion_control/send_algorithm_interface.h",
1170 "quic/core/congestion_control/tcp_cubic_sender_base.cc",
1171 "quic/core/congestion_control/tcp_cubic_sender_base.h",
ckrasic73f7240b2017-01-24 00:06:451172 "quic/core/congestion_control/tcp_cubic_sender_bytes.cc",
ckrasicb07e1602017-01-26 01:39:021173 "quic/core/congestion_control/tcp_cubic_sender_bytes.h",
ckrasic73f7240b2017-01-24 00:06:451174 "quic/core/congestion_control/tcp_cubic_sender_packets.cc",
1175 "quic/core/congestion_control/tcp_cubic_sender_packets.h",
1176 "quic/core/congestion_control/windowed_filter.h",
1177 "quic/core/crypto/aead_base_decrypter.cc",
1178 "quic/core/crypto/aead_base_decrypter.h",
1179 "quic/core/crypto/aead_base_encrypter.cc",
1180 "quic/core/crypto/aead_base_encrypter.h",
1181 "quic/core/crypto/aes_128_gcm_12_decrypter.cc",
1182 "quic/core/crypto/aes_128_gcm_12_decrypter.h",
1183 "quic/core/crypto/aes_128_gcm_12_encrypter.cc",
1184 "quic/core/crypto/aes_128_gcm_12_encrypter.h",
1185 "quic/core/crypto/cert_compressor.cc",
1186 "quic/core/crypto/cert_compressor.h",
1187 "quic/core/crypto/chacha20_poly1305_decrypter.cc",
1188 "quic/core/crypto/chacha20_poly1305_decrypter.h",
1189 "quic/core/crypto/chacha20_poly1305_encrypter.cc",
1190 "quic/core/crypto/chacha20_poly1305_encrypter.h",
1191 "quic/core/crypto/channel_id.cc",
1192 "quic/core/crypto/channel_id.h",
1193 "quic/core/crypto/common_cert_set.cc",
1194 "quic/core/crypto/common_cert_set.h",
1195 "quic/core/crypto/crypto_framer.cc",
1196 "quic/core/crypto/crypto_framer.h",
1197 "quic/core/crypto/crypto_handshake.cc",
1198 "quic/core/crypto/crypto_handshake.h",
1199 "quic/core/crypto/crypto_handshake_message.cc",
1200 "quic/core/crypto/crypto_handshake_message.h",
Fan Yang2a1699a2017-07-25 16:44:551201 "quic/core/crypto/crypto_message_parser.h",
ckrasic73f7240b2017-01-24 00:06:451202 "quic/core/crypto/crypto_protocol.h",
1203 "quic/core/crypto/crypto_secret_boxer.cc",
1204 "quic/core/crypto/crypto_secret_boxer.h",
1205 "quic/core/crypto/crypto_server_config_protobuf.cc",
1206 "quic/core/crypto/crypto_server_config_protobuf.h",
1207 "quic/core/crypto/crypto_utils.cc",
1208 "quic/core/crypto/crypto_utils.h",
1209 "quic/core/crypto/curve25519_key_exchange.cc",
1210 "quic/core/crypto/curve25519_key_exchange.h",
1211 "quic/core/crypto/ephemeral_key_source.h",
1212 "quic/core/crypto/key_exchange.h",
ckrasic73f7240b2017-01-24 00:06:451213 "quic/core/crypto/null_decrypter.cc",
1214 "quic/core/crypto/null_decrypter.h",
1215 "quic/core/crypto/null_encrypter.cc",
1216 "quic/core/crypto/null_encrypter.h",
1217 "quic/core/crypto/p256_key_exchange.cc",
1218 "quic/core/crypto/p256_key_exchange.h",
1219 "quic/core/crypto/proof_source.cc",
1220 "quic/core/crypto/proof_source.h",
1221 "quic/core/crypto/proof_verifier.h",
1222 "quic/core/crypto/quic_compressed_certs_cache.cc",
1223 "quic/core/crypto/quic_compressed_certs_cache.h",
1224 "quic/core/crypto/quic_crypto_client_config.cc",
1225 "quic/core/crypto/quic_crypto_client_config.h",
1226 "quic/core/crypto/quic_crypto_proof.cc",
1227 "quic/core/crypto/quic_crypto_proof.h",
1228 "quic/core/crypto/quic_crypto_server_config.cc",
1229 "quic/core/crypto/quic_crypto_server_config.h",
1230 "quic/core/crypto/quic_decrypter.cc",
1231 "quic/core/crypto/quic_decrypter.h",
1232 "quic/core/crypto/quic_encrypter.cc",
1233 "quic/core/crypto/quic_encrypter.h",
1234 "quic/core/crypto/quic_random.cc",
1235 "quic/core/crypto/quic_random.h",
Ryan Hamilton88151482017-09-06 14:55:451236 "quic/core/crypto/quic_tls_adapter.cc",
1237 "quic/core/crypto/quic_tls_adapter.h",
ckrasic73f7240b2017-01-24 00:06:451238 "quic/core/crypto/scoped_evp_aead_ctx.cc",
1239 "quic/core/crypto/scoped_evp_aead_ctx.h",
ckrasic73f7240b2017-01-24 00:06:451240 "quic/core/frames/quic_ack_frame.cc",
1241 "quic/core/frames/quic_ack_frame.h",
1242 "quic/core/frames/quic_blocked_frame.cc",
1243 "quic/core/frames/quic_blocked_frame.h",
1244 "quic/core/frames/quic_connection_close_frame.cc",
1245 "quic/core/frames/quic_connection_close_frame.h",
1246 "quic/core/frames/quic_frame.cc",
1247 "quic/core/frames/quic_frame.h",
1248 "quic/core/frames/quic_goaway_frame.cc",
1249 "quic/core/frames/quic_goaway_frame.h",
1250 "quic/core/frames/quic_mtu_discovery_frame.h",
1251 "quic/core/frames/quic_padding_frame.cc",
1252 "quic/core/frames/quic_padding_frame.h",
ckrasic73f7240b2017-01-24 00:06:451253 "quic/core/frames/quic_ping_frame.h",
1254 "quic/core/frames/quic_rst_stream_frame.cc",
1255 "quic/core/frames/quic_rst_stream_frame.h",
1256 "quic/core/frames/quic_stop_waiting_frame.cc",
1257 "quic/core/frames/quic_stop_waiting_frame.h",
1258 "quic/core/frames/quic_stream_frame.cc",
1259 "quic/core/frames/quic_stream_frame.h",
1260 "quic/core/frames/quic_window_update_frame.cc",
1261 "quic/core/frames/quic_window_update_frame.h",
vasilvv8b7782e2017-05-12 01:52:031262 "quic/core/packet_number_indexed_queue.h",
ckrasic73f7240b2017-01-24 00:06:451263 "quic/core/quic_ack_listener_interface.cc",
1264 "quic/core/quic_ack_listener_interface.h",
1265 "quic/core/quic_alarm.cc",
1266 "quic/core/quic_alarm.h",
ckrasicb07e1602017-01-26 01:39:021267 "quic/core/quic_alarm_factory.h",
ckrasic73f7240b2017-01-24 00:06:451268 "quic/core/quic_arena_scoped_ptr.h",
1269 "quic/core/quic_bandwidth.cc",
1270 "quic/core/quic_bandwidth.h",
1271 "quic/core/quic_blocked_writer_interface.h",
1272 "quic/core/quic_buffer_allocator.cc",
1273 "quic/core/quic_buffer_allocator.h",
1274 "quic/core/quic_buffered_packet_store.cc",
1275 "quic/core/quic_buffered_packet_store.h",
1276 "quic/core/quic_client_promised_info.cc",
1277 "quic/core/quic_client_promised_info.h",
1278 "quic/core/quic_client_push_promise_index.cc",
1279 "quic/core/quic_client_push_promise_index.h",
ckrasic73f7240b2017-01-24 00:06:451280 "quic/core/quic_config.cc",
1281 "quic/core/quic_config.h",
1282 "quic/core/quic_connection.cc",
1283 "quic/core/quic_connection.h",
1284 "quic/core/quic_connection_close_delegate_interface.h",
1285 "quic/core/quic_connection_stats.cc",
1286 "quic/core/quic_connection_stats.h",
1287 "quic/core/quic_constants.cc",
1288 "quic/core/quic_constants.h",
Fan Yang2a1699a2017-07-25 16:44:551289 "quic/core/quic_crypto_client_handshaker.cc",
1290 "quic/core/quic_crypto_client_handshaker.h",
ckrasic73f7240b2017-01-24 00:06:451291 "quic/core/quic_crypto_client_stream.cc",
1292 "quic/core/quic_crypto_client_stream.h",
Fan Yang2a1699a2017-07-25 16:44:551293 "quic/core/quic_crypto_handshaker.cc",
1294 "quic/core/quic_crypto_handshaker.h",
1295 "quic/core/quic_crypto_server_handshaker.cc",
1296 "quic/core/quic_crypto_server_handshaker.h",
ckrasic73f7240b2017-01-24 00:06:451297 "quic/core/quic_crypto_server_stream.cc",
1298 "quic/core/quic_crypto_server_stream.h",
1299 "quic/core/quic_crypto_stream.cc",
1300 "quic/core/quic_crypto_stream.h",
1301 "quic/core/quic_data_reader.cc",
1302 "quic/core/quic_data_reader.h",
1303 "quic/core/quic_data_writer.cc",
1304 "quic/core/quic_data_writer.h",
1305 "quic/core/quic_error_codes.cc",
1306 "quic/core/quic_error_codes.h",
ckrasicb07e1602017-01-26 01:39:021307 "quic/core/quic_flags_list.h",
ckrasic73f7240b2017-01-24 00:06:451308 "quic/core/quic_flow_controller.cc",
1309 "quic/core/quic_flow_controller.h",
1310 "quic/core/quic_framer.cc",
1311 "quic/core/quic_framer.h",
1312 "quic/core/quic_header_list.cc",
1313 "quic/core/quic_header_list.h",
1314 "quic/core/quic_headers_stream.cc",
1315 "quic/core/quic_headers_stream.h",
1316 "quic/core/quic_iovector.h",
ckrasic73f7240b2017-01-24 00:06:451317 "quic/core/quic_one_block_arena.h",
1318 "quic/core/quic_packet_creator.cc",
1319 "quic/core/quic_packet_creator.h",
1320 "quic/core/quic_packet_generator.cc",
1321 "quic/core/quic_packet_generator.h",
1322 "quic/core/quic_packet_writer.h",
1323 "quic/core/quic_packets.cc",
1324 "quic/core/quic_packets.h",
1325 "quic/core/quic_pending_retransmission.h",
1326 "quic/core/quic_received_packet_manager.cc",
1327 "quic/core/quic_received_packet_manager.h",
1328 "quic/core/quic_sent_packet_manager.cc",
1329 "quic/core/quic_sent_packet_manager.h",
1330 "quic/core/quic_server_id.cc",
1331 "quic/core/quic_server_id.h",
1332 "quic/core/quic_server_session_base.cc",
1333 "quic/core/quic_server_session_base.h",
1334 "quic/core/quic_session.cc",
1335 "quic/core/quic_session.h",
1336 "quic/core/quic_simple_buffer_allocator.cc",
1337 "quic/core/quic_simple_buffer_allocator.h",
1338 "quic/core/quic_socket_address_coder.cc",
1339 "quic/core/quic_socket_address_coder.h",
Ryan Hamiltonc4402302017-08-10 01:55:461340 "quic/core/quic_spdy_client_session_base.cc",
1341 "quic/core/quic_spdy_client_session_base.h",
ckrasic73f7240b2017-01-24 00:06:451342 "quic/core/quic_spdy_session.cc",
1343 "quic/core/quic_spdy_session.h",
1344 "quic/core/quic_spdy_stream.cc",
1345 "quic/core/quic_spdy_stream.h",
1346 "quic/core/quic_stream.cc",
1347 "quic/core/quic_stream.h",
fayangdf3cb2b2017-07-05 15:03:381348 "quic/core/quic_stream_frame_data_producer.h",
1349 "quic/core/quic_stream_send_buffer.cc",
1350 "quic/core/quic_stream_send_buffer.h",
ckrasic73f7240b2017-01-24 00:06:451351 "quic/core/quic_stream_sequencer.cc",
1352 "quic/core/quic_stream_sequencer.h",
1353 "quic/core/quic_stream_sequencer_buffer.cc",
1354 "quic/core/quic_stream_sequencer_buffer.h",
1355 "quic/core/quic_sustained_bandwidth_recorder.cc",
1356 "quic/core/quic_sustained_bandwidth_recorder.h",
1357 "quic/core/quic_tag.cc",
1358 "quic/core/quic_tag.h",
1359 "quic/core/quic_time.cc",
1360 "quic/core/quic_time.h",
1361 "quic/core/quic_transmission_info.cc",
1362 "quic/core/quic_transmission_info.h",
1363 "quic/core/quic_types.cc",
1364 "quic/core/quic_types.h",
1365 "quic/core/quic_unacked_packet_map.cc",
1366 "quic/core/quic_unacked_packet_map.h",
1367 "quic/core/quic_utils.cc",
1368 "quic/core/quic_utils.h",
1369 "quic/core/quic_version_manager.cc",
1370 "quic/core/quic_version_manager.h",
1371 "quic/core/quic_versions.cc",
1372 "quic/core/quic_versions.h",
1373 "quic/core/quic_write_blocked_list.cc",
1374 "quic/core/quic_write_blocked_list.h",
1375 "quic/core/spdy_utils.cc",
1376 "quic/core/spdy_utils.h",
1377 "quic/platform/api/quic_aligned.h",
1378 "quic/platform/api/quic_bug_tracker.h",
1379 "quic/platform/api/quic_clock.cc",
1380 "quic/platform/api/quic_clock.h",
fayangbaec8ff52017-01-28 03:26:121381 "quic/platform/api/quic_containers.h",
fayang3ae2fa22017-03-02 18:03:401382 "quic/platform/api/quic_endian.h",
xunjieli48e4f102017-04-11 23:06:531383 "quic/platform/api/quic_estimate_memory_usage.h",
ckrasic73f7240b2017-01-24 00:06:451384 "quic/platform/api/quic_export.h",
vasilvv93dc0c32017-02-24 23:53:511385 "quic/platform/api/quic_flag_utils.h",
rchfc6809b62017-04-19 01:37:011386 "quic/platform/api/quic_flags.h",
mpw3f859532017-02-16 20:00:311387 "quic/platform/api/quic_hostname_utils.cc",
1388 "quic/platform/api/quic_hostname_utils.h",
ckrasic73f7240b2017-01-24 00:06:451389 "quic/platform/api/quic_ip_address.cc",
1390 "quic/platform/api/quic_ip_address.h",
1391 "quic/platform/api/quic_ip_address_family.h",
1392 "quic/platform/api/quic_logging.h",
1393 "quic/platform/api/quic_lru_cache.h",
ckrasicb07e1602017-01-26 01:39:021394 "quic/platform/api/quic_map_util.h",
Fan Yang62cae30f2017-09-01 20:50:511395 "quic/platform/api/quic_mem_slice.h",
1396 "quic/platform/api/quic_mem_slice_span.h",
ckrasic73f7240b2017-01-24 00:06:451397 "quic/platform/api/quic_mutex.cc",
1398 "quic/platform/api/quic_mutex.h",
jokulik35917302017-05-04 04:04:081399 "quic/platform/api/quic_pcc_sender.h",
ckrasic73f7240b2017-01-24 00:06:451400 "quic/platform/api/quic_ptr_util.h",
1401 "quic/platform/api/quic_reference_counted.h",
1402 "quic/platform/api/quic_socket_address.cc",
1403 "quic/platform/api/quic_socket_address.h",
ckrasicb07e1602017-01-26 01:39:021404 "quic/platform/api/quic_stack_trace.h",
ckrasic73f7240b2017-01-24 00:06:451405 "quic/platform/api/quic_str_cat.h",
fayang19c30772017-03-09 15:06:171406 "quic/platform/api/quic_string_piece.h",
ckrasic73f7240b2017-01-24 00:06:451407 "quic/platform/api/quic_text_utils.h",
fayang32caee402017-02-13 21:00:081408 "quic/platform/api/quic_url.cc",
1409 "quic/platform/api/quic_url.h",
fayang527c6c302017-01-24 15:38:311410 "quic/platform/api/quic_url_utils.cc",
1411 "quic/platform/api/quic_url_utils.h",
ckrasic73f7240b2017-01-24 00:06:451412 "quic/platform/impl/quic_aligned_impl.h",
1413 "quic/platform/impl/quic_bug_tracker_impl.h",
1414 "quic/platform/impl/quic_chromium_clock.cc",
1415 "quic/platform/impl/quic_chromium_clock.h",
fayangbaec8ff52017-01-28 03:26:121416 "quic/platform/impl/quic_containers_impl.h",
fayang3ae2fa22017-03-02 18:03:401417 "quic/platform/impl/quic_endian_impl.h",
xunjieli48e4f102017-04-11 23:06:531418 "quic/platform/impl/quic_estimate_memory_usage_impl.h",
ckrasic73f7240b2017-01-24 00:06:451419 "quic/platform/impl/quic_export_impl.h",
vasilvv93dc0c32017-02-24 23:53:511420 "quic/platform/impl/quic_flag_utils_impl.h",
rchfc6809b62017-04-19 01:37:011421 "quic/platform/impl/quic_flags_impl.cc",
1422 "quic/platform/impl/quic_flags_impl.h",
mpw3f859532017-02-16 20:00:311423 "quic/platform/impl/quic_hostname_utils_impl.cc",
1424 "quic/platform/impl/quic_hostname_utils_impl.h",
ckrasic73f7240b2017-01-24 00:06:451425 "quic/platform/impl/quic_ip_address_impl.cc",
1426 "quic/platform/impl/quic_ip_address_impl.h",
1427 "quic/platform/impl/quic_logging_impl.h",
1428 "quic/platform/impl/quic_lru_cache_impl.h",
ckrasicb07e1602017-01-26 01:39:021429 "quic/platform/impl/quic_map_util_impl.h",
Fan Yang62cae30f2017-09-01 20:50:511430 "quic/platform/impl/quic_mem_slice_impl.cc",
1431 "quic/platform/impl/quic_mem_slice_impl.h",
1432 "quic/platform/impl/quic_mem_slice_span_impl.cc",
1433 "quic/platform/impl/quic_mem_slice_span_impl.h",
ckrasic73f7240b2017-01-24 00:06:451434 "quic/platform/impl/quic_mutex_impl.cc",
1435 "quic/platform/impl/quic_mutex_impl.h",
jokulik35917302017-05-04 04:04:081436 "quic/platform/impl/quic_pcc_sender_impl.h",
ckrasic73f7240b2017-01-24 00:06:451437 "quic/platform/impl/quic_ptr_util_impl.h",
1438 "quic/platform/impl/quic_reference_counted_impl.h",
1439 "quic/platform/impl/quic_socket_address_impl.cc",
1440 "quic/platform/impl/quic_socket_address_impl.h",
ckrasicb07e1602017-01-26 01:39:021441 "quic/platform/impl/quic_stack_trace_impl.h",
ckrasic73f7240b2017-01-24 00:06:451442 "quic/platform/impl/quic_str_cat_impl.h",
fayang19c30772017-03-09 15:06:171443 "quic/platform/impl/quic_string_piece_impl.h",
ckrasic73f7240b2017-01-24 00:06:451444 "quic/platform/impl/quic_text_utils_impl.h",
fayang32caee402017-02-13 21:00:081445 "quic/platform/impl/quic_url_impl.cc",
1446 "quic/platform/impl/quic_url_impl.h",
fayang527c6c302017-01-24 15:38:311447 "quic/platform/impl/quic_url_utils_impl.cc",
1448 "quic/platform/impl/quic_url_utils_impl.h",
rch7b8e0afb12017-05-03 01:07:221449 "quic/quartc/quartc_clock_interface.h",
ckrasic73f7240b2017-01-24 00:06:451450 "quic/quartc/quartc_factory.cc",
1451 "quic/quartc/quartc_factory.h",
1452 "quic/quartc/quartc_factory_interface.h",
1453 "quic/quartc/quartc_packet_writer.cc",
1454 "quic/quartc/quartc_packet_writer.h",
1455 "quic/quartc/quartc_session.cc",
1456 "quic/quartc/quartc_session.h",
1457 "quic/quartc/quartc_session_interface.h",
1458 "quic/quartc/quartc_stream.cc",
1459 "quic/quartc/quartc_stream.h",
1460 "quic/quartc/quartc_stream_interface.h",
ckrasicb07e1602017-01-26 01:39:021461 "quic/quartc/quartc_task_runner_interface.h",
ckrasic73f7240b2017-01-24 00:06:451462 "socket/client_socket_factory.cc",
1463 "socket/client_socket_factory.h",
1464 "socket/client_socket_pool.cc",
1465 "socket/client_socket_pool.h",
1466 "socket/client_socket_pool_base.cc",
1467 "socket/client_socket_pool_base.h",
1468 "socket/client_socket_pool_manager.cc",
1469 "socket/client_socket_pool_manager.h",
1470 "socket/client_socket_pool_manager_impl.cc",
1471 "socket/client_socket_pool_manager_impl.h",
1472 "socket/datagram_client_socket.h",
1473 "socket/datagram_server_socket.h",
1474 "socket/datagram_socket.h",
1475 "socket/diff_serv_code_point.h",
1476 "socket/server_socket.cc",
1477 "socket/server_socket.h",
1478 "socket/socket_descriptor.cc",
1479 "socket/socket_descriptor.h",
1480 "socket/socket_net_log_params.cc",
1481 "socket/socket_net_log_params.h",
tfarina8a407062017-04-06 13:14:171482 "socket/socket_options.cc",
1483 "socket/socket_options.h",
ckrasic73f7240b2017-01-24 00:06:451484 "socket/socket_posix.cc",
1485 "socket/socket_posix.h",
1486 "socket/socks5_client_socket.cc",
1487 "socket/socks5_client_socket.h",
1488 "socket/socks_client_socket.cc",
1489 "socket/socks_client_socket.h",
1490 "socket/socks_client_socket_pool.cc",
1491 "socket/socks_client_socket_pool.h",
1492 "socket/ssl_client_socket_pool.cc",
1493 "socket/ssl_client_socket_pool.h",
1494 "socket/ssl_server_socket.h",
1495 "socket/ssl_server_socket_impl.cc",
1496 "socket/ssl_server_socket_impl.h",
1497 "socket/stream_socket.cc",
1498 "socket/stream_socket.h",
1499 "socket/tcp_client_socket.cc",
1500 "socket/tcp_client_socket.h",
1501 "socket/tcp_server_socket.cc",
1502 "socket/tcp_server_socket.h",
ckrasic73f7240b2017-01-24 00:06:451503 "socket/tcp_socket.h",
1504 "socket/tcp_socket_posix.cc",
1505 "socket/tcp_socket_posix.h",
1506 "socket/tcp_socket_win.cc",
1507 "socket/tcp_socket_win.h",
1508 "socket/transport_client_socket_pool.cc",
1509 "socket/transport_client_socket_pool.h",
1510 "socket/udp_client_socket.cc",
1511 "socket/udp_client_socket.h",
1512 "socket/udp_net_log_parameters.cc",
1513 "socket/udp_net_log_parameters.h",
1514 "socket/udp_server_socket.cc",
1515 "socket/udp_server_socket.h",
1516 "socket/udp_socket.h",
1517 "socket/udp_socket_posix.cc",
1518 "socket/udp_socket_posix.h",
1519 "socket/udp_socket_win.cc",
1520 "socket/udp_socket_win.h",
ckrasic73f7240b2017-01-24 00:06:451521 "socket/websocket_endpoint_lock_manager.cc",
1522 "socket/websocket_endpoint_lock_manager.h",
1523 "socket/websocket_transport_client_socket_pool.cc",
1524 "socket/websocket_transport_client_socket_pool.h",
1525 "socket/websocket_transport_connect_sub_job.cc",
1526 "socket/websocket_transport_connect_sub_job.h",
bnc8f8f7d302017-04-24 18:08:061527 "spdy/chromium/bidirectional_stream_spdy_impl.cc",
1528 "spdy/chromium/bidirectional_stream_spdy_impl.h",
1529 "spdy/chromium/buffered_spdy_framer.cc",
1530 "spdy/chromium/buffered_spdy_framer.h",
1531 "spdy/chromium/header_coalescer.cc",
1532 "spdy/chromium/header_coalescer.h",
1533 "spdy/chromium/http2_priority_dependencies.cc",
1534 "spdy/chromium/http2_priority_dependencies.h",
1535 "spdy/chromium/multiplexed_http_stream.cc",
1536 "spdy/chromium/multiplexed_http_stream.h",
1537 "spdy/chromium/multiplexed_session.cc",
1538 "spdy/chromium/multiplexed_session.h",
1539 "spdy/chromium/server_push_delegate.h",
1540 "spdy/chromium/spdy_buffer.cc",
1541 "spdy/chromium/spdy_buffer.h",
1542 "spdy/chromium/spdy_buffer_producer.cc",
1543 "spdy/chromium/spdy_buffer_producer.h",
1544 "spdy/chromium/spdy_flags.cc",
1545 "spdy/chromium/spdy_flags.h",
1546 "spdy/chromium/spdy_http_stream.cc",
1547 "spdy/chromium/spdy_http_stream.h",
1548 "spdy/chromium/spdy_http_utils.cc",
1549 "spdy/chromium/spdy_http_utils.h",
1550 "spdy/chromium/spdy_log_util.cc",
1551 "spdy/chromium/spdy_log_util.h",
1552 "spdy/chromium/spdy_proxy_client_socket.cc",
1553 "spdy/chromium/spdy_proxy_client_socket.h",
1554 "spdy/chromium/spdy_read_queue.cc",
1555 "spdy/chromium/spdy_read_queue.h",
1556 "spdy/chromium/spdy_session.cc",
1557 "spdy/chromium/spdy_session.h",
1558 "spdy/chromium/spdy_session_key.cc",
1559 "spdy/chromium/spdy_session_key.h",
1560 "spdy/chromium/spdy_session_pool.cc",
1561 "spdy/chromium/spdy_session_pool.h",
1562 "spdy/chromium/spdy_stream.cc",
1563 "spdy/chromium/spdy_stream.h",
1564 "spdy/chromium/spdy_write_queue.cc",
1565 "spdy/chromium/spdy_write_queue.h",
1566 "spdy/core/fuzzing/hpack_fuzz_util.cc",
1567 "spdy/core/fuzzing/hpack_fuzz_util.h",
1568 "spdy/core/hpack/hpack_constants.cc",
1569 "spdy/core/hpack/hpack_constants.h",
Dianna Hu33dcd6c2017-07-24 15:01:461570 "spdy/core/hpack/hpack_decoder_adapter.cc",
1571 "spdy/core/hpack/hpack_decoder_adapter.h",
bnc8f8f7d302017-04-24 18:08:061572 "spdy/core/hpack/hpack_encoder.cc",
1573 "spdy/core/hpack/hpack_encoder.h",
1574 "spdy/core/hpack/hpack_entry.cc",
1575 "spdy/core/hpack/hpack_entry.h",
1576 "spdy/core/hpack/hpack_header_table.cc",
1577 "spdy/core/hpack/hpack_header_table.h",
bnc8f8f7d302017-04-24 18:08:061578 "spdy/core/hpack/hpack_huffman_table.cc",
1579 "spdy/core/hpack/hpack_huffman_table.h",
bnc8f8f7d302017-04-24 18:08:061580 "spdy/core/hpack/hpack_output_stream.cc",
1581 "spdy/core/hpack/hpack_output_stream.h",
1582 "spdy/core/hpack/hpack_static_table.cc",
1583 "spdy/core/hpack/hpack_static_table.h",
1584 "spdy/core/http2_frame_decoder_adapter.cc",
1585 "spdy/core/http2_frame_decoder_adapter.h",
bnc8f8f7d302017-04-24 18:08:061586 "spdy/core/priority_write_scheduler.h",
1587 "spdy/core/spdy_alt_svc_wire_format.cc",
1588 "spdy/core/spdy_alt_svc_wire_format.h",
1589 "spdy/core/spdy_bitmasks.h",
1590 "spdy/core/spdy_bug_tracker.h",
1591 "spdy/core/spdy_frame_builder.cc",
1592 "spdy/core/spdy_frame_builder.h",
1593 "spdy/core/spdy_frame_reader.cc",
1594 "spdy/core/spdy_frame_reader.h",
1595 "spdy/core/spdy_framer.cc",
1596 "spdy/core/spdy_framer.h",
bnc8f8f7d302017-04-24 18:08:061597 "spdy/core/spdy_header_block.cc",
1598 "spdy/core/spdy_header_block.h",
bnc8f8f7d302017-04-24 18:08:061599 "spdy/core/spdy_headers_handler_interface.h",
1600 "spdy/core/spdy_pinnable_buffer_piece.cc",
1601 "spdy/core/spdy_pinnable_buffer_piece.h",
1602 "spdy/core/spdy_prefixed_buffer_reader.cc",
1603 "spdy/core/spdy_prefixed_buffer_reader.h",
1604 "spdy/core/spdy_protocol.cc",
1605 "spdy/core/spdy_protocol.h",
1606 "spdy/core/write_scheduler.h",
1607 "spdy/core/zero_copy_output_buffer.h",
bnc8078c9db2017-02-09 20:06:381608 "spdy/platform/api/spdy_estimate_memory_usage.h",
bncc4c12fd2017-04-27 19:11:441609 "spdy/platform/api/spdy_export.h",
bncdae95a82017-04-27 14:05:101610 "spdy/platform/api/spdy_ptr_util.h",
diannahu401e364c2017-04-07 01:17:471611 "spdy/platform/api/spdy_string.h",
bnca16616c2017-03-21 13:58:251612 "spdy/platform/api/spdy_string_piece.h",
bnced7be41d2017-03-28 17:30:241613 "spdy/platform/api/spdy_string_utils.h",
bnc8078c9db2017-02-09 20:06:381614 "spdy/platform/impl/spdy_estimate_memory_usage_impl.h",
bncc4c12fd2017-04-27 19:11:441615 "spdy/platform/impl/spdy_export_impl.h",
bncdae95a82017-04-27 14:05:101616 "spdy/platform/impl/spdy_ptr_util_impl.h",
diannahu401e364c2017-04-07 01:17:471617 "spdy/platform/impl/spdy_string_impl.h",
bnca16616c2017-03-21 13:58:251618 "spdy/platform/impl/spdy_string_piece_impl.h",
bnced7be41d2017-03-28 17:30:241619 "spdy/platform/impl/spdy_string_utils_impl.h",
ckrasic73f7240b2017-01-24 00:06:451620 "ssl/client_cert_store.h",
1621 "ssl/client_cert_store_mac.cc",
1622 "ssl/client_cert_store_mac.h",
1623 "ssl/client_cert_store_nss.cc",
1624 "ssl/client_cert_store_nss.h",
1625 "ssl/client_cert_store_win.cc",
1626 "ssl/client_cert_store_win.h",
1627 "ssl/ssl_config_service_defaults.cc",
1628 "ssl/ssl_config_service_defaults.h",
1629 "ssl/ssl_key_logger.cc",
1630 "ssl/ssl_key_logger.h",
ckrasic73f7240b2017-01-24 00:06:451631 "ssl/ssl_platform_key_android.cc",
thakisb8590c92017-03-23 18:14:531632 "ssl/ssl_platform_key_android.h",
ckrasic73f7240b2017-01-24 00:06:451633 "ssl/ssl_platform_key_mac.cc",
thakisb8590c92017-03-23 18:14:531634 "ssl/ssl_platform_key_mac.h",
ckrasic73f7240b2017-01-24 00:06:451635 "ssl/ssl_platform_key_nss.cc",
mattm436ccfe2017-06-19 20:24:081636 "ssl/ssl_platform_key_nss.h",
ckrasic73f7240b2017-01-24 00:06:451637 "ssl/ssl_platform_key_util.cc",
1638 "ssl/ssl_platform_key_util.h",
1639 "ssl/ssl_platform_key_win.cc",
1640 "ssl/test_ssl_private_key.cc",
1641 "ssl/test_ssl_private_key.h",
1642 "ssl/threaded_ssl_private_key.cc",
1643 "ssl/threaded_ssl_private_key.h",
1644 "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
1645 "third_party/mozilla_security_manager/nsNSSCertificateDB.h",
1646 "third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
1647 "third_party/mozilla_security_manager/nsPKCS12Blob.h",
1648 "url_request/data_protocol_handler.cc",
1649 "url_request/data_protocol_handler.h",
1650 "url_request/http_user_agent_settings.h",
Julia Tuttlef9b74062017-07-27 14:44:051651 "url_request/network_error_logging_delegate.cc",
1652 "url_request/network_error_logging_delegate.h",
ckrasic73f7240b2017-01-24 00:06:451653 "url_request/redirect_info.cc",
1654 "url_request/redirect_info.h",
1655 "url_request/report_sender.cc",
1656 "url_request/report_sender.h",
ckrasic73f7240b2017-01-24 00:06:451657 "url_request/static_http_user_agent_settings.cc",
1658 "url_request/static_http_user_agent_settings.h",
1659 "url_request/url_fetcher.cc",
1660 "url_request/url_fetcher.h",
1661 "url_request/url_fetcher_core.cc",
1662 "url_request/url_fetcher_core.h",
1663 "url_request/url_fetcher_delegate.cc",
1664 "url_request/url_fetcher_delegate.h",
1665 "url_request/url_fetcher_factory.h",
1666 "url_request/url_fetcher_impl.cc",
1667 "url_request/url_fetcher_impl.h",
1668 "url_request/url_fetcher_response_writer.cc",
1669 "url_request/url_fetcher_response_writer.h",
1670 "url_request/url_range_request_job.cc",
1671 "url_request/url_range_request_job.h",
1672 "url_request/url_request.cc",
1673 "url_request/url_request.h",
1674 "url_request/url_request_context.cc",
1675 "url_request/url_request_context.h",
1676 "url_request/url_request_context_builder.cc",
1677 "url_request/url_request_context_builder.h",
1678 "url_request/url_request_context_getter.cc",
1679 "url_request/url_request_context_getter.h",
1680 "url_request/url_request_context_getter_observer.h",
1681 "url_request/url_request_context_storage.cc",
1682 "url_request/url_request_context_storage.h",
1683 "url_request/url_request_data_job.cc",
1684 "url_request/url_request_data_job.h",
1685 "url_request/url_request_error_job.cc",
1686 "url_request/url_request_error_job.h",
1687 "url_request/url_request_filter.cc",
1688 "url_request/url_request_filter.h",
1689 "url_request/url_request_http_job.cc",
1690 "url_request/url_request_http_job.h",
1691 "url_request/url_request_intercepting_job_factory.cc",
1692 "url_request/url_request_intercepting_job_factory.h",
1693 "url_request/url_request_interceptor.cc",
1694 "url_request/url_request_interceptor.h",
1695 "url_request/url_request_job.cc",
1696 "url_request/url_request_job.h",
1697 "url_request/url_request_job_factory.cc",
1698 "url_request/url_request_job_factory.h",
1699 "url_request/url_request_job_factory_impl.cc",
1700 "url_request/url_request_job_factory_impl.h",
1701 "url_request/url_request_job_manager.cc",
1702 "url_request/url_request_job_manager.h",
1703 "url_request/url_request_netlog_params.cc",
1704 "url_request/url_request_netlog_params.h",
1705 "url_request/url_request_redirect_job.cc",
1706 "url_request/url_request_redirect_job.h",
1707 "url_request/url_request_simple_job.cc",
1708 "url_request/url_request_simple_job.h",
1709 "url_request/url_request_status.cc",
1710 "url_request/url_request_status.h",
1711 "url_request/url_request_test_job.cc",
1712 "url_request/url_request_test_job.h",
1713 "url_request/url_request_throttler_entry.cc",
1714 "url_request/url_request_throttler_entry.h",
1715 "url_request/url_request_throttler_entry_interface.h",
1716 "url_request/url_request_throttler_manager.cc",
1717 "url_request/url_request_throttler_manager.h",
1718 "url_request/view_cache_helper.cc",
1719 "url_request/view_cache_helper.h",
1720 "url_request/websocket_handshake_userdata_key.cc",
1721 "url_request/websocket_handshake_userdata_key.h",
1722 "websockets/websocket_handshake_request_info.h",
1723 "websockets/websocket_handshake_response_info.h",
1724 "websockets/websocket_handshake_stream_base.h",
1725 "websockets/websocket_stream.h",
1726 ]
kapishnikovabe280e2016-04-14 19:07:161727 deps += [
1728 "//base/third_party/dynamic_annotations",
kapishnikovabe280e2016-04-14 19:07:161729 "//third_party/zlib",
1730 ]
1731
mmenkefd9d15c2017-06-29 13:45:541732 if (enable_reporting) {
1733 sources += [
1734 "reporting/reporting_browsing_data_remover.cc",
1735 "reporting/reporting_browsing_data_remover.h",
1736 "reporting/reporting_cache.cc",
1737 "reporting/reporting_cache.h",
1738 "reporting/reporting_client.cc",
1739 "reporting/reporting_client.h",
1740 "reporting/reporting_context.cc",
1741 "reporting/reporting_context.h",
1742 "reporting/reporting_delegate.cc",
1743 "reporting/reporting_delegate.h",
1744 "reporting/reporting_delivery_agent.cc",
1745 "reporting/reporting_delivery_agent.h",
1746 "reporting/reporting_endpoint_manager.cc",
1747 "reporting/reporting_endpoint_manager.h",
1748 "reporting/reporting_feature.cc",
1749 "reporting/reporting_feature.h",
1750 "reporting/reporting_garbage_collector.cc",
1751 "reporting/reporting_garbage_collector.h",
1752 "reporting/reporting_header_parser.cc",
1753 "reporting/reporting_header_parser.h",
1754 "reporting/reporting_network_change_observer.cc",
1755 "reporting/reporting_network_change_observer.h",
1756 "reporting/reporting_observer.cc",
1757 "reporting/reporting_observer.h",
1758 "reporting/reporting_persister.cc",
1759 "reporting/reporting_persister.h",
1760 "reporting/reporting_policy.cc",
1761 "reporting/reporting_policy.h",
1762 "reporting/reporting_report.cc",
1763 "reporting/reporting_report.h",
1764 "reporting/reporting_service.cc",
1765 "reporting/reporting_service.h",
1766 "reporting/reporting_uploader.cc",
1767 "reporting/reporting_uploader.h",
1768 ]
1769 }
1770
kapishnikovabe280e2016-04-14 19:07:161771 if (!use_kerberos) {
1772 sources -= [
1773 "http/http_auth_handler_negotiate.cc",
1774 "http/http_auth_handler_negotiate.h",
1775 ]
1776 }
1777
1778 if (is_posix) {
1779 if (posix_avoid_mmap) {
1780 sources -= [ "disk_cache/blockfile/mapped_file_posix.cc" ]
1781 } else {
1782 sources -= [ "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc" ]
1783 }
1784 }
1785
zentarob74795682017-07-14 00:58:221786 if (is_win) {
1787 sources -= [
zentarob89acda42017-07-14 01:28:571788 "ntlm/des.cc",
1789 "ntlm/des.h",
1790 "ntlm/md4.cc",
1791 "ntlm/md4.h",
1792 "ntlm/ntlm.cc",
1793 "ntlm/ntlm.h",
zentarob74795682017-07-14 00:58:221794 "ntlm/ntlm_buffer_reader.cc",
1795 "ntlm/ntlm_buffer_reader.h",
1796 "ntlm/ntlm_buffer_writer.cc",
1797 "ntlm/ntlm_buffer_writer.h",
Zentaro Kavanaghdd556612017-08-03 20:27:041798 "ntlm/ntlm_client.cc",
1799 "ntlm/ntlm_client.h",
zentarob74795682017-07-14 00:58:221800 "ntlm/ntlm_constants.h",
1801 ]
1802 }
1803
kapishnikovabe280e2016-04-14 19:07:161804 if (!enable_built_in_dns) {
1805 sources -= [
1806 "dns/address_sorter_posix.cc",
1807 "dns/address_sorter_posix.h",
1808 "dns/dns_client.cc",
1809 ]
1810 }
1811
mattm4cede8d2017-04-11 02:55:011812 if (use_byte_certs) {
mattm4cede8d2017-04-11 02:55:011813 if (use_nss_certs) {
1814 sources -= [ "cert/x509_certificate_nss.cc" ]
1815 }
mattm4cede8d2017-04-11 02:55:011816 } else {
1817 sources -= [ "cert/x509_certificate_bytes.cc" ]
1818 }
1819
kapishnikovabe280e2016-04-14 19:07:161820 if (!use_kerberos || is_android) {
1821 sources -= [
1822 "http/http_auth_gssapi_posix.cc",
1823 "http/http_auth_gssapi_posix.h",
1824 ]
1825 }
1826
Sergey Ulanov5c33235ae2017-07-06 23:55:071827 if (!is_nacl) {
Matt Mueller15004212017-09-08 04:44:131828 sources -= [
1829 "base/network_interfaces_nacl.cc",
1830 "cert/cert_database_stub.cc",
1831 ]
Sergey Ulanov5c33235ae2017-07-06 23:55:071832 }
1833
1834 # Use getifaddrs() on POSIX platforms, except Linux and Android.
1835 if (!is_posix || is_linux || is_android) {
1836 sources -= [
1837 "base/network_interfaces_getifaddrs.cc",
1838 "base/network_interfaces_getifaddrs.h",
1839 ]
1840 }
1841
mostynb75e8d632016-08-02 16:46:531842 if (use_gio) {
dsinclair8490e052016-05-04 15:33:331843 deps += [ "//build/linux/libgio" ]
kapishnikovabe280e2016-04-14 19:07:161844 }
1845
1846 if (!use_nss_certs) {
1847 sources -= [
kapishnikovabe280e2016-04-14 19:07:161848 "cert/cert_database_nss.cc",
mattm9c63d442016-09-03 00:45:511849 "cert/internal/trust_store_nss.cc",
1850 "cert/internal/trust_store_nss.h",
eromanf2971fd2017-04-20 20:10:451851 "cert/known_roots_nss.cc",
1852 "cert/known_roots_nss.h",
kapishnikovabe280e2016-04-14 19:07:161853 "cert/nss_cert_database.cc",
1854 "cert/nss_cert_database.h",
1855 "cert/x509_certificate_nss.cc",
1856 "ssl/client_cert_store_nss.cc",
1857 "ssl/client_cert_store_nss.h",
kapishnikovabe280e2016-04-14 19:07:161858 "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
1859 "third_party/mozilla_security_manager/nsNSSCertificateDB.h",
1860 "third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
1861 "third_party/mozilla_security_manager/nsPKCS12Blob.h",
1862 ]
1863 if (is_chromeos) {
1864 # These were already removed on non-ChromeOS.
1865 sources -= [
1866 "cert/nss_cert_database_chromeos.cc",
1867 "cert/nss_cert_database_chromeos.h",
1868 "cert/nss_profile_filter_chromeos.cc",
1869 "cert/nss_profile_filter_chromeos.h",
1870 ]
1871 }
mattmbbf7fc02017-06-19 23:38:191872 sources -= [ "ssl/ssl_platform_key_nss.cc" ]
svaldez2135be52016-04-20 16:34:531873 } else {
davidben8d569f52016-07-29 16:03:181874 sources += [
1875 "third_party/nss/ssl/cmpcert.cc",
1876 "third_party/nss/ssl/cmpcert.h",
1877 ]
kapishnikovabe280e2016-04-14 19:07:161878 }
1879
svaldez2135be52016-04-20 16:34:531880 if (!use_nss_certs) {
kapishnikovabe280e2016-04-14 19:07:161881 # These files are part of the partial implementation of NSS for
1882 # cert verification, so keep them in that case.
1883 sources -= [
1884 "cert/cert_verify_proc_nss.cc",
1885 "cert/cert_verify_proc_nss.h",
1886 "cert/test_root_certs_nss.cc",
svaldez2135be52016-04-20 16:34:531887 "cert/x509_util_nss.cc",
kapishnikovabe280e2016-04-14 19:07:161888 "cert_net/nss_ocsp.cc",
1889 "cert_net/nss_ocsp.h",
1890 ]
1891 }
1892
kapishnikovabe280e2016-04-14 19:07:161893 if (is_chromecast && use_nss_certs) {
mattm436ccfe2017-06-19 20:24:081894 sources -= [
1895 "ssl/client_cert_store_nss.cc",
1896 "ssl/client_cert_store_nss.h",
1897 "ssl/ssl_platform_key_nss.cc",
1898 ]
kapishnikovabe280e2016-04-14 19:07:161899 }
1900
1901 if (!enable_mdns) {
1902 sources -= [
1903 "dns/mdns_cache.cc",
1904 "dns/mdns_cache.h",
1905 "dns/mdns_client.cc",
1906 "dns/mdns_client.h",
1907 "dns/mdns_client_impl.cc",
1908 "dns/mdns_client_impl.h",
kapishnikovabe280e2016-04-14 19:07:161909 ]
1910 }
1911
1912 if (is_win) {
1913 sources -= [ "http/http_auth_handler_ntlm_portable.cc" ]
1914 } else { # !is_win
1915 sources -= [
1916 "base/winsock_init.cc",
1917 "base/winsock_init.h",
1918 "base/winsock_util.cc",
1919 "base/winsock_util.h",
1920 "proxy/proxy_resolver_winhttp.cc",
1921 "proxy/proxy_resolver_winhttp.h",
1922 ]
1923 }
1924
1925 if (is_ios) {
1926 # Add back some sources that were otherwise filtered out.
1927 # iOS needs some Mac files.
1928 net_unfiltered_sources += [
1929 "base/mac/url_conversions.h",
1930 "base/mac/url_conversions.mm",
1931 "base/network_change_notifier_mac.cc",
wychenebb66ffb2017-04-05 07:19:371932 "base/network_change_notifier_mac.h",
kapishnikovabe280e2016-04-14 19:07:161933 "base/network_config_watcher_mac.cc",
wychenebb66ffb2017-04-05 07:19:371934 "base/network_config_watcher_mac.h",
kapishnikovabe280e2016-04-14 19:07:161935 "base/platform_mime_util_mac.mm",
svaldez2135be52016-04-20 16:34:531936 "cert/test_root_certs_mac.cc",
mattm1a07e632017-05-16 05:55:501937 "cert/x509_util_ios_and_mac.cc",
1938 "cert/x509_util_ios_and_mac.h",
kapishnikovabe280e2016-04-14 19:07:161939 "proxy/proxy_resolver_mac.cc",
wychenebb66ffb2017-04-05 07:19:371940 "proxy/proxy_resolver_mac.h",
kapishnikovabe280e2016-04-14 19:07:161941 "proxy/proxy_server_mac.cc",
1942 ]
1943
1944 sources -= [ "disk_cache/blockfile/file_posix.cc" ]
1945 }
1946
kapishnikovabe280e2016-04-14 19:07:161947 if (is_ios || is_mac) {
ckrasic73f7240b2017-01-24 00:06:451948 sources += [
1949 "base/mac/url_conversions.h",
1950 "base/mac/url_conversions.mm",
1951 ]
kapishnikovabe280e2016-04-14 19:07:161952 }
1953
1954 if (is_android) {
1955 deps += [ ":net_jni_headers" ]
1956
1957 # Add some Linux sources that were excluded by the filter, but which
1958 # are needed.
1959 net_unfiltered_sources += [
1960 "base/address_tracker_linux.cc",
1961 "base/address_tracker_linux.h",
1962 "base/network_interfaces_linux.cc",
1963 "base/network_interfaces_linux.h",
1964 "base/platform_mime_util_linux.cc",
1965 ]
1966 }
Sergey Ulanov49085572017-07-10 23:25:461967
1968 if (is_fuchsia) {
1969 sources += [
1970 "base/platform_mime_util_fuchsia.cc",
1971 "cert/cert_database_fuchsia.cc",
1972 "cert/test_root_certs_fuchsia.cc",
1973 ]
1974 }
kapishnikovabe280e2016-04-14 19:07:161975 } else {
1976 public_deps += [ "//native_client_sdk/src/libraries/nacl_io" ]
1977 }
xunjieli905496a2015-08-31 15:51:171978
Sergey Ulanov21dea152017-09-13 00:50:501979 if (enable_unix_sockets) {
1980 sources += [
1981 "socket/unix_domain_client_socket_posix.cc",
1982 "socket/unix_domain_client_socket_posix.h",
1983 "socket/unix_domain_server_socket_posix.cc",
1984 "socket/unix_domain_server_socket_posix.h",
1985 ]
1986 }
1987
xunjieli905496a2015-08-31 15:51:171988 # Add back some sources that were otherwise filtered out.
1989 set_sources_assignment_filter([])
kapishnikovabe280e2016-04-14 19:07:161990 sources += net_unfiltered_sources
xunjieli905496a2015-08-31 15:51:171991 set_sources_assignment_filter(sources_assignment_filter)
1992
1993 cflags = []
kapishnikovabe280e2016-04-14 19:07:161994 configs += net_configs
xunjieli905496a2015-08-31 15:51:171995
brettwa1228ebb2016-10-28 03:51:341996 public_deps += [
1997 ":features",
1998 "//url",
1999 ]
[email protected]4625ade2014-04-15 19:26:442000
2001 if (is_mac) {
[email protected]4625ade2014-04-15 19:26:442002 libs = [
rsesek02aa51c2016-05-11 02:13:572003 "CFNetwork.framework",
2004 "CoreServices.framework",
[email protected]ab9ce6e2014-04-17 20:33:192005 "Foundation.framework",
2006 "Security.framework",
2007 "SystemConfiguration.framework",
2008 "resolv",
[email protected]4625ade2014-04-15 19:26:442009 ]
2010 }
2011
2012 if (is_ios) {
[email protected]4625ade2014-04-15 19:26:442013 libs = [
[email protected]ab9ce6e2014-04-17 20:33:192014 "CFNetwork.framework",
2015 "MobileCoreServices.framework",
2016 "Security.framework",
2017 "SystemConfiguration.framework",
2018 "resolv",
[email protected]4625ade2014-04-15 19:26:442019 ]
xunjieli06d93982015-08-27 17:13:022020 }
xunjieli4c8c6922015-08-27 16:02:402021
jam5332a632016-04-01 22:36:052022 if (is_win) {
2023 libs = [
2024 "crypt32.lib",
2025 "dhcpcsvc.lib",
2026 "iphlpapi.lib",
davidben62399192016-09-13 01:54:222027 "ncrypt.lib",
jam5332a632016-04-01 22:36:052028 "rpcrt4.lib",
2029 "secur32.lib",
2030 "urlmon.lib",
2031 "winhttp.lib",
2032 ]
2033 }
2034
sergeyu99d83f92015-09-14 23:03:332035 if (!is_nacl) {
2036 if (!disable_file_support) {
ckrasic73f7240b2017-01-24 00:06:452037 sources += [
2038 "base/directory_lister.cc",
2039 "base/directory_lister.h",
2040 "base/directory_listing.cc",
2041 "base/directory_listing.h",
2042 "url_request/file_protocol_handler.cc",
2043 "url_request/file_protocol_handler.h",
2044 "url_request/url_request_file_dir_job.cc",
2045 "url_request/url_request_file_dir_job.h",
2046 "url_request/url_request_file_job.cc",
2047 "url_request/url_request_file_job.h",
2048 ]
sergeyu99d83f92015-09-14 23:03:332049 }
xunjieli06d93982015-08-27 17:13:022050
sergeyu99d83f92015-09-14 23:03:332051 if (!disable_ftp_support) {
ckrasic73f7240b2017-01-24 00:06:452052 sources += [
2053 "ftp/ftp_auth_cache.cc",
2054 "ftp/ftp_auth_cache.h",
2055 "ftp/ftp_ctrl_response_buffer.cc",
2056 "ftp/ftp_ctrl_response_buffer.h",
2057 "ftp/ftp_directory_listing_parser.cc",
2058 "ftp/ftp_directory_listing_parser.h",
2059 "ftp/ftp_directory_listing_parser_ls.cc",
2060 "ftp/ftp_directory_listing_parser_ls.h",
2061 "ftp/ftp_directory_listing_parser_vms.cc",
2062 "ftp/ftp_directory_listing_parser_vms.h",
2063 "ftp/ftp_directory_listing_parser_windows.cc",
2064 "ftp/ftp_directory_listing_parser_windows.h",
2065 "ftp/ftp_network_layer.cc",
2066 "ftp/ftp_network_layer.h",
2067 "ftp/ftp_network_session.cc",
2068 "ftp/ftp_network_session.h",
2069 "ftp/ftp_network_transaction.cc",
2070 "ftp/ftp_network_transaction.h",
2071 "ftp/ftp_request_info.h",
2072 "ftp/ftp_response_info.cc",
2073 "ftp/ftp_response_info.h",
2074 "ftp/ftp_server_type_histograms.cc",
2075 "ftp/ftp_server_type_histograms.h",
2076 "ftp/ftp_transaction.h",
2077 "ftp/ftp_transaction_factory.h",
2078 "ftp/ftp_util.cc",
2079 "ftp/ftp_util.h",
2080 "url_request/ftp_protocol_handler.cc",
2081 "url_request/ftp_protocol_handler.h",
2082 "url_request/url_request_ftp_job.cc",
2083 "url_request/url_request_ftp_job.h",
2084 ]
sergeyu99d83f92015-09-14 23:03:332085 }
xunjieli905496a2015-08-31 15:51:172086
sergeyu99d83f92015-09-14 23:03:332087 if (enable_websockets) {
ckrasic73f7240b2017-01-24 00:06:452088 sources += [
2089 "websockets/websocket_basic_handshake_stream.cc",
2090 "websockets/websocket_basic_handshake_stream.h",
2091 "websockets/websocket_basic_stream.cc",
2092 "websockets/websocket_basic_stream.h",
2093 "websockets/websocket_channel.cc",
2094 "websockets/websocket_channel.h",
2095 "websockets/websocket_deflate_parameters.cc",
2096 "websockets/websocket_deflate_parameters.h",
2097 "websockets/websocket_deflate_predictor.h",
2098 "websockets/websocket_deflate_predictor_impl.cc",
2099 "websockets/websocket_deflate_predictor_impl.h",
2100 "websockets/websocket_deflate_stream.cc",
2101 "websockets/websocket_deflate_stream.h",
2102 "websockets/websocket_deflater.cc",
2103 "websockets/websocket_deflater.h",
2104 "websockets/websocket_errors.cc",
2105 "websockets/websocket_errors.h",
mmenke392ec462017-03-23 18:49:352106 "websockets/websocket_event_interface.h",
ckrasic73f7240b2017-01-24 00:06:452107 "websockets/websocket_extension.cc",
2108 "websockets/websocket_extension.h",
2109 "websockets/websocket_extension_parser.cc",
2110 "websockets/websocket_extension_parser.h",
2111 "websockets/websocket_frame.cc",
2112 "websockets/websocket_frame.h",
2113 "websockets/websocket_frame_parser.cc",
2114 "websockets/websocket_frame_parser.h",
2115 "websockets/websocket_handshake_challenge.cc",
2116 "websockets/websocket_handshake_challenge.h",
2117 "websockets/websocket_handshake_constants.cc",
2118 "websockets/websocket_handshake_constants.h",
2119 "websockets/websocket_handshake_request_info.cc",
2120 "websockets/websocket_handshake_request_info.h",
2121 "websockets/websocket_handshake_response_info.cc",
2122 "websockets/websocket_handshake_response_info.h",
2123 "websockets/websocket_handshake_stream_base.h",
2124 "websockets/websocket_handshake_stream_create_helper.cc",
2125 "websockets/websocket_handshake_stream_create_helper.h",
2126 "websockets/websocket_inflater.cc",
2127 "websockets/websocket_inflater.h",
2128 "websockets/websocket_stream.cc",
2129 "websockets/websocket_stream.h",
2130 ]
sergeyu99d83f92015-09-14 23:03:332131 }
xunjieli905496a2015-08-31 15:51:172132
sergeyu99d83f92015-09-14 23:03:332133 # ICU support.
kapishnikovabe280e2016-04-14 19:07:162134 if (use_platform_icu_alternatives) {
2135 if (is_android) {
2136 # Use ICU alternative on Android.
torned8b7d9252016-08-04 19:41:452137 sources += [ "base/net_string_util_icu_alternatives_android.cc" ]
kapishnikovabe280e2016-04-14 19:07:162138 deps += [ ":net_jni_headers" ]
2139 } else if (is_ios) {
2140 # Use ICU alternative on iOS.
2141 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ]
2142 } else {
2143 assert(false,
2144 "ICU alternative is not implemented for platform: " + target_os)
2145 }
2146 } else {
2147 # Use ICU.
2148 deps += [
2149 "//base:i18n",
2150 "//third_party/icu",
2151 ]
2152 sources += [
2153 "base/filename_util_icu.cc",
2154 "base/net_string_util_icu.cc",
2155 ]
2156 }
eustasfbec9132015-12-30 14:56:512157
2158 # Brotli support.
kapishnikovabe280e2016-04-14 19:07:162159 if (!disable_brotli_filter) {
thakisb8590c92017-03-23 18:14:532160 sources += [
2161 "filter/brotli_source_stream.cc",
2162 "filter/brotli_source_stream.h",
2163 ]
eustas6ed4c412016-12-14 13:53:342164 deps += [ "//third_party/brotli:dec" ]
kapishnikovabe280e2016-04-14 19:07:162165 } else {
xunjieli084a9292016-09-23 18:15:042166 sources += [ "filter/brotli_source_stream_disabled.cc" ]
kapishnikovabe280e2016-04-14 19:07:162167 }
[email protected]85191ed2014-05-15 00:41:492168 }
[email protected]4625ade2014-04-15 19:26:442169}
2170
2171grit("net_resources") {
2172 source = "base/net_resources.grd"
[email protected]b89c53842014-07-23 16:32:322173 outputs = [
2174 "grit/net_resources.h",
2175 "net_resources.pak",
[email protected]b89c53842014-07-23 16:32:322176 ]
[email protected]4625ade2014-04-15 19:26:442177}
2178
rtennetib6f1c0d2015-04-03 17:52:062179proto_library("net_quic_proto") {
kapishnikovabe280e2016-04-14 19:07:162180 visibility = [ ":net" ]
brettw2e7db0a2015-04-24 22:59:172181
rtennetib6f1c0d2015-04-03 17:52:062182 sources = [
rchd4db7c152016-07-29 21:58:122183 "quic/core/proto/cached_network_parameters.proto",
2184 "quic/core/proto/source_address_token.proto",
rtennetib6f1c0d2015-04-03 17:52:062185 ]
2186 cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:"
2187 cc_include = "net/base/net_export.h"
brettw7ef80452016-06-30 00:43:182188 component_build_force_source_set = true
rtennetib6f1c0d2015-04-03 17:52:062189
2190 defines = [ "NET_IMPLEMENTATION" ]
2191
2192 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
2193}
2194
ckrasic73f7240b2017-01-24 00:06:452195if (!is_proto_quic) {
2196 static_library("extras") {
2197 sources = [
2198 "extras/sqlite/cookie_crypto_delegate.h",
2199 "extras/sqlite/sqlite_channel_id_store.cc",
2200 "extras/sqlite/sqlite_channel_id_store.h",
2201 "extras/sqlite/sqlite_persistent_cookie_store.cc",
2202 "extras/sqlite/sqlite_persistent_cookie_store.h",
2203 ]
2204 configs += [ "//build/config/compiler:wexit_time_destructors" ]
2205 deps = [
2206 ":net",
2207 "//base",
2208 "//sql:sql",
2209 ]
2210 }
mef327a8e42014-08-29 17:10:032211}
2212
[email protected]8a3f8242014-06-05 18:05:122213static_library("http_server") {
[email protected]4625ade2014-04-15 19:26:442214 sources = [
2215 "server/http_connection.cc",
2216 "server/http_connection.h",
2217 "server/http_server.cc",
2218 "server/http_server.h",
2219 "server/http_server_request_info.cc",
2220 "server/http_server_request_info.h",
2221 "server/http_server_response_info.cc",
2222 "server/http_server_response_info.h",
2223 "server/web_socket.cc",
2224 "server/web_socket.h",
dgozmana6e70092014-12-12 14:46:212225 "server/web_socket_encoder.cc",
2226 "server/web_socket_encoder.h",
[email protected]4625ade2014-04-15 19:26:442227 ]
jambc6cc8e2014-11-14 17:56:292228 configs += [
brettwd1c719a2015-02-19 23:17:042229 "//build/config/compiler:no_size_t_to_int_warning",
jambc6cc8e2014-11-14 17:56:292230 "//build/config/compiler:wexit_time_destructors",
jambc6cc8e2014-11-14 17:56:292231 ]
[email protected]4625ade2014-04-15 19:26:442232 deps = [
2233 ":net",
2234 "//base",
2235 ]
2236}
2237
sdefresne3001f172016-03-16 10:30:032238if (!is_ios) {
2239 executable("dump_cache") {
2240 testonly = true
2241 sources = [
2242 "tools/dump_cache/dump_cache.cc",
2243 "tools/dump_cache/dump_files.cc",
2244 "tools/dump_cache/dump_files.h",
2245 ]
[email protected]4625ade2014-04-15 19:26:442246
sdefresne3001f172016-03-16 10:30:032247 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2248 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312249
sdefresne3001f172016-03-16 10:30:032250 deps = [
2251 ":net",
2252 ":test_support",
2253 "//base",
thomasanderson84fa8b02017-05-18 23:38:472254 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072255 "//build/win:default_exe_manifest",
sdefresne3001f172016-03-16 10:30:032256 ]
2257 }
[email protected]8603c5de2014-04-16 20:34:312258}
2259
eroman12951312017-05-05 22:55:512260# This section can be updated from globbing rules using:
2261# python ./tools/update_ios_bundle_data.py
sdefresneb0a31642016-03-18 11:04:452262bundle_data("test_support_bundle_data") {
sdefresne04f91142016-04-21 08:41:592263 visibility = [ ":test_support" ]
sdefresneb0a31642016-03-18 11:04:452264 testonly = true
ckrasic73f7240b2017-01-24 00:06:452265 sources = [
zhongyid7dd2db12017-04-14 17:01:252266 "data/quic_http_response_cache_data_with_push/test.example.com/favicon.ico",
2267 "data/quic_http_response_cache_data_with_push/test.example.com/index.html",
2268 "data/quic_http_response_cache_data_with_push/test.example.com/index2.html",
2269 "data/quic_http_response_cache_data_with_push/test.example.com/kitten-1.jpg",
ckrasic73f7240b2017-01-24 00:06:452270 "data/ssl/certificates/1024-rsa-ee-by-1024-rsa-intermediate.pem",
2271 "data/ssl/certificates/1024-rsa-ee-by-2048-rsa-intermediate.pem",
2272 "data/ssl/certificates/1024-rsa-ee-by-768-rsa-intermediate.pem",
2273 "data/ssl/certificates/1024-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2274 "data/ssl/certificates/1024-rsa-intermediate.pem",
2275 "data/ssl/certificates/10_year_validity.pem",
2276 "data/ssl/certificates/11_year_validity.pem",
2277 "data/ssl/certificates/2029_globalsign_com_cert.pem",
2278 "data/ssl/certificates/2048-rsa-ee-by-1024-rsa-intermediate.pem",
2279 "data/ssl/certificates/2048-rsa-ee-by-2048-rsa-intermediate.pem",
2280 "data/ssl/certificates/2048-rsa-ee-by-768-rsa-intermediate.pem",
2281 "data/ssl/certificates/2048-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2282 "data/ssl/certificates/2048-rsa-intermediate.pem",
2283 "data/ssl/certificates/2048-rsa-root.pem",
2284 "data/ssl/certificates/39_months_after_2015_04.pem",
2285 "data/ssl/certificates/40_months_after_2015_04.pem",
2286 "data/ssl/certificates/60_months_after_2012_07.pem",
2287 "data/ssl/certificates/61_months_after_2012_07.pem",
2288 "data/ssl/certificates/768-rsa-ee-by-1024-rsa-intermediate.pem",
2289 "data/ssl/certificates/768-rsa-ee-by-2048-rsa-intermediate.pem",
2290 "data/ssl/certificates/768-rsa-ee-by-768-rsa-intermediate.pem",
2291 "data/ssl/certificates/768-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2292 "data/ssl/certificates/768-rsa-intermediate.pem",
eroman12951312017-05-05 22:55:512293 "data/ssl/certificates/README",
ckrasic73f7240b2017-01-24 00:06:452294 "data/ssl/certificates/aia-cert.pem",
2295 "data/ssl/certificates/aia-intermediate.der",
2296 "data/ssl/certificates/aia-root.pem",
2297 "data/ssl/certificates/bad_validity.pem",
2298 "data/ssl/certificates/client-empty-password.p12",
2299 "data/ssl/certificates/client-nokey.p12",
2300 "data/ssl/certificates/client-null-password.p12",
2301 "data/ssl/certificates/client.p12",
2302 "data/ssl/certificates/client_1.key",
2303 "data/ssl/certificates/client_1.pem",
2304 "data/ssl/certificates/client_1.pk8",
2305 "data/ssl/certificates/client_1_ca.pem",
2306 "data/ssl/certificates/client_2.key",
2307 "data/ssl/certificates/client_2.pem",
2308 "data/ssl/certificates/client_2.pk8",
2309 "data/ssl/certificates/client_2_ca.pem",
2310 "data/ssl/certificates/client_3.key",
2311 "data/ssl/certificates/client_3.pem",
2312 "data/ssl/certificates/client_3.pk8",
2313 "data/ssl/certificates/client_3_ca.pem",
2314 "data/ssl/certificates/client_4.key",
2315 "data/ssl/certificates/client_4.pem",
2316 "data/ssl/certificates/client_4.pk8",
2317 "data/ssl/certificates/client_4_ca.pem",
2318 "data/ssl/certificates/client_5.key",
2319 "data/ssl/certificates/client_5.pem",
2320 "data/ssl/certificates/client_5.pk8",
2321 "data/ssl/certificates/client_5_ca.pem",
2322 "data/ssl/certificates/client_6.key",
2323 "data/ssl/certificates/client_6.pem",
2324 "data/ssl/certificates/client_6.pk8",
2325 "data/ssl/certificates/client_6_ca.pem",
2326 "data/ssl/certificates/client_root_ca.pem",
ckrasic73f7240b2017-01-24 00:06:452327 "data/ssl/certificates/crit-codeSigning-chain.pem",
2328 "data/ssl/certificates/crlset_by_intermediate_serial.raw",
2329 "data/ssl/certificates/crlset_by_leaf_spki.raw",
2330 "data/ssl/certificates/crlset_by_root_serial.raw",
2331 "data/ssl/certificates/cross-signed-leaf.pem",
2332 "data/ssl/certificates/cross-signed-root-md5.pem",
2333 "data/ssl/certificates/cross-signed-root-sha256.pem",
2334 "data/ssl/certificates/ct-test-embedded-cert.pem",
2335 "data/ssl/certificates/ct-test-embedded-with-intermediate-chain.pem",
2336 "data/ssl/certificates/ct-test-embedded-with-intermediate-preca-chain.pem",
2337 "data/ssl/certificates/ct-test-embedded-with-preca-chain.pem",
2338 "data/ssl/certificates/diginotar_cyber_ca.pem",
2339 "data/ssl/certificates/diginotar_pkioverheid.pem",
2340 "data/ssl/certificates/diginotar_pkioverheid_g2.pem",
2341 "data/ssl/certificates/diginotar_public_ca_2025.pem",
2342 "data/ssl/certificates/diginotar_root_ca.pem",
2343 "data/ssl/certificates/diginotar_services_1024_ca.pem",
2344 "data/ssl/certificates/dod_ca_13_cert.der",
2345 "data/ssl/certificates/dod_ca_17_cert.der",
2346 "data/ssl/certificates/dod_root_ca_2_cert.der",
2347 "data/ssl/certificates/duplicate_cn_1.p12",
2348 "data/ssl/certificates/duplicate_cn_1.pem",
2349 "data/ssl/certificates/duplicate_cn_2.p12",
2350 "data/ssl/certificates/duplicate_cn_2.pem",
2351 "data/ssl/certificates/eku-test-root.pem",
2352 "data/ssl/certificates/empty_subject_cert.der",
2353 "data/ssl/certificates/expired_cert.pem",
2354 "data/ssl/certificates/explicit-policy-chain.pem",
2355 "data/ssl/certificates/foaf.me.chromium-test-cert.der",
2356 "data/ssl/certificates/google.binary.p7b",
2357 "data/ssl/certificates/google.chain.pem",
2358 "data/ssl/certificates/google.pem_cert.p7b",
2359 "data/ssl/certificates/google.pem_pkcs7.p7b",
2360 "data/ssl/certificates/google.single.der",
2361 "data/ssl/certificates/google.single.pem",
2362 "data/ssl/certificates/google_diginotar.pem",
2363 "data/ssl/certificates/googlenew.chain.pem",
2364 "data/ssl/certificates/intermediate_ca_cert.pem",
2365 "data/ssl/certificates/invalid_key_usage_cert.der",
2366 "data/ssl/certificates/large_key.pem",
2367 "data/ssl/certificates/localhost_cert.pem",
2368 "data/ssl/certificates/mit.davidben.der",
2369 "data/ssl/certificates/multi-root-A-by-B.pem",
2370 "data/ssl/certificates/multi-root-B-by-C.pem",
2371 "data/ssl/certificates/multi-root-B-by-F.pem",
2372 "data/ssl/certificates/multi-root-BFE.keychain",
2373 "data/ssl/certificates/multi-root-C-by-D.pem",
2374 "data/ssl/certificates/multi-root-C-by-E.pem",
2375 "data/ssl/certificates/multi-root-D-by-D.pem",
2376 "data/ssl/certificates/multi-root-E-by-E.pem",
2377 "data/ssl/certificates/multi-root-F-by-E.pem",
2378 "data/ssl/certificates/multi-root-chain1.pem",
2379 "data/ssl/certificates/multi-root-chain2.pem",
2380 "data/ssl/certificates/multi-root-crlset-C.raw",
2381 "data/ssl/certificates/multi-root-crlset-CD-and-FE.raw",
2382 "data/ssl/certificates/multi-root-crlset-D-and-E.raw",
2383 "data/ssl/certificates/multi-root-crlset-E.raw",
2384 "data/ssl/certificates/multi-root-crlset-unrelated.raw",
eroman12951312017-05-05 22:55:512385 "data/ssl/certificates/multi-root.keychain",
ckrasic73f7240b2017-01-24 00:06:452386 "data/ssl/certificates/multivalue_rdn.pem",
2387 "data/ssl/certificates/name_constraint_bad.pem",
2388 "data/ssl/certificates/name_constraint_good.pem",
2389 "data/ssl/certificates/ndn.ca.crt",
2390 "data/ssl/certificates/nist.der",
2391 "data/ssl/certificates/no_subject_common_name_cert.pem",
2392 "data/ssl/certificates/non-crit-codeSigning-chain.pem",
2393 "data/ssl/certificates/ocsp-test-root.pem",
2394 "data/ssl/certificates/ok_cert.pem",
2395 "data/ssl/certificates/ok_cert_by_intermediate.pem",
2396 "data/ssl/certificates/post_june_2016.pem",
2397 "data/ssl/certificates/pre_br_validity_bad_121.pem",
2398 "data/ssl/certificates/pre_br_validity_bad_2020.pem",
2399 "data/ssl/certificates/pre_br_validity_ok.pem",
2400 "data/ssl/certificates/pre_june_2016.pem",
2401 "data/ssl/certificates/prime256v1-ecdsa-ee-by-1024-rsa-intermediate.pem",
2402 "data/ssl/certificates/prime256v1-ecdsa-ee-by-2048-rsa-intermediate.pem",
2403 "data/ssl/certificates/prime256v1-ecdsa-ee-by-768-rsa-intermediate.pem",
2404 "data/ssl/certificates/prime256v1-ecdsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2405 "data/ssl/certificates/prime256v1-ecdsa-intermediate.pem",
2406 "data/ssl/certificates/punycodetest.pem",
2407 "data/ssl/certificates/quic_chain.crt",
2408 "data/ssl/certificates/quic_intermediate.crt",
2409 "data/ssl/certificates/quic_intermediate.key",
2410 "data/ssl/certificates/quic_root.crt",
2411 "data/ssl/certificates/quic_root.key",
2412 "data/ssl/certificates/quic_test.example.com.crt",
2413 "data/ssl/certificates/quic_test.example.com.key",
2414 "data/ssl/certificates/quic_test.example.com.key.pkcs8",
eroman12951312017-05-05 22:55:512415 "data/ssl/certificates/quic_test.example.com.key.pkcs8.pem",
ckrasic73f7240b2017-01-24 00:06:452416 "data/ssl/certificates/quic_test.example.com.key.sct",
2417 "data/ssl/certificates/quic_test_ecc.example.com.crt",
2418 "data/ssl/certificates/quic_test_ecc.example.com.key",
2419 "data/ssl/certificates/quic_test_ecc.example.com.sct",
2420 "data/ssl/certificates/redundant-server-chain.pem",
2421 "data/ssl/certificates/redundant-validated-chain-root.pem",
2422 "data/ssl/certificates/redundant-validated-chain.pem",
2423 "data/ssl/certificates/reject_intranet_hosts.pem",
2424 "data/ssl/certificates/root_ca_cert.pem",
2425 "data/ssl/certificates/salesforce_com_test.pem",
2426 "data/ssl/certificates/self-signed-invalid-name.pem",
2427 "data/ssl/certificates/self-signed-invalid-sig.pem",
2428 "data/ssl/certificates/sha1_2016.pem",
2429 "data/ssl/certificates/sha1_dec_2015.pem",
2430 "data/ssl/certificates/sha1_jan_2016.pem",
2431 "data/ssl/certificates/spdy_pooling.pem",
2432 "data/ssl/certificates/start_after_expiry.pem",
2433 "data/ssl/certificates/subjectAltName_sanity_check.pem",
elawrencec7484f52017-04-05 21:46:422434 "data/ssl/certificates/subjectAltName_www_example_com.pem",
ckrasic73f7240b2017-01-24 00:06:452435 "data/ssl/certificates/thawte.single.pem",
2436 "data/ssl/certificates/tls_feature_extension.pem",
2437 "data/ssl/certificates/tripadvisor-verisign-chain.pem",
eroman12951312017-05-05 22:55:512438 "data/ssl/certificates/trustcenter.websecurity.symantec.com.pem",
ckrasic73f7240b2017-01-24 00:06:452439 "data/ssl/certificates/twitter-chain.pem",
2440 "data/ssl/certificates/unescaped.pem",
2441 "data/ssl/certificates/unittest.key.bin",
2442 "data/ssl/certificates/unittest.originbound.der",
2443 "data/ssl/certificates/unittest.originbound.key.der",
2444 "data/ssl/certificates/unittest.selfsigned.der",
2445 "data/ssl/certificates/verisign_class3_g5_crosssigned-trusted.keychain",
2446 "data/ssl/certificates/verisign_class3_g5_crosssigned.pem",
2447 "data/ssl/certificates/verisign_intermediate_ca_2011.pem",
2448 "data/ssl/certificates/verisign_intermediate_ca_2016.pem",
2449 "data/ssl/certificates/weak_digest_md2_ee.pem",
2450 "data/ssl/certificates/weak_digest_md2_intermediate.pem",
2451 "data/ssl/certificates/weak_digest_md2_root.pem",
2452 "data/ssl/certificates/weak_digest_md4_ee.pem",
2453 "data/ssl/certificates/weak_digest_md4_intermediate.pem",
2454 "data/ssl/certificates/weak_digest_md4_root.pem",
2455 "data/ssl/certificates/weak_digest_md5_ee.pem",
2456 "data/ssl/certificates/weak_digest_md5_intermediate.pem",
2457 "data/ssl/certificates/weak_digest_md5_root.pem",
2458 "data/ssl/certificates/weak_digest_sha1_ee.pem",
2459 "data/ssl/certificates/weak_digest_sha1_intermediate.pem",
2460 "data/ssl/certificates/weak_digest_sha1_root.pem",
2461 "data/ssl/certificates/websocket_cacert.pem",
2462 "data/ssl/certificates/websocket_client_cert.p12",
2463 "data/ssl/certificates/wildcard.pem",
ckrasic73f7240b2017-01-24 00:06:452464 "data/ssl/certificates/www_us_army_mil_cert.der",
2465 "data/ssl/certificates/x509_verify_results.chain.pem",
2466 ]
sdefresneb0a31642016-03-18 11:04:452467 outputs = [
2468 "{{bundle_resources_dir}}/" +
2469 "{{source_root_relative_dir}}/{{source_file_part}}",
2470 ]
2471}
2472
brettw3871f522016-07-14 22:08:342473static_library("test_support") {
Brett Wilson8f80ad0b2014-09-08 19:50:242474 testonly = true
[email protected]8603c5de2014-04-16 20:34:312475 sources = [
[email protected]8603c5de2014-04-16 20:34:312476 "base/load_timing_info_test_util.cc",
2477 "base/load_timing_info_test_util.h",
2478 "base/mock_file_stream.cc",
2479 "base/mock_file_stream.h",
2480 "base/test_completion_callback.cc",
2481 "base/test_completion_callback.h",
[email protected]8603c5de2014-04-16 20:34:312482 "cert/mock_cert_verifier.cc",
2483 "cert/mock_cert_verifier.h",
ryanchung987b2ff2016-02-19 00:17:122484 "cert/mock_client_cert_verifier.cc",
2485 "cert/mock_client_cert_verifier.h",
[email protected]8603c5de2014-04-16 20:34:312486 "cookies/cookie_monster_store_test.cc",
2487 "cookies/cookie_monster_store_test.h",
2488 "cookies/cookie_store_test_callbacks.cc",
2489 "cookies/cookie_store_test_callbacks.h",
2490 "cookies/cookie_store_test_helpers.cc",
2491 "cookies/cookie_store_test_helpers.h",
drogerfd8b2772015-12-04 14:34:562492 "cookies/cookie_store_unittest.h",
[email protected]8603c5de2014-04-16 20:34:312493 "disk_cache/disk_cache_test_base.cc",
2494 "disk_cache/disk_cache_test_base.h",
2495 "disk_cache/disk_cache_test_util.cc",
2496 "disk_cache/disk_cache_test_util.h",
2497 "dns/dns_test_util.cc",
2498 "dns/dns_test_util.h",
2499 "dns/mock_host_resolver.cc",
2500 "dns/mock_host_resolver.h",
2501 "dns/mock_mdns_socket_factory.cc",
2502 "dns/mock_mdns_socket_factory.h",
Matt Menke1dd3f2f2017-08-09 17:10:062503 "filter/filter_source_stream_test_util.cc",
2504 "filter/filter_source_stream_test_util.h",
xunjieli6cc8b84b2016-11-08 15:23:392505 "filter/mock_source_stream.cc",
2506 "filter/mock_source_stream.h",
zhongyi3c412982016-06-18 00:34:302507 "http/http_stream_factory_test_util.cc",
2508 "http/http_stream_factory_test_util.h",
[email protected]8a3f8242014-06-05 18:05:122509 "http/http_transaction_test_util.cc",
2510 "http/http_transaction_test_util.h",
vishal.b62985ca92015-04-17 08:45:512511 "log/test_net_log.cc",
2512 "log/test_net_log.h",
mmenke43758e62015-05-04 21:09:462513 "log/test_net_log_entry.cc",
2514 "log/test_net_log_entry.h",
mmenke0034c542015-05-05 22:34:592515 "log/test_net_log_util.cc",
mmenke43758e62015-05-04 21:09:462516 "log/test_net_log_util.h",
tbansal785a6ab2016-10-10 20:19:282517 "nqe/network_quality_estimator_test_util.cc",
2518 "nqe/network_quality_estimator_test_util.h",
[email protected]8603c5de2014-04-16 20:34:312519 "proxy/mock_proxy_resolver.cc",
2520 "proxy/mock_proxy_resolver.h",
2521 "proxy/mock_proxy_script_fetcher.cc",
2522 "proxy/mock_proxy_script_fetcher.h",
2523 "proxy/proxy_config_service_common_unittest.cc",
2524 "proxy/proxy_config_service_common_unittest.h",
2525 "socket/socket_test_util.cc",
2526 "socket/socket_test_util.h",
bnc8f8f7d302017-04-24 18:08:062527 "spdy/chromium/spdy_test_util_common.cc",
2528 "spdy/chromium/spdy_test_util_common.h",
mattm436ccfe2017-06-19 20:24:082529 "ssl/client_cert_identity_test_util.cc",
2530 "ssl/client_cert_identity_test_util.h",
2531 "ssl/ssl_private_key_test_util.cc",
2532 "ssl/ssl_private_key_test_util.h",
[email protected]8603c5de2014-04-16 20:34:312533 "test/cert_test_util.cc",
2534 "test/cert_test_util.h",
[email protected]83e1ae32014-07-18 10:57:072535 "test/cert_test_util_nss.cc",
nharper2e171cf2015-06-01 20:29:232536 "test/channel_id_test_util.cc",
2537 "test/channel_id_test_util.h",
[email protected]8603c5de2014-04-16 20:34:312538 "test/ct_test_util.cc",
2539 "test/ct_test_util.h",
svaldez7d25c562015-10-30 19:09:452540 "test/embedded_test_server/default_handlers.cc",
2541 "test/embedded_test_server/default_handlers.h",
[email protected]8603c5de2014-04-16 20:34:312542 "test/embedded_test_server/embedded_test_server.cc",
2543 "test/embedded_test_server/embedded_test_server.h",
mmenke392ec462017-03-23 18:49:352544 "test/embedded_test_server/embedded_test_server_connection_listener.h",
[email protected]8603c5de2014-04-16 20:34:312545 "test/embedded_test_server/http_connection.cc",
2546 "test/embedded_test_server/http_connection.h",
2547 "test/embedded_test_server/http_request.cc",
2548 "test/embedded_test_server/http_request.h",
2549 "test/embedded_test_server/http_response.cc",
2550 "test/embedded_test_server/http_response.h",
svaldez6e7e82a22015-10-28 19:39:532551 "test/embedded_test_server/request_handler_util.cc",
2552 "test/embedded_test_server/request_handler_util.h",
mmenke93be9ca2017-05-23 16:29:132553 "test/embedded_test_server/simple_connection_listener.cc",
2554 "test/embedded_test_server/simple_connection_listener.h",
sammc6ac3fe52015-02-25 06:00:282555 "test/event_waiter.h",
johnme36ae5802016-05-10 15:46:242556 "test/gtest_util.h",
mattmc1ec9d92017-05-25 01:40:302557 "test/keychain_test_util_mac.cc",
2558 "test/keychain_test_util_mac.h",
[email protected]8603c5de2014-04-16 20:34:312559 "test/net_test_suite.cc",
2560 "test/net_test_suite.h",
johnme36ae5802016-05-10 15:46:242561 "test/scoped_disable_exit_on_dfatal.cc",
2562 "test/scoped_disable_exit_on_dfatal.h",
brettw6315e032015-11-27 18:38:362563 "test/test_certificate_data.h",
rsleevia69c79a2016-06-22 03:28:432564 "test/test_data_directory.cc",
2565 "test/test_data_directory.h",
sherouk51b4b098b2015-08-10 09:00:432566 "test/url_request/ssl_certificate_error_job.cc",
2567 "test/url_request/ssl_certificate_error_job.h",
Brett Wilson32ce17a2014-11-10 17:45:302568 "test/url_request/url_request_failed_job.cc",
2569 "test/url_request/url_request_failed_job.h",
xunjieli5d1f9892016-05-18 20:44:342570 "test/url_request/url_request_hanging_read_job.cc",
2571 "test/url_request/url_request_hanging_read_job.h",
mef3e826cf2014-12-13 18:40:402572 "test/url_request/url_request_mock_data_job.cc",
2573 "test/url_request/url_request_mock_data_job.h",
jam8e45cd72015-01-20 16:33:442574 "test/url_request/url_request_slow_download_job.cc",
2575 "test/url_request/url_request_slow_download_job.h",
rhalavatia9b551d2017-02-09 12:03:002576 "traffic_annotation/network_traffic_annotation_test_helper.h",
[email protected]8603c5de2014-04-16 20:34:312577 "url_request/test_url_fetcher_factory.cc",
2578 "url_request/test_url_fetcher_factory.h",
2579 "url_request/url_request_test_util.cc",
2580 "url_request/url_request_test_util.h",
2581 ]
2582
brettwbc8b2a22015-07-28 18:24:422583 configs += [
2584 "//build/config:precompiled_headers",
2585
2586 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2587 "//build/config/compiler:no_size_t_to_int_warning",
2588 ]
[email protected]8603c5de2014-04-16 20:34:312589
Brett Wilsone53895272014-09-23 23:41:462590 public_deps = [
rhalavatia9b551d2017-02-09 12:03:002591 ":traffic_annotation",
[email protected]8603c5de2014-04-16 20:34:312592 "//base",
2593 "//base/test:test_support",
[email protected]22fe91d2014-08-12 17:07:122594 "//crypto",
[email protected]59ff2d42014-04-22 22:25:232595 "//net",
[email protected]8603c5de2014-04-16 20:34:312596 "//net/tools/tld_cleanup",
2597 "//testing/gmock",
2598 "//testing/gtest",
2599 "//url",
2600 ]
2601
Matt Menke1dd3f2f2017-08-09 17:10:062602 deps = [
2603 "//third_party/zlib",
2604 ]
sdefresne04f91142016-04-21 08:41:592605
jbudorick944eb922016-06-20 15:38:302606 data = [
2607 "data/",
2608 ]
2609
rsesek7d4ab4bc2016-07-22 17:35:132610 if (is_ios) {
2611 deps += [ ":test_support_bundle_data" ]
2612 } else {
jamb533b7e2015-03-04 17:12:052613 public_deps += [ "//third_party/protobuf:py_proto" ]
2614 }
2615
svaldez2135be52016-04-20 16:34:532616 if (use_nss_certs) {
scottmg34fb7e52014-12-03 23:27:242617 public_deps += [ "//crypto:platform" ]
[email protected]8603c5de2014-04-16 20:34:312618 }
2619
Sergey Ulanovec1d3de2017-09-19 19:27:472620 if (!is_ios) {
sherouk3eee4a82015-09-01 10:42:332621 sources += [
Sergey Ulanovec1d3de2017-09-19 19:27:472622 "test/spawned_test_server/base_test_server.cc",
2623 "test/spawned_test_server/base_test_server.h",
2624 "test/spawned_test_server/spawned_test_server.h",
2625 ]
2626
2627 if (use_remote_test_server) {
2628 sources += [
2629 "test/spawned_test_server/remote_test_server.cc",
2630 "test/spawned_test_server/remote_test_server.h",
2631 "test/spawned_test_server/remote_test_server_config.cc",
2632 "test/spawned_test_server/remote_test_server_config.h",
2633 "test/spawned_test_server/remote_test_server_proxy.cc",
2634 "test/spawned_test_server/remote_test_server_proxy.h",
2635 "test/spawned_test_server/remote_test_server_spawner_request.cc",
2636 "test/spawned_test_server/remote_test_server_spawner_request.h",
2637 ]
2638 } else {
2639 sources += [
2640 "test/spawned_test_server/local_test_server.cc",
2641 "test/spawned_test_server/local_test_server.h",
2642 "test/spawned_test_server/local_test_server_posix.cc",
2643 "test/spawned_test_server/local_test_server_win.cc",
2644 ]
2645 }
2646 }
2647
2648 if (enable_python_utils) {
2649 sources += [
2650 "test/python_utils.cc",
2651 "test/python_utils.h",
[email protected]8603c5de2014-04-16 20:34:312652 ]
2653 }
2654
2655 if (use_v8_in_net) {
Brett Wilsone53895272014-09-23 23:41:462656 public_deps += [ ":net_with_v8" ]
[email protected]8603c5de2014-04-16 20:34:312657 }
2658
2659 if (!enable_mdns) {
2660 sources -= [
2661 "dns/mock_mdns_socket_factory.cc",
2662 "dns/mock_mdns_socket_factory.h",
2663 ]
2664 }
2665
davidben15d69d482014-09-29 18:24:082666 if (!use_nss_certs) {
scottmg34fb7e52014-12-03 23:27:242667 sources -= [ "test/cert_test_util_nss.cc" ]
[email protected]83e1ae32014-07-18 10:57:072668 }
xunjielia6888202015-04-14 21:34:252669
2670 if (!disable_file_support) {
2671 sources += [
2672 "test/url_request/url_request_mock_http_job.cc",
2673 "test/url_request/url_request_mock_http_job.h",
2674 "url_request/test_url_request_interceptor.cc",
2675 "url_request/test_url_request_interceptor.h",
2676 ]
2677 }
[email protected]8603c5de2014-04-16 20:34:312678}
2679
2680if (use_v8_in_net) {
2681 component("net_with_v8") {
2682 sources = [
2683 "proxy/proxy_resolver_v8.cc",
2684 "proxy/proxy_resolver_v8.h",
2685 "proxy/proxy_resolver_v8_tracing.cc",
2686 "proxy/proxy_resolver_v8_tracing.h",
sammcf2d1ea02015-06-29 02:58:472687 "proxy/proxy_resolver_v8_tracing_wrapper.cc",
2688 "proxy/proxy_resolver_v8_tracing_wrapper.h",
[email protected]8603c5de2014-04-16 20:34:312689 "proxy/proxy_service_v8.cc",
2690 "proxy/proxy_service_v8.h",
2691 ]
2692
2693 defines = [ "NET_IMPLEMENTATION" ]
dprankea22b0732015-10-21 21:15:112694
[email protected]8603c5de2014-04-16 20:34:312695 configs += [
brettwd1c719a2015-02-19 23:17:042696 "//build/config/compiler:no_size_t_to_int_warning",
[email protected]8603c5de2014-04-16 20:34:312697 "//build/config/compiler:wexit_time_destructors",
dprankea22b0732015-10-21 21:15:112698 "//v8:external_startup_data",
[email protected]8603c5de2014-04-16 20:34:312699 ]
2700
Brett Wilsone53895272014-09-23 23:41:462701 public_deps = [
xunjieli0b7f5b62016-12-06 20:43:482702 ":constants",
[email protected]8603c5de2014-04-16 20:34:312703 ":net",
Brett Wilsone53895272014-09-23 23:41:462704 ]
2705 deps = [
[email protected]8603c5de2014-04-16 20:34:312706 "//base",
2707 "//gin",
2708 "//url",
2709 "//v8",
2710 ]
2711 }
2712}
2713
mmenke93be9ca2017-05-23 16:29:132714if (enable_net_mojo) {
amistry7e6ebfdc82015-02-13 04:19:112715 source_set("net_browser_services") {
2716 sources = [
2717 "dns/mojo_host_resolver_impl.cc",
2718 "dns/mojo_host_resolver_impl.h",
sammc1d5df4d2015-05-05 05:06:172719 "proxy/mojo_proxy_resolver_factory.h",
eromandcacef22015-06-01 19:36:352720 "proxy/proxy_resolver_factory_mojo.cc",
2721 "proxy/proxy_resolver_factory_mojo.h",
amistry6e1ed1b2015-03-12 05:24:012722 "proxy/proxy_service_mojo.cc",
2723 "proxy/proxy_service_mojo.h",
mmenkee2ad9922017-06-08 20:27:362724 "url_request/url_request_context_builder_mojo.cc",
2725 "url_request/url_request_context_builder_mojo.h",
amistry7e6ebfdc82015-02-13 04:19:112726 ]
2727
2728 public_deps = [
scottmg5bf34202017-01-26 05:49:022729 ":net",
brettwbc44c0a92015-02-20 22:30:392730 "//base",
rockot85dce0862015-11-13 01:33:592731 "//mojo/public/cpp/bindings",
amistry7e6ebfdc82015-02-13 04:19:112732 "//net/interfaces",
amistry7e6ebfdc82015-02-13 04:19:112733 ]
2734 }
2735
sammc5403aa1d2015-02-25 04:59:212736 source_set("net_utility_services") {
2737 sources = [
sammc6ac3fe52015-02-25 06:00:282738 "dns/host_resolver_mojo.cc",
2739 "dns/host_resolver_mojo.h",
sammc352f7492015-02-25 09:45:242740 "proxy/mojo_proxy_resolver_factory_impl.cc",
2741 "proxy/mojo_proxy_resolver_factory_impl.h",
sammc5403aa1d2015-02-25 04:59:212742 "proxy/mojo_proxy_resolver_impl.cc",
2743 "proxy/mojo_proxy_resolver_impl.h",
sammca3242c92015-07-10 02:38:512744 "proxy/mojo_proxy_resolver_v8_tracing_bindings.h",
sammc5403aa1d2015-02-25 04:59:212745 ]
2746
rockot9509ec82015-04-14 02:50:562747 deps = [
2748 ":net_with_v8",
tfarina8ac4d17f2015-12-16 02:11:112749 "//base",
rockot9509ec82015-04-14 02:50:562750 ]
2751
sammc5403aa1d2015-02-25 04:59:212752 public_deps = [
sammc5403aa1d2015-02-25 04:59:212753 ":net",
rockot85dce0862015-11-13 01:33:592754 "//mojo/public/cpp/bindings",
sammc5403aa1d2015-02-25 04:59:212755 "//net/interfaces",
sammc5403aa1d2015-02-25 04:59:212756 ]
2757 }
amistry7e6ebfdc82015-02-13 04:19:112758}
2759
[email protected]8603c5de2014-04-16 20:34:312760if (!is_ios && !is_android) {
mattm36d89682016-06-08 22:22:402761 executable("cert_verify_tool") {
2762 testonly = true
2763 sources = [
2764 "tools/cert_verify_tool/cert_verify_tool.cc",
2765 "tools/cert_verify_tool/cert_verify_tool_util.cc",
2766 "tools/cert_verify_tool/cert_verify_tool_util.h",
2767 "tools/cert_verify_tool/verify_using_cert_verify_proc.cc",
2768 "tools/cert_verify_tool/verify_using_cert_verify_proc.h",
mattm3c66edc2016-07-13 22:40:422769 "tools/cert_verify_tool/verify_using_path_builder.cc",
2770 "tools/cert_verify_tool/verify_using_path_builder.h",
mattm36d89682016-06-08 22:22:402771 ]
2772
2773 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2774 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
2775 deps = [
2776 ":net",
2777 ":test_support",
2778 "//base",
thomasanderson84fa8b02017-05-18 23:38:472779 "//build/config:exe_and_shlib_deps",
mattm36d89682016-06-08 22:22:402780 "//build/win:default_exe_manifest",
2781 ]
mattm49957fe2017-03-02 01:45:292782
2783 if (is_mac) {
2784 libs = [ "Security.framework" ]
2785 }
mattm36d89682016-06-08 22:22:402786 }
2787
[email protected]8603c5de2014-04-16 20:34:312788 executable("crash_cache") {
Brett Wilson8f80ad0b2014-09-08 19:50:242789 testonly = true
scottmg34fb7e52014-12-03 23:27:242790 sources = [
2791 "tools/crash_cache/crash_cache.cc",
2792 ]
dpranke43276212015-02-20 02:55:192793
brettwd1c719a2015-02-19 23:17:042794 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2795 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312796 deps = [
2797 ":net",
[email protected]b2b2bf52014-05-28 20:26:572798 ":test_support",
[email protected]8603c5de2014-04-16 20:34:312799 "//base",
thomasanderson84fa8b02017-05-18 23:38:472800 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072801 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312802 ]
2803 }
2804
2805 executable("crl_set_dump") {
Brett Wilson8f80ad0b2014-09-08 19:50:242806 testonly = true
scottmg34fb7e52014-12-03 23:27:242807 sources = [
2808 "tools/crl_set_dump/crl_set_dump.cc",
2809 ]
dpranke43276212015-02-20 02:55:192810
brettwd1c719a2015-02-19 23:17:042811 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2812 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312813 deps = [
2814 ":net",
2815 "//base",
thomasanderson84fa8b02017-05-18 23:38:472816 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072817 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312818 ]
2819 }
2820
2821 executable("dns_fuzz_stub") {
Brett Wilson8f80ad0b2014-09-08 19:50:242822 testonly = true
scottmg34fb7e52014-12-03 23:27:242823 sources = [
2824 "tools/dns_fuzz_stub/dns_fuzz_stub.cc",
2825 ]
dpranke43276212015-02-20 02:55:192826
brettwd1c719a2015-02-19 23:17:042827 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2828 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312829 deps = [
2830 ":net",
2831 "//base",
thomasanderson84fa8b02017-05-18 23:38:472832 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072833 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312834 ]
2835 }
2836
2837 executable("gdig") {
Brett Wilson8f80ad0b2014-09-08 19:50:242838 testonly = true
[email protected]8603c5de2014-04-16 20:34:312839 sources = [
2840 "tools/gdig/file_net_log.cc",
thakisb8590c92017-03-23 18:14:532841 "tools/gdig/file_net_log.h",
[email protected]8603c5de2014-04-16 20:34:312842 "tools/gdig/gdig.cc",
2843 ]
2844 deps = [
2845 ":net",
2846 "//base",
thomasanderson84fa8b02017-05-18 23:38:472847 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072848 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312849 ]
2850 }
2851
2852 executable("get_server_time") {
Brett Wilson8f80ad0b2014-09-08 19:50:242853 testonly = true
scottmg34fb7e52014-12-03 23:27:242854 sources = [
2855 "tools/get_server_time/get_server_time.cc",
2856 ]
dpranke43276212015-02-20 02:55:192857
brettwd1c719a2015-02-19 23:17:042858 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2859 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312860 deps = [
2861 ":net",
2862 "//base",
2863 "//base:i18n",
thomasanderson84fa8b02017-05-18 23:38:472864 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072865 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312866 "//url",
2867 ]
2868 }
2869
rockot9c67e5f2015-03-12 20:01:212870 executable("hpack_example_generator") {
2871 testonly = true
2872 sources = [
bnc8f8f7d302017-04-24 18:08:062873 "spdy/core/fuzzing/hpack_example_generator.cc",
rockot9c67e5f2015-03-12 20:01:212874 ]
2875
2876 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2877 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
2878 deps = [
rockot9c67e5f2015-03-12 20:01:212879 ":net",
brettwba7a73d2015-08-31 22:17:392880 "//base",
thomasanderson84fa8b02017-05-18 23:38:472881 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072882 "//build/win:default_exe_manifest",
rockot9c67e5f2015-03-12 20:01:212883 ]
2884 }
2885
[email protected]8603c5de2014-04-16 20:34:312886 if (use_v8_in_net) {
2887 executable("net_watcher") {
Brett Wilson8f80ad0b2014-09-08 19:50:242888 testonly = true
scottmg34fb7e52014-12-03 23:27:242889 sources = [
2890 "tools/net_watcher/net_watcher.cc",
2891 ]
[email protected]8603c5de2014-04-16 20:34:312892 deps = [
2893 ":net",
2894 ":net_with_v8",
2895 "//base",
thomasanderson84fa8b02017-05-18 23:38:472896 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072897 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312898 ]
[email protected]8603c5de2014-04-16 20:34:312899 }
2900 }
2901
2902 executable("run_testserver") {
Brett Wilson8f80ad0b2014-09-08 19:50:242903 testonly = true
scottmg34fb7e52014-12-03 23:27:242904 sources = [
2905 "tools/testserver/run_testserver.cc",
2906 ]
[email protected]8603c5de2014-04-16 20:34:312907 deps = [
[email protected]b2b2bf52014-05-28 20:26:572908 ":test_support",
[email protected]8603c5de2014-04-16 20:34:312909 "//base",
2910 "//base/test:test_support",
thomasanderson84fa8b02017-05-18 23:38:472911 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072912 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312913 "//testing/gtest",
2914 ]
2915 }
2916
2917 executable("stress_cache") {
Brett Wilson8f80ad0b2014-09-08 19:50:242918 testonly = true
scottmg34fb7e52014-12-03 23:27:242919 sources = [
rvargase23fcf652015-03-04 19:59:222920 "tools/stress_cache/stress_cache.cc",
scottmg34fb7e52014-12-03 23:27:242921 ]
dpranke43276212015-02-20 02:55:192922
brettwd1c719a2015-02-19 23:17:042923 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2924 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312925 deps = [
2926 ":net",
[email protected]b2b2bf52014-05-28 20:26:572927 ":test_support",
[email protected]8603c5de2014-04-16 20:34:312928 "//base",
thomasanderson84fa8b02017-05-18 23:38:472929 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072930 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312931 ]
2932 }
2933
2934 executable("tld_cleanup") {
scottmg34fb7e52014-12-03 23:27:242935 sources = [
2936 "tools/tld_cleanup/tld_cleanup.cc",
2937 ]
dpranke43276212015-02-20 02:55:192938
brettwd1c719a2015-02-19 23:17:042939 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2940 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312941 deps = [
2942 "//base",
2943 "//base:i18n",
thomasanderson84fa8b02017-05-18 23:38:472944 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072945 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312946 "//net/tools/tld_cleanup",
2947 ]
2948 }
2949}
2950
gabadie0774bee2016-05-12 14:02:582951if (is_linux || is_mac) {
gabadie64af64a2016-03-29 16:36:422952 executable("cachetool") {
2953 testonly = true
2954 sources = [
2955 "tools/cachetool/cachetool.cc",
2956 ]
2957 deps = [
2958 ":net",
2959 ":test_support",
2960 "//base",
thomasandersonb7a52772017-05-26 19:26:422961 "//build/config:exe_and_shlib_deps",
gabadie64af64a2016-03-29 16:36:422962 ]
2963 }
2964
2965 executable("content_decoder_tool") {
2966 testonly = true
2967 sources = [
gabadie64af64a2016-03-29 16:36:422968 "tools/content_decoder_tool/content_decoder_tool.cc",
xunjielibb2d9f202016-11-01 16:37:272969 "tools/content_decoder_tool/content_decoder_tool.h",
2970 "tools/content_decoder_tool/content_decoder_tool_bin.cc",
gabadie64af64a2016-03-29 16:36:422971 ]
2972 deps = [
2973 ":net",
2974 ":test_support",
2975 "//base",
thomasandersonb7a52772017-05-26 19:26:422976 "//build/config:exe_and_shlib_deps",
gabadie64af64a2016-03-29 16:36:422977 "//url",
2978 ]
2979 }
gabadie0774bee2016-05-12 14:02:582980}
gabadie64af64a2016-03-29 16:36:422981
gabadie0774bee2016-05-12 14:02:582982if (is_linux) {
[email protected]8a3f8242014-06-05 18:05:122983 static_library("epoll_server") {
[email protected]8603c5de2014-04-16 20:34:312984 sources = [
2985 "tools/epoll_server/epoll_server.cc",
2986 "tools/epoll_server/epoll_server.h",
2987 ]
2988 deps = [
2989 ":net",
2990 "//base",
2991 ]
2992 }
2993
rch216445c2015-03-27 00:23:282994 source_set("epoll_quic_tools") {
[email protected]8603c5de2014-04-16 20:34:312995 sources = [
rchdfdb0642016-12-03 03:37:202996 "tools/quic/platform/impl/quic_epoll_clock.cc",
2997 "tools/quic/platform/impl/quic_epoll_clock.h",
rch33a6ce82016-12-06 18:41:402998 "tools/quic/platform/impl/quic_socket_utils.cc",
2999 "tools/quic/platform/impl/quic_socket_utils.h",
[email protected]8603c5de2014-04-16 20:34:313000 "tools/quic/quic_client.cc",
3001 "tools/quic/quic_client.h",
Ryan Hamiltonc4402302017-08-10 01:55:463002 "tools/quic/quic_client_epoll_network_helper.cc",
3003 "tools/quic/quic_client_epoll_network_helper.h",
[email protected]8603c5de2014-04-16 20:34:313004 "tools/quic/quic_default_packet_writer.cc",
3005 "tools/quic/quic_default_packet_writer.h",
rch16c74d1d2016-04-22 06:14:073006 "tools/quic/quic_epoll_alarm_factory.cc",
3007 "tools/quic/quic_epoll_alarm_factory.h",
[email protected]8603c5de2014-04-16 20:34:313008 "tools/quic/quic_epoll_connection_helper.cc",
3009 "tools/quic/quic_epoll_connection_helper.h",
rtennetifb3fa6c2015-03-16 23:04:553010 "tools/quic/quic_packet_reader.cc",
3011 "tools/quic/quic_packet_reader.h",
[email protected]8603c5de2014-04-16 20:34:313012 "tools/quic/quic_packet_writer_wrapper.cc",
3013 "tools/quic/quic_packet_writer_wrapper.h",
3014 "tools/quic/quic_server.cc",
3015 "tools/quic/quic_server.h",
[email protected]8603c5de2014-04-16 20:34:313016 ]
3017 deps = [
[email protected]8603c5de2014-04-16 20:34:313018 ":epoll_server",
3019 ":net",
tfarina8ac4d17f2015-12-16 02:11:113020 ":simple_quic_tools",
[email protected]8603c5de2014-04-16 20:34:313021 "//base",
3022 "//base/third_party/dynamic_annotations",
3023 "//crypto",
[email protected]edfd0f42014-07-22 18:20:373024 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:313025 "//url",
3026 ]
3027 }
3028
rch216445c2015-03-27 00:23:283029 executable("epoll_quic_client") {
scottmg34fb7e52014-12-03 23:27:243030 sources = [
3031 "tools/quic/quic_client_bin.cc",
3032 ]
[email protected]8603c5de2014-04-16 20:34:313033 deps = [
rch216445c2015-03-27 00:23:283034 ":epoll_quic_tools",
agrieved7a71c882015-11-20 19:53:283035 ":epoll_server",
rch216445c2015-03-27 00:23:283036 ":net",
3037 ":simple_quic_tools",
3038 "//base",
thomasanderson84fa8b02017-05-18 23:38:473039 "//build/config:exe_and_shlib_deps",
rch216445c2015-03-27 00:23:283040 "//third_party/boringssl",
3041 ]
3042 }
3043
3044 executable("epoll_quic_server") {
3045 sources = [
3046 "tools/quic/quic_server_bin.cc",
3047 ]
3048 deps = [
rch216445c2015-03-27 00:23:283049 ":epoll_quic_tools",
agrieved7a71c882015-11-20 19:53:283050 ":epoll_server",
[email protected]8603c5de2014-04-16 20:34:313051 ":net",
rchda78df5a2015-03-22 05:16:373052 ":simple_quic_tools",
[email protected]8603c5de2014-04-16 20:34:313053 "//base",
thomasanderson84fa8b02017-05-18 23:38:473054 "//build/config:exe_and_shlib_deps",
[email protected]edfd0f42014-07-22 18:20:373055 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:313056 ]
3057 }
[email protected]8603c5de2014-04-16 20:34:313058}
3059
[email protected]ef0eb442014-05-15 09:32:183060if (is_android) {
3061 generate_jni("net_jni_headers") {
3062 sources = [
tbansalc04b7aa2016-07-02 06:54:373063 "android/java/src/org/chromium/net/AndroidCellularSignalStrength.java",
[email protected]ef0eb442014-05-15 09:32:183064 "android/java/src/org/chromium/net/AndroidCertVerifyResult.java",
3065 "android/java/src/org/chromium/net/AndroidKeyStore.java",
3066 "android/java/src/org/chromium/net/AndroidNetworkLibrary.java",
tbansal59a1ddc2015-09-14 17:35:013067 "android/java/src/org/chromium/net/AndroidTrafficStats.java",
[email protected]ef0eb442014-05-15 09:32:183068 "android/java/src/org/chromium/net/GURLUtils.java",
aberentec894a52015-07-09 14:45:533069 "android/java/src/org/chromium/net/HttpNegotiateAuthenticator.java",
xunjieli905496a2015-08-31 15:51:173070 "android/java/src/org/chromium/net/NetStringUtil.java",
[email protected]ef0eb442014-05-15 09:32:183071 "android/java/src/org/chromium/net/NetworkChangeNotifier.java",
3072 "android/java/src/org/chromium/net/ProxyChangeListener.java",
3073 "android/java/src/org/chromium/net/X509Util.java",
3074 ]
3075 jni_package = "net"
3076 }
cjhopmandad5f4272014-09-05 01:00:553077 generate_jni("net_test_jni_headers") {
3078 sources = [
3079 "android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java",
mgershd21d6d142016-12-14 23:06:363080 "android/javatests/src/org/chromium/net/AndroidNetworkLibraryTestUtil.java",
pauljensen6815aef2017-05-05 03:00:063081 "android/javatests/src/org/chromium/net/AndroidProxyConfigServiceTestUtil.java",
aberentec894a52015-07-09 14:45:533082 "test/android/javatests/src/org/chromium/net/test/DummySpnegoAuthenticator.java",
jbudorickccffb982015-12-22 01:21:353083 "test/android/javatests/src/org/chromium/net/test/EmbeddedTestServerImpl.java",
cjhopmandad5f4272014-09-05 01:00:553084 ]
brettwcdccaf02015-07-27 16:27:093085 jni_package = "net/test"
cjhopmandad5f4272014-09-05 01:00:553086 }
[email protected]ef0eb442014-05-15 09:32:183087}
[email protected]8603c5de2014-04-16 20:34:313088
3089if (is_android || is_linux) {
3090 executable("disk_cache_memory_test") {
Brett Wilson8f80ad0b2014-09-08 19:50:243091 testonly = true
scottmg34fb7e52014-12-03 23:27:243092 sources = [
3093 "tools/disk_cache_memory_test/disk_cache_memory_test.cc",
3094 ]
[email protected]8603c5de2014-04-16 20:34:313095 deps = [
3096 ":net",
3097 "//base",
thomasanderson84fa8b02017-05-18 23:38:473098 "//build/config:exe_and_shlib_deps",
[email protected]8603c5de2014-04-16 20:34:313099 ]
3100 }
3101}
[email protected]8a3f8242014-06-05 18:05:123102
xunjielicc6b1d02017-06-05 16:51:403103source_set("quic_test_tools") {
3104 testonly = true
3105 sources = [
3106 "quic/chromium/crypto_test_utils_chromium.cc",
3107 "quic/platform/api/quic_test.h",
fayang221f04f2017-06-12 14:33:583108 "quic/platform/api/quic_test_loopback.cc",
3109 "quic/platform/api/quic_test_loopback.h",
Fan Yang62cae30f2017-09-01 20:50:513110 "quic/platform/api/quic_test_mem_slice_vector.h",
xunjielicc6b1d02017-06-05 16:51:403111 "quic/platform/impl/quic_test_impl.cc",
3112 "quic/platform/impl/quic_test_impl.h",
fayang221f04f2017-06-12 14:33:583113 "quic/platform/impl/quic_test_loopback_impl.cc",
3114 "quic/platform/impl/quic_test_loopback_impl.h",
Fan Yang62cae30f2017-09-01 20:50:513115 "quic/platform/impl/quic_test_mem_slice_vector_impl.cc",
3116 "quic/platform/impl/quic_test_mem_slice_vector_impl.h",
xunjielicc6b1d02017-06-05 16:51:403117 "quic/test_tools/crypto_test_utils.cc",
3118 "quic/test_tools/crypto_test_utils.h",
xunjielicc6b1d02017-06-05 16:51:403119 "quic/test_tools/failing_proof_source.cc",
3120 "quic/test_tools/failing_proof_source.h",
3121 "quic/test_tools/fake_proof_source.cc",
3122 "quic/test_tools/fake_proof_source.h",
3123 "quic/test_tools/mock_clock.cc",
3124 "quic/test_tools/mock_clock.h",
3125 "quic/test_tools/mock_crypto_client_stream.cc",
3126 "quic/test_tools/mock_crypto_client_stream.h",
3127 "quic/test_tools/mock_quic_client_promised_info.cc",
3128 "quic/test_tools/mock_quic_client_promised_info.h",
3129 "quic/test_tools/mock_quic_dispatcher.cc",
3130 "quic/test_tools/mock_quic_dispatcher.h",
3131 "quic/test_tools/mock_quic_spdy_client_stream.cc",
3132 "quic/test_tools/mock_quic_spdy_client_stream.h",
3133 "quic/test_tools/mock_random.cc",
3134 "quic/test_tools/mock_random.h",
3135 "quic/test_tools/quic_buffered_packet_store_peer.cc",
3136 "quic/test_tools/quic_buffered_packet_store_peer.h",
3137 "quic/test_tools/quic_client_promised_info_peer.cc",
3138 "quic/test_tools/quic_client_promised_info_peer.h",
3139 "quic/test_tools/quic_config_peer.cc",
3140 "quic/test_tools/quic_config_peer.h",
3141 "quic/test_tools/quic_connection_peer.cc",
3142 "quic/test_tools/quic_connection_peer.h",
3143 "quic/test_tools/quic_crypto_server_config_peer.cc",
3144 "quic/test_tools/quic_crypto_server_config_peer.h",
3145 "quic/test_tools/quic_flow_controller_peer.cc",
3146 "quic/test_tools/quic_flow_controller_peer.h",
3147 "quic/test_tools/quic_framer_peer.cc",
3148 "quic/test_tools/quic_framer_peer.h",
3149 "quic/test_tools/quic_packet_creator_peer.cc",
3150 "quic/test_tools/quic_packet_creator_peer.h",
3151 "quic/test_tools/quic_packet_generator_peer.cc",
3152 "quic/test_tools/quic_packet_generator_peer.h",
3153 "quic/test_tools/quic_sent_packet_manager_peer.cc",
3154 "quic/test_tools/quic_sent_packet_manager_peer.h",
3155 "quic/test_tools/quic_session_peer.cc",
3156 "quic/test_tools/quic_session_peer.h",
3157 "quic/test_tools/quic_spdy_session_peer.cc",
3158 "quic/test_tools/quic_spdy_session_peer.h",
3159 "quic/test_tools/quic_spdy_stream_peer.cc",
3160 "quic/test_tools/quic_spdy_stream_peer.h",
3161 "quic/test_tools/quic_stream_peer.cc",
3162 "quic/test_tools/quic_stream_peer.h",
Fan Yang97d44ba22017-08-07 17:00:033163 "quic/test_tools/quic_stream_send_buffer_peer.cc",
3164 "quic/test_tools/quic_stream_send_buffer_peer.h",
xunjielicc6b1d02017-06-05 16:51:403165 "quic/test_tools/quic_stream_sequencer_buffer_peer.cc",
3166 "quic/test_tools/quic_stream_sequencer_buffer_peer.h",
3167 "quic/test_tools/quic_stream_sequencer_peer.cc",
3168 "quic/test_tools/quic_stream_sequencer_peer.h",
3169 "quic/test_tools/quic_sustained_bandwidth_recorder_peer.cc",
3170 "quic/test_tools/quic_sustained_bandwidth_recorder_peer.h",
3171 "quic/test_tools/quic_test_utils.cc",
3172 "quic/test_tools/quic_test_utils.h",
3173 "quic/test_tools/quic_time_wait_list_manager_peer.cc",
3174 "quic/test_tools/quic_time_wait_list_manager_peer.h",
3175 "quic/test_tools/rtt_stats_peer.cc",
3176 "quic/test_tools/rtt_stats_peer.h",
fayangdf3cb2b2017-07-05 15:03:383177 "quic/test_tools/simple_data_producer.cc",
3178 "quic/test_tools/simple_data_producer.h",
xunjielicc6b1d02017-06-05 16:51:403179 "quic/test_tools/simple_quic_framer.cc",
3180 "quic/test_tools/simple_quic_framer.h",
3181 "quic/test_tools/simulator/actor.cc",
3182 "quic/test_tools/simulator/actor.h",
3183 "quic/test_tools/simulator/alarm_factory.cc",
3184 "quic/test_tools/simulator/alarm_factory.h",
3185 "quic/test_tools/simulator/link.cc",
3186 "quic/test_tools/simulator/link.h",
3187 "quic/test_tools/simulator/packet_filter.cc",
3188 "quic/test_tools/simulator/packet_filter.h",
3189 "quic/test_tools/simulator/port.cc",
3190 "quic/test_tools/simulator/port.h",
3191 "quic/test_tools/simulator/queue.cc",
3192 "quic/test_tools/simulator/queue.h",
3193 "quic/test_tools/simulator/quic_endpoint.cc",
3194 "quic/test_tools/simulator/quic_endpoint.h",
3195 "quic/test_tools/simulator/simulator.cc",
3196 "quic/test_tools/simulator/simulator.h",
3197 "quic/test_tools/simulator/switch.cc",
3198 "quic/test_tools/simulator/switch.h",
3199 "quic/test_tools/simulator/traffic_policer.cc",
3200 "quic/test_tools/simulator/traffic_policer.h",
3201 "tools/quic/test_tools/mock_quic_session_visitor.cc",
3202 "tools/quic/test_tools/mock_quic_session_visitor.h",
3203 ]
3204 deps = [
3205 ":net",
3206 ":simple_quic_tools",
3207 ":test_support",
3208 "//base",
3209 "//crypto:test_support",
3210 "//testing/gmock",
3211 "//testing/gtest",
3212 "//third_party/boringssl",
3213 "//third_party/protobuf:protobuf_lite",
3214 ]
3215
3216 if (is_linux) {
3217 sources += [
3218 "tools/quic/test_tools/limited_mtu_test_writer.cc",
3219 "tools/quic/test_tools/limited_mtu_test_writer.h",
3220 "tools/quic/test_tools/mock_epoll_server.cc",
3221 "tools/quic/test_tools/mock_epoll_server.h",
3222 "tools/quic/test_tools/mock_quic_time_wait_list_manager.cc",
3223 "tools/quic/test_tools/mock_quic_time_wait_list_manager.h",
3224 "tools/quic/test_tools/packet_dropping_test_writer.cc",
3225 "tools/quic/test_tools/packet_dropping_test_writer.h",
3226 "tools/quic/test_tools/packet_reordering_writer.cc",
3227 "tools/quic/test_tools/packet_reordering_writer.h",
3228 "tools/quic/test_tools/quic_client_peer.cc",
3229 "tools/quic/test_tools/quic_client_peer.h",
3230 "tools/quic/test_tools/quic_dispatcher_peer.cc",
3231 "tools/quic/test_tools/quic_dispatcher_peer.h",
3232 "tools/quic/test_tools/quic_server_peer.cc",
3233 "tools/quic/test_tools/quic_server_peer.h",
3234 "tools/quic/test_tools/quic_test_client.cc",
3235 "tools/quic/test_tools/quic_test_client.h",
3236 "tools/quic/test_tools/quic_test_server.cc",
3237 "tools/quic/test_tools/quic_test_server.h",
3238 "tools/quic/test_tools/server_thread.cc",
3239 "tools/quic/test_tools/server_thread.h",
3240 ]
3241 deps += [
3242 ":epoll_quic_tools",
3243 ":epoll_server",
3244 ]
3245 }
3246}
3247
rch47ad01f2015-03-20 21:17:233248source_set("simple_quic_tools") {
rcha9d12ce12015-03-19 23:06:493249 sources = [
ckrasica7fd1242016-05-14 20:36:013250 "tools/quic/chlo_extractor.cc",
3251 "tools/quic/chlo_extractor.h",
rtennetid67b3a722015-08-18 05:15:313252 "tools/quic/quic_client_base.cc",
3253 "tools/quic/quic_client_base.h",
Ryan Hamiltonc4402302017-08-10 01:55:463254 "tools/quic/quic_client_message_loop_network_helper.cc",
3255 "tools/quic/quic_client_message_loop_network_helper.h",
rchc99f380c2015-03-26 19:50:563256 "tools/quic/quic_dispatcher.cc",
3257 "tools/quic/quic_dispatcher.h",
vasilvv28270e8f2016-12-01 21:38:093258 "tools/quic/quic_http_response_cache.cc",
3259 "tools/quic/quic_http_response_cache.h",
rchc99f380c2015-03-26 19:50:563260 "tools/quic/quic_per_connection_packet_writer.cc",
3261 "tools/quic/quic_per_connection_packet_writer.h",
brettw25ca8922016-03-18 22:59:583262 "tools/quic/quic_process_packet_interface.h",
rcha9d12ce12015-03-19 23:06:493263 "tools/quic/quic_simple_client.cc",
3264 "tools/quic/quic_simple_client.h",
ianswett6c7b7ed2016-09-13 19:35:273265 "tools/quic/quic_simple_crypto_server_stream_helper.cc",
3266 "tools/quic/quic_simple_crypto_server_stream_helper.h",
alyssara473d6f2016-08-04 16:54:043267 "tools/quic/quic_simple_dispatcher.cc",
3268 "tools/quic/quic_simple_dispatcher.h",
rch216445c2015-03-27 00:23:283269 "tools/quic/quic_simple_per_connection_packet_writer.cc",
3270 "tools/quic/quic_simple_per_connection_packet_writer.h",
3271 "tools/quic/quic_simple_server.cc",
3272 "tools/quic/quic_simple_server.h",
3273 "tools/quic/quic_simple_server_packet_writer.cc",
3274 "tools/quic/quic_simple_server_packet_writer.h",
jokulikc971baf92016-01-06 00:36:393275 "tools/quic/quic_simple_server_session.cc",
3276 "tools/quic/quic_simple_server_session.h",
mpwb5c8da92016-06-05 20:07:313277 "tools/quic/quic_simple_server_session_helper.cc",
3278 "tools/quic/quic_simple_server_session_helper.h",
danzhb7551342015-12-18 02:06:403279 "tools/quic/quic_simple_server_stream.cc",
3280 "tools/quic/quic_simple_server_stream.h",
Ryan Hamiltonc4402302017-08-10 01:55:463281 "tools/quic/quic_spdy_client_base.cc",
3282 "tools/quic/quic_spdy_client_base.h",
3283 "tools/quic/quic_spdy_client_session.cc",
3284 "tools/quic/quic_spdy_client_session.h",
rched113b22015-03-26 04:54:053285 "tools/quic/quic_spdy_client_stream.cc",
3286 "tools/quic/quic_spdy_client_stream.h",
rchaa4ec092016-12-02 00:34:193287 "tools/quic/quic_spdy_server_stream_base.cc",
3288 "tools/quic/quic_spdy_server_stream_base.h",
rch0e945472015-03-26 15:19:213289 "tools/quic/quic_time_wait_list_manager.cc",
3290 "tools/quic/quic_time_wait_list_manager.h",
jrid04ea362016-06-23 03:07:373291 "tools/quic/stateless_rejector.cc",
3292 "tools/quic/stateless_rejector.h",
rchda78df5a2015-03-22 05:16:373293 "tools/quic/synchronous_host_resolver.cc",
3294 "tools/quic/synchronous_host_resolver.h",
rcha9d12ce12015-03-19 23:06:493295 ]
3296 deps = [
3297 ":net",
3298 "//base",
rch47ad01f2015-03-20 21:17:233299 "//base/third_party/dynamic_annotations",
3300 "//url",
3301 ]
3302}
3303
rhalavatia9b551d2017-02-09 12:03:003304source_set("traffic_annotation") {
3305 sources = [
3306 "traffic_annotation/network_traffic_annotation.h",
3307 ]
rhalavati99c6fcef2017-05-25 07:53:013308 deps = [
3309 "//base",
3310 ]
rhalavatia9b551d2017-02-09 12:03:003311}
3312
sherouk51b4b098b2015-08-10 09:00:433313if (!is_ios) {
3314 executable("quic_client") {
3315 sources = [
3316 "tools/quic/quic_simple_client_bin.cc",
3317 ]
3318 deps = [
3319 ":net",
3320 ":simple_quic_tools",
3321 "//base",
thomasanderson84fa8b02017-05-18 23:38:473322 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:073323 "//build/win:default_exe_manifest",
sherouk51b4b098b2015-08-10 09:00:433324 "//url",
3325 ]
3326 }
3327 executable("quic_server") {
3328 sources = [
3329 "tools/quic/quic_simple_server_bin.cc",
3330 ]
3331 deps = [
3332 ":net",
3333 ":simple_quic_tools",
3334 "//base",
thomasanderson84fa8b02017-05-18 23:38:473335 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:073336 "//build/win:default_exe_manifest",
sherouk51b4b098b2015-08-10 09:00:433337 "//third_party/boringssl",
3338 "//third_party/protobuf:protobuf_lite",
3339 ]
3340 }
rchf80f62d12016-05-11 00:47:313341 executable("quic_packet_printer") {
3342 sources = [
3343 "tools/quic/quic_packet_printer_bin.cc",
3344 ]
3345 deps = [
3346 ":net",
3347 ":simple_quic_tools",
3348 "//base",
thomasanderson84fa8b02017-05-18 23:38:473349 "//build/config:exe_and_shlib_deps",
rchf80f62d12016-05-11 00:47:313350 "//build/win:default_exe_manifest",
3351 "//third_party/boringssl",
3352 "//third_party/protobuf:protobuf_lite",
3353 ]
3354 }
mpwbbea85d2016-08-27 14:39:213355 executable("quic_reject_reason_decoder") {
3356 sources = [
3357 "tools/quic/quic_reject_reason_decoder_bin.cc",
3358 ]
3359 deps = [
3360 ":net",
3361 ":simple_quic_tools",
3362 "//base",
thomasanderson84fa8b02017-05-18 23:38:473363 "//build/config:exe_and_shlib_deps",
mpwbbea85d2016-08-27 14:39:213364 "//build/win:default_exe_manifest",
3365 "//third_party/boringssl",
3366 "//third_party/protobuf:protobuf_lite",
3367 ]
3368 }
danzh1401f0a2016-05-19 13:41:103369 executable("crypto_message_printer") {
3370 sources = [
3371 "tools/quic/crypto_message_printer_bin.cc",
3372 ]
3373 deps = [
3374 ":net",
3375 "//base",
thomasanderson84fa8b02017-05-18 23:38:473376 "//build/config:exe_and_shlib_deps",
danzh1401f0a2016-05-19 13:41:103377 "//build/win:default_exe_manifest",
3378 ]
3379 }
rch216445c2015-03-27 00:23:283380}
3381
eromand5207a92017-05-05 17:49:363382# This section can be updated from globbing rules using:
3383# python ./tools/update_ios_bundle_data.py
sdefresneb0a31642016-03-18 11:04:453384bundle_data("net_unittests_bundle_data") {
3385 testonly = true
ckrasic73f7240b2017-01-24 00:06:453386 sources = [
3387 "data/cert_issuer_source_aia_unittest/i.pem",
3388 "data/cert_issuer_source_aia_unittest/i2.pem",
3389 "data/cert_issuer_source_aia_unittest/i3.pem",
eromand5207a92017-05-05 17:49:363390 "data/cert_issuer_source_aia_unittest/root.pem",
ckrasic73f7240b2017-01-24 00:06:453391 "data/cert_issuer_source_aia_unittest/target_file_aia.pem",
3392 "data/cert_issuer_source_aia_unittest/target_file_and_http_aia.pem",
3393 "data/cert_issuer_source_aia_unittest/target_invalid_and_http_aia.pem",
3394 "data/cert_issuer_source_aia_unittest/target_invalid_url_aia.pem",
3395 "data/cert_issuer_source_aia_unittest/target_no_aia.pem",
3396 "data/cert_issuer_source_aia_unittest/target_one_aia.pem",
3397 "data/cert_issuer_source_aia_unittest/target_six_aia.pem",
3398 "data/cert_issuer_source_aia_unittest/target_three_aia.pem",
3399 "data/cert_issuer_source_aia_unittest/target_two_aia.pem",
3400 "data/cert_issuer_source_static_unittest/c1.pem",
3401 "data/cert_issuer_source_static_unittest/c2.pem",
3402 "data/cert_issuer_source_static_unittest/d.pem",
3403 "data/cert_issuer_source_static_unittest/e1.pem",
3404 "data/cert_issuer_source_static_unittest/e2.pem",
3405 "data/cert_issuer_source_static_unittest/i1_1.pem",
3406 "data/cert_issuer_source_static_unittest/i1_2.pem",
3407 "data/cert_issuer_source_static_unittest/i2.pem",
3408 "data/cert_issuer_source_static_unittest/i3_1.pem",
3409 "data/cert_issuer_source_static_unittest/i3_2.pem",
3410 "data/cert_issuer_source_static_unittest/root.pem",
3411 "data/certificate_policies_unittest/anypolicy.pem",
3412 "data/certificate_policies_unittest/anypolicy_with_qualifier.pem",
3413 "data/certificate_policies_unittest/invalid-anypolicy_with_custom_qualifier.pem",
3414 "data/certificate_policies_unittest/invalid-empty.pem",
3415 "data/certificate_policies_unittest/invalid-policy_1_2_3_dupe.pem",
3416 "data/certificate_policies_unittest/invalid-policy_1_2_3_policyinformation_unconsumed_data.pem",
3417 "data/certificate_policies_unittest/invalid-policy_1_2_3_policyqualifierinfo_unconsumed_data.pem",
3418 "data/certificate_policies_unittest/invalid-policy_1_2_3_with_empty_qualifiers_sequence.pem",
3419 "data/certificate_policies_unittest/invalid-policy_identifier_not_oid.pem",
3420 "data/certificate_policies_unittest/policy_1_2_3.pem",
3421 "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4.pem",
3422 "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4_with_qualifiers.pem",
3423 "data/certificate_policies_unittest/policy_1_2_3_with_custom_qualifier.pem",
3424 "data/certificate_policies_unittest/policy_1_2_3_with_qualifier.pem",
jam29f1aed42017-06-06 21:37:433425 "data/embedded_test_server/mock-headers-without-crlf.html",
3426 "data/embedded_test_server/mock-headers-without-crlf.html.mock-http-headers",
ckrasic73f7240b2017-01-24 00:06:453427 "data/filter_unittests/google.br",
3428 "data/filter_unittests/google.txt",
3429 "data/name_constraints_unittest/directoryname-excludeall.pem",
3430 "data/name_constraints_unittest/directoryname-excluded.pem",
3431 "data/name_constraints_unittest/directoryname.pem",
3432 "data/name_constraints_unittest/directoryname_and_dnsname.pem",
3433 "data/name_constraints_unittest/directoryname_and_dnsname_and_ipaddress.pem",
3434 "data/name_constraints_unittest/dnsname-exclude_dot.pem",
3435 "data/name_constraints_unittest/dnsname-excludeall.pem",
3436 "data/name_constraints_unittest/dnsname-excluded.pem",
3437 "data/name_constraints_unittest/dnsname-excluded_with_leading_dot.pem",
3438 "data/name_constraints_unittest/dnsname-permitted_two_dot.pem",
3439 "data/name_constraints_unittest/dnsname-permitted_with_leading_dot.pem",
3440 "data/name_constraints_unittest/dnsname-with_max.pem",
3441 "data/name_constraints_unittest/dnsname-with_min_0.pem",
3442 "data/name_constraints_unittest/dnsname-with_min_0_and_max.pem",
3443 "data/name_constraints_unittest/dnsname-with_min_1.pem",
3444 "data/name_constraints_unittest/dnsname-with_min_1_and_max.pem",
3445 "data/name_constraints_unittest/dnsname.pem",
3446 "data/name_constraints_unittest/dnsname2.pem",
3447 "data/name_constraints_unittest/edipartyname-excluded.pem",
3448 "data/name_constraints_unittest/edipartyname-permitted.pem",
3449 "data/name_constraints_unittest/invalid-empty_excluded_subtree.pem",
3450 "data/name_constraints_unittest/invalid-empty_permitted_subtree.pem",
3451 "data/name_constraints_unittest/invalid-no_subtrees.pem",
3452 "data/name_constraints_unittest/ipaddress-excludeall.pem",
3453 "data/name_constraints_unittest/ipaddress-excluded.pem",
3454 "data/name_constraints_unittest/ipaddress-invalid_addr.pem",
3455 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_1.pem",
3456 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_2.pem",
3457 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_3.pem",
3458 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_4.pem",
3459 "data/name_constraints_unittest/ipaddress-permit_all.pem",
3460 "data/name_constraints_unittest/ipaddress-permit_prefix1.pem",
3461 "data/name_constraints_unittest/ipaddress-permit_prefix31.pem",
3462 "data/name_constraints_unittest/ipaddress-permit_singlehost.pem",
3463 "data/name_constraints_unittest/ipaddress.pem",
3464 "data/name_constraints_unittest/name-ca.pem",
3465 "data/name_constraints_unittest/name-de.pem",
3466 "data/name_constraints_unittest/name-empty.pem",
3467 "data/name_constraints_unittest/name-jp-tokyo.pem",
3468 "data/name_constraints_unittest/name-jp.pem",
3469 "data/name_constraints_unittest/name-us-arizona-1.1.1.1.pem",
3470 "data/name_constraints_unittest/name-us-arizona-192.168.1.1.pem",
3471 "data/name_constraints_unittest/name-us-arizona-email.pem",
3472 "data/name_constraints_unittest/name-us-arizona-foo.com.pem",
3473 "data/name_constraints_unittest/name-us-arizona-ipv6.pem",
3474 "data/name_constraints_unittest/name-us-arizona-permitted.example.com.pem",
3475 "data/name_constraints_unittest/name-us-arizona.pem",
3476 "data/name_constraints_unittest/name-us-california-192.168.1.1.pem",
3477 "data/name_constraints_unittest/name-us-california-mountain_view.pem",
3478 "data/name_constraints_unittest/name-us-california-permitted.example.com.pem",
3479 "data/name_constraints_unittest/name-us-california.pem",
3480 "data/name_constraints_unittest/name-us.pem",
3481 "data/name_constraints_unittest/othername-excluded.pem",
3482 "data/name_constraints_unittest/othername-permitted.pem",
3483 "data/name_constraints_unittest/registeredid-excluded.pem",
3484 "data/name_constraints_unittest/registeredid-permitted.pem",
3485 "data/name_constraints_unittest/rfc822name-excluded.pem",
3486 "data/name_constraints_unittest/rfc822name-permitted.pem",
Matt Mueller766bedc92017-09-14 23:30:413487 "data/name_constraints_unittest/san-directoryname.pem",
3488 "data/name_constraints_unittest/san-dnsname.pem",
ckrasic73f7240b2017-01-24 00:06:453489 "data/name_constraints_unittest/san-edipartyname.pem",
3490 "data/name_constraints_unittest/san-excluded-directoryname.pem",
3491 "data/name_constraints_unittest/san-excluded-dnsname.pem",
3492 "data/name_constraints_unittest/san-excluded-ipaddress.pem",
3493 "data/name_constraints_unittest/san-invalid-empty.pem",
3494 "data/name_constraints_unittest/san-invalid-ipaddress.pem",
Matt Mueller766bedc92017-09-14 23:30:413495 "data/name_constraints_unittest/san-ipaddress4.pem",
3496 "data/name_constraints_unittest/san-ipaddress6.pem",
ckrasic73f7240b2017-01-24 00:06:453497 "data/name_constraints_unittest/san-othername.pem",
3498 "data/name_constraints_unittest/san-permitted.pem",
3499 "data/name_constraints_unittest/san-registeredid.pem",
3500 "data/name_constraints_unittest/san-rfc822name.pem",
3501 "data/name_constraints_unittest/san-uri.pem",
3502 "data/name_constraints_unittest/san-x400address.pem",
3503 "data/name_constraints_unittest/uri-excluded.pem",
3504 "data/name_constraints_unittest/uri-permitted.pem",
3505 "data/name_constraints_unittest/x400address-excluded.pem",
3506 "data/name_constraints_unittest/x400address-permitted.pem",
Eric Romana2f6f55d2017-09-07 23:34:573507 "data/ocsp_unittest/bad_ocsp_type.pem",
3508 "data/ocsp_unittest/bad_signature.pem",
3509 "data/ocsp_unittest/bad_status.pem",
3510 "data/ocsp_unittest/good_response.pem",
3511 "data/ocsp_unittest/good_response_next_update.pem",
Steven Valdez060eac42017-09-21 22:31:573512 "data/ocsp_unittest/good_response_sha256.pem",
Eric Romana2f6f55d2017-09-07 23:34:573513 "data/ocsp_unittest/has_extension.pem",
3514 "data/ocsp_unittest/has_single_extension.pem",
3515 "data/ocsp_unittest/has_version.pem",
3516 "data/ocsp_unittest/malformed_status.pem",
3517 "data/ocsp_unittest/missing_response.pem",
3518 "data/ocsp_unittest/multiple_response.pem",
3519 "data/ocsp_unittest/no_response.pem",
3520 "data/ocsp_unittest/ocsp_extra_certs.pem",
3521 "data/ocsp_unittest/ocsp_sign_bad_indirect.pem",
3522 "data/ocsp_unittest/ocsp_sign_direct.pem",
3523 "data/ocsp_unittest/ocsp_sign_indirect.pem",
3524 "data/ocsp_unittest/ocsp_sign_indirect_missing.pem",
3525 "data/ocsp_unittest/other_response.pem",
3526 "data/ocsp_unittest/responder_id.pem",
3527 "data/ocsp_unittest/responder_name.pem",
3528 "data/ocsp_unittest/revoke_response.pem",
3529 "data/ocsp_unittest/revoke_response_reason.pem",
3530 "data/ocsp_unittest/unknown_response.pem",
Eric Roman7b45a272017-08-02 03:21:443531 "data/parse_certificate_unittest/bad_key_usage.pem",
3532 "data/parse_certificate_unittest/bad_policy_qualifiers.pem",
3533 "data/parse_certificate_unittest/bad_signature_algorithm_oid.pem",
3534 "data/parse_certificate_unittest/bad_validity.pem",
ckrasic73f7240b2017-01-24 00:06:453535 "data/parse_certificate_unittest/basic_constraints_ca_false.pem",
3536 "data/parse_certificate_unittest/basic_constraints_ca_no_path.pem",
3537 "data/parse_certificate_unittest/basic_constraints_ca_path_9.pem",
3538 "data/parse_certificate_unittest/basic_constraints_negative_path.pem",
3539 "data/parse_certificate_unittest/basic_constraints_not_ca.pem",
3540 "data/parse_certificate_unittest/basic_constraints_path_too_large.pem",
3541 "data/parse_certificate_unittest/basic_constraints_pathlen_255.pem",
3542 "data/parse_certificate_unittest/basic_constraints_pathlen_256.pem",
3543 "data/parse_certificate_unittest/basic_constraints_pathlen_not_ca.pem",
3544 "data/parse_certificate_unittest/basic_constraints_unconsumed_data.pem",
3545 "data/parse_certificate_unittest/cert_algorithm_not_sequence.pem",
3546 "data/parse_certificate_unittest/cert_data_after_signature.pem",
3547 "data/parse_certificate_unittest/cert_empty_sequence.pem",
3548 "data/parse_certificate_unittest/cert_missing_signature.pem",
3549 "data/parse_certificate_unittest/cert_not_sequence.pem",
3550 "data/parse_certificate_unittest/cert_signature_not_bit_string.pem",
3551 "data/parse_certificate_unittest/cert_skeleton.pem",
3552 "data/parse_certificate_unittest/cert_version3.pem",
Eric Romandb460e92017-08-01 17:17:343553 "data/parse_certificate_unittest/crldp_1uri_noissuer.pem",
3554 "data/parse_certificate_unittest/crldp_3uri_noissuer.pem",
3555 "data/parse_certificate_unittest/crldp_full_name_as_dirname.pem",
3556 "data/parse_certificate_unittest/crldp_issuer_as_dirname.pem",
ckrasic73f7240b2017-01-24 00:06:453557 "data/parse_certificate_unittest/extended_key_usage.pem",
3558 "data/parse_certificate_unittest/extension_critical.pem",
3559 "data/parse_certificate_unittest/extension_critical_0.pem",
3560 "data/parse_certificate_unittest/extension_critical_3.pem",
3561 "data/parse_certificate_unittest/extension_not_critical.pem",
3562 "data/parse_certificate_unittest/extensions_data_after_sequence.pem",
3563 "data/parse_certificate_unittest/extensions_duplicate_key_usage.pem",
3564 "data/parse_certificate_unittest/extensions_empty_sequence.pem",
3565 "data/parse_certificate_unittest/extensions_not_sequence.pem",
3566 "data/parse_certificate_unittest/extensions_real.pem",
Eric Roman7b45a272017-08-02 03:21:443567 "data/parse_certificate_unittest/failed_signature_algorithm.pem",
eromand312c062017-05-19 03:06:293568 "data/parse_certificate_unittest/inhibit_any_policy.pem",
Eric Roman7b45a272017-08-02 03:21:443569 "data/parse_certificate_unittest/issuer_bad_printable_string.pem",
ckrasic73f7240b2017-01-24 00:06:453570 "data/parse_certificate_unittest/key_usage.pem",
Eric Roman7b45a272017-08-02 03:21:443571 "data/parse_certificate_unittest/name_constraints_bad_ip.pem",
ckrasic73f7240b2017-01-24 00:06:453572 "data/parse_certificate_unittest/policies.pem",
eroman25ead1bcf82017-05-13 06:44:583573 "data/parse_certificate_unittest/policy_constraints_empty.pem",
3574 "data/parse_certificate_unittest/policy_constraints_inhibit.pem",
3575 "data/parse_certificate_unittest/policy_constraints_inhibit_require.pem",
3576 "data/parse_certificate_unittest/policy_constraints_require.pem",
Eric Roman7b45a272017-08-02 03:21:443577 "data/parse_certificate_unittest/policy_qualifiers_empty_sequence.pem",
mattm312644de2017-05-16 08:13:183578 "data/parse_certificate_unittest/serial_37_bytes.pem",
3579 "data/parse_certificate_unittest/serial_negative.pem",
Eric Roman5d1934622017-08-03 03:57:093580 "data/parse_certificate_unittest/serial_not_minimal.pem",
3581 "data/parse_certificate_unittest/serial_not_number.pem",
3582 "data/parse_certificate_unittest/serial_zero.pem",
mattm312644de2017-05-16 08:13:183583 "data/parse_certificate_unittest/serial_zero_padded.pem",
3584 "data/parse_certificate_unittest/serial_zero_padded_21_bytes.pem",
mattm2fe429a2017-06-20 01:53:443585 "data/parse_certificate_unittest/signature_algorithm_null.pem",
ckrasic73f7240b2017-01-24 00:06:453586 "data/parse_certificate_unittest/subject_alt_name.pem",
Eric Roman7b45a272017-08-02 03:21:443587 "data/parse_certificate_unittest/subject_blank_subjectaltname_not_critical.pem",
3588 "data/parse_certificate_unittest/subject_not_ascii.pem",
3589 "data/parse_certificate_unittest/subject_not_printable_string.pem",
mattm788812f2017-05-05 23:49:093590 "data/parse_certificate_unittest/subject_t61string.pem",
3591 "data/parse_certificate_unittest/subject_t61string_1-32.pem",
3592 "data/parse_certificate_unittest/subject_t61string_126-160.pem",
3593 "data/parse_certificate_unittest/subject_t61string_actual.pem",
Eric Roman7b45a272017-08-02 03:21:443594 "data/parse_certificate_unittest/subjectaltname_bad_ip.pem",
3595 "data/parse_certificate_unittest/subjectaltname_dns_not_ascii.pem",
3596 "data/parse_certificate_unittest/subjectaltname_general_names_empty_sequence.pem",
3597 "data/parse_certificate_unittest/subjectaltname_trailing_data.pem",
ckrasic73f7240b2017-01-24 00:06:453598 "data/parse_certificate_unittest/tbs_explicit_v1.pem",
ckrasic73f7240b2017-01-24 00:06:453599 "data/parse_certificate_unittest/tbs_v1.pem",
3600 "data/parse_certificate_unittest/tbs_v1_extensions.pem",
3601 "data/parse_certificate_unittest/tbs_v2_extensions.pem",
3602 "data/parse_certificate_unittest/tbs_v2_issuer_and_subject_unique_id.pem",
3603 "data/parse_certificate_unittest/tbs_v2_issuer_unique_id.pem",
3604 "data/parse_certificate_unittest/tbs_v2_no_optionals.pem",
3605 "data/parse_certificate_unittest/tbs_v3_all_optionals.pem",
3606 "data/parse_certificate_unittest/tbs_v3_data_after_extensions.pem",
3607 "data/parse_certificate_unittest/tbs_v3_extensions.pem",
3608 "data/parse_certificate_unittest/tbs_v3_extensions_not_sequence.pem",
3609 "data/parse_certificate_unittest/tbs_v3_no_optionals.pem",
3610 "data/parse_certificate_unittest/tbs_v3_real.pem",
3611 "data/parse_certificate_unittest/tbs_v4.pem",
3612 "data/parse_certificate_unittest/tbs_validity_both_generalized_time.pem",
3613 "data/parse_certificate_unittest/tbs_validity_both_utc_time.pem",
3614 "data/parse_certificate_unittest/tbs_validity_generalized_time_and_utc_time.pem",
3615 "data/parse_certificate_unittest/tbs_validity_relaxed.pem",
3616 "data/parse_certificate_unittest/tbs_validity_utc_time_and_generalized_time.pem",
Eric Roman7b45a272017-08-02 03:21:443617 "data/parse_certificate_unittest/v1_explicit_version.pem",
ckrasic73f7240b2017-01-24 00:06:453618 "data/test.html",
3619 "data/url_request_unittest/308-without-location-header",
3620 "data/url_request_unittest/308-without-location-header.mock-http-headers",
3621 "data/url_request_unittest/BullRunSpeech.txt",
3622 "data/url_request_unittest/content-type-normalization.html",
3623 "data/url_request_unittest/content-type-normalization.html.mock-http-headers",
Emily Stark4cfecf072017-08-08 01:05:513624 "data/url_request_unittest/expect-ct-header-multiple.html",
3625 "data/url_request_unittest/expect-ct-header-multiple.html.mock-http-headers",
3626 "data/url_request_unittest/expect-ct-header-preload.html",
3627 "data/url_request_unittest/expect-ct-header-preload.html.mock-http-headers",
ckrasic73f7240b2017-01-24 00:06:453628 "data/url_request_unittest/expect-ct-header.html",
3629 "data/url_request_unittest/expect-ct-header.html.mock-http-headers",
3630 "data/url_request_unittest/filedir-sentinel",
3631 "data/url_request_unittest/gzip-encoded",
3632 "data/url_request_unittest/gzip-encoded.mock-http-headers",
3633 "data/url_request_unittest/hpkp-headers-report-only.html",
3634 "data/url_request_unittest/hpkp-headers-report-only.html.mock-http-headers",
3635 "data/url_request_unittest/hpkp-headers.html",
3636 "data/url_request_unittest/hpkp-headers.html.mock-http-headers",
3637 "data/url_request_unittest/hsts-and-hpkp-headers.html",
3638 "data/url_request_unittest/hsts-and-hpkp-headers.html.mock-http-headers",
3639 "data/url_request_unittest/hsts-and-hpkp-headers2.html",
3640 "data/url_request_unittest/hsts-and-hpkp-headers2.html.mock-http-headers",
3641 "data/url_request_unittest/hsts-headers.html",
3642 "data/url_request_unittest/hsts-headers.html.mock-http-headers",
3643 "data/url_request_unittest/hsts-multiple-headers.html",
3644 "data/url_request_unittest/hsts-multiple-headers.html.mock-http-headers",
3645 "data/url_request_unittest/redirect-test.html",
3646 "data/url_request_unittest/redirect-test.html.mock-http-headers",
3647 "data/url_request_unittest/redirect-to-data.html",
3648 "data/url_request_unittest/redirect-to-data.html.mock-http-headers",
3649 "data/url_request_unittest/redirect-to-echoall",
3650 "data/url_request_unittest/redirect-to-echoall.mock-http-headers",
3651 "data/url_request_unittest/redirect-to-file.html",
3652 "data/url_request_unittest/redirect-to-file.html.mock-http-headers",
3653 "data/url_request_unittest/redirect-to-invalid-url.html",
3654 "data/url_request_unittest/redirect-to-invalid-url.html.mock-http-headers",
3655 "data/url_request_unittest/redirect301-to-echo",
3656 "data/url_request_unittest/redirect301-to-echo.mock-http-headers",
3657 "data/url_request_unittest/redirect301-to-https",
3658 "data/url_request_unittest/redirect301-to-https.mock-http-headers",
3659 "data/url_request_unittest/redirect302-to-echo",
3660 "data/url_request_unittest/redirect302-to-echo-cacheable",
3661 "data/url_request_unittest/redirect302-to-echo-cacheable.mock-http-headers",
3662 "data/url_request_unittest/redirect302-to-echo.mock-http-headers",
3663 "data/url_request_unittest/redirect302-to-https",
3664 "data/url_request_unittest/redirect302-to-https.mock-http-headers",
3665 "data/url_request_unittest/redirect303-to-echo",
3666 "data/url_request_unittest/redirect303-to-echo.mock-http-headers",
3667 "data/url_request_unittest/redirect303-to-https",
3668 "data/url_request_unittest/redirect303-to-https.mock-http-headers",
3669 "data/url_request_unittest/redirect307-to-echo",
3670 "data/url_request_unittest/redirect307-to-echo.mock-http-headers",
3671 "data/url_request_unittest/redirect307-to-https",
3672 "data/url_request_unittest/redirect307-to-https.mock-http-headers",
3673 "data/url_request_unittest/redirect308-to-echo",
3674 "data/url_request_unittest/redirect308-to-echo.mock-http-headers",
3675 "data/url_request_unittest/redirect308-to-https",
3676 "data/url_request_unittest/redirect308-to-https.mock-http-headers",
3677 "data/url_request_unittest/simple.html",
3678 "data/url_request_unittest/simple.html.mock-http-headers",
3679 "data/url_request_unittest/two-content-lengths.html",
3680 "data/url_request_unittest/two-content-lengths.html.mock-http-headers",
3681 "data/url_request_unittest/with-headers.html",
3682 "data/url_request_unittest/with-headers.html.mock-http-headers",
eroman266bda9e2017-05-03 01:28:043683 "data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/chain.pem",
3684 "data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/main.test",
eroman266bda9e2017-05-03 01:28:043685 "data/verify_certificate_chain_unittest/expired-intermediate/chain.pem",
eromane7af9002017-05-13 05:04:013686 "data/verify_certificate_chain_unittest/expired-intermediate/not-after.test",
3687 "data/verify_certificate_chain_unittest/expired-intermediate/not-before.test",
eromanc1a8b5d02017-05-03 21:52:103688 "data/verify_certificate_chain_unittest/expired-root/chain.pem",
eromane7af9002017-05-13 05:04:013689 "data/verify_certificate_chain_unittest/expired-root/not-after-ta-with-constraints.test",
3690 "data/verify_certificate_chain_unittest/expired-root/not-after.test",
3691 "data/verify_certificate_chain_unittest/expired-root/not-before.test",
eroman266bda9e2017-05-03 01:28:043692 "data/verify_certificate_chain_unittest/expired-target/chain.pem",
eromane7af9002017-05-13 05:04:013693 "data/verify_certificate_chain_unittest/expired-target/not-after.test",
3694 "data/verify_certificate_chain_unittest/expired-target/not-before.test",
eroman266bda9e2017-05-03 01:28:043695 "data/verify_certificate_chain_unittest/incorrect-trust-anchor/chain.pem",
3696 "data/verify_certificate_chain_unittest/incorrect-trust-anchor/main.test",
3697 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/chain.pem",
3698 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/main.test",
3699 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/chain.pem",
3700 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/main.test",
eroman7333d9b2017-06-23 01:50:253701 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/any.test",
3702 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/chain.pem",
3703 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/clientauth.test",
3704 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/serverauth.test",
3705 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/any.test",
3706 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/chain.pem",
3707 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/clientauth.test",
3708 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/serverauth.test",
Eric Romanc8c2d6a2017-08-01 22:55:303709 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-chain.pem",
3710 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-any.test",
3711 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-clientAuth.test",
3712 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-serverAuth.test",
3713 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-chain.pem",
3714 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-any.test",
3715 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-clientAuth.test",
3716 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-serverAuth.test",
eroman266bda9e2017-05-03 01:28:043717 "data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/chain.pem",
3718 "data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/main.test",
3719 "data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/chain.pem",
3720 "data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/main.test",
eroman266bda9e2017-05-03 01:28:043721 "data/verify_certificate_chain_unittest/intermediate-signed-with-md5/chain.pem",
3722 "data/verify_certificate_chain_unittest/intermediate-signed-with-md5/main.test",
3723 "data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/chain.pem",
3724 "data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/main.test",
3725 "data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/chain.pem",
3726 "data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/main.test",
3727 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.pem",
3728 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.test",
3729 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.pem",
3730 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.test",
3731 "data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.pem",
3732 "data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.test",
3733 "data/verify_certificate_chain_unittest/key-rollover/newchain.pem",
3734 "data/verify_certificate_chain_unittest/key-rollover/newchain.test",
3735 "data/verify_certificate_chain_unittest/key-rollover/oldchain.pem",
3736 "data/verify_certificate_chain_unittest/key-rollover/oldchain.test",
3737 "data/verify_certificate_chain_unittest/key-rollover/rolloverchain.pem",
3738 "data/verify_certificate_chain_unittest/key-rollover/rolloverchain.test",
3739 "data/verify_certificate_chain_unittest/non-self-signed-root/chain.pem",
3740 "data/verify_certificate_chain_unittest/non-self-signed-root/main.test",
eromanc1a8b5d02017-05-03 21:52:103741 "data/verify_certificate_chain_unittest/non-self-signed-root/ta-with-constraints.test",
eroman605a5cc2017-06-03 02:45:243742 "data/verify_certificate_chain_unittest/pkits_errors/4.1.2.txt",
3743 "data/verify_certificate_chain_unittest/pkits_errors/4.1.3.txt",
3744 "data/verify_certificate_chain_unittest/pkits_errors/4.1.4.txt",
3745 "data/verify_certificate_chain_unittest/pkits_errors/4.1.5.txt",
3746 "data/verify_certificate_chain_unittest/pkits_errors/4.1.6.txt",
3747 "data/verify_certificate_chain_unittest/pkits_errors/4.10.1.txt",
3748 "data/verify_certificate_chain_unittest/pkits_errors/4.10.10.txt",
3749 "data/verify_certificate_chain_unittest/pkits_errors/4.10.2.txt",
3750 "data/verify_certificate_chain_unittest/pkits_errors/4.10.3.txt",
3751 "data/verify_certificate_chain_unittest/pkits_errors/4.10.4.txt",
3752 "data/verify_certificate_chain_unittest/pkits_errors/4.10.5.txt",
3753 "data/verify_certificate_chain_unittest/pkits_errors/4.10.6.txt",
3754 "data/verify_certificate_chain_unittest/pkits_errors/4.10.7.txt",
3755 "data/verify_certificate_chain_unittest/pkits_errors/4.10.8.txt",
3756 "data/verify_certificate_chain_unittest/pkits_errors/4.11.1.txt",
3757 "data/verify_certificate_chain_unittest/pkits_errors/4.11.10.txt",
3758 "data/verify_certificate_chain_unittest/pkits_errors/4.11.11.txt",
3759 "data/verify_certificate_chain_unittest/pkits_errors/4.11.3.txt",
3760 "data/verify_certificate_chain_unittest/pkits_errors/4.11.5.txt",
3761 "data/verify_certificate_chain_unittest/pkits_errors/4.11.6.txt",
3762 "data/verify_certificate_chain_unittest/pkits_errors/4.11.8.txt",
3763 "data/verify_certificate_chain_unittest/pkits_errors/4.11.9.txt",
3764 "data/verify_certificate_chain_unittest/pkits_errors/4.12.1.txt",
3765 "data/verify_certificate_chain_unittest/pkits_errors/4.12.10.txt",
3766 "data/verify_certificate_chain_unittest/pkits_errors/4.12.3.txt",
3767 "data/verify_certificate_chain_unittest/pkits_errors/4.12.4.txt",
3768 "data/verify_certificate_chain_unittest/pkits_errors/4.12.5.txt",
3769 "data/verify_certificate_chain_unittest/pkits_errors/4.12.6.txt",
3770 "data/verify_certificate_chain_unittest/pkits_errors/4.12.8.txt",
3771 "data/verify_certificate_chain_unittest/pkits_errors/4.13.10.txt",
3772 "data/verify_certificate_chain_unittest/pkits_errors/4.13.12.txt",
3773 "data/verify_certificate_chain_unittest/pkits_errors/4.13.13.txt",
3774 "data/verify_certificate_chain_unittest/pkits_errors/4.13.15.txt",
3775 "data/verify_certificate_chain_unittest/pkits_errors/4.13.16.txt",
3776 "data/verify_certificate_chain_unittest/pkits_errors/4.13.17.txt",
3777 "data/verify_certificate_chain_unittest/pkits_errors/4.13.2.txt",
3778 "data/verify_certificate_chain_unittest/pkits_errors/4.13.20.txt",
3779 "data/verify_certificate_chain_unittest/pkits_errors/4.13.21.txt",
3780 "data/verify_certificate_chain_unittest/pkits_errors/4.13.22.txt",
3781 "data/verify_certificate_chain_unittest/pkits_errors/4.13.23.txt",
3782 "data/verify_certificate_chain_unittest/pkits_errors/4.13.24.txt",
3783 "data/verify_certificate_chain_unittest/pkits_errors/4.13.25.txt",
3784 "data/verify_certificate_chain_unittest/pkits_errors/4.13.26.txt",
3785 "data/verify_certificate_chain_unittest/pkits_errors/4.13.27.txt",
3786 "data/verify_certificate_chain_unittest/pkits_errors/4.13.28.txt",
3787 "data/verify_certificate_chain_unittest/pkits_errors/4.13.29.txt",
3788 "data/verify_certificate_chain_unittest/pkits_errors/4.13.3.txt",
3789 "data/verify_certificate_chain_unittest/pkits_errors/4.13.31.txt",
3790 "data/verify_certificate_chain_unittest/pkits_errors/4.13.33.txt",
3791 "data/verify_certificate_chain_unittest/pkits_errors/4.13.34.txt",
3792 "data/verify_certificate_chain_unittest/pkits_errors/4.13.35.txt",
3793 "data/verify_certificate_chain_unittest/pkits_errors/4.13.36.txt",
3794 "data/verify_certificate_chain_unittest/pkits_errors/4.13.37.txt",
3795 "data/verify_certificate_chain_unittest/pkits_errors/4.13.38.txt",
3796 "data/verify_certificate_chain_unittest/pkits_errors/4.13.7.txt",
3797 "data/verify_certificate_chain_unittest/pkits_errors/4.13.8.txt",
3798 "data/verify_certificate_chain_unittest/pkits_errors/4.13.9.txt",
3799 "data/verify_certificate_chain_unittest/pkits_errors/4.16.2.txt",
3800 "data/verify_certificate_chain_unittest/pkits_errors/4.2.1.txt",
3801 "data/verify_certificate_chain_unittest/pkits_errors/4.2.2.txt",
3802 "data/verify_certificate_chain_unittest/pkits_errors/4.2.5.txt",
3803 "data/verify_certificate_chain_unittest/pkits_errors/4.2.6.txt",
3804 "data/verify_certificate_chain_unittest/pkits_errors/4.2.7.txt",
3805 "data/verify_certificate_chain_unittest/pkits_errors/4.3.1.txt",
3806 "data/verify_certificate_chain_unittest/pkits_errors/4.3.2.txt",
3807 "data/verify_certificate_chain_unittest/pkits_errors/4.6.1.txt",
3808 "data/verify_certificate_chain_unittest/pkits_errors/4.6.10.txt",
3809 "data/verify_certificate_chain_unittest/pkits_errors/4.6.11.txt",
3810 "data/verify_certificate_chain_unittest/pkits_errors/4.6.12.txt",
3811 "data/verify_certificate_chain_unittest/pkits_errors/4.6.16.txt",
3812 "data/verify_certificate_chain_unittest/pkits_errors/4.6.2.txt",
3813 "data/verify_certificate_chain_unittest/pkits_errors/4.6.3.txt",
3814 "data/verify_certificate_chain_unittest/pkits_errors/4.6.5.txt",
3815 "data/verify_certificate_chain_unittest/pkits_errors/4.6.6.txt",
3816 "data/verify_certificate_chain_unittest/pkits_errors/4.6.9.txt",
3817 "data/verify_certificate_chain_unittest/pkits_errors/4.7.1.txt",
3818 "data/verify_certificate_chain_unittest/pkits_errors/4.7.2.txt",
3819 "data/verify_certificate_chain_unittest/pkits_errors/4.8.1.txt",
3820 "data/verify_certificate_chain_unittest/pkits_errors/4.8.12.txt",
3821 "data/verify_certificate_chain_unittest/pkits_errors/4.8.14.txt",
3822 "data/verify_certificate_chain_unittest/pkits_errors/4.8.2.txt",
3823 "data/verify_certificate_chain_unittest/pkits_errors/4.8.3.txt",
3824 "data/verify_certificate_chain_unittest/pkits_errors/4.8.4.txt",
3825 "data/verify_certificate_chain_unittest/pkits_errors/4.8.5.txt",
3826 "data/verify_certificate_chain_unittest/pkits_errors/4.8.6.txt",
3827 "data/verify_certificate_chain_unittest/pkits_errors/4.8.7.txt",
3828 "data/verify_certificate_chain_unittest/pkits_errors/4.8.8.txt",
3829 "data/verify_certificate_chain_unittest/pkits_errors/4.8.9.txt",
3830 "data/verify_certificate_chain_unittest/pkits_errors/4.9.3.txt",
3831 "data/verify_certificate_chain_unittest/pkits_errors/4.9.5.txt",
3832 "data/verify_certificate_chain_unittest/pkits_errors/4.9.7.txt",
3833 "data/verify_certificate_chain_unittest/pkits_errors/4.9.8.txt",
eromanc1a8b5d02017-05-03 21:52:103834 "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/chain.pem",
3835 "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/main.test",
3836 "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/ta-with-constraints.test",
eroman7333d9b2017-06-23 01:50:253837 "data/verify_certificate_chain_unittest/root-eku-clientauth/chain.pem",
3838 "data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth-ta-with-constraints.test",
3839 "data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth.test",
eromanc1a8b5d02017-05-03 21:52:103840 "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/chain.pem",
3841 "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/main.test",
3842 "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/ta-with-constraints.test",
eroman266bda9e2017-05-03 01:28:043843 "data/verify_certificate_chain_unittest/target-and-intermediate/chain.pem",
eromand1c9c9b2017-05-04 19:23:453844 "data/verify_certificate_chain_unittest/target-and-intermediate/distrusted-root.test",
eroman266bda9e2017-05-03 01:28:043845 "data/verify_certificate_chain_unittest/target-and-intermediate/main.test",
eromand1c9c9b2017-05-04 19:23:453846 "data/verify_certificate_chain_unittest/target-and-intermediate/unspecified-trust-root.test",
eroman7333d9b2017-06-23 01:50:253847 "data/verify_certificate_chain_unittest/target-eku-clientauth/any.test",
3848 "data/verify_certificate_chain_unittest/target-eku-clientauth/chain.pem",
3849 "data/verify_certificate_chain_unittest/target-eku-clientauth/clientauth.test",
3850 "data/verify_certificate_chain_unittest/target-eku-clientauth/serverauth.test",
3851 "data/verify_certificate_chain_unittest/target-eku-none/any.test",
3852 "data/verify_certificate_chain_unittest/target-eku-none/chain.pem",
3853 "data/verify_certificate_chain_unittest/target-eku-none/clientauth.test",
3854 "data/verify_certificate_chain_unittest/target-eku-none/serverauth.test",
Eric Roman5431d702017-07-26 01:58:183855 "data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/chain.pem",
3856 "data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/main.test",
eroman266bda9e2017-05-03 01:28:043857 "data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/chain.pem",
3858 "data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/main.test",
3859 "data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/chain.pem",
3860 "data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/main.test",
eroman266bda9e2017-05-03 01:28:043861 "data/verify_certificate_chain_unittest/target-not-end-entity/chain.pem",
3862 "data/verify_certificate_chain_unittest/target-not-end-entity/main.test",
eromane7899432017-05-04 16:40:483863 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.pem",
3864 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.test",
3865 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.pem",
3866 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.test",
3867 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.pem",
3868 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.test",
3869 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.pem",
3870 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.test",
3871 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.pem",
3872 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.test",
3873 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.pem",
3874 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.test",
3875 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.pem",
3876 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.test",
3877 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.pem",
3878 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.test",
eroman266bda9e2017-05-03 01:28:043879 "data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/chain.pem",
3880 "data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/main.test",
3881 "data/verify_certificate_chain_unittest/target-signed-using-ecdsa/chain.pem",
3882 "data/verify_certificate_chain_unittest/target-signed-using-ecdsa/main.test",
3883 "data/verify_certificate_chain_unittest/target-signed-with-md5/chain.pem",
3884 "data/verify_certificate_chain_unittest/target-signed-with-md5/main.test",
3885 "data/verify_certificate_chain_unittest/target-unknown-critical-extension/chain.pem",
3886 "data/verify_certificate_chain_unittest/target-unknown-critical-extension/main.test",
3887 "data/verify_certificate_chain_unittest/target-wrong-signature/chain.pem",
3888 "data/verify_certificate_chain_unittest/target-wrong-signature/main.test",
eroman178f2c62017-06-07 01:03:443889 "data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/chain.pem",
3890 "data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/main.test",
3891 "data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/chain.pem",
3892 "data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/main.test",
eroman266bda9e2017-05-03 01:28:043893 "data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/chain.pem",
3894 "data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/main.test",
eromanc1a8b5d02017-05-03 21:52:103895 "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/chain.pem",
3896 "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/main.test",
3897 "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/ta-with-constraints.test",
ckrasic73f7240b2017-01-24 00:06:453898 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-dupe_attr.pem",
3899 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_attr.pem",
3900 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_rdn.pem",
3901 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap.pem",
3902 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-dupe_attr.pem",
3903 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_attr.pem",
3904 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_rdn.pem",
3905 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace.pem",
3906 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-dupe_attr.pem",
3907 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_attr.pem",
3908 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_rdn.pem",
3909 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled.pem",
3910 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-dupe_attr.pem",
3911 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_attr.pem",
3912 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_rdn.pem",
3913 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap.pem",
3914 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-dupe_attr.pem",
3915 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_attr.pem",
3916 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_rdn.pem",
3917 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace.pem",
3918 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_1.pem",
3919 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_2.pem",
3920 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-dupe_attr.pem",
3921 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_attr.pem",
3922 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_rdn.pem",
3923 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled.pem",
3924 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-dupe_attr.pem",
3925 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_attr.pem",
3926 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_rdn.pem",
3927 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap.pem",
3928 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-dupe_attr.pem",
3929 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_attr.pem",
3930 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_rdn.pem",
3931 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace.pem",
3932 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-dupe_attr.pem",
3933 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_attr.pem",
3934 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_rdn.pem",
3935 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled.pem",
3936 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-dupe_attr.pem",
3937 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_attr.pem",
3938 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_rdn.pem",
3939 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap.pem",
3940 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-dupe_attr.pem",
3941 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_attr.pem",
3942 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_rdn.pem",
3943 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace.pem",
3944 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-dupe_attr.pem",
3945 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_attr.pem",
3946 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_rdn.pem",
3947 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled.pem",
3948 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-dupe_attr.pem",
3949 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_attr.pem",
3950 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_rdn.pem",
3951 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap.pem",
3952 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-dupe_attr.pem",
3953 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_attr.pem",
3954 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_rdn.pem",
3955 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace.pem",
3956 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-dupe_attr.pem",
3957 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_attr.pem",
3958 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_rdn.pem",
3959 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled.pem",
3960 "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_1.pem",
3961 "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_2.pem",
3962 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-badAttributeType.pem",
3963 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-empty.pem",
3964 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-extradata.pem",
3965 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-onlyOneElement.pem",
3966 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-setNotSequence.pem",
3967 "data/verify_name_match_unittest/names/invalid-Name-setInsteadOfSequence.pem",
3968 "data/verify_name_match_unittest/names/invalid-RDN-empty.pem",
3969 "data/verify_name_match_unittest/names/invalid-RDN-sequenceInsteadOfSet.pem",
3970 "data/verify_name_match_unittest/names/unicode-mixed-normalized.pem",
3971 "data/verify_name_match_unittest/names/unicode-mixed-unnormalized.pem",
3972 "data/verify_name_match_unittest/names/unicode_bmp-BMPSTRING-unmangled.pem",
3973 "data/verify_name_match_unittest/names/unicode_bmp-UNIVERSALSTRING-unmangled.pem",
3974 "data/verify_name_match_unittest/names/unicode_bmp-UTF8-unmangled.pem",
3975 "data/verify_name_match_unittest/names/unicode_supplementary-UNIVERSALSTRING-unmangled.pem",
3976 "data/verify_name_match_unittest/names/unicode_supplementary-UTF8-unmangled.pem",
3977 "data/verify_name_match_unittest/names/valid-Name-empty.pem",
3978 "data/verify_name_match_unittest/names/valid-minimal.pem",
3979 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-spki-params-null.pem",
3980 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-unused-bits-signature.pem",
3981 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecdh-key.pem",
3982 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecmqv-key.pem",
3983 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-rsa-algorithm.pem",
3984 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-wrong-signature-format.pem",
3985 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512.pem",
3986 "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256-corrupted-data.pem",
3987 "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256.pem",
3988 "data/verify_signed_data_unittest/ecdsa-using-rsa-key.pem",
3989 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-length.pem",
3990 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-null.pem",
3991 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-key-params-absent.pem",
3992 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-using-pss-key-no-params.pem",
3993 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-wrong-algorithm.pem",
3994 "data/verify_signed_data_unittest/rsa-pkcs1-sha1.pem",
3995 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-key-encoded-ber.pem",
3996 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-spki-non-null-params.pem",
3997 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-ecdsa-algorithm.pem",
3998 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-id-ea-rsa.pem",
3999 "data/verify_signed_data_unittest/rsa-pkcs1-sha256.pem",
4000 "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-no-params.pem",
4001 "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-with-null-params.pem",
4002 "data/verify_signed_data_unittest/rsa-pss-sha1-salt20.pem",
4003 "data/verify_signed_data_unittest/rsa-pss-sha1-wrong-salt.pem",
4004 "data/verify_signed_data_unittest/rsa-pss-sha256-mgf1-sha512-salt33.pem",
4005 "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-params.pem",
4006 "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-wrong-params.pem",
4007 "data/verify_signed_data_unittest/rsa-pss-sha256-salt10.pem",
4008 "data/verify_signed_data_unittest/rsa-using-ec-key.pem",
4009 "data/verify_signed_data_unittest/rsa2048-pkcs1-sha512.pem",
4010 "third_party/nist-pkits/certs/AllCertificatesNoPoliciesTest2EE.crt",
4011 "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest10EE.crt",
4012 "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest13EE.crt",
4013 "third_party/nist-pkits/certs/AllCertificatesanyPolicyTest11EE.crt",
4014 "third_party/nist-pkits/certs/AnyPolicyTest14EE.crt",
4015 "third_party/nist-pkits/certs/BadCRLIssuerNameCACert.crt",
4016 "third_party/nist-pkits/certs/BadCRLSignatureCACert.crt",
4017 "third_party/nist-pkits/certs/BadSignedCACert.crt",
4018 "third_party/nist-pkits/certs/BadnotAfterDateCACert.crt",
4019 "third_party/nist-pkits/certs/BadnotBeforeDateCACert.crt",
4020 "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCACert.crt",
4021 "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCRLCert.crt",
4022 "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyCACert.crt",
4023 "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyOldWithNewCACert.crt",
4024 "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyCACert.crt",
4025 "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyNewWithOldCACert.crt",
4026 "third_party/nist-pkits/certs/CPSPointerQualifierTest20EE.crt",
4027 "third_party/nist-pkits/certs/DSACACert.crt",
4028 "third_party/nist-pkits/certs/DSAParametersInheritedCACert.crt",
4029 "third_party/nist-pkits/certs/DifferentPoliciesTest12EE.crt",
4030 "third_party/nist-pkits/certs/DifferentPoliciesTest3EE.crt",
4031 "third_party/nist-pkits/certs/DifferentPoliciesTest4EE.crt",
4032 "third_party/nist-pkits/certs/DifferentPoliciesTest5EE.crt",
4033 "third_party/nist-pkits/certs/DifferentPoliciesTest7EE.crt",
4034 "third_party/nist-pkits/certs/DifferentPoliciesTest8EE.crt",
4035 "third_party/nist-pkits/certs/DifferentPoliciesTest9EE.crt",
4036 "third_party/nist-pkits/certs/GeneralizedTimeCRLnextUpdateCACert.crt",
4037 "third_party/nist-pkits/certs/GoodCACert.crt",
4038 "third_party/nist-pkits/certs/GoodsubCACert.crt",
4039 "third_party/nist-pkits/certs/GoodsubCAPanyPolicyMapping1to2CACert.crt",
4040 "third_party/nist-pkits/certs/InvalidBadCRLIssuerNameTest5EE.crt",
4041 "third_party/nist-pkits/certs/InvalidBadCRLSignatureTest4EE.crt",
4042 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest7EE.crt",
4043 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest8EE.crt",
4044 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedNewWithOldTest5EE.crt",
4045 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedOldWithNewTest2EE.crt",
4046 "third_party/nist-pkits/certs/InvalidCASignatureTest2EE.crt",
4047 "third_party/nist-pkits/certs/InvalidCAnotAfterDateTest5EE.crt",
4048 "third_party/nist-pkits/certs/InvalidCAnotBeforeDateTest1EE.crt",
4049 "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest31EE.crt",
4050 "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest33EE.crt",
4051 "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest38EE.crt",
4052 "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest28EE.crt",
4053 "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest29EE.crt",
4054 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest10EE.crt",
4055 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest12EE.crt",
4056 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest13EE.crt",
4057 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest15EE.crt",
4058 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest16EE.crt",
4059 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest17EE.crt",
4060 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest20EE.crt",
4061 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest2EE.crt",
4062 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest3EE.crt",
4063 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest7EE.crt",
4064 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest8EE.crt",
4065 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest9EE.crt",
4066 "third_party/nist-pkits/certs/InvalidDSASignatureTest6EE.crt",
4067 "third_party/nist-pkits/certs/InvalidEESignatureTest3EE.crt",
4068 "third_party/nist-pkits/certs/InvalidEEnotAfterDateTest6EE.crt",
4069 "third_party/nist-pkits/certs/InvalidEEnotBeforeDateTest2EE.crt",
4070 "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest23EE.crt",
4071 "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest26EE.crt",
4072 "third_party/nist-pkits/certs/InvalidLongSerialNumberTest18EE.crt",
4073 "third_party/nist-pkits/certs/InvalidMappingFromanyPolicyTest7EE.crt",
4074 "third_party/nist-pkits/certs/InvalidMappingToanyPolicyTest8EE.crt",
4075 "third_party/nist-pkits/certs/InvalidMissingCRLTest1EE.crt",
4076 "third_party/nist-pkits/certs/InvalidMissingbasicConstraintsTest1EE.crt",
4077 "third_party/nist-pkits/certs/InvalidNameChainingOrderTest2EE.crt",
4078 "third_party/nist-pkits/certs/InvalidNameChainingTest1EE.crt",
4079 "third_party/nist-pkits/certs/InvalidNegativeSerialNumberTest15EE.crt",
4080 "third_party/nist-pkits/certs/InvalidOldCRLnextUpdateTest11EE.crt",
4081 "third_party/nist-pkits/certs/InvalidPolicyMappingTest10EE.crt",
4082 "third_party/nist-pkits/certs/InvalidPolicyMappingTest2EE.crt",
4083 "third_party/nist-pkits/certs/InvalidPolicyMappingTest4EE.crt",
4084 "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest22EE.crt",
4085 "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest24EE.crt",
4086 "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest26EE.crt",
4087 "third_party/nist-pkits/certs/InvalidRevokedCATest2EE.crt",
4088 "third_party/nist-pkits/certs/InvalidRevokedEETest3EE.crt",
4089 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest10EE.crt",
4090 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest8EE.crt",
4091 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest10EE.crt",
4092 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest11EE.crt",
4093 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest8EE.crt",
4094 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest9EE.crt",
4095 "third_party/nist-pkits/certs/InvalidSelfIssuedpathLenConstraintTest16EE.crt",
4096 "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest7EE.crt",
4097 "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest8EE.crt",
4098 "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest20EE.crt",
4099 "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest21EE.crt",
4100 "third_party/nist-pkits/certs/InvalidURInameConstraintsTest35EE.crt",
4101 "third_party/nist-pkits/certs/InvalidURInameConstraintsTest37EE.crt",
4102 "third_party/nist-pkits/certs/InvalidUnknownCRLEntryExtensionTest8EE.crt",
4103 "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest10EE.crt",
4104 "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest9EE.crt",
4105 "third_party/nist-pkits/certs/InvalidUnknownCriticalCertificateExtensionTest2EE.crt",
4106 "third_party/nist-pkits/certs/InvalidWrongCRLTest6EE.crt",
4107 "third_party/nist-pkits/certs/InvalidcAFalseTest2EE.crt",
4108 "third_party/nist-pkits/certs/InvalidcAFalseTest3EE.crt",
4109 "third_party/nist-pkits/certs/InvalidcRLIssuerTest27EE.crt",
4110 "third_party/nist-pkits/certs/InvalidcRLIssuerTest31EE.crt",
4111 "third_party/nist-pkits/certs/InvalidcRLIssuerTest32EE.crt",
4112 "third_party/nist-pkits/certs/InvalidcRLIssuerTest34EE.crt",
4113 "third_party/nist-pkits/certs/InvalidcRLIssuerTest35EE.crt",
4114 "third_party/nist-pkits/certs/InvaliddeltaCRLIndicatorNoBaseTest1EE.crt",
4115 "third_party/nist-pkits/certs/InvaliddeltaCRLTest10EE.crt",
4116 "third_party/nist-pkits/certs/InvaliddeltaCRLTest3EE.crt",
4117 "third_party/nist-pkits/certs/InvaliddeltaCRLTest4EE.crt",
4118 "third_party/nist-pkits/certs/InvaliddeltaCRLTest6EE.crt",
4119 "third_party/nist-pkits/certs/InvaliddeltaCRLTest9EE.crt",
4120 "third_party/nist-pkits/certs/InvaliddistributionPointTest2EE.crt",
4121 "third_party/nist-pkits/certs/InvaliddistributionPointTest3EE.crt",
4122 "third_party/nist-pkits/certs/InvaliddistributionPointTest6EE.crt",
4123 "third_party/nist-pkits/certs/InvaliddistributionPointTest8EE.crt",
4124 "third_party/nist-pkits/certs/InvaliddistributionPointTest9EE.crt",
4125 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest1EE.crt",
4126 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest4EE.crt",
4127 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest5EE.crt",
4128 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest6EE.crt",
4129 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest1EE.crt",
4130 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest3EE.crt",
4131 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest5EE.crt",
4132 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest6EE.crt",
4133 "third_party/nist-pkits/certs/InvalidkeyUsageCriticalcRLSignFalseTest4EE.crt",
4134 "third_party/nist-pkits/certs/InvalidkeyUsageCriticalkeyCertSignFalseTest1EE.crt",
4135 "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalcRLSignFalseTest5EE.crt",
4136 "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalkeyCertSignFalseTest2EE.crt",
4137 "third_party/nist-pkits/certs/InvalidonlyContainsAttributeCertsTest14EE.crt",
4138 "third_party/nist-pkits/certs/InvalidonlyContainsCACertsTest12EE.crt",
4139 "third_party/nist-pkits/certs/InvalidonlyContainsUserCertsTest11EE.crt",
4140 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest15EE.crt",
4141 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest16EE.crt",
4142 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest17EE.crt",
4143 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest20EE.crt",
4144 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest21EE.crt",
4145 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest10EE.crt",
4146 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest11EE.crt",
4147 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest12EE.crt",
4148 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest5EE.crt",
4149 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest6EE.crt",
4150 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest9EE.crt",
4151 "third_party/nist-pkits/certs/Invalidpre2000CRLnextUpdateTest12EE.crt",
4152 "third_party/nist-pkits/certs/Invalidpre2000UTCEEnotAfterDateTest7EE.crt",
4153 "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest3EE.crt",
4154 "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest5EE.crt",
4155 "third_party/nist-pkits/certs/LongSerialNumberCACert.crt",
4156 "third_party/nist-pkits/certs/Mapping1to2CACert.crt",
4157 "third_party/nist-pkits/certs/MappingFromanyPolicyCACert.crt",
4158 "third_party/nist-pkits/certs/MappingToanyPolicyCACert.crt",
4159 "third_party/nist-pkits/certs/MissingbasicConstraintsCACert.crt",
4160 "third_party/nist-pkits/certs/NameOrderingCACert.crt",
4161 "third_party/nist-pkits/certs/NegativeSerialNumberCACert.crt",
4162 "third_party/nist-pkits/certs/NoCRLCACert.crt",
4163 "third_party/nist-pkits/certs/NoPoliciesCACert.crt",
4164 "third_party/nist-pkits/certs/NoissuingDistributionPointCACert.crt",
4165 "third_party/nist-pkits/certs/OldCRLnextUpdateCACert.crt",
4166 "third_party/nist-pkits/certs/OverlappingPoliciesTest6EE.crt",
4167 "third_party/nist-pkits/certs/P12Mapping1to3CACert.crt",
4168 "third_party/nist-pkits/certs/P12Mapping1to3subCACert.crt",
4169 "third_party/nist-pkits/certs/P12Mapping1to3subsubCACert.crt",
4170 "third_party/nist-pkits/certs/P1Mapping1to234CACert.crt",
4171 "third_party/nist-pkits/certs/P1Mapping1to234subCACert.crt",
4172 "third_party/nist-pkits/certs/P1anyPolicyMapping1to2CACert.crt",
4173 "third_party/nist-pkits/certs/PanyPolicyMapping1to2CACert.crt",
4174 "third_party/nist-pkits/certs/PoliciesP1234CACert.crt",
4175 "third_party/nist-pkits/certs/PoliciesP1234subCAP123Cert.crt",
4176 "third_party/nist-pkits/certs/PoliciesP1234subsubCAP123P12Cert.crt",
4177 "third_party/nist-pkits/certs/PoliciesP123CACert.crt",
4178 "third_party/nist-pkits/certs/PoliciesP123subCAP12Cert.crt",
4179 "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P1Cert.crt",
4180 "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P2Cert.crt",
4181 "third_party/nist-pkits/certs/PoliciesP123subsubsubCAP12P2P1Cert.crt",
4182 "third_party/nist-pkits/certs/PoliciesP12CACert.crt",
4183 "third_party/nist-pkits/certs/PoliciesP12subCAP1Cert.crt",
4184 "third_party/nist-pkits/certs/PoliciesP12subsubCAP1P2Cert.crt",
4185 "third_party/nist-pkits/certs/PoliciesP2subCA2Cert.crt",
4186 "third_party/nist-pkits/certs/PoliciesP2subCACert.crt",
4187 "third_party/nist-pkits/certs/PoliciesP3CACert.crt",
4188 "third_party/nist-pkits/certs/RFC3280MandatoryAttributeTypesCACert.crt",
4189 "third_party/nist-pkits/certs/RFC3280OptionalAttributeTypesCACert.crt",
4190 "third_party/nist-pkits/certs/RevokedsubCACert.crt",
4191 "third_party/nist-pkits/certs/RolloverfromPrintableStringtoUTF8StringCACert.crt",
4192 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CRLSigningCert.crt",
4193 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CertificateSigningCACert.crt",
4194 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCRLSigningCert.crt",
4195 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCertificateSigningCACert.crt",
4196 "third_party/nist-pkits/certs/TrustAnchorRootCertificate.crt",
4197 "third_party/nist-pkits/certs/TwoCRLsCACert.crt",
4198 "third_party/nist-pkits/certs/UIDCACert.crt",
4199 "third_party/nist-pkits/certs/UTF8StringCaseInsensitiveMatchCACert.crt",
4200 "third_party/nist-pkits/certs/UTF8StringEncodedNamesCACert.crt",
4201 "third_party/nist-pkits/certs/UnknownCRLEntryExtensionCACert.crt",
4202 "third_party/nist-pkits/certs/UnknownCRLExtensionCACert.crt",
4203 "third_party/nist-pkits/certs/UserNoticeQualifierTest15EE.crt",
4204 "third_party/nist-pkits/certs/UserNoticeQualifierTest16EE.crt",
4205 "third_party/nist-pkits/certs/UserNoticeQualifierTest17EE.crt",
4206 "third_party/nist-pkits/certs/UserNoticeQualifierTest18EE.crt",
4207 "third_party/nist-pkits/certs/UserNoticeQualifierTest19EE.crt",
4208 "third_party/nist-pkits/certs/ValidBasicSelfIssuedCRLSigningKeyTest6EE.crt",
4209 "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest3EE.crt",
4210 "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest4EE.crt",
4211 "third_party/nist-pkits/certs/ValidBasicSelfIssuedOldWithNewTest1EE.crt",
4212 "third_party/nist-pkits/certs/ValidCertificatePathTest1EE.crt",
4213 "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest30EE.crt",
4214 "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest32EE.crt",
4215 "third_party/nist-pkits/certs/ValidDNandRFC822nameConstraintsTest27EE.crt",
4216 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest11EE.crt",
4217 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest14EE.crt",
4218 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest18EE.crt",
4219 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest19EE.crt",
4220 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest1EE.crt",
4221 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest4EE.crt",
4222 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest5EE.crt",
4223 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest6EE.crt",
4224 "third_party/nist-pkits/certs/ValidDSAParameterInheritanceTest5EE.crt",
4225 "third_party/nist-pkits/certs/ValidDSASignaturesTest4EE.crt",
4226 "third_party/nist-pkits/certs/ValidGeneralizedTimeCRLnextUpdateTest13EE.crt",
4227 "third_party/nist-pkits/certs/ValidGeneralizedTimenotAfterDateTest8EE.crt",
4228 "third_party/nist-pkits/certs/ValidGeneralizedTimenotBeforeDateTest4EE.crt",
4229 "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest22EE.crt",
4230 "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest24EE.crt",
4231 "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest25EE.crt",
4232 "third_party/nist-pkits/certs/ValidLongSerialNumberTest16EE.crt",
4233 "third_party/nist-pkits/certs/ValidLongSerialNumberTest17EE.crt",
4234 "third_party/nist-pkits/certs/ValidNameChainingCapitalizationTest5EE.crt",
4235 "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest3EE.crt",
4236 "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest4EE.crt",
4237 "third_party/nist-pkits/certs/ValidNameUIDsTest6EE.crt",
4238 "third_party/nist-pkits/certs/ValidNegativeSerialNumberTest14EE.crt",
4239 "third_party/nist-pkits/certs/ValidNoissuingDistributionPointTest10EE.crt",
4240 "third_party/nist-pkits/certs/ValidPolicyMappingTest11EE.crt",
4241 "third_party/nist-pkits/certs/ValidPolicyMappingTest12EE.crt",
4242 "third_party/nist-pkits/certs/ValidPolicyMappingTest13EE.crt",
4243 "third_party/nist-pkits/certs/ValidPolicyMappingTest14EE.crt",
4244 "third_party/nist-pkits/certs/ValidPolicyMappingTest1EE.crt",
4245 "third_party/nist-pkits/certs/ValidPolicyMappingTest3EE.crt",
4246 "third_party/nist-pkits/certs/ValidPolicyMappingTest5EE.crt",
4247 "third_party/nist-pkits/certs/ValidPolicyMappingTest6EE.crt",
4248 "third_party/nist-pkits/certs/ValidPolicyMappingTest9EE.crt",
4249 "third_party/nist-pkits/certs/ValidRFC3280MandatoryAttributeTypesTest7EE.crt",
4250 "third_party/nist-pkits/certs/ValidRFC3280OptionalAttributeTypesTest8EE.crt",
4251 "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest21EE.crt",
4252 "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest23EE.crt",
4253 "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest25EE.crt",
4254 "third_party/nist-pkits/certs/ValidRolloverfromPrintableStringtoUTF8StringTest10EE.crt",
4255 "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest7EE.crt",
4256 "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest9EE.crt",
4257 "third_party/nist-pkits/certs/ValidSelfIssuedinhibitPolicyMappingTest7EE.crt",
4258 "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest15EE.crt",
4259 "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest17EE.crt",
4260 "third_party/nist-pkits/certs/ValidSelfIssuedrequireExplicitPolicyTest6EE.crt",
4261 "third_party/nist-pkits/certs/ValidSeparateCertificateandCRLKeysTest19EE.crt",
4262 "third_party/nist-pkits/certs/ValidTwoCRLsTest7EE.crt",
4263 "third_party/nist-pkits/certs/ValidURInameConstraintsTest34EE.crt",
4264 "third_party/nist-pkits/certs/ValidURInameConstraintsTest36EE.crt",
4265 "third_party/nist-pkits/certs/ValidUTF8StringCaseInsensitiveMatchTest11EE.crt",
4266 "third_party/nist-pkits/certs/ValidUTF8StringEncodedNamesTest9EE.crt",
4267 "third_party/nist-pkits/certs/ValidUnknownNotCriticalCertificateExtensionTest1EE.crt",
4268 "third_party/nist-pkits/certs/ValidbasicConstraintsNotCriticalTest4EE.crt",
4269 "third_party/nist-pkits/certs/ValidcRLIssuerTest28EE.crt",
4270 "third_party/nist-pkits/certs/ValidcRLIssuerTest29EE.crt",
4271 "third_party/nist-pkits/certs/ValidcRLIssuerTest30EE.crt",
4272 "third_party/nist-pkits/certs/ValidcRLIssuerTest33EE.crt",
4273 "third_party/nist-pkits/certs/ValiddeltaCRLTest2EE.crt",
4274 "third_party/nist-pkits/certs/ValiddeltaCRLTest5EE.crt",
4275 "third_party/nist-pkits/certs/ValiddeltaCRLTest7EE.crt",
4276 "third_party/nist-pkits/certs/ValiddeltaCRLTest8EE.crt",
4277 "third_party/nist-pkits/certs/ValiddistributionPointTest1EE.crt",
4278 "third_party/nist-pkits/certs/ValiddistributionPointTest4EE.crt",
4279 "third_party/nist-pkits/certs/ValiddistributionPointTest5EE.crt",
4280 "third_party/nist-pkits/certs/ValiddistributionPointTest7EE.crt",
4281 "third_party/nist-pkits/certs/ValidinhibitAnyPolicyTest2EE.crt",
4282 "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest2EE.crt",
4283 "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest4EE.crt",
4284 "third_party/nist-pkits/certs/ValidkeyUsageNotCriticalTest3EE.crt",
4285 "third_party/nist-pkits/certs/ValidonlyContainsCACertsTest13EE.crt",
4286 "third_party/nist-pkits/certs/ValidonlySomeReasonsTest18EE.crt",
4287 "third_party/nist-pkits/certs/ValidonlySomeReasonsTest19EE.crt",
4288 "third_party/nist-pkits/certs/ValidpathLenConstraintTest13EE.crt",
4289 "third_party/nist-pkits/certs/ValidpathLenConstraintTest14EE.crt",
4290 "third_party/nist-pkits/certs/ValidpathLenConstraintTest7EE.crt",
4291 "third_party/nist-pkits/certs/ValidpathLenConstraintTest8EE.crt",
4292 "third_party/nist-pkits/certs/Validpre2000UTCnotBeforeDateTest3EE.crt",
4293 "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest1EE.crt",
4294 "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest2EE.crt",
4295 "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest4EE.crt",
4296 "third_party/nist-pkits/certs/WrongCRLCACert.crt",
4297 "third_party/nist-pkits/certs/anyPolicyCACert.crt",
4298 "third_party/nist-pkits/certs/basicConstraintsCriticalcAFalseCACert.crt",
4299 "third_party/nist-pkits/certs/basicConstraintsNotCriticalCACert.crt",
4300 "third_party/nist-pkits/certs/basicConstraintsNotCriticalcAFalseCACert.crt",
4301 "third_party/nist-pkits/certs/deltaCRLCA1Cert.crt",
4302 "third_party/nist-pkits/certs/deltaCRLCA2Cert.crt",
4303 "third_party/nist-pkits/certs/deltaCRLCA3Cert.crt",
4304 "third_party/nist-pkits/certs/deltaCRLIndicatorNoBaseCACert.crt",
4305 "third_party/nist-pkits/certs/distributionPoint1CACert.crt",
4306 "third_party/nist-pkits/certs/distributionPoint2CACert.crt",
4307 "third_party/nist-pkits/certs/indirectCRLCA1Cert.crt",
4308 "third_party/nist-pkits/certs/indirectCRLCA2Cert.crt",
4309 "third_party/nist-pkits/certs/indirectCRLCA3Cert.crt",
4310 "third_party/nist-pkits/certs/indirectCRLCA3cRLIssuerCert.crt",
4311 "third_party/nist-pkits/certs/indirectCRLCA4Cert.crt",
4312 "third_party/nist-pkits/certs/indirectCRLCA4cRLIssuerCert.crt",
4313 "third_party/nist-pkits/certs/indirectCRLCA5Cert.crt",
4314 "third_party/nist-pkits/certs/indirectCRLCA6Cert.crt",
4315 "third_party/nist-pkits/certs/inhibitAnyPolicy0CACert.crt",
4316 "third_party/nist-pkits/certs/inhibitAnyPolicy1CACert.crt",
4317 "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedCACert.crt",
4318 "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedsubCA2Cert.crt",
4319 "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA1Cert.crt",
4320 "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA2Cert.crt",
4321 "third_party/nist-pkits/certs/inhibitAnyPolicy1subCAIAP5Cert.crt",
4322 "third_party/nist-pkits/certs/inhibitAnyPolicy1subsubCA2Cert.crt",
4323 "third_party/nist-pkits/certs/inhibitAnyPolicy5CACert.crt",
4324 "third_party/nist-pkits/certs/inhibitAnyPolicy5subCACert.crt",
4325 "third_party/nist-pkits/certs/inhibitAnyPolicy5subsubCACert.crt",
4326 "third_party/nist-pkits/certs/inhibitAnyPolicyTest3EE.crt",
4327 "third_party/nist-pkits/certs/inhibitPolicyMapping0CACert.crt",
4328 "third_party/nist-pkits/certs/inhibitPolicyMapping0subCACert.crt",
4329 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12CACert.crt",
4330 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCACert.crt",
4331 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCAIPM5Cert.crt",
4332 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCACert.crt",
4333 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCAIPM5Cert.crt",
4334 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1CACert.crt",
4335 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedCACert.crt",
4336 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedsubCACert.crt",
4337 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subCACert.crt",
4338 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subsubCACert.crt",
4339 "third_party/nist-pkits/certs/inhibitPolicyMapping5CACert.crt",
4340 "third_party/nist-pkits/certs/inhibitPolicyMapping5subCACert.crt",
4341 "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubCACert.crt",
4342 "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubsubCACert.crt",
4343 "third_party/nist-pkits/certs/keyUsageCriticalcRLSignFalseCACert.crt",
4344 "third_party/nist-pkits/certs/keyUsageCriticalkeyCertSignFalseCACert.crt",
4345 "third_party/nist-pkits/certs/keyUsageNotCriticalCACert.crt",
4346 "third_party/nist-pkits/certs/keyUsageNotCriticalcRLSignFalseCACert.crt",
4347 "third_party/nist-pkits/certs/keyUsageNotCriticalkeyCertSignFalseCACert.crt",
4348 "third_party/nist-pkits/certs/nameConstraintsDN1CACert.crt",
4349 "third_party/nist-pkits/certs/nameConstraintsDN1SelfIssuedCACert.crt",
4350 "third_party/nist-pkits/certs/nameConstraintsDN1subCA1Cert.crt",
4351 "third_party/nist-pkits/certs/nameConstraintsDN1subCA2Cert.crt",
4352 "third_party/nist-pkits/certs/nameConstraintsDN1subCA3Cert.crt",
4353 "third_party/nist-pkits/certs/nameConstraintsDN2CACert.crt",
4354 "third_party/nist-pkits/certs/nameConstraintsDN3CACert.crt",
4355 "third_party/nist-pkits/certs/nameConstraintsDN3subCA1Cert.crt",
4356 "third_party/nist-pkits/certs/nameConstraintsDN3subCA2Cert.crt",
4357 "third_party/nist-pkits/certs/nameConstraintsDN4CACert.crt",
4358 "third_party/nist-pkits/certs/nameConstraintsDN5CACert.crt",
4359 "third_party/nist-pkits/certs/nameConstraintsDNS1CACert.crt",
4360 "third_party/nist-pkits/certs/nameConstraintsDNS2CACert.crt",
4361 "third_party/nist-pkits/certs/nameConstraintsRFC822CA1Cert.crt",
4362 "third_party/nist-pkits/certs/nameConstraintsRFC822CA2Cert.crt",
4363 "third_party/nist-pkits/certs/nameConstraintsRFC822CA3Cert.crt",
4364 "third_party/nist-pkits/certs/nameConstraintsURI1CACert.crt",
4365 "third_party/nist-pkits/certs/nameConstraintsURI2CACert.crt",
4366 "third_party/nist-pkits/certs/onlyContainsAttributeCertsCACert.crt",
4367 "third_party/nist-pkits/certs/onlyContainsCACertsCACert.crt",
4368 "third_party/nist-pkits/certs/onlyContainsUserCertsCACert.crt",
4369 "third_party/nist-pkits/certs/onlySomeReasonsCA1Cert.crt",
4370 "third_party/nist-pkits/certs/onlySomeReasonsCA2Cert.crt",
4371 "third_party/nist-pkits/certs/onlySomeReasonsCA3Cert.crt",
4372 "third_party/nist-pkits/certs/onlySomeReasonsCA4Cert.crt",
4373 "third_party/nist-pkits/certs/pathLenConstraint0CACert.crt",
4374 "third_party/nist-pkits/certs/pathLenConstraint0SelfIssuedCACert.crt",
4375 "third_party/nist-pkits/certs/pathLenConstraint0subCA2Cert.crt",
4376 "third_party/nist-pkits/certs/pathLenConstraint0subCACert.crt",
4377 "third_party/nist-pkits/certs/pathLenConstraint1CACert.crt",
4378 "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedCACert.crt",
4379 "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedsubCACert.crt",
4380 "third_party/nist-pkits/certs/pathLenConstraint1subCACert.crt",
4381 "third_party/nist-pkits/certs/pathLenConstraint6CACert.crt",
4382 "third_party/nist-pkits/certs/pathLenConstraint6subCA0Cert.crt",
4383 "third_party/nist-pkits/certs/pathLenConstraint6subCA1Cert.crt",
4384 "third_party/nist-pkits/certs/pathLenConstraint6subCA4Cert.crt",
4385 "third_party/nist-pkits/certs/pathLenConstraint6subsubCA00Cert.crt",
4386 "third_party/nist-pkits/certs/pathLenConstraint6subsubCA11Cert.crt",
4387 "third_party/nist-pkits/certs/pathLenConstraint6subsubCA41Cert.crt",
4388 "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA11XCert.crt",
4389 "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA41XCert.crt",
4390 "third_party/nist-pkits/certs/pre2000CRLnextUpdateCACert.crt",
4391 "third_party/nist-pkits/certs/requireExplicitPolicy0CACert.crt",
4392 "third_party/nist-pkits/certs/requireExplicitPolicy0subCACert.crt",
4393 "third_party/nist-pkits/certs/requireExplicitPolicy0subsubCACert.crt",
4394 "third_party/nist-pkits/certs/requireExplicitPolicy0subsubsubCACert.crt",
4395 "third_party/nist-pkits/certs/requireExplicitPolicy10CACert.crt",
4396 "third_party/nist-pkits/certs/requireExplicitPolicy10subCACert.crt",
4397 "third_party/nist-pkits/certs/requireExplicitPolicy10subsubCACert.crt",
4398 "third_party/nist-pkits/certs/requireExplicitPolicy10subsubsubCACert.crt",
4399 "third_party/nist-pkits/certs/requireExplicitPolicy2CACert.crt",
4400 "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedCACert.crt",
4401 "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedsubCACert.crt",
4402 "third_party/nist-pkits/certs/requireExplicitPolicy2subCACert.crt",
4403 "third_party/nist-pkits/certs/requireExplicitPolicy4CACert.crt",
4404 "third_party/nist-pkits/certs/requireExplicitPolicy4subCACert.crt",
4405 "third_party/nist-pkits/certs/requireExplicitPolicy4subsubCACert.crt",
4406 "third_party/nist-pkits/certs/requireExplicitPolicy4subsubsubCACert.crt",
4407 "third_party/nist-pkits/certs/requireExplicitPolicy5CACert.crt",
4408 "third_party/nist-pkits/certs/requireExplicitPolicy5subCACert.crt",
4409 "third_party/nist-pkits/certs/requireExplicitPolicy5subsubCACert.crt",
4410 "third_party/nist-pkits/certs/requireExplicitPolicy5subsubsubCACert.crt",
4411 "third_party/nist-pkits/certs/requireExplicitPolicy7CACert.crt",
4412 "third_party/nist-pkits/certs/requireExplicitPolicy7subCARE2Cert.crt",
4413 "third_party/nist-pkits/certs/requireExplicitPolicy7subsubCARE2RE4Cert.crt",
4414 "third_party/nist-pkits/certs/requireExplicitPolicy7subsubsubCARE2RE4Cert.crt",
4415 "third_party/nist-pkits/crls/BadCRLIssuerNameCACRL.crl",
4416 "third_party/nist-pkits/crls/BadCRLSignatureCACRL.crl",
4417 "third_party/nist-pkits/crls/BadSignedCACRL.crl",
4418 "third_party/nist-pkits/crls/BadnotAfterDateCACRL.crl",
4419 "third_party/nist-pkits/crls/BadnotBeforeDateCACRL.crl",
4420 "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCACRL.crl",
4421 "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCRLCertCRL.crl",
4422 "third_party/nist-pkits/crls/BasicSelfIssuedNewKeyCACRL.crl",
4423 "third_party/nist-pkits/crls/BasicSelfIssuedOldKeyCACRL.crl",
4424 "third_party/nist-pkits/crls/BasicSelfIssuedOldKeySelfIssuedCertCRL.crl",
4425 "third_party/nist-pkits/crls/DSACACRL.crl",
4426 "third_party/nist-pkits/crls/DSAParametersInheritedCACRL.crl",
4427 "third_party/nist-pkits/crls/GeneralizedTimeCRLnextUpdateCACRL.crl",
4428 "third_party/nist-pkits/crls/GoodCACRL.crl",
4429 "third_party/nist-pkits/crls/GoodsubCACRL.crl",
4430 "third_party/nist-pkits/crls/GoodsubCAPanyPolicyMapping1to2CACRL.crl",
4431 "third_party/nist-pkits/crls/LongSerialNumberCACRL.crl",
4432 "third_party/nist-pkits/crls/Mapping1to2CACRL.crl",
4433 "third_party/nist-pkits/crls/MappingFromanyPolicyCACRL.crl",
4434 "third_party/nist-pkits/crls/MappingToanyPolicyCACRL.crl",
4435 "third_party/nist-pkits/crls/MissingbasicConstraintsCACRL.crl",
4436 "third_party/nist-pkits/crls/NameOrderCACRL.crl",
4437 "third_party/nist-pkits/crls/NegativeSerialNumberCACRL.crl",
4438 "third_party/nist-pkits/crls/NoPoliciesCACRL.crl",
4439 "third_party/nist-pkits/crls/NoissuingDistributionPointCACRL.crl",
4440 "third_party/nist-pkits/crls/OldCRLnextUpdateCACRL.crl",
4441 "third_party/nist-pkits/crls/P12Mapping1to3CACRL.crl",
4442 "third_party/nist-pkits/crls/P12Mapping1to3subCACRL.crl",
4443 "third_party/nist-pkits/crls/P12Mapping1to3subsubCACRL.crl",
4444 "third_party/nist-pkits/crls/P1Mapping1to234CACRL.crl",
4445 "third_party/nist-pkits/crls/P1Mapping1to234subCACRL.crl",
4446 "third_party/nist-pkits/crls/P1anyPolicyMapping1to2CACRL.crl",
4447 "third_party/nist-pkits/crls/PanyPolicyMapping1to2CACRL.crl",
4448 "third_party/nist-pkits/crls/PoliciesP1234CACRL.crl",
4449 "third_party/nist-pkits/crls/PoliciesP1234subCAP123CRL.crl",
4450 "third_party/nist-pkits/crls/PoliciesP1234subsubCAP123P12CRL.crl",
4451 "third_party/nist-pkits/crls/PoliciesP123CACRL.crl",
4452 "third_party/nist-pkits/crls/PoliciesP123subCAP12CRL.crl",
4453 "third_party/nist-pkits/crls/PoliciesP123subsubCAP12P1CRL.crl",
4454 "third_party/nist-pkits/crls/PoliciesP123subsubCAP2P2CRL.crl",
4455 "third_party/nist-pkits/crls/PoliciesP123subsubsubCAP12P2P1CRL.crl",
4456 "third_party/nist-pkits/crls/PoliciesP12CACRL.crl",
4457 "third_party/nist-pkits/crls/PoliciesP12subCAP1CRL.crl",
4458 "third_party/nist-pkits/crls/PoliciesP12subsubCAP1P2CRL.crl",
4459 "third_party/nist-pkits/crls/PoliciesP2subCA2CRL.crl",
4460 "third_party/nist-pkits/crls/PoliciesP2subCACRL.crl",
4461 "third_party/nist-pkits/crls/PoliciesP3CACRL.crl",
4462 "third_party/nist-pkits/crls/RFC3280MandatoryAttributeTypesCACRL.crl",
4463 "third_party/nist-pkits/crls/RFC3280OptionalAttributeTypesCACRL.crl",
4464 "third_party/nist-pkits/crls/RevokedsubCACRL.crl",
4465 "third_party/nist-pkits/crls/RolloverfromPrintableStringtoUTF8StringCACRL.crl",
4466 "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCA2CRL.crl",
4467 "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCRL.crl",
4468 "third_party/nist-pkits/crls/TrustAnchorRootCRL.crl",
4469 "third_party/nist-pkits/crls/TwoCRLsCABadCRL.crl",
4470 "third_party/nist-pkits/crls/TwoCRLsCAGoodCRL.crl",
4471 "third_party/nist-pkits/crls/UIDCACRL.crl",
4472 "third_party/nist-pkits/crls/UTF8StringCaseInsensitiveMatchCACRL.crl",
4473 "third_party/nist-pkits/crls/UTF8StringEncodedNamesCACRL.crl",
4474 "third_party/nist-pkits/crls/UnknownCRLEntryExtensionCACRL.crl",
4475 "third_party/nist-pkits/crls/UnknownCRLExtensionCACRL.crl",
4476 "third_party/nist-pkits/crls/WrongCRLCACRL.crl",
4477 "third_party/nist-pkits/crls/anyPolicyCACRL.crl",
4478 "third_party/nist-pkits/crls/basicConstraintsCriticalcAFalseCACRL.crl",
4479 "third_party/nist-pkits/crls/basicConstraintsNotCriticalCACRL.crl",
4480 "third_party/nist-pkits/crls/basicConstraintsNotCriticalcAFalseCACRL.crl",
4481 "third_party/nist-pkits/crls/deltaCRLCA1CRL.crl",
4482 "third_party/nist-pkits/crls/deltaCRLCA1deltaCRL.crl",
4483 "third_party/nist-pkits/crls/deltaCRLCA2CRL.crl",
4484 "third_party/nist-pkits/crls/deltaCRLCA2deltaCRL.crl",
4485 "third_party/nist-pkits/crls/deltaCRLCA3CRL.crl",
4486 "third_party/nist-pkits/crls/deltaCRLCA3deltaCRL.crl",
4487 "third_party/nist-pkits/crls/deltaCRLIndicatorNoBaseCACRL.crl",
4488 "third_party/nist-pkits/crls/distributionPoint1CACRL.crl",
4489 "third_party/nist-pkits/crls/distributionPoint2CACRL.crl",
4490 "third_party/nist-pkits/crls/indirectCRLCA1CRL.crl",
4491 "third_party/nist-pkits/crls/indirectCRLCA3CRL.crl",
4492 "third_party/nist-pkits/crls/indirectCRLCA3cRLIssuerCRL.crl",
4493 "third_party/nist-pkits/crls/indirectCRLCA4cRLIssuerCRL.crl",
4494 "third_party/nist-pkits/crls/indirectCRLCA5CRL.crl",
4495 "third_party/nist-pkits/crls/inhibitAnyPolicy0CACRL.crl",
4496 "third_party/nist-pkits/crls/inhibitAnyPolicy1CACRL.crl",
4497 "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA1CRL.crl",
4498 "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA2CRL.crl",
4499 "third_party/nist-pkits/crls/inhibitAnyPolicy1subCAIAP5CRL.crl",
4500 "third_party/nist-pkits/crls/inhibitAnyPolicy1subsubCA2CRL.crl",
4501 "third_party/nist-pkits/crls/inhibitAnyPolicy5CACRL.crl",
4502 "third_party/nist-pkits/crls/inhibitAnyPolicy5subCACRL.crl",
4503 "third_party/nist-pkits/crls/inhibitAnyPolicy5subsubCACRL.crl",
4504 "third_party/nist-pkits/crls/inhibitPolicyMapping0CACRL.crl",
4505 "third_party/nist-pkits/crls/inhibitPolicyMapping0subCACRL.crl",
4506 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12CACRL.crl",
4507 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCACRL.crl",
4508 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCAIPM5CRL.crl",
4509 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCACRL.crl",
4510 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCAIPM5CRL.crl",
4511 "third_party/nist-pkits/crls/inhibitPolicyMapping1P1CACRL.crl",
4512 "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subCACRL.crl",
4513 "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subsubCACRL.crl",
4514 "third_party/nist-pkits/crls/inhibitPolicyMapping5CACRL.crl",
4515 "third_party/nist-pkits/crls/inhibitPolicyMapping5subCACRL.crl",
4516 "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubCACRL.crl",
4517 "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubsubCACRL.crl",
4518 "third_party/nist-pkits/crls/keyUsageCriticalcRLSignFalseCACRL.crl",
4519 "third_party/nist-pkits/crls/keyUsageCriticalkeyCertSignFalseCACRL.crl",
4520 "third_party/nist-pkits/crls/keyUsageNotCriticalCACRL.crl",
4521 "third_party/nist-pkits/crls/keyUsageNotCriticalcRLSignFalseCACRL.crl",
4522 "third_party/nist-pkits/crls/keyUsageNotCriticalkeyCertSignFalseCACRL.crl",
4523 "third_party/nist-pkits/crls/nameConstraintsDN1CACRL.crl",
4524 "third_party/nist-pkits/crls/nameConstraintsDN1subCA1CRL.crl",
4525 "third_party/nist-pkits/crls/nameConstraintsDN1subCA2CRL.crl",
4526 "third_party/nist-pkits/crls/nameConstraintsDN1subCA3CRL.crl",
4527 "third_party/nist-pkits/crls/nameConstraintsDN2CACRL.crl",
4528 "third_party/nist-pkits/crls/nameConstraintsDN3CACRL.crl",
4529 "third_party/nist-pkits/crls/nameConstraintsDN3subCA1CRL.crl",
4530 "third_party/nist-pkits/crls/nameConstraintsDN3subCA2CRL.crl",
4531 "third_party/nist-pkits/crls/nameConstraintsDN4CACRL.crl",
4532 "third_party/nist-pkits/crls/nameConstraintsDN5CACRL.crl",
4533 "third_party/nist-pkits/crls/nameConstraintsDNS1CACRL.crl",
4534 "third_party/nist-pkits/crls/nameConstraintsDNS2CACRL.crl",
4535 "third_party/nist-pkits/crls/nameConstraintsRFC822CA1CRL.crl",
4536 "third_party/nist-pkits/crls/nameConstraintsRFC822CA2CRL.crl",
4537 "third_party/nist-pkits/crls/nameConstraintsRFC822CA3CRL.crl",
4538 "third_party/nist-pkits/crls/nameConstraintsURI1CACRL.crl",
4539 "third_party/nist-pkits/crls/nameConstraintsURI2CACRL.crl",
4540 "third_party/nist-pkits/crls/onlyContainsAttributeCertsCACRL.crl",
4541 "third_party/nist-pkits/crls/onlyContainsCACertsCACRL.crl",
4542 "third_party/nist-pkits/crls/onlyContainsUserCertsCACRL.crl",
4543 "third_party/nist-pkits/crls/onlySomeReasonsCA1compromiseCRL.crl",
4544 "third_party/nist-pkits/crls/onlySomeReasonsCA1otherreasonsCRL.crl",
4545 "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL1.crl",
4546 "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL2.crl",
4547 "third_party/nist-pkits/crls/onlySomeReasonsCA3compromiseCRL.crl",
4548 "third_party/nist-pkits/crls/onlySomeReasonsCA3otherreasonsCRL.crl",
4549 "third_party/nist-pkits/crls/onlySomeReasonsCA4compromiseCRL.crl",
4550 "third_party/nist-pkits/crls/onlySomeReasonsCA4otherreasonsCRL.crl",
4551 "third_party/nist-pkits/crls/pathLenConstraint0CACRL.crl",
4552 "third_party/nist-pkits/crls/pathLenConstraint0subCA2CRL.crl",
4553 "third_party/nist-pkits/crls/pathLenConstraint0subCACRL.crl",
4554 "third_party/nist-pkits/crls/pathLenConstraint1CACRL.crl",
4555 "third_party/nist-pkits/crls/pathLenConstraint1subCACRL.crl",
4556 "third_party/nist-pkits/crls/pathLenConstraint6CACRL.crl",
4557 "third_party/nist-pkits/crls/pathLenConstraint6subCA0CRL.crl",
4558 "third_party/nist-pkits/crls/pathLenConstraint6subCA1CRL.crl",
4559 "third_party/nist-pkits/crls/pathLenConstraint6subCA4CRL.crl",
4560 "third_party/nist-pkits/crls/pathLenConstraint6subsubCA00CRL.crl",
4561 "third_party/nist-pkits/crls/pathLenConstraint6subsubCA11CRL.crl",
4562 "third_party/nist-pkits/crls/pathLenConstraint6subsubCA41CRL.crl",
4563 "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA11XCRL.crl",
4564 "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA41XCRL.crl",
4565 "third_party/nist-pkits/crls/pre2000CRLnextUpdateCACRL.crl",
4566 "third_party/nist-pkits/crls/requireExplicitPolicy0CACRL.crl",
4567 "third_party/nist-pkits/crls/requireExplicitPolicy0subCACRL.crl",
4568 "third_party/nist-pkits/crls/requireExplicitPolicy0subsubCACRL.crl",
4569 "third_party/nist-pkits/crls/requireExplicitPolicy0subsubsubCACRL.crl",
4570 "third_party/nist-pkits/crls/requireExplicitPolicy10CACRL.crl",
4571 "third_party/nist-pkits/crls/requireExplicitPolicy10subCACRL.crl",
4572 "third_party/nist-pkits/crls/requireExplicitPolicy10subsubCACRL.crl",
4573 "third_party/nist-pkits/crls/requireExplicitPolicy10subsubsubCACRL.crl",
4574 "third_party/nist-pkits/crls/requireExplicitPolicy2CACRL.crl",
4575 "third_party/nist-pkits/crls/requireExplicitPolicy2subCACRL.crl",
4576 "third_party/nist-pkits/crls/requireExplicitPolicy4CACRL.crl",
4577 "third_party/nist-pkits/crls/requireExplicitPolicy4subCACRL.crl",
4578 "third_party/nist-pkits/crls/requireExplicitPolicy4subsubCACRL.crl",
4579 "third_party/nist-pkits/crls/requireExplicitPolicy4subsubsubCACRL.crl",
4580 "third_party/nist-pkits/crls/requireExplicitPolicy5CACRL.crl",
4581 "third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl",
4582 "third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl",
4583 "third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl",
4584 "third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl",
4585 "third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl",
4586 "third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl",
4587 "third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.crl",
4588 ]
sdefresneb0a31642016-03-18 11:04:454589 outputs = [
4590 "{{bundle_resources_dir}}/" +
4591 "{{source_root_relative_dir}}/{{source_file_part}}",
4592 ]
4593}
4594
dpranke64df2832015-07-31 22:33:364595test("net_unittests") {
ckrasic73f7240b2017-01-24 00:06:454596 sources = [
4597 "android/cellular_signal_strength_unittest.cc",
4598 "android/dummy_spnego_authenticator.cc",
4599 "android/dummy_spnego_authenticator.h",
4600 "android/http_auth_negotiate_android_unittest.cc",
4601 "android/network_change_notifier_android_unittest.cc",
4602 "android/network_library_unittest.cc",
4603 "android/traffic_stats_unittest.cc",
4604 "base/address_family_unittest.cc",
4605 "base/address_list_unittest.cc",
4606 "base/address_tracker_linux_unittest.cc",
4607 "base/arena_unittest.cc",
4608 "base/backoff_entry_serializer_unittest.cc",
4609 "base/backoff_entry_unittest.cc",
4610 "base/chunked_upload_data_stream_unittest.cc",
4611 "base/data_url_unittest.cc",
4612 "base/directory_lister_unittest.cc",
4613 "base/directory_listing_unittest.cc",
4614 "base/elements_upload_data_stream_unittest.cc",
4615 "base/escape_unittest.cc",
4616 "base/expiring_cache_unittest.cc",
4617 "base/file_stream_unittest.cc",
4618 "base/filename_util_unittest.cc",
Bence Békyd5c16edf2017-08-04 17:32:304619 "base/hex_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:454620 "base/host_mapping_rules_unittest.cc",
4621 "base/host_port_pair_unittest.cc",
4622 "base/int128_unittest.cc",
fayangbaec8ff52017-01-28 03:26:124623 "base/interval_set_test.cc",
4624 "base/interval_test.cc",
ckrasic73f7240b2017-01-24 00:06:454625 "base/ip_address_unittest.cc",
4626 "base/ip_endpoint_unittest.cc",
4627 "base/ip_pattern_unittest.cc",
4628 "base/layered_network_delegate_unittest.cc",
4629 "base/lookup_string_in_fixed_set_unittest.cc",
4630 "base/mime_sniffer_unittest.cc",
4631 "base/mime_util_unittest.cc",
mgershaf9a9232017-04-13 20:19:034632 "base/mock_network_change_notifier.cc",
4633 "base/mock_network_change_notifier.h",
ckrasic73f7240b2017-01-24 00:06:454634 "base/network_activity_monitor_unittest.cc",
4635 "base/network_change_notifier_unittest.cc",
4636 "base/network_change_notifier_win_unittest.cc",
Sergey Ulanov5c33235ae2017-07-06 23:55:074637 "base/network_interfaces_getifaddrs_unittest.cc",
Sergey Ulanov5bb07d32017-07-12 04:14:544638 "base/network_interfaces_linux_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454639 "base/network_interfaces_unittest.cc",
Sergey Ulanov5bb07d32017-07-12 04:14:544640 "base/network_interfaces_win_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454641 "base/network_throttle_manager_impl_unittest.cc",
4642 "base/parse_number_unittest.cc",
4643 "base/percentile_estimator_unittest.cc",
4644 "base/port_util_unittest.cc",
4645 "base/prioritized_dispatcher_unittest.cc",
4646 "base/priority_queue_unittest.cc",
4647 "base/registry_controlled_domains/registry_controlled_domain_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454648 "base/static_cookie_policy_unittest.cc",
4649 "base/test_completion_callback_unittest.cc",
4650 "base/test_proxy_delegate.cc",
4651 "base/test_proxy_delegate.h",
4652 "base/upload_bytes_element_reader_unittest.cc",
4653 "base/upload_file_element_reader_unittest.cc",
4654 "base/url_util_unittest.cc",
4655 "cert/caching_cert_verifier_unittest.cc",
4656 "cert/cert_verifier_unittest.cc",
estarkd91e0b22017-01-31 01:10:284657 "cert/cert_verify_proc_android_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454658 "cert/cert_verify_proc_ios_unittest.cc",
eromance65aff2017-02-04 00:05:324659 "cert/cert_verify_proc_mac_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454660 "cert/cert_verify_proc_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454661 "cert/crl_set_unittest.cc",
4662 "cert/ct_known_logs_unittest.cc",
4663 "cert/ct_log_response_parser_unittest.cc",
4664 "cert/ct_log_verifier_unittest.cc",
4665 "cert/ct_objects_extractor_unittest.cc",
4666 "cert/ct_policy_enforcer_unittest.cc",
4667 "cert/ct_serialization_unittest.cc",
4668 "cert/ev_root_ca_metadata_unittest.cc",
4669 "cert/internal/cert_issuer_source_aia_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454670 "cert/internal/cert_issuer_source_static_unittest.cc",
4671 "cert/internal/cert_issuer_source_sync_unittest.h",
4672 "cert/internal/certificate_policies_unittest.cc",
4673 "cert/internal/extended_key_usage_unittest.cc",
Matt Mueller9e3ad3032017-09-14 19:29:314674 "cert/internal/general_names_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454675 "cert/internal/name_constraints_unittest.cc",
eromanc95383ac2017-05-26 19:37:304676 "cert/internal/nist_pkits_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454677 "cert/internal/nist_pkits_unittest.h",
Eric Romana2f6f55d2017-09-07 23:34:574678 "cert/internal/ocsp_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454679 "cert/internal/parse_certificate_unittest.cc",
4680 "cert/internal/parse_name_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454681 "cert/internal/parsed_certificate_unittest.cc",
4682 "cert/internal/path_builder_pkits_unittest.cc",
4683 "cert/internal/path_builder_unittest.cc",
4684 "cert/internal/path_builder_verify_certificate_chain_unittest.cc",
4685 "cert/internal/signature_algorithm_unittest.cc",
Eric Roman5431d702017-07-26 01:58:184686 "cert/internal/simple_path_builder_delegate_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454687 "cert/internal/test_helpers.cc",
4688 "cert/internal/test_helpers.h",
4689 "cert/internal/trust_store_collection_unittest.cc",
mattmea4ed8232017-02-28 23:13:234690 "cert/internal/trust_store_mac_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454691 "cert/internal/trust_store_nss_unittest.cc",
4692 "cert/internal/verify_certificate_chain_pkits_unittest.cc",
4693 "cert/internal/verify_certificate_chain_typed_unittest.h",
4694 "cert/internal/verify_certificate_chain_unittest.cc",
4695 "cert/internal/verify_name_match_unittest.cc",
4696 "cert/internal/verify_signed_data_unittest.cc",
4697 "cert/jwk_serializer_unittest.cc",
4698 "cert/merkle_audit_proof_unittest.cc",
4699 "cert/merkle_tree_leaf_unittest.cc",
4700 "cert/multi_log_ct_verifier_unittest.cc",
4701 "cert/multi_threaded_cert_verifier_unittest.cc",
4702 "cert/nss_cert_database_chromeos_unittest.cc",
4703 "cert/nss_cert_database_unittest.cc",
4704 "cert/nss_profile_filter_chromeos_unittest.cc",
4705 "cert/pem_tokenizer_unittest.cc",
4706 "cert/signed_certificate_timestamp_unittest.cc",
4707 "cert/sth_distributor_unittest.cc",
Emily Starkd29cdae2017-09-16 01:59:344708 "cert/symantec_certs_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454709 "cert/test_root_certs_unittest.cc",
4710 "cert/x509_cert_types_unittest.cc",
4711 "cert/x509_certificate_unittest.cc",
mattm1a07e632017-05-16 05:55:504712 "cert/x509_util_ios_and_mac_unittest.cc",
Matt Mueller10684c92017-08-09 07:24:094713 "cert/x509_util_nss_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454714 "cert/x509_util_unittest.cc",
4715 "cert_net/cert_net_fetcher_impl_unittest.cc",
4716 "cert_net/nss_ocsp_unittest.cc",
4717 "cookies/canonical_cookie_unittest.cc",
4718 "cookies/cookie_constants_unittest.cc",
4719 "cookies/cookie_monster_unittest.cc",
4720 "cookies/cookie_store_unittest.cc",
4721 "cookies/cookie_util_unittest.cc",
4722 "cookies/parsed_cookie_unittest.cc",
4723 "der/encode_values_unittest.cc",
4724 "der/input_unittest.cc",
4725 "der/parse_values_unittest.cc",
4726 "der/parser_unittest.cc",
Maks Orlovich036fd1f2017-08-07 17:51:114727 "disk_cache/backend_cleanup_tracker_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454728 "disk_cache/backend_unittest.cc",
4729 "disk_cache/blockfile/addr_unittest.cc",
4730 "disk_cache/blockfile/bitmap_unittest.cc",
4731 "disk_cache/blockfile/block_files_unittest.cc",
4732 "disk_cache/blockfile/mapped_file_unittest.cc",
4733 "disk_cache/blockfile/stats_unittest.cc",
4734 "disk_cache/blockfile/storage_block_unittest.cc",
4735 "disk_cache/cache_util_unittest.cc",
4736 "disk_cache/entry_unittest.cc",
4737 "disk_cache/simple/simple_experiment_unittest.cc",
4738 "disk_cache/simple/simple_index_file_unittest.cc",
4739 "disk_cache/simple/simple_index_unittest.cc",
4740 "disk_cache/simple/simple_test_util.cc",
4741 "disk_cache/simple/simple_test_util.h",
4742 "disk_cache/simple/simple_util_unittest.cc",
4743 "disk_cache/simple/simple_version_upgrade_unittest.cc",
4744 "dns/address_sorter_posix_unittest.cc",
4745 "dns/address_sorter_unittest.cc",
4746 "dns/dns_config_service_posix_unittest.cc",
4747 "dns/dns_config_service_unittest.cc",
4748 "dns/dns_config_service_win_unittest.cc",
4749 "dns/dns_hosts_unittest.cc",
4750 "dns/dns_query_unittest.cc",
4751 "dns/dns_response_unittest.cc",
4752 "dns/dns_session_unittest.cc",
juliatuttle8ff9d1532017-01-31 17:06:314753 "dns/dns_socket_pool_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454754 "dns/dns_transaction_unittest.cc",
4755 "dns/dns_util_unittest.cc",
4756 "dns/host_cache_unittest.cc",
4757 "dns/host_resolver_impl_unittest.cc",
4758 "dns/host_resolver_mojo_unittest.cc",
4759 "dns/mapped_host_resolver_unittest.cc",
4760 "dns/mdns_cache_unittest.cc",
4761 "dns/mdns_client_unittest.cc",
4762 "dns/mojo_host_resolver_impl_unittest.cc",
4763 "dns/record_parsed_unittest.cc",
4764 "dns/record_rdata_unittest.cc",
4765 "dns/serial_worker_unittest.cc",
4766 "extras/sqlite/sqlite_channel_id_store_unittest.cc",
4767 "extras/sqlite/sqlite_persistent_cookie_store_unittest.cc",
4768 "filter/brotli_source_stream_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454769 "filter/filter_source_stream_unittest.cc",
4770 "filter/gzip_source_stream_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454771 "ftp/ftp_auth_cache_unittest.cc",
4772 "ftp/ftp_ctrl_response_buffer_unittest.cc",
4773 "ftp/ftp_directory_listing_parser_ls_unittest.cc",
4774 "ftp/ftp_directory_listing_parser_unittest.cc",
4775 "ftp/ftp_directory_listing_parser_unittest.h",
4776 "ftp/ftp_directory_listing_parser_vms_unittest.cc",
4777 "ftp/ftp_directory_listing_parser_windows_unittest.cc",
4778 "ftp/ftp_network_transaction_unittest.cc",
4779 "ftp/ftp_util_unittest.cc",
4780 "http/bidirectional_stream_unittest.cc",
wangyix64ccc57c2017-06-01 23:14:164781 "http/broken_alternative_services_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454782 "http/http_auth_cache_unittest.cc",
4783 "http/http_auth_challenge_tokenizer_unittest.cc",
4784 "http/http_auth_controller_unittest.cc",
4785 "http/http_auth_filter_unittest.cc",
4786 "http/http_auth_gssapi_posix_unittest.cc",
4787 "http/http_auth_handler_basic_unittest.cc",
4788 "http/http_auth_handler_digest_unittest.cc",
4789 "http/http_auth_handler_factory_unittest.cc",
4790 "http/http_auth_handler_mock.cc",
4791 "http/http_auth_handler_mock.h",
4792 "http/http_auth_handler_negotiate_unittest.cc",
zentarob89acda42017-07-14 01:28:574793 "http/http_auth_handler_ntlm_portable_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454794 "http/http_auth_handler_unittest.cc",
4795 "http/http_auth_multi_round_parse_unittest.cc",
4796 "http/http_auth_preferences_unittest.cc",
4797 "http/http_auth_sspi_win_unittest.cc",
4798 "http/http_auth_unittest.cc",
4799 "http/http_basic_state_unittest.cc",
4800 "http/http_byte_range_unittest.cc",
4801 "http/http_cache_lookup_manager_unittest.cc",
4802 "http/http_cache_unittest.cc",
shivanishac6582e12017-07-14 22:18:194803 "http/http_cache_writers_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454804 "http/http_chunked_decoder_unittest.cc",
4805 "http/http_content_disposition_unittest.cc",
4806 "http/http_log_util_unittest.cc",
4807 "http/http_network_layer_unittest.cc",
4808 "http/http_network_transaction_ssl_unittest.cc",
4809 "http/http_network_transaction_unittest.cc",
4810 "http/http_proxy_client_socket_pool_unittest.cc",
4811 "http/http_request_headers_unittest.cc",
4812 "http/http_response_body_drainer_unittest.cc",
4813 "http/http_response_headers_unittest.cc",
4814 "http/http_response_info_unittest.cc",
4815 "http/http_security_headers_unittest.cc",
4816 "http/http_server_properties_impl_unittest.cc",
4817 "http/http_server_properties_manager_unittest.cc",
4818 "http/http_status_code_unittest.cc",
4819 "http/http_stream_factory_impl_job_controller_unittest.cc",
4820 "http/http_stream_factory_impl_request_unittest.cc",
4821 "http/http_stream_factory_impl_unittest.cc",
4822 "http/http_stream_parser_unittest.cc",
4823 "http/http_util_unittest.cc",
4824 "http/http_vary_data_unittest.cc",
4825 "http/mock_allow_http_auth_preferences.cc",
4826 "http/mock_allow_http_auth_preferences.h",
4827 "http/mock_gssapi_library_posix.cc",
4828 "http/mock_gssapi_library_posix.h",
4829 "http/mock_http_cache.cc",
4830 "http/mock_http_cache.h",
4831 "http/mock_sspi_library_win.cc",
4832 "http/mock_sspi_library_win.h",
4833 "http/transport_security_persister_unittest.cc",
4834 "http/transport_security_state_unittest.cc",
4835 "http/url_security_manager_unittest.cc",
4836 "http2/decoder/decode_buffer_test.cc",
4837 "http2/decoder/decode_http2_structures_test.cc",
4838 "http2/decoder/frame_decoder_state_test_util.cc",
4839 "http2/decoder/frame_decoder_state_test_util.h",
ckrasic73f7240b2017-01-24 00:06:454840 "http2/decoder/http2_frame_decoder_listener_test_util.cc",
4841 "http2/decoder/http2_frame_decoder_listener_test_util.h",
4842 "http2/decoder/http2_frame_decoder_test.cc",
4843 "http2/decoder/http2_structure_decoder_test.cc",
bnc0f57ba22017-01-27 02:43:364844 "http2/decoder/http2_structure_decoder_test_util.cc",
ckrasic73f7240b2017-01-24 00:06:454845 "http2/decoder/http2_structure_decoder_test_util.h",
4846 "http2/decoder/payload_decoders/altsvc_payload_decoder_test.cc",
4847 "http2/decoder/payload_decoders/continuation_payload_decoder_test.cc",
4848 "http2/decoder/payload_decoders/data_payload_decoder_test.cc",
4849 "http2/decoder/payload_decoders/goaway_payload_decoder_test.cc",
4850 "http2/decoder/payload_decoders/headers_payload_decoder_test.cc",
4851 "http2/decoder/payload_decoders/payload_decoder_base_test_util.cc",
4852 "http2/decoder/payload_decoders/payload_decoder_base_test_util.h",
4853 "http2/decoder/payload_decoders/ping_payload_decoder_test.cc",
4854 "http2/decoder/payload_decoders/priority_payload_decoder_test.cc",
4855 "http2/decoder/payload_decoders/push_promise_payload_decoder_test.cc",
4856 "http2/decoder/payload_decoders/rst_stream_payload_decoder_test.cc",
4857 "http2/decoder/payload_decoders/settings_payload_decoder_test.cc",
4858 "http2/decoder/payload_decoders/unknown_payload_decoder_test.cc",
4859 "http2/decoder/payload_decoders/window_update_payload_decoder_test.cc",
4860 "http2/hpack/decoder/hpack_block_collector.cc",
4861 "http2/hpack/decoder/hpack_block_collector.h",
4862 "http2/hpack/decoder/hpack_block_decoder_test.cc",
4863 "http2/hpack/decoder/hpack_decoder_state_test.cc",
4864 "http2/hpack/decoder/hpack_decoder_string_buffer_test.cc",
4865 "http2/hpack/decoder/hpack_decoder_tables_test.cc",
Bence Békybad9ef92017-07-28 13:36:274866 "http2/hpack/decoder/hpack_decoder_test.cc",
ckrasic73f7240b2017-01-24 00:06:454867 "http2/hpack/decoder/hpack_entry_collector.cc",
4868 "http2/hpack/decoder/hpack_entry_collector.h",
4869 "http2/hpack/decoder/hpack_entry_decoder_test.cc",
4870 "http2/hpack/decoder/hpack_entry_type_decoder_test.cc",
4871 "http2/hpack/decoder/hpack_string_collector.cc",
4872 "http2/hpack/decoder/hpack_string_collector.h",
4873 "http2/hpack/decoder/hpack_string_decoder_test.cc",
4874 "http2/hpack/decoder/hpack_varint_decoder_test.cc",
4875 "http2/hpack/decoder/hpack_whole_entry_buffer_test.cc",
ckrasic73f7240b2017-01-24 00:06:454876 "http2/hpack/hpack_string_test.cc",
4877 "http2/hpack/http2_hpack_constants_test.cc",
Bence Békyd1406522017-08-07 18:05:084878 "http2/hpack/huffman/hpack_huffman_decoder_test.cc",
ckrasic73f7240b2017-01-24 00:06:454879 "http2/hpack/tools/hpack_block_builder.cc",
4880 "http2/hpack/tools/hpack_block_builder.h",
4881 "http2/hpack/tools/hpack_block_builder_test.cc",
4882 "http2/hpack/tools/hpack_example.cc",
4883 "http2/hpack/tools/hpack_example.h",
4884 "http2/http2_constants_test.cc",
4885 "http2/http2_constants_test_util.cc",
4886 "http2/http2_constants_test_util.h",
4887 "http2/http2_structures_test.cc",
4888 "http2/http2_structures_test_util.cc",
4889 "http2/http2_structures_test_util.h",
Bence Békye53090e2017-07-12 02:58:404890 "http2/platform/api/http2_string_utils_test.cc",
bnc85ec3b102017-03-16 22:48:284891 "http2/test_tools/frame_parts.cc",
4892 "http2/test_tools/frame_parts.h",
4893 "http2/test_tools/frame_parts_collector.cc",
4894 "http2/test_tools/frame_parts_collector.h",
4895 "http2/test_tools/frame_parts_collector_listener.cc",
4896 "http2/test_tools/frame_parts_collector_listener.h",
ckrasic73f7240b2017-01-24 00:06:454897 "http2/tools/failure.cc",
4898 "http2/tools/failure.h",
4899 "http2/tools/http2_frame_builder.cc",
4900 "http2/tools/http2_frame_builder.h",
4901 "http2/tools/http2_random.cc",
4902 "http2/tools/http2_random.h",
4903 "http2/tools/random_decoder_test.cc",
4904 "http2/tools/random_decoder_test.h",
4905 "http2/tools/random_util.cc",
4906 "http2/tools/random_util.h",
4907 "log/file_net_log_observer_unittest.cc",
4908 "log/net_log_capture_mode_unittest.cc",
4909 "log/net_log_unittest.cc",
4910 "log/net_log_util_unittest.cc",
4911 "log/trace_net_log_observer_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454912 "nqe/effective_connection_type_unittest.cc",
tbansalf38471f2017-03-04 01:07:044913 "nqe/event_creator_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454914 "nqe/network_qualities_prefs_manager_unittest.cc",
tbansal35bdb0b2017-05-04 16:23:334915 "nqe/network_quality_estimator_params_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454916 "nqe/network_quality_estimator_unittest.cc",
tbansal82edab42017-06-19 05:55:254917 "nqe/network_quality_estimator_util_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454918 "nqe/network_quality_store_unittest.cc",
4919 "nqe/observation_buffer_unittest.cc",
tbansal180587c2017-02-16 15:13:234920 "nqe/socket_watcher_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454921 "nqe/throughput_analyzer_unittest.cc",
zentarob89acda42017-07-14 01:28:574922 "ntlm/des_unittest.cc",
Zentaro Kavanagh4e3aae82017-08-07 22:35:304923 "ntlm/md4_unittest.cc",
zentarob74795682017-07-14 00:58:224924 "ntlm/ntlm_buffer_reader_unittest.cc",
4925 "ntlm/ntlm_buffer_writer_unittest.cc",
Zentaro Kavanaghdd556612017-08-03 20:27:044926 "ntlm/ntlm_client_unittest.cc",
zentarob89acda42017-07-14 01:28:574927 "ntlm/ntlm_test_data.h",
4928 "ntlm/ntlm_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454929 "proxy/dhcp_proxy_script_adapter_fetcher_win_unittest.cc",
4930 "proxy/dhcp_proxy_script_fetcher_factory_unittest.cc",
4931 "proxy/dhcp_proxy_script_fetcher_win_unittest.cc",
4932 "proxy/mojo_proxy_resolver_factory_impl_unittest.cc",
4933 "proxy/mojo_proxy_resolver_impl_unittest.cc",
4934 "proxy/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc",
4935 "proxy/multi_threaded_proxy_resolver_unittest.cc",
4936 "proxy/network_delegate_error_observer_unittest.cc",
4937 "proxy/proxy_bypass_rules_unittest.cc",
4938 "proxy/proxy_config_service_android_unittest.cc",
4939 "proxy/proxy_config_service_linux_unittest.cc",
4940 "proxy/proxy_config_service_win_unittest.cc",
4941 "proxy/proxy_config_unittest.cc",
4942 "proxy/proxy_info_unittest.cc",
4943 "proxy/proxy_list_unittest.cc",
4944 "proxy/proxy_resolver_factory_mojo_unittest.cc",
4945 "proxy/proxy_resolver_v8_tracing_unittest.cc",
4946 "proxy/proxy_resolver_v8_tracing_wrapper_unittest.cc",
4947 "proxy/proxy_resolver_v8_unittest.cc",
4948 "proxy/proxy_script_decider_unittest.cc",
4949 "proxy/proxy_script_fetcher_impl_unittest.cc",
4950 "proxy/proxy_server_unittest.cc",
4951 "proxy/proxy_service_mojo_unittest.cc",
4952 "proxy/proxy_service_unittest.cc",
mmenke93be9ca2017-05-23 16:29:134953 "proxy/test_mojo_proxy_resolver_factory.cc",
4954 "proxy/test_mojo_proxy_resolver_factory.h",
ckrasic73f7240b2017-01-24 00:06:454955 "quic/chromium/bidirectional_stream_quic_impl_unittest.cc",
4956 "quic/chromium/crypto/proof_test_chromium.cc",
4957 "quic/chromium/crypto/proof_verifier_chromium_test.cc",
ckrasic73f7240b2017-01-24 00:06:454958 "quic/chromium/mock_crypto_client_stream_factory.cc",
4959 "quic/chromium/mock_crypto_client_stream_factory.h",
ckrasic73f7240b2017-01-24 00:06:454960 "quic/chromium/mock_quic_data.cc",
4961 "quic/chromium/mock_quic_data.h",
4962 "quic/chromium/network_connection_unittest.cc",
4963 "quic/chromium/properties_based_quic_server_info_test.cc",
4964 "quic/chromium/quic_address_mismatch_test.cc",
4965 "quic/chromium/quic_chromium_alarm_factory_test.cc",
4966 "quic/chromium/quic_chromium_client_session_peer.cc",
4967 "quic/chromium/quic_chromium_client_session_peer.h",
4968 "quic/chromium/quic_chromium_client_session_test.cc",
4969 "quic/chromium/quic_chromium_client_stream_test.cc",
4970 "quic/chromium/quic_chromium_connection_helper_test.cc",
4971 "quic/chromium/quic_clock_skew_detector_test.cc",
4972 "quic/chromium/quic_end_to_end_unittest.cc",
4973 "quic/chromium/quic_http_stream_test.cc",
4974 "quic/chromium/quic_http_utils_test.cc",
4975 "quic/chromium/quic_network_transaction_unittest.cc",
Yixin Wang0d2c6b7e12017-08-16 21:12:554976 "quic/chromium/quic_proxy_client_socket_unittest.cc",
rch99387f92017-04-03 21:12:044977 "quic/chromium/quic_stream_factory_peer.cc",
4978 "quic/chromium/quic_stream_factory_peer.h",
ckrasic73f7240b2017-01-24 00:06:454979 "quic/chromium/quic_stream_factory_test.cc",
4980 "quic/chromium/quic_test_packet_maker.cc",
4981 "quic/chromium/quic_test_packet_maker.h",
4982 "quic/chromium/quic_utils_chromium_test.cc",
rch1e369362017-04-03 19:44:514983 "quic/chromium/test_task_runner.cc",
4984 "quic/chromium/test_task_runner.h",
ckrasic73f7240b2017-01-24 00:06:454985 "quic/core/congestion_control/bandwidth_sampler_test.cc",
4986 "quic/core/congestion_control/bbr_sender_test.cc",
4987 "quic/core/congestion_control/cubic_bytes_test.cc",
4988 "quic/core/congestion_control/cubic_test.cc",
4989 "quic/core/congestion_control/general_loss_algorithm_test.cc",
4990 "quic/core/congestion_control/hybrid_slow_start_test.cc",
4991 "quic/core/congestion_control/pacing_sender_test.cc",
4992 "quic/core/congestion_control/prr_sender_test.cc",
4993 "quic/core/congestion_control/rtt_stats_test.cc",
4994 "quic/core/congestion_control/send_algorithm_test.cc",
4995 "quic/core/congestion_control/tcp_cubic_sender_bytes_test.cc",
4996 "quic/core/congestion_control/tcp_cubic_sender_packets_test.cc",
4997 "quic/core/congestion_control/windowed_filter_test.cc",
4998 "quic/core/crypto/aes_128_gcm_12_decrypter_test.cc",
4999 "quic/core/crypto/aes_128_gcm_12_encrypter_test.cc",
5000 "quic/core/crypto/cert_compressor_test.cc",
5001 "quic/core/crypto/chacha20_poly1305_decrypter_test.cc",
5002 "quic/core/crypto/chacha20_poly1305_encrypter_test.cc",
5003 "quic/core/crypto/channel_id_test.cc",
5004 "quic/core/crypto/common_cert_set_test.cc",
5005 "quic/core/crypto/crypto_framer_test.cc",
5006 "quic/core/crypto/crypto_handshake_message_test.cc",
5007 "quic/core/crypto/crypto_secret_boxer_test.cc",
5008 "quic/core/crypto/crypto_server_test.cc",
5009 "quic/core/crypto/crypto_utils_test.cc",
5010 "quic/core/crypto/curve25519_key_exchange_test.cc",
ckrasic73f7240b2017-01-24 00:06:455011 "quic/core/crypto/null_decrypter_test.cc",
5012 "quic/core/crypto/null_encrypter_test.cc",
5013 "quic/core/crypto/p256_key_exchange_test.cc",
5014 "quic/core/crypto/quic_compressed_certs_cache_test.cc",
5015 "quic/core/crypto/quic_crypto_client_config_test.cc",
5016 "quic/core/crypto/quic_crypto_server_config_test.cc",
5017 "quic/core/crypto/quic_random_test.cc",
Ryan Hamilton88151482017-09-06 14:55:455018 "quic/core/crypto/quic_tls_adapter_test.cc",
ckrasic73f7240b2017-01-24 00:06:455019 "quic/core/frames/quic_frames_test.cc",
vasilvv8b7782e2017-05-12 01:52:035020 "quic/core/packet_number_indexed_queue_test.cc",
ckrasic73f7240b2017-01-24 00:06:455021 "quic/core/quic_alarm_test.cc",
5022 "quic/core/quic_arena_scoped_ptr_test.cc",
5023 "quic/core/quic_bandwidth_test.cc",
5024 "quic/core/quic_buffered_packet_store_test.cc",
5025 "quic/core/quic_client_promised_info_test.cc",
5026 "quic/core/quic_client_push_promise_index_test.cc",
5027 "quic/core/quic_config_test.cc",
5028 "quic/core/quic_connection_test.cc",
5029 "quic/core/quic_crypto_client_stream_test.cc",
5030 "quic/core/quic_crypto_server_stream_test.cc",
5031 "quic/core/quic_crypto_stream_test.cc",
5032 "quic/core/quic_data_writer_test.cc",
5033 "quic/core/quic_error_codes_test.cc",
5034 "quic/core/quic_flow_controller_test.cc",
5035 "quic/core/quic_framer_test.cc",
5036 "quic/core/quic_header_list_test.cc",
5037 "quic/core/quic_headers_stream_test.cc",
xunjielicc6b1d02017-06-05 16:51:405038 "quic/test_tools/quic_test_utils_test.cc",
5039 "quic/test_tools/simulator/quic_endpoint_test.cc",
5040 "quic/test_tools/simulator/simulator_test.cc",
ckrasic73f7240b2017-01-24 00:06:455041
5042 # "quic/core/quic_multipath_received_packet_manager_test.cc",
5043 # "quic/core/quic_multipath_transmissions_map_test.cc",
5044 "quic/core/quic_one_block_arena_test.cc",
5045 "quic/core/quic_packet_creator_test.cc",
5046 "quic/core/quic_packet_generator_test.cc",
5047 "quic/core/quic_received_packet_manager_test.cc",
5048 "quic/core/quic_sent_packet_manager_test.cc",
5049 "quic/core/quic_server_id_test.cc",
5050 "quic/core/quic_server_session_base_test.cc",
5051 "quic/core/quic_session_test.cc",
5052 "quic/core/quic_simple_buffer_allocator_test.cc",
5053 "quic/core/quic_socket_address_coder_test.cc",
5054 "quic/core/quic_spdy_stream_test.cc",
fayangdf3cb2b2017-07-05 15:03:385055 "quic/core/quic_stream_send_buffer_test.cc",
ckrasic73f7240b2017-01-24 00:06:455056 "quic/core/quic_stream_sequencer_buffer_test.cc",
5057 "quic/core/quic_stream_sequencer_test.cc",
5058 "quic/core/quic_stream_test.cc",
5059 "quic/core/quic_sustained_bandwidth_recorder_test.cc",
5060 "quic/core/quic_tag_test.cc",
5061 "quic/core/quic_time_test.cc",
5062 "quic/core/quic_unacked_packet_map_test.cc",
5063 "quic/core/quic_utils_test.cc",
5064 "quic/core/quic_version_manager_test.cc",
5065 "quic/core/quic_versions_test.cc",
5066 "quic/core/quic_write_blocked_list_test.cc",
5067 "quic/core/spdy_utils_test.cc",
fayange992f9f2017-03-03 13:38:325068 "quic/platform/api/quic_endian_test.cc",
mpw3f859532017-02-16 20:00:315069 "quic/platform/api/quic_hostname_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:455070 "quic/platform/api/quic_lru_cache_test.cc",
Fan Yang62cae30f2017-09-01 20:50:515071 "quic/platform/api/quic_mem_slice_span_test.cc",
5072 "quic/platform/api/quic_mem_slice_test.cc",
ckrasic73f7240b2017-01-24 00:06:455073 "quic/platform/api/quic_reference_counted_test.cc",
5074 "quic/platform/api/quic_str_cat_test.cc",
5075 "quic/platform/api/quic_text_utils_test.cc",
fayang32caee402017-02-13 21:00:085076 "quic/platform/api/quic_url_test.cc",
ckrasic73f7240b2017-01-24 00:06:455077 "quic/platform/impl/quic_chromium_clock_test.cc",
jri3c1d5ca2017-06-02 04:52:235078 "quic/quartc/quartc_session_test.cc",
5079 "quic/quartc/quartc_stream_test.cc",
ckrasic73f7240b2017-01-24 00:06:455080 "quic/test_tools/crypto_test_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:455081 "socket/client_socket_pool_base_unittest.cc",
5082 "socket/mock_client_socket_pool_manager.cc",
5083 "socket/mock_client_socket_pool_manager.h",
5084 "socket/sequenced_socket_data_unittest.cc",
5085 "socket/socket_bio_adapter_unittest.cc",
5086 "socket/socks5_client_socket_unittest.cc",
5087 "socket/socks_client_socket_pool_unittest.cc",
5088 "socket/socks_client_socket_unittest.cc",
5089 "socket/ssl_client_socket_pool_unittest.cc",
5090 "socket/ssl_client_socket_unittest.cc",
5091 "socket/ssl_server_socket_unittest.cc",
5092 "socket/tcp_client_socket_unittest.cc",
5093 "socket/tcp_server_socket_unittest.cc",
5094 "socket/tcp_socket_unittest.cc",
5095 "socket/transport_client_socket_pool_test_util.cc",
5096 "socket/transport_client_socket_pool_test_util.h",
5097 "socket/transport_client_socket_pool_unittest.cc",
5098 "socket/transport_client_socket_unittest.cc",
5099 "socket/udp_socket_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455100 "socket/websocket_endpoint_lock_manager_unittest.cc",
5101 "socket/websocket_transport_client_socket_pool_unittest.cc",
bnc8f8f7d302017-04-24 18:08:065102 "spdy/chromium/bidirectional_stream_spdy_impl_unittest.cc",
5103 "spdy/chromium/buffered_spdy_framer_unittest.cc",
5104 "spdy/chromium/header_coalescer_test.cc",
5105 "spdy/chromium/http2_priority_dependencies_unittest.cc",
5106 "spdy/chromium/spdy_buffer_unittest.cc",
5107 "spdy/chromium/spdy_http_stream_unittest.cc",
5108 "spdy/chromium/spdy_http_utils_unittest.cc",
5109 "spdy/chromium/spdy_log_util_unittest.cc",
5110 "spdy/chromium/spdy_network_transaction_unittest.cc",
5111 "spdy/chromium/spdy_proxy_client_socket_unittest.cc",
5112 "spdy/chromium/spdy_read_queue_unittest.cc",
5113 "spdy/chromium/spdy_session_pool_unittest.cc",
5114 "spdy/chromium/spdy_session_test_util.cc",
5115 "spdy/chromium/spdy_session_test_util.h",
5116 "spdy/chromium/spdy_session_unittest.cc",
5117 "spdy/chromium/spdy_stream_test_util.cc",
5118 "spdy/chromium/spdy_stream_test_util.h",
5119 "spdy/chromium/spdy_stream_unittest.cc",
5120 "spdy/chromium/spdy_write_queue_unittest.cc",
5121 "spdy/core/array_output_buffer.cc",
5122 "spdy/core/array_output_buffer.h",
5123 "spdy/core/array_output_buffer_test.cc",
5124 "spdy/core/fuzzing/hpack_fuzz_util_test.cc",
Dianna Hu33dcd6c2017-07-24 15:01:465125 "spdy/core/hpack/hpack_decoder_adapter_test.cc",
bnc8f8f7d302017-04-24 18:08:065126 "spdy/core/hpack/hpack_encoder_test.cc",
5127 "spdy/core/hpack/hpack_entry_test.cc",
5128 "spdy/core/hpack/hpack_header_table_test.cc",
bnc8f8f7d302017-04-24 18:08:065129 "spdy/core/hpack/hpack_huffman_table_test.cc",
bnc8f8f7d302017-04-24 18:08:065130 "spdy/core/hpack/hpack_output_stream_test.cc",
5131 "spdy/core/hpack/hpack_round_trip_test.cc",
5132 "spdy/core/hpack/hpack_static_table_test.cc",
bnc8f8f7d302017-04-24 18:08:065133 "spdy/core/mock_spdy_framer_visitor.cc",
5134 "spdy/core/mock_spdy_framer_visitor.h",
5135 "spdy/core/priority_write_scheduler_test.cc",
5136 "spdy/core/spdy_alt_svc_wire_format_test.cc",
5137 "spdy/core/spdy_deframer_visitor.cc",
5138 "spdy/core/spdy_deframer_visitor.h",
5139 "spdy/core/spdy_deframer_visitor_test.cc",
5140 "spdy/core/spdy_frame_builder_test.cc",
5141 "spdy/core/spdy_frame_reader_test.cc",
5142 "spdy/core/spdy_framer_test.cc",
5143 "spdy/core/spdy_header_block_test.cc",
bnc8f8f7d302017-04-24 18:08:065144 "spdy/core/spdy_no_op_visitor.cc",
5145 "spdy/core/spdy_no_op_visitor.h",
5146 "spdy/core/spdy_pinnable_buffer_piece_test.cc",
5147 "spdy/core/spdy_prefixed_buffer_reader_test.cc",
5148 "spdy/core/spdy_protocol_test.cc",
5149 "spdy/core/spdy_protocol_test_utils.cc",
5150 "spdy/core/spdy_protocol_test_utils.h",
5151 "spdy/core/spdy_test_utils.cc",
5152 "spdy/core/spdy_test_utils.h",
bnced7be41d2017-03-28 17:30:245153 "spdy/platform/api/spdy_string_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:455154 "ssl/channel_id_service_unittest.cc",
mattm436ccfe2017-06-19 20:24:085155 "ssl/client_cert_identity_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455156 "ssl/client_cert_store_mac_unittest.cc",
5157 "ssl/client_cert_store_nss_unittest.cc",
5158 "ssl/client_cert_store_unittest-inl.h",
5159 "ssl/client_cert_store_win_unittest.cc",
5160 "ssl/default_channel_id_store_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455161 "ssl/ssl_cipher_suite_names_unittest.cc",
5162 "ssl/ssl_client_auth_cache_unittest.cc",
5163 "ssl/ssl_client_session_cache_unittest.cc",
5164 "ssl/ssl_config_service_unittest.cc",
5165 "ssl/ssl_config_unittest.cc",
5166 "ssl/ssl_connection_status_flags_unittest.cc",
5167 "ssl/ssl_platform_key_android_unittest.cc",
5168 "ssl/ssl_platform_key_mac_unittest.cc",
5169 "ssl/ssl_platform_key_nss_unittest.cc",
5170 "ssl/ssl_platform_key_util_unittest.cc",
davidbend6d1e4d2017-05-10 16:49:015171 "ssl/ssl_platform_key_win_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455172 "test/embedded_test_server/embedded_test_server_unittest.cc",
5173 "test/embedded_test_server/http_request_unittest.cc",
5174 "test/embedded_test_server/http_response_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455175 "test/run_all_unittests.cc",
5176 "third_party/nist-pkits/pkits_testcases-inl.h",
5177 "tools/content_decoder_tool/content_decoder_tool.cc",
5178 "tools/content_decoder_tool/content_decoder_tool.h",
5179 "tools/content_decoder_tool/content_decoder_tool_unittest.cc",
5180 "tools/quic/quic_simple_client_test.cc",
ckrasic73f7240b2017-01-24 00:06:455181 "tools/tld_cleanup/tld_cleanup_util_unittest.cc",
5182 "url_request/report_sender_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455183 "url_request/url_fetcher_impl_unittest.cc",
5184 "url_request/url_fetcher_response_writer_unittest.cc",
mmenkee2ad9922017-06-08 20:27:365185 "url_request/url_request_context_builder_mojo_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455186 "url_request/url_request_context_builder_unittest.cc",
5187 "url_request/url_request_context_unittest.cc",
5188 "url_request/url_request_data_job_unittest.cc",
5189 "url_request/url_request_file_dir_job_unittest.cc",
5190 "url_request/url_request_file_job_unittest.cc",
5191 "url_request/url_request_filter_unittest.cc",
5192 "url_request/url_request_ftp_job_unittest.cc",
5193 "url_request/url_request_http_job_unittest.cc",
5194 "url_request/url_request_job_factory_impl_unittest.cc",
5195 "url_request/url_request_job_unittest.cc",
5196 "url_request/url_request_quic_unittest.cc",
5197 "url_request/url_request_simple_job_unittest.cc",
5198 "url_request/url_request_throttler_simulation_unittest.cc",
5199 "url_request/url_request_throttler_test_support.cc",
5200 "url_request/url_request_throttler_test_support.h",
5201 "url_request/url_request_throttler_unittest.cc",
5202 "url_request/url_request_unittest.cc",
5203 "url_request/view_cache_helper_unittest.cc",
5204 ]
mattm1a07e632017-05-16 05:55:505205 net_unfiltered_sources = []
dpranke64df2832015-07-31 22:33:365206
5207 configs += [
5208 "//build/config:precompiled_headers",
5209
5210 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
5211 "//build/config/compiler:no_size_t_to_int_warning",
5212 ]
5213 defines = []
5214
5215 deps = [
dpranke64df2832015-07-31 22:33:365216 ":net",
xunjielicc6b1d02017-06-05 16:51:405217 ":quic_test_tools",
dpranke64df2832015-07-31 22:33:365218 ":simple_quic_tools",
5219 ":test_support",
5220 "//base",
dpranke64df2832015-07-31 22:33:365221 "//base/third_party/dynamic_annotations",
5222 "//crypto",
5223 "//crypto:platform",
5224 "//crypto:test_support",
dpranke64df2832015-07-31 22:33:365225 "//net/base/registry_controlled_domains",
eranm9657f672017-05-05 12:25:195226 "//net/data/ssl/certificate_transparency:ct_log_list",
martijnd369e6702017-03-21 18:36:455227 "//net/http:transport_security_state_unittest_data",
dpranke64df2832015-07-31 22:33:365228 "//testing/gmock",
5229 "//testing/gtest",
thomasanderson77bec4d2017-03-20 07:09:255230 "//third_party/protobuf:protobuf_lite",
dpranke64df2832015-07-31 22:33:365231 "//third_party/zlib",
5232 "//url",
kapishnikovabe280e2016-04-14 19:07:165233 "//url:url_features",
dpranke64df2832015-07-31 22:33:365234 ]
mmenkefd9d15c2017-06-29 13:45:545235
5236 if (enable_reporting) {
5237 sources += [
5238 "reporting/reporting_browsing_data_remover_unittest.cc",
5239 "reporting/reporting_cache_unittest.cc",
5240 "reporting/reporting_delivery_agent_unittest.cc",
5241 "reporting/reporting_endpoint_manager_unittest.cc",
5242 "reporting/reporting_garbage_collector_unittest.cc",
5243 "reporting/reporting_header_parser_unittest.cc",
5244 "reporting/reporting_network_change_observer_unittest.cc",
5245 "reporting/reporting_persister_unittest.cc",
5246 "reporting/reporting_service_unittest.cc",
5247 "reporting/reporting_test_util.cc",
5248 "reporting/reporting_test_util.h",
5249 "reporting/reporting_uploader_unittest.cc",
5250 ]
5251 }
5252
ckrasic73f7240b2017-01-24 00:06:455253 if (!is_proto_quic) {
5254 deps += [
5255 ":extras",
5256 "//base:i18n",
5257 "//sql",
5258 ]
5259 } else {
5260 sources -= [
5261 "extras/sqlite/sqlite_channel_id_store_unittest.cc",
5262 "extras/sqlite/sqlite_persistent_cookie_store_unittest.cc",
5263 ]
5264 }
dpranke64df2832015-07-31 22:33:365265
jbudorick944eb922016-06-20 15:38:305266 data = []
svaldez2135be52016-04-20 16:34:535267 data_deps = [
5268 "third_party/nist-pkits/",
5269 ]
dpranke64df2832015-07-31 22:33:365270
Scott Grahambe24b04f2017-09-21 23:27:525271 if (is_linux || is_mac || is_win || is_fuchsia) {
dpranke64df2832015-07-31 22:33:365272 deps += [
5273 "//third_party/pyftpdlib/",
5274 "//third_party/pywebsocket/",
5275 "//third_party/tlslite/",
5276 ]
mattm6586b432016-02-12 04:52:395277 data_deps += [
dpranke64df2832015-07-31 22:33:365278 "//third_party/pyftpdlib/",
5279 "//third_party/pywebsocket/",
5280 "//third_party/tlslite/",
5281 ]
5282 data += [
5283 "tools/testserver/",
5284 "//third_party/pyftpdlib/",
5285 "//third_party/pywebsocket/",
5286 "//third_party/tlslite/",
5287 "$root_out_dir/pyproto/google/",
dprankef497c7962015-07-31 19:46:235288 ]
5289 }
5290
dpranke64df2832015-07-31 22:33:365291 if (is_desktop_linux) {
5292 deps += [ ":epoll_quic_tools" ]
5293 }
5294 if (is_linux) {
ckrasic73f7240b2017-01-24 00:06:455295 sources += [
5296 "tools/quic/chlo_extractor_test.cc",
5297 "tools/quic/end_to_end_test.cc",
5298 "tools/quic/platform/impl/quic_epoll_clock_test.cc",
5299 "tools/quic/platform/impl/quic_socket_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:455300 "tools/quic/quic_client_test.cc",
5301 "tools/quic/quic_dispatcher_test.cc",
5302 "tools/quic/quic_epoll_alarm_factory_test.cc",
5303 "tools/quic/quic_epoll_connection_helper_test.cc",
5304 "tools/quic/quic_http_response_cache_test.cc",
5305 "tools/quic/quic_server_test.cc",
5306 "tools/quic/quic_simple_server_session_helper_test.cc",
5307 "tools/quic/quic_simple_server_session_test.cc",
5308 "tools/quic/quic_simple_server_stream_test.cc",
5309 "tools/quic/quic_simple_server_test.cc",
Ryan Hamiltonc4402302017-08-10 01:55:465310 "tools/quic/quic_spdy_client_session_test.cc",
ckrasic73f7240b2017-01-24 00:06:455311 "tools/quic/quic_spdy_client_stream_test.cc",
5312 "tools/quic/quic_spdy_server_stream_base_test.cc",
5313 "tools/quic/quic_time_wait_list_manager_test.cc",
5314 "tools/quic/stateless_rejector_test.cc",
ckrasic73f7240b2017-01-24 00:06:455315 ]
dpranke64df2832015-07-31 22:33:365316 deps += [
5317 ":epoll_quic_tools",
5318 ":epoll_server",
brettwbc8b2a22015-07-28 18:24:425319 ]
dpranke64df2832015-07-31 22:33:365320 }
[email protected]8a3f8242014-06-05 18:05:125321
dpranke64df2832015-07-31 22:33:365322 if (is_mac || is_ios) {
ckrasic73f7240b2017-01-24 00:06:455323 sources += [ "base/mac/url_conversions_unittest.mm" ]
dpranke64df2832015-07-31 22:33:365324 }
5325
mattmaf868e72016-09-23 23:25:205326 if (is_mac) {
5327 libs = [ "Security.framework" ]
5328 }
5329
dpranke64df2832015-07-31 22:33:365330 if (is_chromeos) {
5331 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ]
5332 }
5333
ckrasic73f7240b2017-01-24 00:06:455334 if (!is_proto_quic && v8_use_external_startup_data) {
dpranke64df2832015-07-31 22:33:365335 deps += [ "//gin" ]
5336 }
5337
zentarob74795682017-07-14 00:58:225338 if (is_win) {
5339 sources -= [
zentarob89acda42017-07-14 01:28:575340 "http/http_auth_handler_ntlm_portable_unittest.cc",
5341 "ntlm/des_unittest.cc",
Zentaro Kavanagh4e3aae82017-08-07 22:35:305342 "ntlm/md4_unittest.cc",
zentarob74795682017-07-14 00:58:225343 "ntlm/ntlm_buffer_reader_unittest.cc",
5344 "ntlm/ntlm_buffer_writer_unittest.cc",
Zentaro Kavanaghdd556612017-08-03 20:27:045345 "ntlm/ntlm_client_unittest.cc",
zentarob89acda42017-07-14 01:28:575346 "ntlm/ntlm_test_data.h",
5347 "ntlm/ntlm_unittest.cc",
zentarob74795682017-07-14 00:58:225348 ]
5349 }
5350
Sergey Ulanov2a0b0192017-08-31 23:09:405351 if (use_remote_test_server) {
5352 sources +=
5353 [ "test/spawned_test_server/remote_test_server_proxy_unittests.cc" ]
5354 }
5355
Sergey Ulanovec1d3de2017-09-19 19:27:475356 if (enable_python_utils) {
5357 sources += [ "test/python_utils_unittest.cc" ]
5358 }
5359
Sergey Ulanov7c0bcaf2017-08-28 19:03:265360 if (is_fuchsia) {
5361 use_test_server = true
5362 }
5363
dpranke64df2832015-07-31 22:33:365364 if (!use_nss_certs) {
5365 sources -= [
mattm9c63d442016-09-03 00:45:515366 "cert/internal/trust_store_nss_unittest.cc",
dpranke64df2832015-07-31 22:33:365367 "cert/nss_cert_database_unittest.cc",
Matt Mueller10684c92017-08-09 07:24:095368 "cert/x509_util_nss_unittest.cc",
dpranke64df2832015-07-31 22:33:365369 "ssl/client_cert_store_nss_unittest.cc",
davidben983d610b2016-12-14 19:35:405370 "ssl/ssl_platform_key_nss_unittest.cc",
[email protected]8a3f8242014-06-05 18:05:125371 ]
dpranke64df2832015-07-31 22:33:365372 if (is_chromeos) { # Already removed for all non-ChromeOS builds.
davidben2bcbc6b2015-04-22 02:36:415373 sources -= [
dpranke64df2832015-07-31 22:33:365374 "cert/nss_cert_database_chromeos_unittest.cc",
5375 "cert/nss_profile_filter_chromeos_unittest.cc",
davidben2bcbc6b2015-04-22 02:36:415376 ]
brettw43ae0e12015-07-14 22:12:365377 }
[email protected]8a3f8242014-06-05 18:05:125378 }
dpranke64df2832015-07-31 22:33:365379
dpranke64df2832015-07-31 22:33:365380 if (use_kerberos) {
5381 defines += [ "USE_KERBEROS" ]
5382 }
5383
5384 # These are excluded on Android, because the actual Kerberos support, which
5385 # these test, is in a separate app on Android.
5386 if (!use_kerberos || is_android) {
5387 sources -= [
5388 "http/http_auth_gssapi_posix_unittest.cc",
5389 "http/mock_gssapi_library_posix.cc",
5390 "http/mock_gssapi_library_posix.h",
5391 ]
5392 }
5393 if (!use_kerberos) {
5394 sources -= [ "http/http_auth_handler_negotiate_unittest.cc" ]
5395 }
5396
svaldez2135be52016-04-20 16:34:535397 if (!use_nss_certs) {
svaldeza1714ab2016-03-18 20:47:535398 # Only include this test when using NSS for cert verification.
dpranke64df2832015-07-31 22:33:365399 sources -= [ "cert_net/nss_ocsp_unittest.cc" ]
5400 }
5401
jbudorick1273a842016-04-01 19:50:055402 if (enable_websockets) {
ckrasic73f7240b2017-01-24 00:06:455403 sources += [
5404 "server/http_connection_unittest.cc",
5405 "server/http_server_response_info_unittest.cc",
5406 "server/http_server_unittest.cc",
5407 "server/web_socket_encoder_unittest.cc",
5408 "websockets/websocket_basic_stream_test.cc",
5409 "websockets/websocket_channel_test.cc",
5410 "websockets/websocket_deflate_parameters_test.cc",
5411 "websockets/websocket_deflate_predictor_impl_test.cc",
5412 "websockets/websocket_deflate_stream_test.cc",
5413 "websockets/websocket_deflater_test.cc",
5414 "websockets/websocket_end_to_end_test.cc",
5415 "websockets/websocket_errors_test.cc",
5416 "websockets/websocket_extension_parser_test.cc",
5417 "websockets/websocket_extension_test.cc",
5418 "websockets/websocket_frame_parser_test.cc",
5419 "websockets/websocket_frame_test.cc",
5420 "websockets/websocket_handshake_challenge_test.cc",
5421 "websockets/websocket_handshake_stream_create_helper_test.cc",
5422 "websockets/websocket_inflater_test.cc",
5423 "websockets/websocket_stream_cookie_test.cc",
5424 "websockets/websocket_stream_create_test_base.cc",
5425 "websockets/websocket_stream_create_test_base.h",
5426 "websockets/websocket_stream_test.cc",
5427 "websockets/websocket_test_util.cc",
5428 "websockets/websocket_test_util.h",
5429 ]
jbudorick1273a842016-04-01 19:50:055430 deps += [ ":http_server" ]
dpranke64df2832015-07-31 22:33:365431 }
5432
5433 if (disable_file_support) {
5434 sources -= [
5435 "base/directory_lister_unittest.cc",
Thiago Farinad673bb122016-01-06 23:18:165436 "base/directory_listing_unittest.cc",
shahriar.rostamia8c06daf2016-02-12 00:07:045437 "url_request/url_request_file_dir_job_unittest.cc",
dpranke64df2832015-07-31 22:33:365438 "url_request/url_request_file_job_unittest.cc",
5439 ]
5440 }
5441
5442 if (disable_ftp_support) {
5443 sources -= [
5444 "ftp/ftp_auth_cache_unittest.cc",
5445 "ftp/ftp_ctrl_response_buffer_unittest.cc",
5446 "ftp/ftp_directory_listing_parser_ls_unittest.cc",
dpranke64df2832015-07-31 22:33:365447 "ftp/ftp_directory_listing_parser_unittest.cc",
5448 "ftp/ftp_directory_listing_parser_unittest.h",
5449 "ftp/ftp_directory_listing_parser_vms_unittest.cc",
5450 "ftp/ftp_directory_listing_parser_windows_unittest.cc",
5451 "ftp/ftp_network_transaction_unittest.cc",
5452 "ftp/ftp_util_unittest.cc",
5453 "url_request/url_request_ftp_job_unittest.cc",
5454 ]
5455 }
5456
5457 if (!enable_built_in_dns) {
5458 sources -= [
5459 "dns/address_sorter_posix_unittest.cc",
5460 "dns/address_sorter_unittest.cc",
5461 ]
5462 }
5463
xunjieli905496a2015-08-31 15:51:175464 if (use_v8_in_net) {
mmenkee2ad9922017-06-08 20:27:365465 deps += [ ":net_with_v8" ]
dpranke64df2832015-07-31 22:33:365466 } else {
5467 sources -= [
5468 "proxy/proxy_resolver_v8_tracing_unittest.cc",
5469 "proxy/proxy_resolver_v8_tracing_wrapper_unittest.cc",
5470 "proxy/proxy_resolver_v8_unittest.cc",
5471 ]
5472 }
5473
mmenke93be9ca2017-05-23 16:29:135474 if (enable_net_mojo) {
dpranke64df2832015-07-31 22:33:365475 deps += [
5476 ":net_browser_services",
5477 ":net_utility_services",
rockotc637caf9b2016-02-10 09:57:085478 "//mojo/edk/system",
dpranke64df2832015-07-31 22:33:365479 ]
5480 } else {
5481 sources -= [
5482 "dns/host_resolver_mojo_unittest.cc",
5483 "dns/mojo_host_resolver_impl_unittest.cc",
5484 "proxy/mojo_proxy_resolver_factory_impl_unittest.cc",
5485 "proxy/mojo_proxy_resolver_impl_unittest.cc",
5486 "proxy/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc",
5487 "proxy/proxy_resolver_factory_mojo_unittest.cc",
5488 "proxy/proxy_service_mojo_unittest.cc",
mmenke93be9ca2017-05-23 16:29:135489 "proxy/test_mojo_proxy_resolver_factory.cc",
5490 "proxy/test_mojo_proxy_resolver_factory.h",
mmenkee2ad9922017-06-08 20:27:365491 "url_request/url_request_context_builder_mojo_unittest.cc",
dpranke64df2832015-07-31 22:33:365492 ]
5493 }
5494
5495 if (!enable_mdns) {
5496 sources -= [
5497 "dns/mdns_cache_unittest.cc",
5498 "dns/mdns_client_unittest.cc",
dpranke64df2832015-07-31 22:33:365499 ]
5500 }
5501
5502 if (is_ios) {
dpranke64df2832015-07-31 22:33:365503 sources -= [
5504 # TODO(droger): The following tests are disabled because the
5505 # implementation is missing or incomplete.
dpranke64df2832015-07-31 22:33:365506 "disk_cache/backend_unittest.cc",
5507 "disk_cache/blockfile/block_files_unittest.cc",
5508
5509 # Need to read input data files.
dpranke64df2832015-07-31 22:33:365510 "socket/ssl_server_socket_unittest.cc",
bnc8f8f7d302017-04-24 18:08:065511 "spdy/core/fuzzing/hpack_fuzz_util_test.cc",
dpranke64df2832015-07-31 22:33:365512
5513 # Need TestServer.
5514 "cert_net/cert_net_fetcher_impl_unittest.cc",
5515 "proxy/proxy_script_fetcher_impl_unittest.cc",
5516 "socket/ssl_client_socket_unittest.cc",
5517 "url_request/url_fetcher_impl_unittest.cc",
5518 "url_request/url_request_context_builder_unittest.cc",
dpranke64df2832015-07-31 22:33:365519 ]
mattm1a07e632017-05-16 05:55:505520 net_unfiltered_sources += [ "cert/x509_util_ios_and_mac_unittest.cc" ]
rsesek7d4ab4bc2016-07-22 17:35:135521
5522 bundle_deps = [ ":net_unittests_bundle_data" ]
dpranke64df2832015-07-31 22:33:365523 }
5524
Sergey Ulanov21dea152017-09-13 00:50:505525 if (enable_unix_sockets) {
5526 sources += [
5527 "socket/unix_domain_client_socket_posix_unittest.cc",
5528 "socket/unix_domain_server_socket_posix_unittest.cc",
5529 ]
5530 }
5531
Sergey Ulanov5c33235ae2017-07-06 23:55:075532 # Use getifaddrs() on POSIX platforms, except Linux and Android.
5533 if (!is_posix || is_linux || is_android) {
5534 sources -= [ "base/network_interfaces_getifaddrs_unittest.cc" ]
5535 }
5536
kapishnikovabe280e2016-04-14 19:07:165537 # Unit tests that aren't supported by the current ICU alternatives on Android.
5538 if (is_android && use_platform_icu_alternatives) {
5539 sources -= [
5540 "base/filename_util_unittest.cc",
5541 "base/url_util_unittest.cc",
5542 "cert/x509_certificate_unittest.cc",
5543 "proxy/proxy_resolver_v8_unittest.cc",
5544 "url_request/url_request_job_unittest.cc",
5545 ]
5546 }
5547
5548 # Unit tests that are not supported by the current ICU alternatives on iOS.
5549 if (is_ios && use_platform_icu_alternatives) {
5550 sources -= [
5551 "base/filename_util_unittest.cc",
5552 "base/url_util_unittest.cc",
5553 "cert/x509_certificate_unittest.cc",
5554 "http/http_auth_handler_basic_unittest.cc",
5555 "http/http_auth_handler_digest_unittest.cc",
5556 "http/http_auth_handler_factory_unittest.cc",
5557 "http/http_auth_unittest.cc",
5558 "http/http_content_disposition_unittest.cc",
5559 "http/http_network_transaction_unittest.cc",
5560 "http/http_proxy_client_socket_pool_unittest.cc",
5561 "socket/ssl_client_socket_pool_unittest.cc",
bnc8f8f7d302017-04-24 18:08:065562 "spdy/chromium/spdy_network_transaction_unittest.cc",
5563 "spdy/chromium/spdy_proxy_client_socket_unittest.cc",
kapishnikovabe280e2016-04-14 19:07:165564 "url_request/url_request_job_unittest.cc",
5565 "url_request/url_request_unittest.cc",
5566 ]
5567 }
5568
5569 # Exclude brotli test if the support for brotli is disabled.
xunjielif54f24a02016-11-04 15:51:545570 if (disable_brotli_filter) {
xunjieli084a9292016-09-23 18:15:045571 sources -= [ "filter/brotli_source_stream_unittest.cc" ]
kapishnikovabe280e2016-04-14 19:07:165572 }
5573
dpranke64df2832015-07-31 22:33:365574 if (is_android) {
agrieve732db3a2016-04-26 19:18:195575 data_deps += [ "//net/tools/testserver:testserver_py" ]
agrieve97176362015-12-01 16:36:195576 deps += [
5577 ":net_test_jni_headers",
agrievea5517aa2015-10-23 03:03:455578 "//base:base_java_unittest_support",
5579 "//net/android:net_java",
agrievea5517aa2015-10-23 03:03:455580 "//net/android:net_java_test_support",
Yipeng Wangff2db2d2017-06-16 13:54:525581 "//net/android:net_java_test_support_provider",
agrieve97176362015-12-01 16:36:195582 "//net/android:net_javatests",
agrievea5517aa2015-10-23 03:03:455583 "//net/android:net_unittests_apk_resources",
agrieve97176362015-12-01 16:36:195584
5585 # TODO(mmenke): This depends on test_support_base, which depends on
5586 # icu. Figure out a way to remove that dependency.
5587 "//testing/android/native_test:native_test_native_code",
pkotwicz8c7027d2015-11-11 06:30:075588 "//v8:v8_external_startup_data_assets",
agrievea5517aa2015-10-23 03:03:455589 ]
5590 android_manifest = "//net/android/unittest_support/AndroidManifest.xml"
dpranke64df2832015-07-31 22:33:365591 set_sources_assignment_filter([])
Sergey Ulanov5bb07d32017-07-12 04:14:545592 sources += [
5593 "base/address_tracker_linux_unittest.cc",
5594 "base/network_interfaces_linux_unittest.cc",
5595 ]
dpranke64df2832015-07-31 22:33:365596 set_sources_assignment_filter(sources_assignment_filter)
agrieve3ac557f02016-04-12 15:52:005597 shard_timeout = 300
dpranke64df2832015-07-31 22:33:365598 }
5599
dpranke64df2832015-07-31 22:33:365600 # Symbols for crashes when running tests on swarming.
5601 if (symbol_level > 0) {
5602 if (is_win) {
5603 data += [ "$root_out_dir/net_unittests.exe.pdb" ]
5604 } else if (is_mac) {
dprankede2945b82016-04-15 22:14:135605 # TODO(crbug.com/330301): make this conditional on mac_strip_release.
5606 # data += [ "$root_out_dir/net_unittests.dSYM/" ]
dpranke64df2832015-07-31 22:33:365607 }
5608 }
maksim.sisovc69619d2016-05-20 19:23:555609
5610 if (is_win) {
davidbend6d1e4d2017-05-10 16:49:015611 libs = [
5612 "iphlpapi.lib",
5613 "ncrypt.lib",
5614 ]
maksim.sisovc69619d2016-05-20 19:23:555615 }
davidben983d610b2016-12-14 19:35:405616
5617 if (is_chromecast && use_nss_certs) {
mattm436ccfe2017-06-19 20:24:085618 sources -= [
5619 "ssl/client_cert_store_nss_unittest.cc",
5620 "ssl/ssl_platform_key_nss_unittest.cc",
5621 ]
davidben983d610b2016-12-14 19:35:405622 }
martijnb9aca9d2017-03-31 19:56:155623
5624 # Include transport_security_state_generator tests.
5625 if (host_toolchain == current_toolchain) {
5626 deps += [ "//net/tools/transport_security_state_generator:transport_security_state_generator_test_sources" ]
5627 }
mattm1a07e632017-05-16 05:55:505628
5629 # Add back some sources that were otherwise filtered out.
5630 set_sources_assignment_filter([])
5631 sources += net_unfiltered_sources
5632 set_sources_assignment_filter(sources_assignment_filter)
dpranke64df2832015-07-31 22:33:365633}
5634
5635# !is_android && !is_win && !is_mac
ckrasic73f7240b2017-01-24 00:06:455636if (!is_ios && !is_proto_quic) {
sdefresne3001f172016-03-16 10:30:035637 # TODO(crbug.com/594965): this should be converted to "app" template and
5638 # enabled on iOS too.
5639 executable("net_perftests") {
5640 testonly = true
5641 sources = [
5642 "base/mime_sniffer_perftest.cc",
5643 "cookies/cookie_monster_perftest.cc",
gavinpc28fe1122016-05-13 17:49:055644 "disk_cache/disk_cache_perftest.cc",
sdefresne3001f172016-03-16 10:30:035645 "extras/sqlite/sqlite_persistent_cookie_store_perftest.cc",
tfarina5dd13c22016-11-16 12:08:265646 "socket/udp_socket_perftest.cc",
xunjielicc6b1d02017-06-05 16:51:405647 "url_request/url_request_quic_perftest.cc",
sdefresne3001f172016-03-16 10:30:035648 ]
[email protected]8a3f8242014-06-05 18:05:125649
sdefresne3001f172016-03-16 10:30:035650 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
5651 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
5652 deps = [
5653 ":extras",
5654 ":net",
xunjielicc6b1d02017-06-05 16:51:405655 ":quic_test_tools",
5656 ":simple_quic_tools",
sdefresne3001f172016-03-16 10:30:035657 ":test_support",
5658 "//base",
5659 "//base:i18n",
5660 "//base/test:test_support_perf",
thomasanderson84fa8b02017-05-18 23:38:475661 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:075662 "//build/win:default_exe_manifest",
sdefresne3001f172016-03-16 10:30:035663 "//testing/gtest",
xunjielicc6b1d02017-06-05 16:51:405664 "//testing/perf",
sdefresne3001f172016-03-16 10:30:035665 "//url",
5666 ]
xunjieli5a866842017-06-09 18:16:205667 data = [
5668 # Needed for isolate script to execute.
5669 "//testing/scripts/common.py",
5670 "//testing/xvfb.py",
5671 "//testing/scripts/run_gtest_perf_test.py",
5672 "//tools/perf/generate_legacy_perf_dashboard_json.py",
5673 ]
sdefresne3001f172016-03-16 10:30:035674 if (enable_websockets) {
5675 sources += [ "websockets/websocket_frame_perftest.cc" ]
5676 }
rockot9c67e5f2015-03-12 20:01:215677
sebmarchanda6de3462016-12-14 21:14:015678 # Some linker failures have been observed for this target on the Win64
5679 # continuous builder, see crbug.com/659369.
5680 # TODO(sebmarchand): Remove this once we have some data.
5681 if (is_win && linkrepro_root_dir != "") {
5682 ldflags = [ "/LINKREPRO:" + linkrepro_root_dir + "/" + target_name ]
5683 }
rockot9c67e5f2015-03-12 20:01:215684 }
rockot9c67e5f2015-03-12 20:01:215685}
mefff34b822016-01-11 15:28:085686
eromanfe8659e2016-03-02 23:47:025687# Fuzzers
5688
mmenke35a30012016-07-15 19:20:125689# This has a global (InitGlobals) that must always be linked in, so
5690# must be a source set instead of a static library.
5691source_set("net_fuzzer_test_support") {
eroman02b4fe562016-03-04 12:15:165692 testonly = true
5693
5694 sources = [
csharrison37ef9852016-08-23 19:00:195695 "base/fuzzer_test_support.cc",
mmenkea7da0712016-11-21 21:12:315696 "dns/fuzzed_host_resolver.cc",
5697 "dns/fuzzed_host_resolver.h",
xunjieli75837332016-10-31 16:51:265698 "filter/fuzzed_source_stream.cc",
5699 "filter/fuzzed_source_stream.h",
tfarina5dd13c22016-11-16 12:08:265700 "socket/fuzzed_datagram_client_socket.cc",
5701 "socket/fuzzed_datagram_client_socket.h",
morlovich5e6e19b2017-01-30 14:38:165702 "socket/fuzzed_server_socket.cc",
5703 "socket/fuzzed_server_socket.h",
mmenke99b57172016-04-14 20:44:335704 "socket/fuzzed_socket.cc",
5705 "socket/fuzzed_socket.h",
mmenkec951d412016-04-28 19:05:225706 "socket/fuzzed_socket_factory.cc",
5707 "socket/fuzzed_socket_factory.h",
eroman02b4fe562016-03-04 12:15:165708 ]
csharrisonf30fc95f2016-08-19 21:43:445709 public_deps = [
5710 "//base/test:test_support",
5711 ]
eroman02b4fe562016-03-04 12:15:165712 deps = [
5713 "//base",
5714 "//base:i18n",
mmenke99b57172016-04-14 20:44:335715 "//net",
eroman02b4fe562016-03-04 12:15:165716 ]
5717}
5718
csharrisonaa314dc2016-04-29 20:15:375719fuzzer_test("net_data_job_fuzzer") {
5720 sources = [
5721 "url_request/url_request_data_job_fuzzer.cc",
5722 ]
5723 deps = [
5724 ":net_fuzzer_test_support",
5725 ":test_support",
5726 "//base",
5727 "//net",
5728 ]
5729}
5730
mmenke5552a6a2016-03-28 23:11:595731fuzzer_test("net_mime_sniffer_fuzzer") {
5732 sources = [
5733 "base/mime_sniffer_fuzzer.cc",
5734 ]
5735 deps = [
5736 ":net_fuzzer_test_support",
5737 "//base",
5738 "//net",
5739 ]
mmoroz4a561d32016-07-07 17:45:125740 dict = "data/fuzzer_dictionaries/net_mime_sniffer_fuzzer.dict"
mmenke5552a6a2016-03-28 23:11:595741}
5742
mmoroz565e8df22016-03-04 18:17:205743fuzzer_test("net_parse_proxy_list_pac_fuzzer") {
eromane6264fd2016-03-02 22:46:305744 sources = [
5745 "proxy/parse_proxy_list_pac_fuzzer.cc",
5746 ]
5747 deps = [
eroman02b4fe562016-03-04 12:15:165748 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305749 "//net",
5750 ]
5751}
5752
mmoroz565e8df22016-03-04 18:17:205753fuzzer_test("net_parse_proxy_list_fuzzer") {
eromane6264fd2016-03-02 22:46:305754 sources = [
5755 "proxy/parse_proxy_list_fuzzer.cc",
5756 ]
5757 deps = [
eroman02b4fe562016-03-04 12:15:165758 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305759 "//net",
5760 ]
5761}
5762
mmoroz565e8df22016-03-04 18:17:205763fuzzer_test("net_parse_proxy_bypass_rules_fuzzer") {
eromane6264fd2016-03-02 22:46:305764 sources = [
5765 "proxy/parse_proxy_bypass_rules_fuzzer.cc",
5766 ]
5767 deps = [
eroman02b4fe562016-03-04 12:15:165768 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305769 "//net",
5770 ]
5771}
5772
mmoroz565e8df22016-03-04 18:17:205773fuzzer_test("net_parse_proxy_rules_fuzzer") {
eromane6264fd2016-03-02 22:46:305774 sources = [
5775 "proxy/parse_proxy_rules_fuzzer.cc",
5776 ]
5777 deps = [
eroman02b4fe562016-03-04 12:15:165778 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305779 "//net",
5780 ]
metzman31db75e2016-08-03 22:33:275781 dict = "data/fuzzer_dictionaries/net_parse_proxy_bypass_rules_fuzzer.dict"
eromane6264fd2016-03-02 22:46:305782}
5783
mmoroz565e8df22016-03-04 18:17:205784fuzzer_test("net_parse_data_url_fuzzer") {
eromane6264fd2016-03-02 22:46:305785 sources = [
5786 "base/parse_data_url_fuzzer.cc",
5787 ]
5788 deps = [
eroman02b4fe562016-03-04 12:15:165789 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305790 "//base",
5791 "//net",
5792 ]
mmoroz4a561d32016-07-07 17:45:125793 dict = "data/fuzzer_dictionaries/net_parse_data_url_fuzzer.dict"
eromane6264fd2016-03-02 22:46:305794}
5795
mmoroz565e8df22016-03-04 18:17:205796fuzzer_test("net_parse_ip_pattern_fuzzer") {
eromane6264fd2016-03-02 22:46:305797 sources = [
5798 "base/parse_ip_pattern_fuzzer.cc",
5799 ]
5800 deps = [
eroman02b4fe562016-03-04 12:15:165801 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305802 "//net",
5803 ]
5804}
5805
mmoroz565e8df22016-03-04 18:17:205806fuzzer_test("net_get_domain_and_registry_fuzzer") {
eromane6264fd2016-03-02 22:46:305807 sources = [
5808 "base/registry_controlled_domains/get_domain_and_registry_fuzzer.cc",
5809 ]
5810 deps = [
eroman02b4fe562016-03-04 12:15:165811 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305812 "//base",
eromane6264fd2016-03-02 22:46:305813 "//net",
5814 ]
mmoroz4a561d32016-07-07 17:45:125815 dict = "data/fuzzer_dictionaries/net_get_domain_and_registry_fuzzer.dict"
eromane6264fd2016-03-02 22:46:305816}
5817
mattmafe43b82016-04-28 20:40:545818fuzzer_test("net_cert_verify_name_match_fuzzer") {
5819 sources = [
5820 "cert/internal/verify_name_match_fuzzer.cc",
5821 ]
5822 deps = [
5823 ":net_fuzzer_test_support",
5824 "//base",
5825 "//net",
5826 ]
5827}
5828
mattm2c637da42016-04-28 02:55:595829fuzzer_test("net_cert_normalize_name_fuzzer") {
5830 sources = [
5831 "cert/internal/verify_name_match_normalizename_fuzzer.cc",
5832 ]
5833 deps = [
5834 "//base",
5835 "//net",
5836 ]
5837}
5838
mattmafe43b82016-04-28 20:40:545839fuzzer_test("net_cert_verify_name_in_subtree_fuzzer") {
5840 sources = [
5841 "cert/internal/verify_name_match_verifynameinsubtree_fuzzer.cc",
5842 ]
5843 deps = [
5844 ":net_fuzzer_test_support",
5845 "//base",
5846 "//net",
5847 ]
5848}
5849
nharper85d3b6f2016-04-28 20:58:195850fuzzer_test("net_cert_parse_certificate_fuzzer") {
5851 sources = [
5852 "cert/internal/parse_certificate_fuzzer.cc",
5853 ]
5854 deps = [
5855 "//base",
5856 "//net",
5857 ]
5858}
5859
mmoroz565e8df22016-03-04 18:17:205860fuzzer_test("net_parse_cookie_line_fuzzer") {
eromane6264fd2016-03-02 22:46:305861 sources = [
5862 "cookies/parse_cookie_line_fuzzer.cc",
5863 ]
5864 deps = [
eroman02b4fe562016-03-04 12:15:165865 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305866 "//net",
5867 ]
5868}
5869
mmoroz565e8df22016-03-04 18:17:205870fuzzer_test("net_dns_record_fuzzer") {
eromanfe8659e2016-03-02 23:47:025871 sources = [
5872 "dns/dns_record_fuzzer.cc",
5873 ]
5874 deps = [
eroman02b4fe562016-03-04 12:15:165875 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:025876 "//base",
5877 "//net",
5878 ]
mmoroz4a561d32016-07-07 17:45:125879 dict = "data/fuzzer_dictionaries/net_dns_record_fuzzer.dict"
eromanfe8659e2016-03-02 23:47:025880}
5881
zhongyi273af9f2016-04-28 18:46:345882fuzzer_test("net_dns_hosts_parse_fuzzer") {
5883 sources = [
5884 "dns/dns_hosts_parse_fuzzer.cc",
5885 ]
5886 deps = [
5887 ":net_fuzzer_test_support",
5888 "//base",
5889 "//net",
5890 ]
mmoroz4a561d32016-07-07 17:45:125891 dict = "data/fuzzer_dictionaries/net_dns_hosts_parse_fuzzer.dict"
zhongyi273af9f2016-04-28 18:46:345892}
5893
mmenke91c17162016-06-02 16:03:235894fuzzer_test("net_host_resolver_impl_fuzzer") {
5895 sources = [
mmenke91c17162016-06-02 16:03:235896 "dns/host_resolver_impl_fuzzer.cc",
5897 ]
5898 deps = [
5899 ":net_fuzzer_test_support",
5900 ":test_support",
5901 "//base",
5902 "//net",
5903 ]
mmoroz4a561d32016-07-07 17:45:125904 dict = "data/fuzzer_dictionaries/net_host_resolver_impl_fuzzer.dict"
mmenke91c17162016-06-02 16:03:235905}
5906
mmenke44e8e9c2016-03-29 18:38:575907fuzzer_test("net_http_stream_parser_fuzzer") {
5908 sources = [
5909 "http/http_stream_parser_fuzzer.cc",
5910 ]
5911 deps = [
5912 ":net_fuzzer_test_support",
5913 ":test_support",
5914 "//base",
5915 "//net",
5916 ]
mmoroz4a561d32016-07-07 17:45:125917 dict = "data/fuzzer_dictionaries/net_http_stream_parser_fuzzer.dict"
mmenke44e8e9c2016-03-29 18:38:575918}
5919
Zentaro Kavanaghdd556612017-08-03 20:27:045920fuzzer_test("net_ntlm_ntlm_client_fuzzer") {
5921 sources = [
5922 "ntlm/ntlm_client_fuzzer.cc",
5923 ]
5924 deps = [
5925 ":net_fuzzer_test_support",
5926 ":test_support",
5927 "//base",
5928 "//net",
5929 "//net:net_unittests",
5930 ]
5931 dict = "data/fuzzer_dictionaries/net_ntlm_ntlm_client_fuzzer.dict"
5932 seed_corpus = "data/fuzzer_data/ntlm_client_fuzzer/"
5933}
5934
xunjielid5ffeaf2016-11-01 15:22:005935if (!disable_brotli_filter) {
5936 fuzzer_test("net_brotli_source_stream_fuzzer") {
5937 sources = [
5938 "filter/brotli_source_stream_fuzzer.cc",
5939 ]
5940 deps = [
5941 ":net_fuzzer_test_support",
5942 ":test_support",
5943 "//base",
5944 "//net",
5945 ]
5946 }
5947}
5948
xunjieli75837332016-10-31 16:51:265949fuzzer_test("net_gzip_source_stream_fuzzer") {
5950 sources = [
5951 "filter/gzip_source_stream_fuzzer.cc",
5952 ]
5953 deps = [
5954 ":net_fuzzer_test_support",
5955 ":test_support",
5956 "//base",
5957 "//net",
5958 ]
5959}
5960
mmoroz565e8df22016-03-04 18:17:205961fuzzer_test("net_ftp_ctrl_response_fuzzer") {
eromanfe8659e2016-03-02 23:47:025962 sources = [
5963 "ftp/ftp_ctrl_response_fuzzer.cc",
5964 ]
5965 deps = [
eroman02b4fe562016-03-04 12:15:165966 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:025967 "//base",
5968 "//net",
5969 ]
5970}
5971
mmoroz565e8df22016-03-04 18:17:205972fuzzer_test("net_ftp_directory_listing_fuzzer") {
eromanfe8659e2016-03-02 23:47:025973 sources = [
5974 "ftp/ftp_directory_listing_fuzzer.cc",
5975 ]
5976 deps = [
eroman02b4fe562016-03-04 12:15:165977 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:025978 "//base",
eromanfe8659e2016-03-02 23:47:025979 "//net",
5980 ]
5981}
5982
mmoroz565e8df22016-03-04 18:17:205983fuzzer_test("net_unescape_url_component_fuzzer") {
eromanfe8659e2016-03-02 23:47:025984 sources = [
5985 "base/unescape_url_component_fuzzer.cc",
5986 ]
5987 deps = [
eroman02b4fe562016-03-04 12:15:165988 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:025989 "//base",
5990 "//net",
5991 ]
mmoroz34eb0082016-03-11 14:32:015992 dict = "base/unescape_url_component_fuzzer.dict"
mmoroz062a4a62016-04-12 09:02:335993 libfuzzer_options = [ "max_len = 2048" ]
eromanfe8659e2016-03-02 23:47:025994}
5995
ricea7b870e72016-09-01 04:41:045996fuzzer_test("net_websocket_deflate_stream_fuzzer") {
5997 sources = [
5998 "websockets/websocket_deflate_stream_fuzzer.cc",
5999 ]
6000 deps = [
6001 ":net_fuzzer_test_support",
6002 "//net",
6003 ]
6004 dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict"
6005 libfuzzer_options = [ "max_len=512" ]
6006}
6007
riceaf9dcc092016-09-13 12:42:006008fuzzer_test("net_websocket_extension_parser_fuzzer") {
6009 sources = [
6010 "websockets/websocket_extension_parser_fuzzer.cc",
6011 ]
6012 deps = [
6013 ":net_fuzzer_test_support",
6014 "//net",
6015 ]
6016 dict = "data/fuzzer_dictionaries/net_websocket_extension_parser_fuzzer.dict"
6017 libfuzzer_options = [ "max_len = 256" ]
6018}
6019
mmoroz565e8df22016-03-04 18:17:206020fuzzer_test("net_websocket_frame_parser_fuzzer") {
eromanfe8659e2016-03-02 23:47:026021 sources = [
6022 "websockets/websocket_frame_parser_fuzzer.cc",
6023 ]
6024 deps = [
eroman02b4fe562016-03-04 12:15:166025 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026026 "//net",
6027 ]
mmoroz4a561d32016-07-07 17:45:126028 dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict"
ricea105ae612016-09-08 08:00:076029 libfuzzer_options = [ "max_len=256" ]
eromanfe8659e2016-03-02 23:47:026030}
6031
mmoroz565e8df22016-03-04 18:17:206032fuzzer_test("net_http_chunked_decoder_fuzzer") {
eromanfe8659e2016-03-02 23:47:026033 sources = [
6034 "http/http_chunked_decoder_fuzzer.cc",
6035 ]
6036 deps = [
eroman02b4fe562016-03-04 12:15:166037 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026038 "//net",
6039 ]
6040}
6041
mmenke8e9314bc2016-04-15 21:45:026042fuzzer_test("net_http_proxy_client_socket_fuzzer") {
6043 sources = [
6044 "http/http_proxy_client_socket_fuzzer.cc",
6045 ]
6046 deps = [
6047 ":net_fuzzer_test_support",
6048 ":test_support",
6049 "//base",
6050 "//net",
6051 ]
mmoroz4a561d32016-07-07 17:45:126052 dict = "data/fuzzer_dictionaries/net_http_proxy_client_socket_fuzzer.dict"
mmenke8e9314bc2016-04-15 21:45:026053}
6054
mmoroz9299ef9b2016-09-01 17:37:096055fuzzer_test("net_parse_url_hostname_to_address_fuzzer") {
6056 sources = [
6057 "base/parse_url_hostname_to_address_fuzzer.cc",
6058 ]
6059 deps = [
6060 ":net_fuzzer_test_support",
6061 "//base",
6062 "//net",
6063 ]
6064 libfuzzer_options = [ "max_len=512" ]
6065 seed_corpus = "data/fuzzer_data/hostnames/"
6066}
6067
mmoroz565e8df22016-03-04 18:17:206068fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") {
eromanfe8659e2016-03-02 23:47:026069 sources = [
rchd4db7c152016-07-29 21:58:126070 "quic/core/quic_crypto_framer_parse_message_fuzzer.cc",
eromanfe8659e2016-03-02 23:47:026071 ]
6072 deps = [
eroman02b4fe562016-03-04 12:15:166073 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026074 "//base",
6075 "//net",
6076 ]
6077}
mmenke99b57172016-04-14 20:44:336078
6079fuzzer_test("net_socks_client_socket_fuzzer") {
6080 sources = [
6081 "socket/socks_client_socket_fuzzer.cc",
6082 ]
6083 deps = [
6084 ":net_fuzzer_test_support",
6085 ":test_support",
6086 "//base",
6087 "//net",
6088 ]
6089}
6090
6091fuzzer_test("net_socks5_client_socket_fuzzer") {
6092 sources = [
6093 "socket/socks5_client_socket_fuzzer.cc",
6094 ]
6095 deps = [
6096 ":net_fuzzer_test_support",
6097 ":test_support",
6098 "//base",
6099 "//net",
6100 ]
6101}
mmenkec951d412016-04-28 19:05:226102
mmenkea7da0712016-11-21 21:12:316103fuzzer_test("net_url_request_ftp_fuzzer") {
6104 sources = [
6105 "url_request/url_request_ftp_fuzzer.cc",
6106 ]
6107 deps = [
6108 ":net_fuzzer_test_support",
6109 ":test_support",
6110 "//base",
6111 "//net",
6112 ]
6113 dict = "data/fuzzer_dictionaries/net_url_request_ftp_fuzzer.dict"
6114 seed_corpus = "data/fuzzer_data/net_url_request_ftp_fuzzer/"
6115}
6116
mmenkec951d412016-04-28 19:05:226117fuzzer_test("net_url_request_fuzzer") {
6118 sources = [
6119 "url_request/url_request_fuzzer.cc",
6120 ]
6121 deps = [
6122 ":net_fuzzer_test_support",
6123 ":test_support",
6124 "//base",
6125 "//net",
6126 ]
mmoroz4a561d32016-07-07 17:45:126127 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict"
mmenkec951d412016-04-28 19:05:226128}
csharrison88d2a612016-09-09 16:58:546129
6130fuzzer_test("net_auth_challenge_tokenizer_fuzzer") {
6131 sources = [
6132 "http/http_auth_challenge_tokenizer_fuzzer.cc",
6133 ]
6134 deps = [
6135 ":net_fuzzer_test_support",
6136 ":test_support",
6137 "//base",
6138 "//net",
6139 ]
6140}
martijndb9ad4f2016-10-26 18:34:096141
estarka57e8162017-04-21 18:01:056142fuzzer_test("net_http_security_headers_expect_ct_fuzzer") {
6143 sources = [
6144 "http/http_security_headers_expect_ct_fuzzer.cc",
6145 ]
6146 deps = [
6147 ":net_fuzzer_test_support",
6148 "//base",
6149 "//net",
6150 "//url",
6151 ]
6152 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
6153 seed_corpus = "data/fuzzer_data/http_security_headers/"
6154}
6155
martijndb9ad4f2016-10-26 18:34:096156fuzzer_test("net_http_security_headers_hsts_fuzzer") {
6157 sources = [
6158 "http/http_security_headers_hsts_fuzzer.cc",
6159 ]
6160 deps = [
6161 "//base",
6162 "//net",
6163 ]
6164 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
estarka57e8162017-04-21 18:01:056165 seed_corpus = "data/fuzzer_data/http_security_headers/"
martijndb9ad4f2016-10-26 18:34:096166}
6167
6168fuzzer_test("net_http_security_headers_hpkp_fuzzer") {
6169 sources = [
6170 "http/http_security_headers_hpkp_fuzzer.cc",
6171 ]
6172 deps = [
martijn15387afb2016-10-27 22:21:046173 ":net_fuzzer_test_support",
martijndb9ad4f2016-10-26 18:34:096174 "//base",
6175 "//net",
6176 "//url",
6177 ]
6178 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
estarka57e8162017-04-21 18:01:056179 seed_corpus = "data/fuzzer_data/http_security_headers/"
martijndb9ad4f2016-10-26 18:34:096180}
6181
6182fuzzer_test("net_http_security_headers_hpkp_report_only_fuzzer") {
6183 sources = [
6184 "http/http_security_headers_hpkp_report_only_fuzzer.cc",
6185 ]
6186 deps = [
martijn15387afb2016-10-27 22:21:046187 ":net_fuzzer_test_support",
martijndb9ad4f2016-10-26 18:34:096188 "//base",
6189 "//net",
6190 "//url",
6191 ]
6192 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
6193}
martijn40db4b762016-12-14 00:26:456194
martijnda940792016-12-29 01:36:516195fuzzer_test("net_http_transport_security_state_static_fuzzer") {
6196 sources = [
6197 "http/transport_security_state_static_fuzzer.cc",
6198 ]
6199 deps = [
6200 ":net_fuzzer_test_support",
6201 "//net",
6202 ]
6203 dict =
6204 "data/fuzzer_dictionaries/net_http_transport_security_state_fuzzer.dict"
6205}
6206
morlovich5e6e19b2017-01-30 14:38:166207fuzzer_test("net_http_server_fuzzer") {
6208 sources = [
6209 "server/http_server_fuzzer.cc",
6210 ]
6211 deps = [
6212 ":http_server",
6213 ":net_fuzzer_test_support",
6214 ":test_support",
6215 "//base",
6216 "//net",
6217 ]
6218 dict = "data/fuzzer_dictionaries/net_http_server_fuzzer.dict"
6219 seed_corpus = "data/fuzzer_data/http_server_requests/"
6220}
6221
morlovich833190ec2017-02-10 16:53:046222fuzzer_test("net_spdy_session_fuzzer") {
6223 sources = [
bnc8f8f7d302017-04-24 18:08:066224 "spdy/chromium/spdy_session_fuzzer.cc",
morlovich833190ec2017-02-10 16:53:046225 ]
6226 deps = [
6227 ":net_fuzzer_test_support",
6228 ":test_support",
6229 "//base",
6230 "//net",
6231 ]
6232 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
6233 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
6234}