blob: 1c165625cf80df368c9bf7eaad96abf0e7d7392a [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",
Ryan Hamilton70874e052017-09-22 22:34:101619 "spdy/platform/impl/spdy_string_utils_impl.cc",
bnced7be41d2017-03-28 17:30:241620 "spdy/platform/impl/spdy_string_utils_impl.h",
ckrasic73f7240b2017-01-24 00:06:451621 "ssl/client_cert_store.h",
1622 "ssl/client_cert_store_mac.cc",
1623 "ssl/client_cert_store_mac.h",
1624 "ssl/client_cert_store_nss.cc",
1625 "ssl/client_cert_store_nss.h",
1626 "ssl/client_cert_store_win.cc",
1627 "ssl/client_cert_store_win.h",
1628 "ssl/ssl_config_service_defaults.cc",
1629 "ssl/ssl_config_service_defaults.h",
1630 "ssl/ssl_key_logger.cc",
1631 "ssl/ssl_key_logger.h",
ckrasic73f7240b2017-01-24 00:06:451632 "ssl/ssl_platform_key_android.cc",
thakisb8590c92017-03-23 18:14:531633 "ssl/ssl_platform_key_android.h",
ckrasic73f7240b2017-01-24 00:06:451634 "ssl/ssl_platform_key_mac.cc",
thakisb8590c92017-03-23 18:14:531635 "ssl/ssl_platform_key_mac.h",
ckrasic73f7240b2017-01-24 00:06:451636 "ssl/ssl_platform_key_nss.cc",
mattm436ccfe2017-06-19 20:24:081637 "ssl/ssl_platform_key_nss.h",
ckrasic73f7240b2017-01-24 00:06:451638 "ssl/ssl_platform_key_util.cc",
1639 "ssl/ssl_platform_key_util.h",
1640 "ssl/ssl_platform_key_win.cc",
1641 "ssl/test_ssl_private_key.cc",
1642 "ssl/test_ssl_private_key.h",
1643 "ssl/threaded_ssl_private_key.cc",
1644 "ssl/threaded_ssl_private_key.h",
1645 "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
1646 "third_party/mozilla_security_manager/nsNSSCertificateDB.h",
1647 "third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
1648 "third_party/mozilla_security_manager/nsPKCS12Blob.h",
1649 "url_request/data_protocol_handler.cc",
1650 "url_request/data_protocol_handler.h",
1651 "url_request/http_user_agent_settings.h",
Julia Tuttlef9b74062017-07-27 14:44:051652 "url_request/network_error_logging_delegate.cc",
1653 "url_request/network_error_logging_delegate.h",
ckrasic73f7240b2017-01-24 00:06:451654 "url_request/redirect_info.cc",
1655 "url_request/redirect_info.h",
1656 "url_request/report_sender.cc",
1657 "url_request/report_sender.h",
ckrasic73f7240b2017-01-24 00:06:451658 "url_request/static_http_user_agent_settings.cc",
1659 "url_request/static_http_user_agent_settings.h",
1660 "url_request/url_fetcher.cc",
1661 "url_request/url_fetcher.h",
1662 "url_request/url_fetcher_core.cc",
1663 "url_request/url_fetcher_core.h",
1664 "url_request/url_fetcher_delegate.cc",
1665 "url_request/url_fetcher_delegate.h",
1666 "url_request/url_fetcher_factory.h",
1667 "url_request/url_fetcher_impl.cc",
1668 "url_request/url_fetcher_impl.h",
1669 "url_request/url_fetcher_response_writer.cc",
1670 "url_request/url_fetcher_response_writer.h",
1671 "url_request/url_range_request_job.cc",
1672 "url_request/url_range_request_job.h",
1673 "url_request/url_request.cc",
1674 "url_request/url_request.h",
1675 "url_request/url_request_context.cc",
1676 "url_request/url_request_context.h",
1677 "url_request/url_request_context_builder.cc",
1678 "url_request/url_request_context_builder.h",
1679 "url_request/url_request_context_getter.cc",
1680 "url_request/url_request_context_getter.h",
1681 "url_request/url_request_context_getter_observer.h",
1682 "url_request/url_request_context_storage.cc",
1683 "url_request/url_request_context_storage.h",
1684 "url_request/url_request_data_job.cc",
1685 "url_request/url_request_data_job.h",
1686 "url_request/url_request_error_job.cc",
1687 "url_request/url_request_error_job.h",
1688 "url_request/url_request_filter.cc",
1689 "url_request/url_request_filter.h",
1690 "url_request/url_request_http_job.cc",
1691 "url_request/url_request_http_job.h",
1692 "url_request/url_request_intercepting_job_factory.cc",
1693 "url_request/url_request_intercepting_job_factory.h",
1694 "url_request/url_request_interceptor.cc",
1695 "url_request/url_request_interceptor.h",
1696 "url_request/url_request_job.cc",
1697 "url_request/url_request_job.h",
1698 "url_request/url_request_job_factory.cc",
1699 "url_request/url_request_job_factory.h",
1700 "url_request/url_request_job_factory_impl.cc",
1701 "url_request/url_request_job_factory_impl.h",
1702 "url_request/url_request_job_manager.cc",
1703 "url_request/url_request_job_manager.h",
1704 "url_request/url_request_netlog_params.cc",
1705 "url_request/url_request_netlog_params.h",
1706 "url_request/url_request_redirect_job.cc",
1707 "url_request/url_request_redirect_job.h",
1708 "url_request/url_request_simple_job.cc",
1709 "url_request/url_request_simple_job.h",
1710 "url_request/url_request_status.cc",
1711 "url_request/url_request_status.h",
1712 "url_request/url_request_test_job.cc",
1713 "url_request/url_request_test_job.h",
1714 "url_request/url_request_throttler_entry.cc",
1715 "url_request/url_request_throttler_entry.h",
1716 "url_request/url_request_throttler_entry_interface.h",
1717 "url_request/url_request_throttler_manager.cc",
1718 "url_request/url_request_throttler_manager.h",
1719 "url_request/view_cache_helper.cc",
1720 "url_request/view_cache_helper.h",
1721 "url_request/websocket_handshake_userdata_key.cc",
1722 "url_request/websocket_handshake_userdata_key.h",
1723 "websockets/websocket_handshake_request_info.h",
1724 "websockets/websocket_handshake_response_info.h",
1725 "websockets/websocket_handshake_stream_base.h",
1726 "websockets/websocket_stream.h",
1727 ]
kapishnikovabe280e2016-04-14 19:07:161728 deps += [
1729 "//base/third_party/dynamic_annotations",
kapishnikovabe280e2016-04-14 19:07:161730 "//third_party/zlib",
1731 ]
1732
mmenkefd9d15c2017-06-29 13:45:541733 if (enable_reporting) {
1734 sources += [
1735 "reporting/reporting_browsing_data_remover.cc",
1736 "reporting/reporting_browsing_data_remover.h",
1737 "reporting/reporting_cache.cc",
1738 "reporting/reporting_cache.h",
1739 "reporting/reporting_client.cc",
1740 "reporting/reporting_client.h",
1741 "reporting/reporting_context.cc",
1742 "reporting/reporting_context.h",
1743 "reporting/reporting_delegate.cc",
1744 "reporting/reporting_delegate.h",
1745 "reporting/reporting_delivery_agent.cc",
1746 "reporting/reporting_delivery_agent.h",
1747 "reporting/reporting_endpoint_manager.cc",
1748 "reporting/reporting_endpoint_manager.h",
1749 "reporting/reporting_feature.cc",
1750 "reporting/reporting_feature.h",
1751 "reporting/reporting_garbage_collector.cc",
1752 "reporting/reporting_garbage_collector.h",
1753 "reporting/reporting_header_parser.cc",
1754 "reporting/reporting_header_parser.h",
1755 "reporting/reporting_network_change_observer.cc",
1756 "reporting/reporting_network_change_observer.h",
1757 "reporting/reporting_observer.cc",
1758 "reporting/reporting_observer.h",
1759 "reporting/reporting_persister.cc",
1760 "reporting/reporting_persister.h",
1761 "reporting/reporting_policy.cc",
1762 "reporting/reporting_policy.h",
1763 "reporting/reporting_report.cc",
1764 "reporting/reporting_report.h",
1765 "reporting/reporting_service.cc",
1766 "reporting/reporting_service.h",
1767 "reporting/reporting_uploader.cc",
1768 "reporting/reporting_uploader.h",
1769 ]
1770 }
1771
kapishnikovabe280e2016-04-14 19:07:161772 if (!use_kerberos) {
1773 sources -= [
1774 "http/http_auth_handler_negotiate.cc",
1775 "http/http_auth_handler_negotiate.h",
1776 ]
1777 }
1778
1779 if (is_posix) {
1780 if (posix_avoid_mmap) {
1781 sources -= [ "disk_cache/blockfile/mapped_file_posix.cc" ]
1782 } else {
1783 sources -= [ "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc" ]
1784 }
1785 }
1786
zentarob74795682017-07-14 00:58:221787 if (is_win) {
1788 sources -= [
zentarob89acda42017-07-14 01:28:571789 "ntlm/des.cc",
1790 "ntlm/des.h",
1791 "ntlm/md4.cc",
1792 "ntlm/md4.h",
1793 "ntlm/ntlm.cc",
1794 "ntlm/ntlm.h",
zentarob74795682017-07-14 00:58:221795 "ntlm/ntlm_buffer_reader.cc",
1796 "ntlm/ntlm_buffer_reader.h",
1797 "ntlm/ntlm_buffer_writer.cc",
1798 "ntlm/ntlm_buffer_writer.h",
Zentaro Kavanaghdd556612017-08-03 20:27:041799 "ntlm/ntlm_client.cc",
1800 "ntlm/ntlm_client.h",
zentarob74795682017-07-14 00:58:221801 "ntlm/ntlm_constants.h",
1802 ]
1803 }
1804
kapishnikovabe280e2016-04-14 19:07:161805 if (!enable_built_in_dns) {
1806 sources -= [
1807 "dns/address_sorter_posix.cc",
1808 "dns/address_sorter_posix.h",
1809 "dns/dns_client.cc",
1810 ]
1811 }
1812
mattm4cede8d2017-04-11 02:55:011813 if (use_byte_certs) {
mattm4cede8d2017-04-11 02:55:011814 if (use_nss_certs) {
1815 sources -= [ "cert/x509_certificate_nss.cc" ]
1816 }
mattm4cede8d2017-04-11 02:55:011817 } else {
1818 sources -= [ "cert/x509_certificate_bytes.cc" ]
1819 }
1820
kapishnikovabe280e2016-04-14 19:07:161821 if (!use_kerberos || is_android) {
1822 sources -= [
1823 "http/http_auth_gssapi_posix.cc",
1824 "http/http_auth_gssapi_posix.h",
1825 ]
1826 }
1827
Sergey Ulanov5c33235ae2017-07-06 23:55:071828 if (!is_nacl) {
Matt Mueller15004212017-09-08 04:44:131829 sources -= [
1830 "base/network_interfaces_nacl.cc",
1831 "cert/cert_database_stub.cc",
1832 ]
Sergey Ulanov5c33235ae2017-07-06 23:55:071833 }
1834
1835 # Use getifaddrs() on POSIX platforms, except Linux and Android.
1836 if (!is_posix || is_linux || is_android) {
1837 sources -= [
1838 "base/network_interfaces_getifaddrs.cc",
1839 "base/network_interfaces_getifaddrs.h",
1840 ]
1841 }
1842
mostynb75e8d632016-08-02 16:46:531843 if (use_gio) {
dsinclair8490e052016-05-04 15:33:331844 deps += [ "//build/linux/libgio" ]
kapishnikovabe280e2016-04-14 19:07:161845 }
1846
1847 if (!use_nss_certs) {
1848 sources -= [
kapishnikovabe280e2016-04-14 19:07:161849 "cert/cert_database_nss.cc",
mattm9c63d442016-09-03 00:45:511850 "cert/internal/trust_store_nss.cc",
1851 "cert/internal/trust_store_nss.h",
eromanf2971fd2017-04-20 20:10:451852 "cert/known_roots_nss.cc",
1853 "cert/known_roots_nss.h",
kapishnikovabe280e2016-04-14 19:07:161854 "cert/nss_cert_database.cc",
1855 "cert/nss_cert_database.h",
1856 "cert/x509_certificate_nss.cc",
1857 "ssl/client_cert_store_nss.cc",
1858 "ssl/client_cert_store_nss.h",
kapishnikovabe280e2016-04-14 19:07:161859 "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
1860 "third_party/mozilla_security_manager/nsNSSCertificateDB.h",
1861 "third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
1862 "third_party/mozilla_security_manager/nsPKCS12Blob.h",
1863 ]
1864 if (is_chromeos) {
1865 # These were already removed on non-ChromeOS.
1866 sources -= [
1867 "cert/nss_cert_database_chromeos.cc",
1868 "cert/nss_cert_database_chromeos.h",
1869 "cert/nss_profile_filter_chromeos.cc",
1870 "cert/nss_profile_filter_chromeos.h",
1871 ]
1872 }
mattmbbf7fc02017-06-19 23:38:191873 sources -= [ "ssl/ssl_platform_key_nss.cc" ]
svaldez2135be52016-04-20 16:34:531874 } else {
davidben8d569f52016-07-29 16:03:181875 sources += [
1876 "third_party/nss/ssl/cmpcert.cc",
1877 "third_party/nss/ssl/cmpcert.h",
1878 ]
kapishnikovabe280e2016-04-14 19:07:161879 }
1880
svaldez2135be52016-04-20 16:34:531881 if (!use_nss_certs) {
kapishnikovabe280e2016-04-14 19:07:161882 # These files are part of the partial implementation of NSS for
1883 # cert verification, so keep them in that case.
1884 sources -= [
1885 "cert/cert_verify_proc_nss.cc",
1886 "cert/cert_verify_proc_nss.h",
1887 "cert/test_root_certs_nss.cc",
svaldez2135be52016-04-20 16:34:531888 "cert/x509_util_nss.cc",
kapishnikovabe280e2016-04-14 19:07:161889 "cert_net/nss_ocsp.cc",
1890 "cert_net/nss_ocsp.h",
1891 ]
1892 }
1893
kapishnikovabe280e2016-04-14 19:07:161894 if (is_chromecast && use_nss_certs) {
mattm436ccfe2017-06-19 20:24:081895 sources -= [
1896 "ssl/client_cert_store_nss.cc",
1897 "ssl/client_cert_store_nss.h",
1898 "ssl/ssl_platform_key_nss.cc",
1899 ]
kapishnikovabe280e2016-04-14 19:07:161900 }
1901
1902 if (!enable_mdns) {
1903 sources -= [
1904 "dns/mdns_cache.cc",
1905 "dns/mdns_cache.h",
1906 "dns/mdns_client.cc",
1907 "dns/mdns_client.h",
1908 "dns/mdns_client_impl.cc",
1909 "dns/mdns_client_impl.h",
kapishnikovabe280e2016-04-14 19:07:161910 ]
1911 }
1912
1913 if (is_win) {
1914 sources -= [ "http/http_auth_handler_ntlm_portable.cc" ]
1915 } else { # !is_win
1916 sources -= [
1917 "base/winsock_init.cc",
1918 "base/winsock_init.h",
1919 "base/winsock_util.cc",
1920 "base/winsock_util.h",
1921 "proxy/proxy_resolver_winhttp.cc",
1922 "proxy/proxy_resolver_winhttp.h",
1923 ]
1924 }
1925
1926 if (is_ios) {
1927 # Add back some sources that were otherwise filtered out.
1928 # iOS needs some Mac files.
1929 net_unfiltered_sources += [
1930 "base/mac/url_conversions.h",
1931 "base/mac/url_conversions.mm",
1932 "base/network_change_notifier_mac.cc",
wychenebb66ffb2017-04-05 07:19:371933 "base/network_change_notifier_mac.h",
kapishnikovabe280e2016-04-14 19:07:161934 "base/network_config_watcher_mac.cc",
wychenebb66ffb2017-04-05 07:19:371935 "base/network_config_watcher_mac.h",
kapishnikovabe280e2016-04-14 19:07:161936 "base/platform_mime_util_mac.mm",
svaldez2135be52016-04-20 16:34:531937 "cert/test_root_certs_mac.cc",
mattm1a07e632017-05-16 05:55:501938 "cert/x509_util_ios_and_mac.cc",
1939 "cert/x509_util_ios_and_mac.h",
kapishnikovabe280e2016-04-14 19:07:161940 "proxy/proxy_resolver_mac.cc",
wychenebb66ffb2017-04-05 07:19:371941 "proxy/proxy_resolver_mac.h",
kapishnikovabe280e2016-04-14 19:07:161942 "proxy/proxy_server_mac.cc",
1943 ]
1944
1945 sources -= [ "disk_cache/blockfile/file_posix.cc" ]
1946 }
1947
kapishnikovabe280e2016-04-14 19:07:161948 if (is_ios || is_mac) {
ckrasic73f7240b2017-01-24 00:06:451949 sources += [
1950 "base/mac/url_conversions.h",
1951 "base/mac/url_conversions.mm",
1952 ]
kapishnikovabe280e2016-04-14 19:07:161953 }
1954
1955 if (is_android) {
1956 deps += [ ":net_jni_headers" ]
1957
1958 # Add some Linux sources that were excluded by the filter, but which
1959 # are needed.
1960 net_unfiltered_sources += [
1961 "base/address_tracker_linux.cc",
1962 "base/address_tracker_linux.h",
1963 "base/network_interfaces_linux.cc",
1964 "base/network_interfaces_linux.h",
1965 "base/platform_mime_util_linux.cc",
1966 ]
1967 }
Sergey Ulanov49085572017-07-10 23:25:461968
1969 if (is_fuchsia) {
1970 sources += [
1971 "base/platform_mime_util_fuchsia.cc",
1972 "cert/cert_database_fuchsia.cc",
1973 "cert/test_root_certs_fuchsia.cc",
1974 ]
1975 }
kapishnikovabe280e2016-04-14 19:07:161976 } else {
1977 public_deps += [ "//native_client_sdk/src/libraries/nacl_io" ]
1978 }
xunjieli905496a2015-08-31 15:51:171979
Sergey Ulanov21dea152017-09-13 00:50:501980 if (enable_unix_sockets) {
1981 sources += [
1982 "socket/unix_domain_client_socket_posix.cc",
1983 "socket/unix_domain_client_socket_posix.h",
1984 "socket/unix_domain_server_socket_posix.cc",
1985 "socket/unix_domain_server_socket_posix.h",
1986 ]
1987 }
1988
xunjieli905496a2015-08-31 15:51:171989 # Add back some sources that were otherwise filtered out.
1990 set_sources_assignment_filter([])
kapishnikovabe280e2016-04-14 19:07:161991 sources += net_unfiltered_sources
xunjieli905496a2015-08-31 15:51:171992 set_sources_assignment_filter(sources_assignment_filter)
1993
1994 cflags = []
kapishnikovabe280e2016-04-14 19:07:161995 configs += net_configs
xunjieli905496a2015-08-31 15:51:171996
brettwa1228ebb2016-10-28 03:51:341997 public_deps += [
1998 ":features",
1999 "//url",
2000 ]
[email protected]4625ade2014-04-15 19:26:442001
2002 if (is_mac) {
[email protected]4625ade2014-04-15 19:26:442003 libs = [
rsesek02aa51c2016-05-11 02:13:572004 "CFNetwork.framework",
2005 "CoreServices.framework",
[email protected]ab9ce6e2014-04-17 20:33:192006 "Foundation.framework",
2007 "Security.framework",
2008 "SystemConfiguration.framework",
2009 "resolv",
[email protected]4625ade2014-04-15 19:26:442010 ]
2011 }
2012
2013 if (is_ios) {
[email protected]4625ade2014-04-15 19:26:442014 libs = [
[email protected]ab9ce6e2014-04-17 20:33:192015 "CFNetwork.framework",
2016 "MobileCoreServices.framework",
2017 "Security.framework",
2018 "SystemConfiguration.framework",
2019 "resolv",
[email protected]4625ade2014-04-15 19:26:442020 ]
xunjieli06d93982015-08-27 17:13:022021 }
xunjieli4c8c6922015-08-27 16:02:402022
jam5332a632016-04-01 22:36:052023 if (is_win) {
2024 libs = [
2025 "crypt32.lib",
2026 "dhcpcsvc.lib",
2027 "iphlpapi.lib",
davidben62399192016-09-13 01:54:222028 "ncrypt.lib",
jam5332a632016-04-01 22:36:052029 "rpcrt4.lib",
2030 "secur32.lib",
2031 "urlmon.lib",
2032 "winhttp.lib",
2033 ]
2034 }
2035
sergeyu99d83f92015-09-14 23:03:332036 if (!is_nacl) {
2037 if (!disable_file_support) {
ckrasic73f7240b2017-01-24 00:06:452038 sources += [
2039 "base/directory_lister.cc",
2040 "base/directory_lister.h",
2041 "base/directory_listing.cc",
2042 "base/directory_listing.h",
2043 "url_request/file_protocol_handler.cc",
2044 "url_request/file_protocol_handler.h",
2045 "url_request/url_request_file_dir_job.cc",
2046 "url_request/url_request_file_dir_job.h",
2047 "url_request/url_request_file_job.cc",
2048 "url_request/url_request_file_job.h",
2049 ]
sergeyu99d83f92015-09-14 23:03:332050 }
xunjieli06d93982015-08-27 17:13:022051
sergeyu99d83f92015-09-14 23:03:332052 if (!disable_ftp_support) {
ckrasic73f7240b2017-01-24 00:06:452053 sources += [
2054 "ftp/ftp_auth_cache.cc",
2055 "ftp/ftp_auth_cache.h",
2056 "ftp/ftp_ctrl_response_buffer.cc",
2057 "ftp/ftp_ctrl_response_buffer.h",
2058 "ftp/ftp_directory_listing_parser.cc",
2059 "ftp/ftp_directory_listing_parser.h",
2060 "ftp/ftp_directory_listing_parser_ls.cc",
2061 "ftp/ftp_directory_listing_parser_ls.h",
2062 "ftp/ftp_directory_listing_parser_vms.cc",
2063 "ftp/ftp_directory_listing_parser_vms.h",
2064 "ftp/ftp_directory_listing_parser_windows.cc",
2065 "ftp/ftp_directory_listing_parser_windows.h",
2066 "ftp/ftp_network_layer.cc",
2067 "ftp/ftp_network_layer.h",
2068 "ftp/ftp_network_session.cc",
2069 "ftp/ftp_network_session.h",
2070 "ftp/ftp_network_transaction.cc",
2071 "ftp/ftp_network_transaction.h",
2072 "ftp/ftp_request_info.h",
2073 "ftp/ftp_response_info.cc",
2074 "ftp/ftp_response_info.h",
2075 "ftp/ftp_server_type_histograms.cc",
2076 "ftp/ftp_server_type_histograms.h",
2077 "ftp/ftp_transaction.h",
2078 "ftp/ftp_transaction_factory.h",
2079 "ftp/ftp_util.cc",
2080 "ftp/ftp_util.h",
2081 "url_request/ftp_protocol_handler.cc",
2082 "url_request/ftp_protocol_handler.h",
2083 "url_request/url_request_ftp_job.cc",
2084 "url_request/url_request_ftp_job.h",
2085 ]
sergeyu99d83f92015-09-14 23:03:332086 }
xunjieli905496a2015-08-31 15:51:172087
sergeyu99d83f92015-09-14 23:03:332088 if (enable_websockets) {
ckrasic73f7240b2017-01-24 00:06:452089 sources += [
2090 "websockets/websocket_basic_handshake_stream.cc",
2091 "websockets/websocket_basic_handshake_stream.h",
2092 "websockets/websocket_basic_stream.cc",
2093 "websockets/websocket_basic_stream.h",
2094 "websockets/websocket_channel.cc",
2095 "websockets/websocket_channel.h",
2096 "websockets/websocket_deflate_parameters.cc",
2097 "websockets/websocket_deflate_parameters.h",
2098 "websockets/websocket_deflate_predictor.h",
2099 "websockets/websocket_deflate_predictor_impl.cc",
2100 "websockets/websocket_deflate_predictor_impl.h",
2101 "websockets/websocket_deflate_stream.cc",
2102 "websockets/websocket_deflate_stream.h",
2103 "websockets/websocket_deflater.cc",
2104 "websockets/websocket_deflater.h",
2105 "websockets/websocket_errors.cc",
2106 "websockets/websocket_errors.h",
mmenke392ec462017-03-23 18:49:352107 "websockets/websocket_event_interface.h",
ckrasic73f7240b2017-01-24 00:06:452108 "websockets/websocket_extension.cc",
2109 "websockets/websocket_extension.h",
2110 "websockets/websocket_extension_parser.cc",
2111 "websockets/websocket_extension_parser.h",
2112 "websockets/websocket_frame.cc",
2113 "websockets/websocket_frame.h",
2114 "websockets/websocket_frame_parser.cc",
2115 "websockets/websocket_frame_parser.h",
2116 "websockets/websocket_handshake_challenge.cc",
2117 "websockets/websocket_handshake_challenge.h",
2118 "websockets/websocket_handshake_constants.cc",
2119 "websockets/websocket_handshake_constants.h",
2120 "websockets/websocket_handshake_request_info.cc",
2121 "websockets/websocket_handshake_request_info.h",
2122 "websockets/websocket_handshake_response_info.cc",
2123 "websockets/websocket_handshake_response_info.h",
2124 "websockets/websocket_handshake_stream_base.h",
2125 "websockets/websocket_handshake_stream_create_helper.cc",
2126 "websockets/websocket_handshake_stream_create_helper.h",
2127 "websockets/websocket_inflater.cc",
2128 "websockets/websocket_inflater.h",
2129 "websockets/websocket_stream.cc",
2130 "websockets/websocket_stream.h",
2131 ]
sergeyu99d83f92015-09-14 23:03:332132 }
xunjieli905496a2015-08-31 15:51:172133
sergeyu99d83f92015-09-14 23:03:332134 # ICU support.
kapishnikovabe280e2016-04-14 19:07:162135 if (use_platform_icu_alternatives) {
2136 if (is_android) {
2137 # Use ICU alternative on Android.
torned8b7d9252016-08-04 19:41:452138 sources += [ "base/net_string_util_icu_alternatives_android.cc" ]
kapishnikovabe280e2016-04-14 19:07:162139 deps += [ ":net_jni_headers" ]
2140 } else if (is_ios) {
2141 # Use ICU alternative on iOS.
2142 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ]
2143 } else {
2144 assert(false,
2145 "ICU alternative is not implemented for platform: " + target_os)
2146 }
2147 } else {
2148 # Use ICU.
2149 deps += [
2150 "//base:i18n",
2151 "//third_party/icu",
2152 ]
2153 sources += [
2154 "base/filename_util_icu.cc",
2155 "base/net_string_util_icu.cc",
2156 ]
2157 }
eustasfbec9132015-12-30 14:56:512158
2159 # Brotli support.
kapishnikovabe280e2016-04-14 19:07:162160 if (!disable_brotli_filter) {
thakisb8590c92017-03-23 18:14:532161 sources += [
2162 "filter/brotli_source_stream.cc",
2163 "filter/brotli_source_stream.h",
2164 ]
eustas6ed4c412016-12-14 13:53:342165 deps += [ "//third_party/brotli:dec" ]
kapishnikovabe280e2016-04-14 19:07:162166 } else {
xunjieli084a9292016-09-23 18:15:042167 sources += [ "filter/brotli_source_stream_disabled.cc" ]
kapishnikovabe280e2016-04-14 19:07:162168 }
[email protected]85191ed2014-05-15 00:41:492169 }
[email protected]4625ade2014-04-15 19:26:442170}
2171
2172grit("net_resources") {
2173 source = "base/net_resources.grd"
[email protected]b89c53842014-07-23 16:32:322174 outputs = [
2175 "grit/net_resources.h",
2176 "net_resources.pak",
[email protected]b89c53842014-07-23 16:32:322177 ]
[email protected]4625ade2014-04-15 19:26:442178}
2179
rtennetib6f1c0d2015-04-03 17:52:062180proto_library("net_quic_proto") {
kapishnikovabe280e2016-04-14 19:07:162181 visibility = [ ":net" ]
brettw2e7db0a2015-04-24 22:59:172182
rtennetib6f1c0d2015-04-03 17:52:062183 sources = [
rchd4db7c152016-07-29 21:58:122184 "quic/core/proto/cached_network_parameters.proto",
2185 "quic/core/proto/source_address_token.proto",
rtennetib6f1c0d2015-04-03 17:52:062186 ]
2187 cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:"
2188 cc_include = "net/base/net_export.h"
brettw7ef80452016-06-30 00:43:182189 component_build_force_source_set = true
rtennetib6f1c0d2015-04-03 17:52:062190
2191 defines = [ "NET_IMPLEMENTATION" ]
2192
2193 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
2194}
2195
ckrasic73f7240b2017-01-24 00:06:452196if (!is_proto_quic) {
2197 static_library("extras") {
2198 sources = [
2199 "extras/sqlite/cookie_crypto_delegate.h",
2200 "extras/sqlite/sqlite_channel_id_store.cc",
2201 "extras/sqlite/sqlite_channel_id_store.h",
2202 "extras/sqlite/sqlite_persistent_cookie_store.cc",
2203 "extras/sqlite/sqlite_persistent_cookie_store.h",
2204 ]
2205 configs += [ "//build/config/compiler:wexit_time_destructors" ]
2206 deps = [
2207 ":net",
2208 "//base",
2209 "//sql:sql",
2210 ]
2211 }
mef327a8e42014-08-29 17:10:032212}
2213
[email protected]8a3f8242014-06-05 18:05:122214static_library("http_server") {
[email protected]4625ade2014-04-15 19:26:442215 sources = [
2216 "server/http_connection.cc",
2217 "server/http_connection.h",
2218 "server/http_server.cc",
2219 "server/http_server.h",
2220 "server/http_server_request_info.cc",
2221 "server/http_server_request_info.h",
2222 "server/http_server_response_info.cc",
2223 "server/http_server_response_info.h",
2224 "server/web_socket.cc",
2225 "server/web_socket.h",
dgozmana6e70092014-12-12 14:46:212226 "server/web_socket_encoder.cc",
2227 "server/web_socket_encoder.h",
[email protected]4625ade2014-04-15 19:26:442228 ]
jambc6cc8e2014-11-14 17:56:292229 configs += [
brettwd1c719a2015-02-19 23:17:042230 "//build/config/compiler:no_size_t_to_int_warning",
jambc6cc8e2014-11-14 17:56:292231 "//build/config/compiler:wexit_time_destructors",
jambc6cc8e2014-11-14 17:56:292232 ]
[email protected]4625ade2014-04-15 19:26:442233 deps = [
2234 ":net",
2235 "//base",
2236 ]
2237}
2238
sdefresne3001f172016-03-16 10:30:032239if (!is_ios) {
2240 executable("dump_cache") {
2241 testonly = true
2242 sources = [
2243 "tools/dump_cache/dump_cache.cc",
2244 "tools/dump_cache/dump_files.cc",
2245 "tools/dump_cache/dump_files.h",
2246 ]
[email protected]4625ade2014-04-15 19:26:442247
sdefresne3001f172016-03-16 10:30:032248 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2249 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312250
sdefresne3001f172016-03-16 10:30:032251 deps = [
2252 ":net",
2253 ":test_support",
2254 "//base",
thomasanderson84fa8b02017-05-18 23:38:472255 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072256 "//build/win:default_exe_manifest",
sdefresne3001f172016-03-16 10:30:032257 ]
2258 }
[email protected]8603c5de2014-04-16 20:34:312259}
2260
eroman12951312017-05-05 22:55:512261# This section can be updated from globbing rules using:
2262# python ./tools/update_ios_bundle_data.py
sdefresneb0a31642016-03-18 11:04:452263bundle_data("test_support_bundle_data") {
sdefresne04f91142016-04-21 08:41:592264 visibility = [ ":test_support" ]
sdefresneb0a31642016-03-18 11:04:452265 testonly = true
ckrasic73f7240b2017-01-24 00:06:452266 sources = [
zhongyid7dd2db12017-04-14 17:01:252267 "data/quic_http_response_cache_data_with_push/test.example.com/favicon.ico",
2268 "data/quic_http_response_cache_data_with_push/test.example.com/index.html",
2269 "data/quic_http_response_cache_data_with_push/test.example.com/index2.html",
2270 "data/quic_http_response_cache_data_with_push/test.example.com/kitten-1.jpg",
ckrasic73f7240b2017-01-24 00:06:452271 "data/ssl/certificates/1024-rsa-ee-by-1024-rsa-intermediate.pem",
2272 "data/ssl/certificates/1024-rsa-ee-by-2048-rsa-intermediate.pem",
2273 "data/ssl/certificates/1024-rsa-ee-by-768-rsa-intermediate.pem",
2274 "data/ssl/certificates/1024-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2275 "data/ssl/certificates/1024-rsa-intermediate.pem",
2276 "data/ssl/certificates/10_year_validity.pem",
2277 "data/ssl/certificates/11_year_validity.pem",
2278 "data/ssl/certificates/2029_globalsign_com_cert.pem",
2279 "data/ssl/certificates/2048-rsa-ee-by-1024-rsa-intermediate.pem",
2280 "data/ssl/certificates/2048-rsa-ee-by-2048-rsa-intermediate.pem",
2281 "data/ssl/certificates/2048-rsa-ee-by-768-rsa-intermediate.pem",
2282 "data/ssl/certificates/2048-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2283 "data/ssl/certificates/2048-rsa-intermediate.pem",
2284 "data/ssl/certificates/2048-rsa-root.pem",
2285 "data/ssl/certificates/39_months_after_2015_04.pem",
2286 "data/ssl/certificates/40_months_after_2015_04.pem",
2287 "data/ssl/certificates/60_months_after_2012_07.pem",
2288 "data/ssl/certificates/61_months_after_2012_07.pem",
2289 "data/ssl/certificates/768-rsa-ee-by-1024-rsa-intermediate.pem",
2290 "data/ssl/certificates/768-rsa-ee-by-2048-rsa-intermediate.pem",
2291 "data/ssl/certificates/768-rsa-ee-by-768-rsa-intermediate.pem",
2292 "data/ssl/certificates/768-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2293 "data/ssl/certificates/768-rsa-intermediate.pem",
eroman12951312017-05-05 22:55:512294 "data/ssl/certificates/README",
ckrasic73f7240b2017-01-24 00:06:452295 "data/ssl/certificates/aia-cert.pem",
2296 "data/ssl/certificates/aia-intermediate.der",
2297 "data/ssl/certificates/aia-root.pem",
2298 "data/ssl/certificates/bad_validity.pem",
2299 "data/ssl/certificates/client-empty-password.p12",
2300 "data/ssl/certificates/client-nokey.p12",
2301 "data/ssl/certificates/client-null-password.p12",
2302 "data/ssl/certificates/client.p12",
2303 "data/ssl/certificates/client_1.key",
2304 "data/ssl/certificates/client_1.pem",
2305 "data/ssl/certificates/client_1.pk8",
2306 "data/ssl/certificates/client_1_ca.pem",
2307 "data/ssl/certificates/client_2.key",
2308 "data/ssl/certificates/client_2.pem",
2309 "data/ssl/certificates/client_2.pk8",
2310 "data/ssl/certificates/client_2_ca.pem",
2311 "data/ssl/certificates/client_3.key",
2312 "data/ssl/certificates/client_3.pem",
2313 "data/ssl/certificates/client_3.pk8",
2314 "data/ssl/certificates/client_3_ca.pem",
2315 "data/ssl/certificates/client_4.key",
2316 "data/ssl/certificates/client_4.pem",
2317 "data/ssl/certificates/client_4.pk8",
2318 "data/ssl/certificates/client_4_ca.pem",
2319 "data/ssl/certificates/client_5.key",
2320 "data/ssl/certificates/client_5.pem",
2321 "data/ssl/certificates/client_5.pk8",
2322 "data/ssl/certificates/client_5_ca.pem",
2323 "data/ssl/certificates/client_6.key",
2324 "data/ssl/certificates/client_6.pem",
2325 "data/ssl/certificates/client_6.pk8",
2326 "data/ssl/certificates/client_6_ca.pem",
2327 "data/ssl/certificates/client_root_ca.pem",
ckrasic73f7240b2017-01-24 00:06:452328 "data/ssl/certificates/crit-codeSigning-chain.pem",
2329 "data/ssl/certificates/crlset_by_intermediate_serial.raw",
2330 "data/ssl/certificates/crlset_by_leaf_spki.raw",
2331 "data/ssl/certificates/crlset_by_root_serial.raw",
2332 "data/ssl/certificates/cross-signed-leaf.pem",
2333 "data/ssl/certificates/cross-signed-root-md5.pem",
2334 "data/ssl/certificates/cross-signed-root-sha256.pem",
2335 "data/ssl/certificates/ct-test-embedded-cert.pem",
2336 "data/ssl/certificates/ct-test-embedded-with-intermediate-chain.pem",
2337 "data/ssl/certificates/ct-test-embedded-with-intermediate-preca-chain.pem",
2338 "data/ssl/certificates/ct-test-embedded-with-preca-chain.pem",
2339 "data/ssl/certificates/diginotar_cyber_ca.pem",
2340 "data/ssl/certificates/diginotar_pkioverheid.pem",
2341 "data/ssl/certificates/diginotar_pkioverheid_g2.pem",
2342 "data/ssl/certificates/diginotar_public_ca_2025.pem",
2343 "data/ssl/certificates/diginotar_root_ca.pem",
2344 "data/ssl/certificates/diginotar_services_1024_ca.pem",
2345 "data/ssl/certificates/dod_ca_13_cert.der",
2346 "data/ssl/certificates/dod_ca_17_cert.der",
2347 "data/ssl/certificates/dod_root_ca_2_cert.der",
2348 "data/ssl/certificates/duplicate_cn_1.p12",
2349 "data/ssl/certificates/duplicate_cn_1.pem",
2350 "data/ssl/certificates/duplicate_cn_2.p12",
2351 "data/ssl/certificates/duplicate_cn_2.pem",
2352 "data/ssl/certificates/eku-test-root.pem",
2353 "data/ssl/certificates/empty_subject_cert.der",
2354 "data/ssl/certificates/expired_cert.pem",
2355 "data/ssl/certificates/explicit-policy-chain.pem",
2356 "data/ssl/certificates/foaf.me.chromium-test-cert.der",
2357 "data/ssl/certificates/google.binary.p7b",
2358 "data/ssl/certificates/google.chain.pem",
2359 "data/ssl/certificates/google.pem_cert.p7b",
2360 "data/ssl/certificates/google.pem_pkcs7.p7b",
2361 "data/ssl/certificates/google.single.der",
2362 "data/ssl/certificates/google.single.pem",
2363 "data/ssl/certificates/google_diginotar.pem",
2364 "data/ssl/certificates/googlenew.chain.pem",
2365 "data/ssl/certificates/intermediate_ca_cert.pem",
2366 "data/ssl/certificates/invalid_key_usage_cert.der",
2367 "data/ssl/certificates/large_key.pem",
2368 "data/ssl/certificates/localhost_cert.pem",
2369 "data/ssl/certificates/mit.davidben.der",
2370 "data/ssl/certificates/multi-root-A-by-B.pem",
2371 "data/ssl/certificates/multi-root-B-by-C.pem",
2372 "data/ssl/certificates/multi-root-B-by-F.pem",
2373 "data/ssl/certificates/multi-root-BFE.keychain",
2374 "data/ssl/certificates/multi-root-C-by-D.pem",
2375 "data/ssl/certificates/multi-root-C-by-E.pem",
2376 "data/ssl/certificates/multi-root-D-by-D.pem",
2377 "data/ssl/certificates/multi-root-E-by-E.pem",
2378 "data/ssl/certificates/multi-root-F-by-E.pem",
2379 "data/ssl/certificates/multi-root-chain1.pem",
2380 "data/ssl/certificates/multi-root-chain2.pem",
2381 "data/ssl/certificates/multi-root-crlset-C.raw",
2382 "data/ssl/certificates/multi-root-crlset-CD-and-FE.raw",
2383 "data/ssl/certificates/multi-root-crlset-D-and-E.raw",
2384 "data/ssl/certificates/multi-root-crlset-E.raw",
2385 "data/ssl/certificates/multi-root-crlset-unrelated.raw",
eroman12951312017-05-05 22:55:512386 "data/ssl/certificates/multi-root.keychain",
ckrasic73f7240b2017-01-24 00:06:452387 "data/ssl/certificates/multivalue_rdn.pem",
2388 "data/ssl/certificates/name_constraint_bad.pem",
2389 "data/ssl/certificates/name_constraint_good.pem",
2390 "data/ssl/certificates/ndn.ca.crt",
2391 "data/ssl/certificates/nist.der",
2392 "data/ssl/certificates/no_subject_common_name_cert.pem",
2393 "data/ssl/certificates/non-crit-codeSigning-chain.pem",
2394 "data/ssl/certificates/ocsp-test-root.pem",
2395 "data/ssl/certificates/ok_cert.pem",
2396 "data/ssl/certificates/ok_cert_by_intermediate.pem",
2397 "data/ssl/certificates/post_june_2016.pem",
2398 "data/ssl/certificates/pre_br_validity_bad_121.pem",
2399 "data/ssl/certificates/pre_br_validity_bad_2020.pem",
2400 "data/ssl/certificates/pre_br_validity_ok.pem",
2401 "data/ssl/certificates/pre_june_2016.pem",
2402 "data/ssl/certificates/prime256v1-ecdsa-ee-by-1024-rsa-intermediate.pem",
2403 "data/ssl/certificates/prime256v1-ecdsa-ee-by-2048-rsa-intermediate.pem",
2404 "data/ssl/certificates/prime256v1-ecdsa-ee-by-768-rsa-intermediate.pem",
2405 "data/ssl/certificates/prime256v1-ecdsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2406 "data/ssl/certificates/prime256v1-ecdsa-intermediate.pem",
2407 "data/ssl/certificates/punycodetest.pem",
2408 "data/ssl/certificates/quic_chain.crt",
2409 "data/ssl/certificates/quic_intermediate.crt",
2410 "data/ssl/certificates/quic_intermediate.key",
2411 "data/ssl/certificates/quic_root.crt",
2412 "data/ssl/certificates/quic_root.key",
2413 "data/ssl/certificates/quic_test.example.com.crt",
2414 "data/ssl/certificates/quic_test.example.com.key",
2415 "data/ssl/certificates/quic_test.example.com.key.pkcs8",
eroman12951312017-05-05 22:55:512416 "data/ssl/certificates/quic_test.example.com.key.pkcs8.pem",
ckrasic73f7240b2017-01-24 00:06:452417 "data/ssl/certificates/quic_test.example.com.key.sct",
2418 "data/ssl/certificates/quic_test_ecc.example.com.crt",
2419 "data/ssl/certificates/quic_test_ecc.example.com.key",
2420 "data/ssl/certificates/quic_test_ecc.example.com.sct",
2421 "data/ssl/certificates/redundant-server-chain.pem",
2422 "data/ssl/certificates/redundant-validated-chain-root.pem",
2423 "data/ssl/certificates/redundant-validated-chain.pem",
2424 "data/ssl/certificates/reject_intranet_hosts.pem",
2425 "data/ssl/certificates/root_ca_cert.pem",
2426 "data/ssl/certificates/salesforce_com_test.pem",
2427 "data/ssl/certificates/self-signed-invalid-name.pem",
2428 "data/ssl/certificates/self-signed-invalid-sig.pem",
2429 "data/ssl/certificates/sha1_2016.pem",
2430 "data/ssl/certificates/sha1_dec_2015.pem",
2431 "data/ssl/certificates/sha1_jan_2016.pem",
2432 "data/ssl/certificates/spdy_pooling.pem",
2433 "data/ssl/certificates/start_after_expiry.pem",
2434 "data/ssl/certificates/subjectAltName_sanity_check.pem",
elawrencec7484f52017-04-05 21:46:422435 "data/ssl/certificates/subjectAltName_www_example_com.pem",
ckrasic73f7240b2017-01-24 00:06:452436 "data/ssl/certificates/thawte.single.pem",
2437 "data/ssl/certificates/tls_feature_extension.pem",
2438 "data/ssl/certificates/tripadvisor-verisign-chain.pem",
eroman12951312017-05-05 22:55:512439 "data/ssl/certificates/trustcenter.websecurity.symantec.com.pem",
ckrasic73f7240b2017-01-24 00:06:452440 "data/ssl/certificates/twitter-chain.pem",
2441 "data/ssl/certificates/unescaped.pem",
2442 "data/ssl/certificates/unittest.key.bin",
2443 "data/ssl/certificates/unittest.originbound.der",
2444 "data/ssl/certificates/unittest.originbound.key.der",
2445 "data/ssl/certificates/unittest.selfsigned.der",
2446 "data/ssl/certificates/verisign_class3_g5_crosssigned-trusted.keychain",
2447 "data/ssl/certificates/verisign_class3_g5_crosssigned.pem",
2448 "data/ssl/certificates/verisign_intermediate_ca_2011.pem",
2449 "data/ssl/certificates/verisign_intermediate_ca_2016.pem",
2450 "data/ssl/certificates/weak_digest_md2_ee.pem",
2451 "data/ssl/certificates/weak_digest_md2_intermediate.pem",
2452 "data/ssl/certificates/weak_digest_md2_root.pem",
2453 "data/ssl/certificates/weak_digest_md4_ee.pem",
2454 "data/ssl/certificates/weak_digest_md4_intermediate.pem",
2455 "data/ssl/certificates/weak_digest_md4_root.pem",
2456 "data/ssl/certificates/weak_digest_md5_ee.pem",
2457 "data/ssl/certificates/weak_digest_md5_intermediate.pem",
2458 "data/ssl/certificates/weak_digest_md5_root.pem",
2459 "data/ssl/certificates/weak_digest_sha1_ee.pem",
2460 "data/ssl/certificates/weak_digest_sha1_intermediate.pem",
2461 "data/ssl/certificates/weak_digest_sha1_root.pem",
2462 "data/ssl/certificates/websocket_cacert.pem",
2463 "data/ssl/certificates/websocket_client_cert.p12",
2464 "data/ssl/certificates/wildcard.pem",
ckrasic73f7240b2017-01-24 00:06:452465 "data/ssl/certificates/www_us_army_mil_cert.der",
2466 "data/ssl/certificates/x509_verify_results.chain.pem",
2467 ]
sdefresneb0a31642016-03-18 11:04:452468 outputs = [
2469 "{{bundle_resources_dir}}/" +
2470 "{{source_root_relative_dir}}/{{source_file_part}}",
2471 ]
2472}
2473
brettw3871f522016-07-14 22:08:342474static_library("test_support") {
Brett Wilson8f80ad0b2014-09-08 19:50:242475 testonly = true
[email protected]8603c5de2014-04-16 20:34:312476 sources = [
[email protected]8603c5de2014-04-16 20:34:312477 "base/load_timing_info_test_util.cc",
2478 "base/load_timing_info_test_util.h",
2479 "base/mock_file_stream.cc",
2480 "base/mock_file_stream.h",
2481 "base/test_completion_callback.cc",
2482 "base/test_completion_callback.h",
[email protected]8603c5de2014-04-16 20:34:312483 "cert/mock_cert_verifier.cc",
2484 "cert/mock_cert_verifier.h",
ryanchung987b2ff2016-02-19 00:17:122485 "cert/mock_client_cert_verifier.cc",
2486 "cert/mock_client_cert_verifier.h",
[email protected]8603c5de2014-04-16 20:34:312487 "cookies/cookie_monster_store_test.cc",
2488 "cookies/cookie_monster_store_test.h",
2489 "cookies/cookie_store_test_callbacks.cc",
2490 "cookies/cookie_store_test_callbacks.h",
2491 "cookies/cookie_store_test_helpers.cc",
2492 "cookies/cookie_store_test_helpers.h",
drogerfd8b2772015-12-04 14:34:562493 "cookies/cookie_store_unittest.h",
[email protected]8603c5de2014-04-16 20:34:312494 "disk_cache/disk_cache_test_base.cc",
2495 "disk_cache/disk_cache_test_base.h",
2496 "disk_cache/disk_cache_test_util.cc",
2497 "disk_cache/disk_cache_test_util.h",
2498 "dns/dns_test_util.cc",
2499 "dns/dns_test_util.h",
2500 "dns/mock_host_resolver.cc",
2501 "dns/mock_host_resolver.h",
2502 "dns/mock_mdns_socket_factory.cc",
2503 "dns/mock_mdns_socket_factory.h",
Matt Menke1dd3f2f2017-08-09 17:10:062504 "filter/filter_source_stream_test_util.cc",
2505 "filter/filter_source_stream_test_util.h",
xunjieli6cc8b84b2016-11-08 15:23:392506 "filter/mock_source_stream.cc",
2507 "filter/mock_source_stream.h",
zhongyi3c412982016-06-18 00:34:302508 "http/http_stream_factory_test_util.cc",
2509 "http/http_stream_factory_test_util.h",
[email protected]8a3f8242014-06-05 18:05:122510 "http/http_transaction_test_util.cc",
2511 "http/http_transaction_test_util.h",
vishal.b62985ca92015-04-17 08:45:512512 "log/test_net_log.cc",
2513 "log/test_net_log.h",
mmenke43758e62015-05-04 21:09:462514 "log/test_net_log_entry.cc",
2515 "log/test_net_log_entry.h",
mmenke0034c542015-05-05 22:34:592516 "log/test_net_log_util.cc",
mmenke43758e62015-05-04 21:09:462517 "log/test_net_log_util.h",
tbansal785a6ab2016-10-10 20:19:282518 "nqe/network_quality_estimator_test_util.cc",
2519 "nqe/network_quality_estimator_test_util.h",
[email protected]8603c5de2014-04-16 20:34:312520 "proxy/mock_proxy_resolver.cc",
2521 "proxy/mock_proxy_resolver.h",
2522 "proxy/mock_proxy_script_fetcher.cc",
2523 "proxy/mock_proxy_script_fetcher.h",
2524 "proxy/proxy_config_service_common_unittest.cc",
2525 "proxy/proxy_config_service_common_unittest.h",
2526 "socket/socket_test_util.cc",
2527 "socket/socket_test_util.h",
bnc8f8f7d302017-04-24 18:08:062528 "spdy/chromium/spdy_test_util_common.cc",
2529 "spdy/chromium/spdy_test_util_common.h",
mattm436ccfe2017-06-19 20:24:082530 "ssl/client_cert_identity_test_util.cc",
2531 "ssl/client_cert_identity_test_util.h",
2532 "ssl/ssl_private_key_test_util.cc",
2533 "ssl/ssl_private_key_test_util.h",
[email protected]8603c5de2014-04-16 20:34:312534 "test/cert_test_util.cc",
2535 "test/cert_test_util.h",
[email protected]83e1ae32014-07-18 10:57:072536 "test/cert_test_util_nss.cc",
nharper2e171cf2015-06-01 20:29:232537 "test/channel_id_test_util.cc",
2538 "test/channel_id_test_util.h",
[email protected]8603c5de2014-04-16 20:34:312539 "test/ct_test_util.cc",
2540 "test/ct_test_util.h",
svaldez7d25c562015-10-30 19:09:452541 "test/embedded_test_server/default_handlers.cc",
2542 "test/embedded_test_server/default_handlers.h",
[email protected]8603c5de2014-04-16 20:34:312543 "test/embedded_test_server/embedded_test_server.cc",
2544 "test/embedded_test_server/embedded_test_server.h",
mmenke392ec462017-03-23 18:49:352545 "test/embedded_test_server/embedded_test_server_connection_listener.h",
[email protected]8603c5de2014-04-16 20:34:312546 "test/embedded_test_server/http_connection.cc",
2547 "test/embedded_test_server/http_connection.h",
2548 "test/embedded_test_server/http_request.cc",
2549 "test/embedded_test_server/http_request.h",
2550 "test/embedded_test_server/http_response.cc",
2551 "test/embedded_test_server/http_response.h",
svaldez6e7e82a22015-10-28 19:39:532552 "test/embedded_test_server/request_handler_util.cc",
2553 "test/embedded_test_server/request_handler_util.h",
mmenke93be9ca2017-05-23 16:29:132554 "test/embedded_test_server/simple_connection_listener.cc",
2555 "test/embedded_test_server/simple_connection_listener.h",
sammc6ac3fe52015-02-25 06:00:282556 "test/event_waiter.h",
johnme36ae5802016-05-10 15:46:242557 "test/gtest_util.h",
mattmc1ec9d92017-05-25 01:40:302558 "test/keychain_test_util_mac.cc",
2559 "test/keychain_test_util_mac.h",
[email protected]8603c5de2014-04-16 20:34:312560 "test/net_test_suite.cc",
2561 "test/net_test_suite.h",
johnme36ae5802016-05-10 15:46:242562 "test/scoped_disable_exit_on_dfatal.cc",
2563 "test/scoped_disable_exit_on_dfatal.h",
brettw6315e032015-11-27 18:38:362564 "test/test_certificate_data.h",
rsleevia69c79a2016-06-22 03:28:432565 "test/test_data_directory.cc",
2566 "test/test_data_directory.h",
sherouk51b4b098b2015-08-10 09:00:432567 "test/url_request/ssl_certificate_error_job.cc",
2568 "test/url_request/ssl_certificate_error_job.h",
Brett Wilson32ce17a2014-11-10 17:45:302569 "test/url_request/url_request_failed_job.cc",
2570 "test/url_request/url_request_failed_job.h",
xunjieli5d1f9892016-05-18 20:44:342571 "test/url_request/url_request_hanging_read_job.cc",
2572 "test/url_request/url_request_hanging_read_job.h",
mef3e826cf2014-12-13 18:40:402573 "test/url_request/url_request_mock_data_job.cc",
2574 "test/url_request/url_request_mock_data_job.h",
jam8e45cd72015-01-20 16:33:442575 "test/url_request/url_request_slow_download_job.cc",
2576 "test/url_request/url_request_slow_download_job.h",
rhalavatia9b551d2017-02-09 12:03:002577 "traffic_annotation/network_traffic_annotation_test_helper.h",
[email protected]8603c5de2014-04-16 20:34:312578 "url_request/test_url_fetcher_factory.cc",
2579 "url_request/test_url_fetcher_factory.h",
2580 "url_request/url_request_test_util.cc",
2581 "url_request/url_request_test_util.h",
2582 ]
2583
brettwbc8b2a22015-07-28 18:24:422584 configs += [
2585 "//build/config:precompiled_headers",
2586
2587 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2588 "//build/config/compiler:no_size_t_to_int_warning",
2589 ]
[email protected]8603c5de2014-04-16 20:34:312590
Brett Wilsone53895272014-09-23 23:41:462591 public_deps = [
rhalavatia9b551d2017-02-09 12:03:002592 ":traffic_annotation",
[email protected]8603c5de2014-04-16 20:34:312593 "//base",
2594 "//base/test:test_support",
[email protected]22fe91d2014-08-12 17:07:122595 "//crypto",
[email protected]59ff2d42014-04-22 22:25:232596 "//net",
[email protected]8603c5de2014-04-16 20:34:312597 "//net/tools/tld_cleanup",
2598 "//testing/gmock",
2599 "//testing/gtest",
2600 "//url",
2601 ]
2602
Matt Menke1dd3f2f2017-08-09 17:10:062603 deps = [
2604 "//third_party/zlib",
2605 ]
sdefresne04f91142016-04-21 08:41:592606
jbudorick944eb922016-06-20 15:38:302607 data = [
2608 "data/",
2609 ]
2610
rsesek7d4ab4bc2016-07-22 17:35:132611 if (is_ios) {
2612 deps += [ ":test_support_bundle_data" ]
2613 } else {
jamb533b7e2015-03-04 17:12:052614 public_deps += [ "//third_party/protobuf:py_proto" ]
2615 }
2616
svaldez2135be52016-04-20 16:34:532617 if (use_nss_certs) {
scottmg34fb7e52014-12-03 23:27:242618 public_deps += [ "//crypto:platform" ]
[email protected]8603c5de2014-04-16 20:34:312619 }
2620
Sergey Ulanovec1d3de2017-09-19 19:27:472621 if (!is_ios) {
sherouk3eee4a82015-09-01 10:42:332622 sources += [
Sergey Ulanovec1d3de2017-09-19 19:27:472623 "test/spawned_test_server/base_test_server.cc",
2624 "test/spawned_test_server/base_test_server.h",
2625 "test/spawned_test_server/spawned_test_server.h",
2626 ]
2627
2628 if (use_remote_test_server) {
2629 sources += [
2630 "test/spawned_test_server/remote_test_server.cc",
2631 "test/spawned_test_server/remote_test_server.h",
2632 "test/spawned_test_server/remote_test_server_config.cc",
2633 "test/spawned_test_server/remote_test_server_config.h",
2634 "test/spawned_test_server/remote_test_server_proxy.cc",
2635 "test/spawned_test_server/remote_test_server_proxy.h",
2636 "test/spawned_test_server/remote_test_server_spawner_request.cc",
2637 "test/spawned_test_server/remote_test_server_spawner_request.h",
2638 ]
2639 } else {
2640 sources += [
2641 "test/spawned_test_server/local_test_server.cc",
2642 "test/spawned_test_server/local_test_server.h",
2643 "test/spawned_test_server/local_test_server_posix.cc",
2644 "test/spawned_test_server/local_test_server_win.cc",
2645 ]
2646 }
2647 }
2648
2649 if (enable_python_utils) {
2650 sources += [
2651 "test/python_utils.cc",
2652 "test/python_utils.h",
[email protected]8603c5de2014-04-16 20:34:312653 ]
2654 }
2655
2656 if (use_v8_in_net) {
Brett Wilsone53895272014-09-23 23:41:462657 public_deps += [ ":net_with_v8" ]
[email protected]8603c5de2014-04-16 20:34:312658 }
2659
2660 if (!enable_mdns) {
2661 sources -= [
2662 "dns/mock_mdns_socket_factory.cc",
2663 "dns/mock_mdns_socket_factory.h",
2664 ]
2665 }
2666
davidben15d69d482014-09-29 18:24:082667 if (!use_nss_certs) {
scottmg34fb7e52014-12-03 23:27:242668 sources -= [ "test/cert_test_util_nss.cc" ]
[email protected]83e1ae32014-07-18 10:57:072669 }
xunjielia6888202015-04-14 21:34:252670
2671 if (!disable_file_support) {
2672 sources += [
2673 "test/url_request/url_request_mock_http_job.cc",
2674 "test/url_request/url_request_mock_http_job.h",
2675 "url_request/test_url_request_interceptor.cc",
2676 "url_request/test_url_request_interceptor.h",
2677 ]
2678 }
[email protected]8603c5de2014-04-16 20:34:312679}
2680
2681if (use_v8_in_net) {
2682 component("net_with_v8") {
2683 sources = [
2684 "proxy/proxy_resolver_v8.cc",
2685 "proxy/proxy_resolver_v8.h",
2686 "proxy/proxy_resolver_v8_tracing.cc",
2687 "proxy/proxy_resolver_v8_tracing.h",
sammcf2d1ea02015-06-29 02:58:472688 "proxy/proxy_resolver_v8_tracing_wrapper.cc",
2689 "proxy/proxy_resolver_v8_tracing_wrapper.h",
[email protected]8603c5de2014-04-16 20:34:312690 "proxy/proxy_service_v8.cc",
2691 "proxy/proxy_service_v8.h",
2692 ]
2693
2694 defines = [ "NET_IMPLEMENTATION" ]
dprankea22b0732015-10-21 21:15:112695
[email protected]8603c5de2014-04-16 20:34:312696 configs += [
brettwd1c719a2015-02-19 23:17:042697 "//build/config/compiler:no_size_t_to_int_warning",
[email protected]8603c5de2014-04-16 20:34:312698 "//build/config/compiler:wexit_time_destructors",
dprankea22b0732015-10-21 21:15:112699 "//v8:external_startup_data",
[email protected]8603c5de2014-04-16 20:34:312700 ]
2701
Brett Wilsone53895272014-09-23 23:41:462702 public_deps = [
xunjieli0b7f5b62016-12-06 20:43:482703 ":constants",
[email protected]8603c5de2014-04-16 20:34:312704 ":net",
Brett Wilsone53895272014-09-23 23:41:462705 ]
2706 deps = [
[email protected]8603c5de2014-04-16 20:34:312707 "//base",
2708 "//gin",
2709 "//url",
2710 "//v8",
2711 ]
2712 }
2713}
2714
mmenke93be9ca2017-05-23 16:29:132715if (enable_net_mojo) {
amistry7e6ebfdc82015-02-13 04:19:112716 source_set("net_browser_services") {
2717 sources = [
2718 "dns/mojo_host_resolver_impl.cc",
2719 "dns/mojo_host_resolver_impl.h",
sammc1d5df4d2015-05-05 05:06:172720 "proxy/mojo_proxy_resolver_factory.h",
eromandcacef22015-06-01 19:36:352721 "proxy/proxy_resolver_factory_mojo.cc",
2722 "proxy/proxy_resolver_factory_mojo.h",
amistry6e1ed1b2015-03-12 05:24:012723 "proxy/proxy_service_mojo.cc",
2724 "proxy/proxy_service_mojo.h",
mmenkee2ad9922017-06-08 20:27:362725 "url_request/url_request_context_builder_mojo.cc",
2726 "url_request/url_request_context_builder_mojo.h",
amistry7e6ebfdc82015-02-13 04:19:112727 ]
2728
2729 public_deps = [
scottmg5bf34202017-01-26 05:49:022730 ":net",
brettwbc44c0a92015-02-20 22:30:392731 "//base",
rockot85dce0862015-11-13 01:33:592732 "//mojo/public/cpp/bindings",
amistry7e6ebfdc82015-02-13 04:19:112733 "//net/interfaces",
amistry7e6ebfdc82015-02-13 04:19:112734 ]
2735 }
2736
sammc5403aa1d2015-02-25 04:59:212737 source_set("net_utility_services") {
2738 sources = [
sammc6ac3fe52015-02-25 06:00:282739 "dns/host_resolver_mojo.cc",
2740 "dns/host_resolver_mojo.h",
sammc352f7492015-02-25 09:45:242741 "proxy/mojo_proxy_resolver_factory_impl.cc",
2742 "proxy/mojo_proxy_resolver_factory_impl.h",
sammc5403aa1d2015-02-25 04:59:212743 "proxy/mojo_proxy_resolver_impl.cc",
2744 "proxy/mojo_proxy_resolver_impl.h",
sammca3242c92015-07-10 02:38:512745 "proxy/mojo_proxy_resolver_v8_tracing_bindings.h",
sammc5403aa1d2015-02-25 04:59:212746 ]
2747
rockot9509ec82015-04-14 02:50:562748 deps = [
2749 ":net_with_v8",
tfarina8ac4d17f2015-12-16 02:11:112750 "//base",
rockot9509ec82015-04-14 02:50:562751 ]
2752
sammc5403aa1d2015-02-25 04:59:212753 public_deps = [
sammc5403aa1d2015-02-25 04:59:212754 ":net",
rockot85dce0862015-11-13 01:33:592755 "//mojo/public/cpp/bindings",
sammc5403aa1d2015-02-25 04:59:212756 "//net/interfaces",
sammc5403aa1d2015-02-25 04:59:212757 ]
2758 }
amistry7e6ebfdc82015-02-13 04:19:112759}
2760
[email protected]8603c5de2014-04-16 20:34:312761if (!is_ios && !is_android) {
mattm36d89682016-06-08 22:22:402762 executable("cert_verify_tool") {
2763 testonly = true
2764 sources = [
2765 "tools/cert_verify_tool/cert_verify_tool.cc",
2766 "tools/cert_verify_tool/cert_verify_tool_util.cc",
2767 "tools/cert_verify_tool/cert_verify_tool_util.h",
2768 "tools/cert_verify_tool/verify_using_cert_verify_proc.cc",
2769 "tools/cert_verify_tool/verify_using_cert_verify_proc.h",
mattm3c66edc2016-07-13 22:40:422770 "tools/cert_verify_tool/verify_using_path_builder.cc",
2771 "tools/cert_verify_tool/verify_using_path_builder.h",
mattm36d89682016-06-08 22:22:402772 ]
2773
2774 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2775 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
2776 deps = [
2777 ":net",
2778 ":test_support",
2779 "//base",
thomasanderson84fa8b02017-05-18 23:38:472780 "//build/config:exe_and_shlib_deps",
mattm36d89682016-06-08 22:22:402781 "//build/win:default_exe_manifest",
2782 ]
mattm49957fe2017-03-02 01:45:292783
2784 if (is_mac) {
2785 libs = [ "Security.framework" ]
2786 }
mattm36d89682016-06-08 22:22:402787 }
2788
[email protected]8603c5de2014-04-16 20:34:312789 executable("crash_cache") {
Brett Wilson8f80ad0b2014-09-08 19:50:242790 testonly = true
scottmg34fb7e52014-12-03 23:27:242791 sources = [
2792 "tools/crash_cache/crash_cache.cc",
2793 ]
dpranke43276212015-02-20 02:55:192794
brettwd1c719a2015-02-19 23:17:042795 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2796 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312797 deps = [
2798 ":net",
[email protected]b2b2bf52014-05-28 20:26:572799 ":test_support",
[email protected]8603c5de2014-04-16 20:34:312800 "//base",
thomasanderson84fa8b02017-05-18 23:38:472801 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072802 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312803 ]
2804 }
2805
2806 executable("crl_set_dump") {
Brett Wilson8f80ad0b2014-09-08 19:50:242807 testonly = true
scottmg34fb7e52014-12-03 23:27:242808 sources = [
2809 "tools/crl_set_dump/crl_set_dump.cc",
2810 ]
dpranke43276212015-02-20 02:55:192811
brettwd1c719a2015-02-19 23:17:042812 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2813 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312814 deps = [
2815 ":net",
2816 "//base",
thomasanderson84fa8b02017-05-18 23:38:472817 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072818 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312819 ]
2820 }
2821
2822 executable("dns_fuzz_stub") {
Brett Wilson8f80ad0b2014-09-08 19:50:242823 testonly = true
scottmg34fb7e52014-12-03 23:27:242824 sources = [
2825 "tools/dns_fuzz_stub/dns_fuzz_stub.cc",
2826 ]
dpranke43276212015-02-20 02:55:192827
brettwd1c719a2015-02-19 23:17:042828 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2829 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312830 deps = [
2831 ":net",
2832 "//base",
thomasanderson84fa8b02017-05-18 23:38:472833 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072834 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312835 ]
2836 }
2837
2838 executable("gdig") {
Brett Wilson8f80ad0b2014-09-08 19:50:242839 testonly = true
[email protected]8603c5de2014-04-16 20:34:312840 sources = [
2841 "tools/gdig/file_net_log.cc",
thakisb8590c92017-03-23 18:14:532842 "tools/gdig/file_net_log.h",
[email protected]8603c5de2014-04-16 20:34:312843 "tools/gdig/gdig.cc",
2844 ]
2845 deps = [
2846 ":net",
2847 "//base",
thomasanderson84fa8b02017-05-18 23:38:472848 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072849 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312850 ]
2851 }
2852
2853 executable("get_server_time") {
Brett Wilson8f80ad0b2014-09-08 19:50:242854 testonly = true
scottmg34fb7e52014-12-03 23:27:242855 sources = [
2856 "tools/get_server_time/get_server_time.cc",
2857 ]
dpranke43276212015-02-20 02:55:192858
brettwd1c719a2015-02-19 23:17:042859 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2860 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312861 deps = [
2862 ":net",
2863 "//base",
2864 "//base:i18n",
thomasanderson84fa8b02017-05-18 23:38:472865 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072866 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312867 "//url",
2868 ]
2869 }
2870
rockot9c67e5f2015-03-12 20:01:212871 executable("hpack_example_generator") {
2872 testonly = true
2873 sources = [
bnc8f8f7d302017-04-24 18:08:062874 "spdy/core/fuzzing/hpack_example_generator.cc",
rockot9c67e5f2015-03-12 20:01:212875 ]
2876
2877 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2878 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
2879 deps = [
rockot9c67e5f2015-03-12 20:01:212880 ":net",
brettwba7a73d2015-08-31 22:17:392881 "//base",
thomasanderson84fa8b02017-05-18 23:38:472882 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072883 "//build/win:default_exe_manifest",
rockot9c67e5f2015-03-12 20:01:212884 ]
2885 }
2886
[email protected]8603c5de2014-04-16 20:34:312887 if (use_v8_in_net) {
2888 executable("net_watcher") {
Brett Wilson8f80ad0b2014-09-08 19:50:242889 testonly = true
scottmg34fb7e52014-12-03 23:27:242890 sources = [
2891 "tools/net_watcher/net_watcher.cc",
2892 ]
[email protected]8603c5de2014-04-16 20:34:312893 deps = [
2894 ":net",
2895 ":net_with_v8",
2896 "//base",
thomasanderson84fa8b02017-05-18 23:38:472897 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072898 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312899 ]
[email protected]8603c5de2014-04-16 20:34:312900 }
2901 }
2902
2903 executable("run_testserver") {
Brett Wilson8f80ad0b2014-09-08 19:50:242904 testonly = true
scottmg34fb7e52014-12-03 23:27:242905 sources = [
2906 "tools/testserver/run_testserver.cc",
2907 ]
[email protected]8603c5de2014-04-16 20:34:312908 deps = [
[email protected]b2b2bf52014-05-28 20:26:572909 ":test_support",
[email protected]8603c5de2014-04-16 20:34:312910 "//base",
2911 "//base/test:test_support",
thomasanderson84fa8b02017-05-18 23:38:472912 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072913 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312914 "//testing/gtest",
2915 ]
2916 }
2917
2918 executable("stress_cache") {
Brett Wilson8f80ad0b2014-09-08 19:50:242919 testonly = true
scottmg34fb7e52014-12-03 23:27:242920 sources = [
rvargase23fcf652015-03-04 19:59:222921 "tools/stress_cache/stress_cache.cc",
scottmg34fb7e52014-12-03 23:27:242922 ]
dpranke43276212015-02-20 02:55:192923
brettwd1c719a2015-02-19 23:17:042924 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2925 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312926 deps = [
2927 ":net",
[email protected]b2b2bf52014-05-28 20:26:572928 ":test_support",
[email protected]8603c5de2014-04-16 20:34:312929 "//base",
thomasanderson84fa8b02017-05-18 23:38:472930 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072931 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312932 ]
2933 }
2934
2935 executable("tld_cleanup") {
scottmg34fb7e52014-12-03 23:27:242936 sources = [
2937 "tools/tld_cleanup/tld_cleanup.cc",
2938 ]
dpranke43276212015-02-20 02:55:192939
brettwd1c719a2015-02-19 23:17:042940 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2941 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:312942 deps = [
2943 "//base",
2944 "//base:i18n",
thomasanderson84fa8b02017-05-18 23:38:472945 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:072946 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312947 "//net/tools/tld_cleanup",
2948 ]
2949 }
2950}
2951
gabadie0774bee2016-05-12 14:02:582952if (is_linux || is_mac) {
gabadie64af64a2016-03-29 16:36:422953 executable("cachetool") {
2954 testonly = true
2955 sources = [
2956 "tools/cachetool/cachetool.cc",
2957 ]
2958 deps = [
2959 ":net",
2960 ":test_support",
2961 "//base",
thomasandersonb7a52772017-05-26 19:26:422962 "//build/config:exe_and_shlib_deps",
gabadie64af64a2016-03-29 16:36:422963 ]
2964 }
2965
2966 executable("content_decoder_tool") {
2967 testonly = true
2968 sources = [
gabadie64af64a2016-03-29 16:36:422969 "tools/content_decoder_tool/content_decoder_tool.cc",
xunjielibb2d9f202016-11-01 16:37:272970 "tools/content_decoder_tool/content_decoder_tool.h",
2971 "tools/content_decoder_tool/content_decoder_tool_bin.cc",
gabadie64af64a2016-03-29 16:36:422972 ]
2973 deps = [
2974 ":net",
2975 ":test_support",
2976 "//base",
thomasandersonb7a52772017-05-26 19:26:422977 "//build/config:exe_and_shlib_deps",
gabadie64af64a2016-03-29 16:36:422978 "//url",
2979 ]
2980 }
gabadie0774bee2016-05-12 14:02:582981}
gabadie64af64a2016-03-29 16:36:422982
gabadie0774bee2016-05-12 14:02:582983if (is_linux) {
[email protected]8a3f8242014-06-05 18:05:122984 static_library("epoll_server") {
[email protected]8603c5de2014-04-16 20:34:312985 sources = [
2986 "tools/epoll_server/epoll_server.cc",
2987 "tools/epoll_server/epoll_server.h",
2988 ]
2989 deps = [
2990 ":net",
2991 "//base",
2992 ]
2993 }
2994
rch216445c2015-03-27 00:23:282995 source_set("epoll_quic_tools") {
[email protected]8603c5de2014-04-16 20:34:312996 sources = [
rchdfdb0642016-12-03 03:37:202997 "tools/quic/platform/impl/quic_epoll_clock.cc",
2998 "tools/quic/platform/impl/quic_epoll_clock.h",
rch33a6ce82016-12-06 18:41:402999 "tools/quic/platform/impl/quic_socket_utils.cc",
3000 "tools/quic/platform/impl/quic_socket_utils.h",
[email protected]8603c5de2014-04-16 20:34:313001 "tools/quic/quic_client.cc",
3002 "tools/quic/quic_client.h",
Ryan Hamiltonc4402302017-08-10 01:55:463003 "tools/quic/quic_client_epoll_network_helper.cc",
3004 "tools/quic/quic_client_epoll_network_helper.h",
[email protected]8603c5de2014-04-16 20:34:313005 "tools/quic/quic_default_packet_writer.cc",
3006 "tools/quic/quic_default_packet_writer.h",
rch16c74d1d2016-04-22 06:14:073007 "tools/quic/quic_epoll_alarm_factory.cc",
3008 "tools/quic/quic_epoll_alarm_factory.h",
[email protected]8603c5de2014-04-16 20:34:313009 "tools/quic/quic_epoll_connection_helper.cc",
3010 "tools/quic/quic_epoll_connection_helper.h",
rtennetifb3fa6c2015-03-16 23:04:553011 "tools/quic/quic_packet_reader.cc",
3012 "tools/quic/quic_packet_reader.h",
[email protected]8603c5de2014-04-16 20:34:313013 "tools/quic/quic_packet_writer_wrapper.cc",
3014 "tools/quic/quic_packet_writer_wrapper.h",
3015 "tools/quic/quic_server.cc",
3016 "tools/quic/quic_server.h",
[email protected]8603c5de2014-04-16 20:34:313017 ]
3018 deps = [
[email protected]8603c5de2014-04-16 20:34:313019 ":epoll_server",
3020 ":net",
tfarina8ac4d17f2015-12-16 02:11:113021 ":simple_quic_tools",
[email protected]8603c5de2014-04-16 20:34:313022 "//base",
3023 "//base/third_party/dynamic_annotations",
3024 "//crypto",
[email protected]edfd0f42014-07-22 18:20:373025 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:313026 "//url",
3027 ]
3028 }
3029
rch216445c2015-03-27 00:23:283030 executable("epoll_quic_client") {
scottmg34fb7e52014-12-03 23:27:243031 sources = [
3032 "tools/quic/quic_client_bin.cc",
3033 ]
[email protected]8603c5de2014-04-16 20:34:313034 deps = [
rch216445c2015-03-27 00:23:283035 ":epoll_quic_tools",
agrieved7a71c882015-11-20 19:53:283036 ":epoll_server",
rch216445c2015-03-27 00:23:283037 ":net",
3038 ":simple_quic_tools",
3039 "//base",
thomasanderson84fa8b02017-05-18 23:38:473040 "//build/config:exe_and_shlib_deps",
rch216445c2015-03-27 00:23:283041 "//third_party/boringssl",
3042 ]
3043 }
3044
3045 executable("epoll_quic_server") {
3046 sources = [
3047 "tools/quic/quic_server_bin.cc",
3048 ]
3049 deps = [
rch216445c2015-03-27 00:23:283050 ":epoll_quic_tools",
agrieved7a71c882015-11-20 19:53:283051 ":epoll_server",
[email protected]8603c5de2014-04-16 20:34:313052 ":net",
rchda78df5a2015-03-22 05:16:373053 ":simple_quic_tools",
[email protected]8603c5de2014-04-16 20:34:313054 "//base",
thomasanderson84fa8b02017-05-18 23:38:473055 "//build/config:exe_and_shlib_deps",
[email protected]edfd0f42014-07-22 18:20:373056 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:313057 ]
3058 }
[email protected]8603c5de2014-04-16 20:34:313059}
3060
[email protected]ef0eb442014-05-15 09:32:183061if (is_android) {
3062 generate_jni("net_jni_headers") {
3063 sources = [
tbansalc04b7aa2016-07-02 06:54:373064 "android/java/src/org/chromium/net/AndroidCellularSignalStrength.java",
[email protected]ef0eb442014-05-15 09:32:183065 "android/java/src/org/chromium/net/AndroidCertVerifyResult.java",
3066 "android/java/src/org/chromium/net/AndroidKeyStore.java",
3067 "android/java/src/org/chromium/net/AndroidNetworkLibrary.java",
tbansal59a1ddc2015-09-14 17:35:013068 "android/java/src/org/chromium/net/AndroidTrafficStats.java",
[email protected]ef0eb442014-05-15 09:32:183069 "android/java/src/org/chromium/net/GURLUtils.java",
aberentec894a52015-07-09 14:45:533070 "android/java/src/org/chromium/net/HttpNegotiateAuthenticator.java",
xunjieli905496a2015-08-31 15:51:173071 "android/java/src/org/chromium/net/NetStringUtil.java",
[email protected]ef0eb442014-05-15 09:32:183072 "android/java/src/org/chromium/net/NetworkChangeNotifier.java",
3073 "android/java/src/org/chromium/net/ProxyChangeListener.java",
3074 "android/java/src/org/chromium/net/X509Util.java",
3075 ]
3076 jni_package = "net"
3077 }
cjhopmandad5f4272014-09-05 01:00:553078 generate_jni("net_test_jni_headers") {
3079 sources = [
3080 "android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java",
mgershd21d6d142016-12-14 23:06:363081 "android/javatests/src/org/chromium/net/AndroidNetworkLibraryTestUtil.java",
pauljensen6815aef2017-05-05 03:00:063082 "android/javatests/src/org/chromium/net/AndroidProxyConfigServiceTestUtil.java",
aberentec894a52015-07-09 14:45:533083 "test/android/javatests/src/org/chromium/net/test/DummySpnegoAuthenticator.java",
jbudorickccffb982015-12-22 01:21:353084 "test/android/javatests/src/org/chromium/net/test/EmbeddedTestServerImpl.java",
cjhopmandad5f4272014-09-05 01:00:553085 ]
brettwcdccaf02015-07-27 16:27:093086 jni_package = "net/test"
cjhopmandad5f4272014-09-05 01:00:553087 }
[email protected]ef0eb442014-05-15 09:32:183088}
[email protected]8603c5de2014-04-16 20:34:313089
3090if (is_android || is_linux) {
3091 executable("disk_cache_memory_test") {
Brett Wilson8f80ad0b2014-09-08 19:50:243092 testonly = true
scottmg34fb7e52014-12-03 23:27:243093 sources = [
3094 "tools/disk_cache_memory_test/disk_cache_memory_test.cc",
3095 ]
[email protected]8603c5de2014-04-16 20:34:313096 deps = [
3097 ":net",
3098 "//base",
thomasanderson84fa8b02017-05-18 23:38:473099 "//build/config:exe_and_shlib_deps",
[email protected]8603c5de2014-04-16 20:34:313100 ]
3101 }
3102}
[email protected]8a3f8242014-06-05 18:05:123103
xunjielicc6b1d02017-06-05 16:51:403104source_set("quic_test_tools") {
3105 testonly = true
3106 sources = [
3107 "quic/chromium/crypto_test_utils_chromium.cc",
3108 "quic/platform/api/quic_test.h",
fayang221f04f2017-06-12 14:33:583109 "quic/platform/api/quic_test_loopback.cc",
3110 "quic/platform/api/quic_test_loopback.h",
Fan Yang62cae30f2017-09-01 20:50:513111 "quic/platform/api/quic_test_mem_slice_vector.h",
xunjielicc6b1d02017-06-05 16:51:403112 "quic/platform/impl/quic_test_impl.cc",
3113 "quic/platform/impl/quic_test_impl.h",
fayang221f04f2017-06-12 14:33:583114 "quic/platform/impl/quic_test_loopback_impl.cc",
3115 "quic/platform/impl/quic_test_loopback_impl.h",
Fan Yang62cae30f2017-09-01 20:50:513116 "quic/platform/impl/quic_test_mem_slice_vector_impl.cc",
3117 "quic/platform/impl/quic_test_mem_slice_vector_impl.h",
xunjielicc6b1d02017-06-05 16:51:403118 "quic/test_tools/crypto_test_utils.cc",
3119 "quic/test_tools/crypto_test_utils.h",
xunjielicc6b1d02017-06-05 16:51:403120 "quic/test_tools/failing_proof_source.cc",
3121 "quic/test_tools/failing_proof_source.h",
3122 "quic/test_tools/fake_proof_source.cc",
3123 "quic/test_tools/fake_proof_source.h",
3124 "quic/test_tools/mock_clock.cc",
3125 "quic/test_tools/mock_clock.h",
3126 "quic/test_tools/mock_crypto_client_stream.cc",
3127 "quic/test_tools/mock_crypto_client_stream.h",
3128 "quic/test_tools/mock_quic_client_promised_info.cc",
3129 "quic/test_tools/mock_quic_client_promised_info.h",
3130 "quic/test_tools/mock_quic_dispatcher.cc",
3131 "quic/test_tools/mock_quic_dispatcher.h",
3132 "quic/test_tools/mock_quic_spdy_client_stream.cc",
3133 "quic/test_tools/mock_quic_spdy_client_stream.h",
3134 "quic/test_tools/mock_random.cc",
3135 "quic/test_tools/mock_random.h",
3136 "quic/test_tools/quic_buffered_packet_store_peer.cc",
3137 "quic/test_tools/quic_buffered_packet_store_peer.h",
3138 "quic/test_tools/quic_client_promised_info_peer.cc",
3139 "quic/test_tools/quic_client_promised_info_peer.h",
3140 "quic/test_tools/quic_config_peer.cc",
3141 "quic/test_tools/quic_config_peer.h",
3142 "quic/test_tools/quic_connection_peer.cc",
3143 "quic/test_tools/quic_connection_peer.h",
3144 "quic/test_tools/quic_crypto_server_config_peer.cc",
3145 "quic/test_tools/quic_crypto_server_config_peer.h",
3146 "quic/test_tools/quic_flow_controller_peer.cc",
3147 "quic/test_tools/quic_flow_controller_peer.h",
3148 "quic/test_tools/quic_framer_peer.cc",
3149 "quic/test_tools/quic_framer_peer.h",
3150 "quic/test_tools/quic_packet_creator_peer.cc",
3151 "quic/test_tools/quic_packet_creator_peer.h",
3152 "quic/test_tools/quic_packet_generator_peer.cc",
3153 "quic/test_tools/quic_packet_generator_peer.h",
3154 "quic/test_tools/quic_sent_packet_manager_peer.cc",
3155 "quic/test_tools/quic_sent_packet_manager_peer.h",
3156 "quic/test_tools/quic_session_peer.cc",
3157 "quic/test_tools/quic_session_peer.h",
3158 "quic/test_tools/quic_spdy_session_peer.cc",
3159 "quic/test_tools/quic_spdy_session_peer.h",
3160 "quic/test_tools/quic_spdy_stream_peer.cc",
3161 "quic/test_tools/quic_spdy_stream_peer.h",
3162 "quic/test_tools/quic_stream_peer.cc",
3163 "quic/test_tools/quic_stream_peer.h",
Fan Yang97d44ba22017-08-07 17:00:033164 "quic/test_tools/quic_stream_send_buffer_peer.cc",
3165 "quic/test_tools/quic_stream_send_buffer_peer.h",
xunjielicc6b1d02017-06-05 16:51:403166 "quic/test_tools/quic_stream_sequencer_buffer_peer.cc",
3167 "quic/test_tools/quic_stream_sequencer_buffer_peer.h",
3168 "quic/test_tools/quic_stream_sequencer_peer.cc",
3169 "quic/test_tools/quic_stream_sequencer_peer.h",
3170 "quic/test_tools/quic_sustained_bandwidth_recorder_peer.cc",
3171 "quic/test_tools/quic_sustained_bandwidth_recorder_peer.h",
3172 "quic/test_tools/quic_test_utils.cc",
3173 "quic/test_tools/quic_test_utils.h",
3174 "quic/test_tools/quic_time_wait_list_manager_peer.cc",
3175 "quic/test_tools/quic_time_wait_list_manager_peer.h",
3176 "quic/test_tools/rtt_stats_peer.cc",
3177 "quic/test_tools/rtt_stats_peer.h",
fayangdf3cb2b2017-07-05 15:03:383178 "quic/test_tools/simple_data_producer.cc",
3179 "quic/test_tools/simple_data_producer.h",
xunjielicc6b1d02017-06-05 16:51:403180 "quic/test_tools/simple_quic_framer.cc",
3181 "quic/test_tools/simple_quic_framer.h",
3182 "quic/test_tools/simulator/actor.cc",
3183 "quic/test_tools/simulator/actor.h",
3184 "quic/test_tools/simulator/alarm_factory.cc",
3185 "quic/test_tools/simulator/alarm_factory.h",
3186 "quic/test_tools/simulator/link.cc",
3187 "quic/test_tools/simulator/link.h",
3188 "quic/test_tools/simulator/packet_filter.cc",
3189 "quic/test_tools/simulator/packet_filter.h",
3190 "quic/test_tools/simulator/port.cc",
3191 "quic/test_tools/simulator/port.h",
3192 "quic/test_tools/simulator/queue.cc",
3193 "quic/test_tools/simulator/queue.h",
3194 "quic/test_tools/simulator/quic_endpoint.cc",
3195 "quic/test_tools/simulator/quic_endpoint.h",
3196 "quic/test_tools/simulator/simulator.cc",
3197 "quic/test_tools/simulator/simulator.h",
3198 "quic/test_tools/simulator/switch.cc",
3199 "quic/test_tools/simulator/switch.h",
3200 "quic/test_tools/simulator/traffic_policer.cc",
3201 "quic/test_tools/simulator/traffic_policer.h",
3202 "tools/quic/test_tools/mock_quic_session_visitor.cc",
3203 "tools/quic/test_tools/mock_quic_session_visitor.h",
3204 ]
3205 deps = [
3206 ":net",
3207 ":simple_quic_tools",
3208 ":test_support",
3209 "//base",
3210 "//crypto:test_support",
3211 "//testing/gmock",
3212 "//testing/gtest",
3213 "//third_party/boringssl",
3214 "//third_party/protobuf:protobuf_lite",
3215 ]
3216
3217 if (is_linux) {
3218 sources += [
3219 "tools/quic/test_tools/limited_mtu_test_writer.cc",
3220 "tools/quic/test_tools/limited_mtu_test_writer.h",
3221 "tools/quic/test_tools/mock_epoll_server.cc",
3222 "tools/quic/test_tools/mock_epoll_server.h",
3223 "tools/quic/test_tools/mock_quic_time_wait_list_manager.cc",
3224 "tools/quic/test_tools/mock_quic_time_wait_list_manager.h",
3225 "tools/quic/test_tools/packet_dropping_test_writer.cc",
3226 "tools/quic/test_tools/packet_dropping_test_writer.h",
3227 "tools/quic/test_tools/packet_reordering_writer.cc",
3228 "tools/quic/test_tools/packet_reordering_writer.h",
3229 "tools/quic/test_tools/quic_client_peer.cc",
3230 "tools/quic/test_tools/quic_client_peer.h",
3231 "tools/quic/test_tools/quic_dispatcher_peer.cc",
3232 "tools/quic/test_tools/quic_dispatcher_peer.h",
3233 "tools/quic/test_tools/quic_server_peer.cc",
3234 "tools/quic/test_tools/quic_server_peer.h",
3235 "tools/quic/test_tools/quic_test_client.cc",
3236 "tools/quic/test_tools/quic_test_client.h",
3237 "tools/quic/test_tools/quic_test_server.cc",
3238 "tools/quic/test_tools/quic_test_server.h",
3239 "tools/quic/test_tools/server_thread.cc",
3240 "tools/quic/test_tools/server_thread.h",
3241 ]
3242 deps += [
3243 ":epoll_quic_tools",
3244 ":epoll_server",
3245 ]
3246 }
3247}
3248
rch47ad01f2015-03-20 21:17:233249source_set("simple_quic_tools") {
rcha9d12ce12015-03-19 23:06:493250 sources = [
ckrasica7fd1242016-05-14 20:36:013251 "tools/quic/chlo_extractor.cc",
3252 "tools/quic/chlo_extractor.h",
rtennetid67b3a722015-08-18 05:15:313253 "tools/quic/quic_client_base.cc",
3254 "tools/quic/quic_client_base.h",
Ryan Hamiltonc4402302017-08-10 01:55:463255 "tools/quic/quic_client_message_loop_network_helper.cc",
3256 "tools/quic/quic_client_message_loop_network_helper.h",
rchc99f380c2015-03-26 19:50:563257 "tools/quic/quic_dispatcher.cc",
3258 "tools/quic/quic_dispatcher.h",
vasilvv28270e8f2016-12-01 21:38:093259 "tools/quic/quic_http_response_cache.cc",
3260 "tools/quic/quic_http_response_cache.h",
rchc99f380c2015-03-26 19:50:563261 "tools/quic/quic_per_connection_packet_writer.cc",
3262 "tools/quic/quic_per_connection_packet_writer.h",
brettw25ca8922016-03-18 22:59:583263 "tools/quic/quic_process_packet_interface.h",
rcha9d12ce12015-03-19 23:06:493264 "tools/quic/quic_simple_client.cc",
3265 "tools/quic/quic_simple_client.h",
ianswett6c7b7ed2016-09-13 19:35:273266 "tools/quic/quic_simple_crypto_server_stream_helper.cc",
3267 "tools/quic/quic_simple_crypto_server_stream_helper.h",
alyssara473d6f2016-08-04 16:54:043268 "tools/quic/quic_simple_dispatcher.cc",
3269 "tools/quic/quic_simple_dispatcher.h",
rch216445c2015-03-27 00:23:283270 "tools/quic/quic_simple_per_connection_packet_writer.cc",
3271 "tools/quic/quic_simple_per_connection_packet_writer.h",
3272 "tools/quic/quic_simple_server.cc",
3273 "tools/quic/quic_simple_server.h",
3274 "tools/quic/quic_simple_server_packet_writer.cc",
3275 "tools/quic/quic_simple_server_packet_writer.h",
jokulikc971baf92016-01-06 00:36:393276 "tools/quic/quic_simple_server_session.cc",
3277 "tools/quic/quic_simple_server_session.h",
mpwb5c8da92016-06-05 20:07:313278 "tools/quic/quic_simple_server_session_helper.cc",
3279 "tools/quic/quic_simple_server_session_helper.h",
danzhb7551342015-12-18 02:06:403280 "tools/quic/quic_simple_server_stream.cc",
3281 "tools/quic/quic_simple_server_stream.h",
Ryan Hamiltonc4402302017-08-10 01:55:463282 "tools/quic/quic_spdy_client_base.cc",
3283 "tools/quic/quic_spdy_client_base.h",
3284 "tools/quic/quic_spdy_client_session.cc",
3285 "tools/quic/quic_spdy_client_session.h",
rched113b22015-03-26 04:54:053286 "tools/quic/quic_spdy_client_stream.cc",
3287 "tools/quic/quic_spdy_client_stream.h",
rchaa4ec092016-12-02 00:34:193288 "tools/quic/quic_spdy_server_stream_base.cc",
3289 "tools/quic/quic_spdy_server_stream_base.h",
rch0e945472015-03-26 15:19:213290 "tools/quic/quic_time_wait_list_manager.cc",
3291 "tools/quic/quic_time_wait_list_manager.h",
jrid04ea362016-06-23 03:07:373292 "tools/quic/stateless_rejector.cc",
3293 "tools/quic/stateless_rejector.h",
rchda78df5a2015-03-22 05:16:373294 "tools/quic/synchronous_host_resolver.cc",
3295 "tools/quic/synchronous_host_resolver.h",
rcha9d12ce12015-03-19 23:06:493296 ]
3297 deps = [
3298 ":net",
3299 "//base",
rch47ad01f2015-03-20 21:17:233300 "//base/third_party/dynamic_annotations",
3301 "//url",
3302 ]
3303}
3304
rhalavatia9b551d2017-02-09 12:03:003305source_set("traffic_annotation") {
3306 sources = [
3307 "traffic_annotation/network_traffic_annotation.h",
3308 ]
rhalavati99c6fcef2017-05-25 07:53:013309 deps = [
3310 "//base",
3311 ]
rhalavatia9b551d2017-02-09 12:03:003312}
3313
sherouk51b4b098b2015-08-10 09:00:433314if (!is_ios) {
3315 executable("quic_client") {
3316 sources = [
3317 "tools/quic/quic_simple_client_bin.cc",
3318 ]
3319 deps = [
3320 ":net",
3321 ":simple_quic_tools",
3322 "//base",
thomasanderson84fa8b02017-05-18 23:38:473323 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:073324 "//build/win:default_exe_manifest",
sherouk51b4b098b2015-08-10 09:00:433325 "//url",
3326 ]
3327 }
3328 executable("quic_server") {
3329 sources = [
3330 "tools/quic/quic_simple_server_bin.cc",
3331 ]
3332 deps = [
3333 ":net",
3334 ":simple_quic_tools",
3335 "//base",
thomasanderson84fa8b02017-05-18 23:38:473336 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:073337 "//build/win:default_exe_manifest",
sherouk51b4b098b2015-08-10 09:00:433338 "//third_party/boringssl",
3339 "//third_party/protobuf:protobuf_lite",
3340 ]
3341 }
rchf80f62d12016-05-11 00:47:313342 executable("quic_packet_printer") {
3343 sources = [
3344 "tools/quic/quic_packet_printer_bin.cc",
3345 ]
3346 deps = [
3347 ":net",
3348 ":simple_quic_tools",
3349 "//base",
thomasanderson84fa8b02017-05-18 23:38:473350 "//build/config:exe_and_shlib_deps",
rchf80f62d12016-05-11 00:47:313351 "//build/win:default_exe_manifest",
3352 "//third_party/boringssl",
3353 "//third_party/protobuf:protobuf_lite",
3354 ]
3355 }
mpwbbea85d2016-08-27 14:39:213356 executable("quic_reject_reason_decoder") {
3357 sources = [
3358 "tools/quic/quic_reject_reason_decoder_bin.cc",
3359 ]
3360 deps = [
3361 ":net",
3362 ":simple_quic_tools",
3363 "//base",
thomasanderson84fa8b02017-05-18 23:38:473364 "//build/config:exe_and_shlib_deps",
mpwbbea85d2016-08-27 14:39:213365 "//build/win:default_exe_manifest",
3366 "//third_party/boringssl",
3367 "//third_party/protobuf:protobuf_lite",
3368 ]
3369 }
danzh1401f0a2016-05-19 13:41:103370 executable("crypto_message_printer") {
3371 sources = [
3372 "tools/quic/crypto_message_printer_bin.cc",
3373 ]
3374 deps = [
3375 ":net",
3376 "//base",
thomasanderson84fa8b02017-05-18 23:38:473377 "//build/config:exe_and_shlib_deps",
danzh1401f0a2016-05-19 13:41:103378 "//build/win:default_exe_manifest",
3379 ]
3380 }
rch216445c2015-03-27 00:23:283381}
3382
eromand5207a92017-05-05 17:49:363383# This section can be updated from globbing rules using:
3384# python ./tools/update_ios_bundle_data.py
sdefresneb0a31642016-03-18 11:04:453385bundle_data("net_unittests_bundle_data") {
3386 testonly = true
ckrasic73f7240b2017-01-24 00:06:453387 sources = [
3388 "data/cert_issuer_source_aia_unittest/i.pem",
3389 "data/cert_issuer_source_aia_unittest/i2.pem",
3390 "data/cert_issuer_source_aia_unittest/i3.pem",
eromand5207a92017-05-05 17:49:363391 "data/cert_issuer_source_aia_unittest/root.pem",
ckrasic73f7240b2017-01-24 00:06:453392 "data/cert_issuer_source_aia_unittest/target_file_aia.pem",
3393 "data/cert_issuer_source_aia_unittest/target_file_and_http_aia.pem",
3394 "data/cert_issuer_source_aia_unittest/target_invalid_and_http_aia.pem",
3395 "data/cert_issuer_source_aia_unittest/target_invalid_url_aia.pem",
3396 "data/cert_issuer_source_aia_unittest/target_no_aia.pem",
3397 "data/cert_issuer_source_aia_unittest/target_one_aia.pem",
3398 "data/cert_issuer_source_aia_unittest/target_six_aia.pem",
3399 "data/cert_issuer_source_aia_unittest/target_three_aia.pem",
3400 "data/cert_issuer_source_aia_unittest/target_two_aia.pem",
3401 "data/cert_issuer_source_static_unittest/c1.pem",
3402 "data/cert_issuer_source_static_unittest/c2.pem",
3403 "data/cert_issuer_source_static_unittest/d.pem",
3404 "data/cert_issuer_source_static_unittest/e1.pem",
3405 "data/cert_issuer_source_static_unittest/e2.pem",
3406 "data/cert_issuer_source_static_unittest/i1_1.pem",
3407 "data/cert_issuer_source_static_unittest/i1_2.pem",
3408 "data/cert_issuer_source_static_unittest/i2.pem",
3409 "data/cert_issuer_source_static_unittest/i3_1.pem",
3410 "data/cert_issuer_source_static_unittest/i3_2.pem",
3411 "data/cert_issuer_source_static_unittest/root.pem",
3412 "data/certificate_policies_unittest/anypolicy.pem",
3413 "data/certificate_policies_unittest/anypolicy_with_qualifier.pem",
3414 "data/certificate_policies_unittest/invalid-anypolicy_with_custom_qualifier.pem",
3415 "data/certificate_policies_unittest/invalid-empty.pem",
3416 "data/certificate_policies_unittest/invalid-policy_1_2_3_dupe.pem",
3417 "data/certificate_policies_unittest/invalid-policy_1_2_3_policyinformation_unconsumed_data.pem",
3418 "data/certificate_policies_unittest/invalid-policy_1_2_3_policyqualifierinfo_unconsumed_data.pem",
3419 "data/certificate_policies_unittest/invalid-policy_1_2_3_with_empty_qualifiers_sequence.pem",
3420 "data/certificate_policies_unittest/invalid-policy_identifier_not_oid.pem",
3421 "data/certificate_policies_unittest/policy_1_2_3.pem",
3422 "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4.pem",
3423 "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4_with_qualifiers.pem",
3424 "data/certificate_policies_unittest/policy_1_2_3_with_custom_qualifier.pem",
3425 "data/certificate_policies_unittest/policy_1_2_3_with_qualifier.pem",
jam29f1aed42017-06-06 21:37:433426 "data/embedded_test_server/mock-headers-without-crlf.html",
3427 "data/embedded_test_server/mock-headers-without-crlf.html.mock-http-headers",
ckrasic73f7240b2017-01-24 00:06:453428 "data/filter_unittests/google.br",
3429 "data/filter_unittests/google.txt",
3430 "data/name_constraints_unittest/directoryname-excludeall.pem",
3431 "data/name_constraints_unittest/directoryname-excluded.pem",
3432 "data/name_constraints_unittest/directoryname.pem",
3433 "data/name_constraints_unittest/directoryname_and_dnsname.pem",
3434 "data/name_constraints_unittest/directoryname_and_dnsname_and_ipaddress.pem",
3435 "data/name_constraints_unittest/dnsname-exclude_dot.pem",
3436 "data/name_constraints_unittest/dnsname-excludeall.pem",
3437 "data/name_constraints_unittest/dnsname-excluded.pem",
3438 "data/name_constraints_unittest/dnsname-excluded_with_leading_dot.pem",
3439 "data/name_constraints_unittest/dnsname-permitted_two_dot.pem",
3440 "data/name_constraints_unittest/dnsname-permitted_with_leading_dot.pem",
3441 "data/name_constraints_unittest/dnsname-with_max.pem",
3442 "data/name_constraints_unittest/dnsname-with_min_0.pem",
3443 "data/name_constraints_unittest/dnsname-with_min_0_and_max.pem",
3444 "data/name_constraints_unittest/dnsname-with_min_1.pem",
3445 "data/name_constraints_unittest/dnsname-with_min_1_and_max.pem",
3446 "data/name_constraints_unittest/dnsname.pem",
3447 "data/name_constraints_unittest/dnsname2.pem",
3448 "data/name_constraints_unittest/edipartyname-excluded.pem",
3449 "data/name_constraints_unittest/edipartyname-permitted.pem",
3450 "data/name_constraints_unittest/invalid-empty_excluded_subtree.pem",
3451 "data/name_constraints_unittest/invalid-empty_permitted_subtree.pem",
3452 "data/name_constraints_unittest/invalid-no_subtrees.pem",
3453 "data/name_constraints_unittest/ipaddress-excludeall.pem",
3454 "data/name_constraints_unittest/ipaddress-excluded.pem",
3455 "data/name_constraints_unittest/ipaddress-invalid_addr.pem",
3456 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_1.pem",
3457 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_2.pem",
3458 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_3.pem",
3459 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_4.pem",
3460 "data/name_constraints_unittest/ipaddress-permit_all.pem",
3461 "data/name_constraints_unittest/ipaddress-permit_prefix1.pem",
3462 "data/name_constraints_unittest/ipaddress-permit_prefix31.pem",
3463 "data/name_constraints_unittest/ipaddress-permit_singlehost.pem",
3464 "data/name_constraints_unittest/ipaddress.pem",
3465 "data/name_constraints_unittest/name-ca.pem",
3466 "data/name_constraints_unittest/name-de.pem",
3467 "data/name_constraints_unittest/name-empty.pem",
3468 "data/name_constraints_unittest/name-jp-tokyo.pem",
3469 "data/name_constraints_unittest/name-jp.pem",
3470 "data/name_constraints_unittest/name-us-arizona-1.1.1.1.pem",
3471 "data/name_constraints_unittest/name-us-arizona-192.168.1.1.pem",
3472 "data/name_constraints_unittest/name-us-arizona-email.pem",
3473 "data/name_constraints_unittest/name-us-arizona-foo.com.pem",
3474 "data/name_constraints_unittest/name-us-arizona-ipv6.pem",
3475 "data/name_constraints_unittest/name-us-arizona-permitted.example.com.pem",
3476 "data/name_constraints_unittest/name-us-arizona.pem",
3477 "data/name_constraints_unittest/name-us-california-192.168.1.1.pem",
3478 "data/name_constraints_unittest/name-us-california-mountain_view.pem",
3479 "data/name_constraints_unittest/name-us-california-permitted.example.com.pem",
3480 "data/name_constraints_unittest/name-us-california.pem",
3481 "data/name_constraints_unittest/name-us.pem",
3482 "data/name_constraints_unittest/othername-excluded.pem",
3483 "data/name_constraints_unittest/othername-permitted.pem",
3484 "data/name_constraints_unittest/registeredid-excluded.pem",
3485 "data/name_constraints_unittest/registeredid-permitted.pem",
3486 "data/name_constraints_unittest/rfc822name-excluded.pem",
3487 "data/name_constraints_unittest/rfc822name-permitted.pem",
Matt Mueller766bedc92017-09-14 23:30:413488 "data/name_constraints_unittest/san-directoryname.pem",
3489 "data/name_constraints_unittest/san-dnsname.pem",
ckrasic73f7240b2017-01-24 00:06:453490 "data/name_constraints_unittest/san-edipartyname.pem",
3491 "data/name_constraints_unittest/san-excluded-directoryname.pem",
3492 "data/name_constraints_unittest/san-excluded-dnsname.pem",
3493 "data/name_constraints_unittest/san-excluded-ipaddress.pem",
3494 "data/name_constraints_unittest/san-invalid-empty.pem",
3495 "data/name_constraints_unittest/san-invalid-ipaddress.pem",
Matt Mueller766bedc92017-09-14 23:30:413496 "data/name_constraints_unittest/san-ipaddress4.pem",
3497 "data/name_constraints_unittest/san-ipaddress6.pem",
ckrasic73f7240b2017-01-24 00:06:453498 "data/name_constraints_unittest/san-othername.pem",
3499 "data/name_constraints_unittest/san-permitted.pem",
3500 "data/name_constraints_unittest/san-registeredid.pem",
3501 "data/name_constraints_unittest/san-rfc822name.pem",
3502 "data/name_constraints_unittest/san-uri.pem",
3503 "data/name_constraints_unittest/san-x400address.pem",
3504 "data/name_constraints_unittest/uri-excluded.pem",
3505 "data/name_constraints_unittest/uri-permitted.pem",
3506 "data/name_constraints_unittest/x400address-excluded.pem",
3507 "data/name_constraints_unittest/x400address-permitted.pem",
Eric Romana2f6f55d2017-09-07 23:34:573508 "data/ocsp_unittest/bad_ocsp_type.pem",
3509 "data/ocsp_unittest/bad_signature.pem",
3510 "data/ocsp_unittest/bad_status.pem",
3511 "data/ocsp_unittest/good_response.pem",
3512 "data/ocsp_unittest/good_response_next_update.pem",
Steven Valdez060eac42017-09-21 22:31:573513 "data/ocsp_unittest/good_response_sha256.pem",
Eric Romana2f6f55d2017-09-07 23:34:573514 "data/ocsp_unittest/has_extension.pem",
3515 "data/ocsp_unittest/has_single_extension.pem",
3516 "data/ocsp_unittest/has_version.pem",
3517 "data/ocsp_unittest/malformed_status.pem",
3518 "data/ocsp_unittest/missing_response.pem",
3519 "data/ocsp_unittest/multiple_response.pem",
3520 "data/ocsp_unittest/no_response.pem",
3521 "data/ocsp_unittest/ocsp_extra_certs.pem",
3522 "data/ocsp_unittest/ocsp_sign_bad_indirect.pem",
3523 "data/ocsp_unittest/ocsp_sign_direct.pem",
3524 "data/ocsp_unittest/ocsp_sign_indirect.pem",
3525 "data/ocsp_unittest/ocsp_sign_indirect_missing.pem",
3526 "data/ocsp_unittest/other_response.pem",
3527 "data/ocsp_unittest/responder_id.pem",
3528 "data/ocsp_unittest/responder_name.pem",
3529 "data/ocsp_unittest/revoke_response.pem",
3530 "data/ocsp_unittest/revoke_response_reason.pem",
3531 "data/ocsp_unittest/unknown_response.pem",
Eric Roman7b45a272017-08-02 03:21:443532 "data/parse_certificate_unittest/bad_key_usage.pem",
3533 "data/parse_certificate_unittest/bad_policy_qualifiers.pem",
3534 "data/parse_certificate_unittest/bad_signature_algorithm_oid.pem",
3535 "data/parse_certificate_unittest/bad_validity.pem",
ckrasic73f7240b2017-01-24 00:06:453536 "data/parse_certificate_unittest/basic_constraints_ca_false.pem",
3537 "data/parse_certificate_unittest/basic_constraints_ca_no_path.pem",
3538 "data/parse_certificate_unittest/basic_constraints_ca_path_9.pem",
3539 "data/parse_certificate_unittest/basic_constraints_negative_path.pem",
3540 "data/parse_certificate_unittest/basic_constraints_not_ca.pem",
3541 "data/parse_certificate_unittest/basic_constraints_path_too_large.pem",
3542 "data/parse_certificate_unittest/basic_constraints_pathlen_255.pem",
3543 "data/parse_certificate_unittest/basic_constraints_pathlen_256.pem",
3544 "data/parse_certificate_unittest/basic_constraints_pathlen_not_ca.pem",
3545 "data/parse_certificate_unittest/basic_constraints_unconsumed_data.pem",
3546 "data/parse_certificate_unittest/cert_algorithm_not_sequence.pem",
3547 "data/parse_certificate_unittest/cert_data_after_signature.pem",
3548 "data/parse_certificate_unittest/cert_empty_sequence.pem",
3549 "data/parse_certificate_unittest/cert_missing_signature.pem",
3550 "data/parse_certificate_unittest/cert_not_sequence.pem",
3551 "data/parse_certificate_unittest/cert_signature_not_bit_string.pem",
3552 "data/parse_certificate_unittest/cert_skeleton.pem",
3553 "data/parse_certificate_unittest/cert_version3.pem",
Eric Romandb460e92017-08-01 17:17:343554 "data/parse_certificate_unittest/crldp_1uri_noissuer.pem",
3555 "data/parse_certificate_unittest/crldp_3uri_noissuer.pem",
3556 "data/parse_certificate_unittest/crldp_full_name_as_dirname.pem",
3557 "data/parse_certificate_unittest/crldp_issuer_as_dirname.pem",
ckrasic73f7240b2017-01-24 00:06:453558 "data/parse_certificate_unittest/extended_key_usage.pem",
3559 "data/parse_certificate_unittest/extension_critical.pem",
3560 "data/parse_certificate_unittest/extension_critical_0.pem",
3561 "data/parse_certificate_unittest/extension_critical_3.pem",
3562 "data/parse_certificate_unittest/extension_not_critical.pem",
3563 "data/parse_certificate_unittest/extensions_data_after_sequence.pem",
3564 "data/parse_certificate_unittest/extensions_duplicate_key_usage.pem",
3565 "data/parse_certificate_unittest/extensions_empty_sequence.pem",
3566 "data/parse_certificate_unittest/extensions_not_sequence.pem",
3567 "data/parse_certificate_unittest/extensions_real.pem",
Eric Roman7b45a272017-08-02 03:21:443568 "data/parse_certificate_unittest/failed_signature_algorithm.pem",
eromand312c062017-05-19 03:06:293569 "data/parse_certificate_unittest/inhibit_any_policy.pem",
Eric Roman7b45a272017-08-02 03:21:443570 "data/parse_certificate_unittest/issuer_bad_printable_string.pem",
ckrasic73f7240b2017-01-24 00:06:453571 "data/parse_certificate_unittest/key_usage.pem",
Eric Roman7b45a272017-08-02 03:21:443572 "data/parse_certificate_unittest/name_constraints_bad_ip.pem",
ckrasic73f7240b2017-01-24 00:06:453573 "data/parse_certificate_unittest/policies.pem",
eroman25ead1bcf82017-05-13 06:44:583574 "data/parse_certificate_unittest/policy_constraints_empty.pem",
3575 "data/parse_certificate_unittest/policy_constraints_inhibit.pem",
3576 "data/parse_certificate_unittest/policy_constraints_inhibit_require.pem",
3577 "data/parse_certificate_unittest/policy_constraints_require.pem",
Eric Roman7b45a272017-08-02 03:21:443578 "data/parse_certificate_unittest/policy_qualifiers_empty_sequence.pem",
mattm312644de2017-05-16 08:13:183579 "data/parse_certificate_unittest/serial_37_bytes.pem",
3580 "data/parse_certificate_unittest/serial_negative.pem",
Eric Roman5d1934622017-08-03 03:57:093581 "data/parse_certificate_unittest/serial_not_minimal.pem",
3582 "data/parse_certificate_unittest/serial_not_number.pem",
3583 "data/parse_certificate_unittest/serial_zero.pem",
mattm312644de2017-05-16 08:13:183584 "data/parse_certificate_unittest/serial_zero_padded.pem",
3585 "data/parse_certificate_unittest/serial_zero_padded_21_bytes.pem",
mattm2fe429a2017-06-20 01:53:443586 "data/parse_certificate_unittest/signature_algorithm_null.pem",
ckrasic73f7240b2017-01-24 00:06:453587 "data/parse_certificate_unittest/subject_alt_name.pem",
Eric Roman7b45a272017-08-02 03:21:443588 "data/parse_certificate_unittest/subject_blank_subjectaltname_not_critical.pem",
3589 "data/parse_certificate_unittest/subject_not_ascii.pem",
3590 "data/parse_certificate_unittest/subject_not_printable_string.pem",
mattm788812f2017-05-05 23:49:093591 "data/parse_certificate_unittest/subject_t61string.pem",
3592 "data/parse_certificate_unittest/subject_t61string_1-32.pem",
3593 "data/parse_certificate_unittest/subject_t61string_126-160.pem",
3594 "data/parse_certificate_unittest/subject_t61string_actual.pem",
Eric Roman7b45a272017-08-02 03:21:443595 "data/parse_certificate_unittest/subjectaltname_bad_ip.pem",
3596 "data/parse_certificate_unittest/subjectaltname_dns_not_ascii.pem",
3597 "data/parse_certificate_unittest/subjectaltname_general_names_empty_sequence.pem",
3598 "data/parse_certificate_unittest/subjectaltname_trailing_data.pem",
ckrasic73f7240b2017-01-24 00:06:453599 "data/parse_certificate_unittest/tbs_explicit_v1.pem",
ckrasic73f7240b2017-01-24 00:06:453600 "data/parse_certificate_unittest/tbs_v1.pem",
3601 "data/parse_certificate_unittest/tbs_v1_extensions.pem",
3602 "data/parse_certificate_unittest/tbs_v2_extensions.pem",
3603 "data/parse_certificate_unittest/tbs_v2_issuer_and_subject_unique_id.pem",
3604 "data/parse_certificate_unittest/tbs_v2_issuer_unique_id.pem",
3605 "data/parse_certificate_unittest/tbs_v2_no_optionals.pem",
3606 "data/parse_certificate_unittest/tbs_v3_all_optionals.pem",
3607 "data/parse_certificate_unittest/tbs_v3_data_after_extensions.pem",
3608 "data/parse_certificate_unittest/tbs_v3_extensions.pem",
3609 "data/parse_certificate_unittest/tbs_v3_extensions_not_sequence.pem",
3610 "data/parse_certificate_unittest/tbs_v3_no_optionals.pem",
3611 "data/parse_certificate_unittest/tbs_v3_real.pem",
3612 "data/parse_certificate_unittest/tbs_v4.pem",
3613 "data/parse_certificate_unittest/tbs_validity_both_generalized_time.pem",
3614 "data/parse_certificate_unittest/tbs_validity_both_utc_time.pem",
3615 "data/parse_certificate_unittest/tbs_validity_generalized_time_and_utc_time.pem",
3616 "data/parse_certificate_unittest/tbs_validity_relaxed.pem",
3617 "data/parse_certificate_unittest/tbs_validity_utc_time_and_generalized_time.pem",
Eric Roman7b45a272017-08-02 03:21:443618 "data/parse_certificate_unittest/v1_explicit_version.pem",
ckrasic73f7240b2017-01-24 00:06:453619 "data/test.html",
3620 "data/url_request_unittest/308-without-location-header",
3621 "data/url_request_unittest/308-without-location-header.mock-http-headers",
3622 "data/url_request_unittest/BullRunSpeech.txt",
3623 "data/url_request_unittest/content-type-normalization.html",
3624 "data/url_request_unittest/content-type-normalization.html.mock-http-headers",
Emily Stark4cfecf072017-08-08 01:05:513625 "data/url_request_unittest/expect-ct-header-multiple.html",
3626 "data/url_request_unittest/expect-ct-header-multiple.html.mock-http-headers",
3627 "data/url_request_unittest/expect-ct-header-preload.html",
3628 "data/url_request_unittest/expect-ct-header-preload.html.mock-http-headers",
ckrasic73f7240b2017-01-24 00:06:453629 "data/url_request_unittest/expect-ct-header.html",
3630 "data/url_request_unittest/expect-ct-header.html.mock-http-headers",
3631 "data/url_request_unittest/filedir-sentinel",
3632 "data/url_request_unittest/gzip-encoded",
3633 "data/url_request_unittest/gzip-encoded.mock-http-headers",
3634 "data/url_request_unittest/hpkp-headers-report-only.html",
3635 "data/url_request_unittest/hpkp-headers-report-only.html.mock-http-headers",
3636 "data/url_request_unittest/hpkp-headers.html",
3637 "data/url_request_unittest/hpkp-headers.html.mock-http-headers",
3638 "data/url_request_unittest/hsts-and-hpkp-headers.html",
3639 "data/url_request_unittest/hsts-and-hpkp-headers.html.mock-http-headers",
3640 "data/url_request_unittest/hsts-and-hpkp-headers2.html",
3641 "data/url_request_unittest/hsts-and-hpkp-headers2.html.mock-http-headers",
3642 "data/url_request_unittest/hsts-headers.html",
3643 "data/url_request_unittest/hsts-headers.html.mock-http-headers",
3644 "data/url_request_unittest/hsts-multiple-headers.html",
3645 "data/url_request_unittest/hsts-multiple-headers.html.mock-http-headers",
3646 "data/url_request_unittest/redirect-test.html",
3647 "data/url_request_unittest/redirect-test.html.mock-http-headers",
3648 "data/url_request_unittest/redirect-to-data.html",
3649 "data/url_request_unittest/redirect-to-data.html.mock-http-headers",
3650 "data/url_request_unittest/redirect-to-echoall",
3651 "data/url_request_unittest/redirect-to-echoall.mock-http-headers",
3652 "data/url_request_unittest/redirect-to-file.html",
3653 "data/url_request_unittest/redirect-to-file.html.mock-http-headers",
3654 "data/url_request_unittest/redirect-to-invalid-url.html",
3655 "data/url_request_unittest/redirect-to-invalid-url.html.mock-http-headers",
3656 "data/url_request_unittest/redirect301-to-echo",
3657 "data/url_request_unittest/redirect301-to-echo.mock-http-headers",
3658 "data/url_request_unittest/redirect301-to-https",
3659 "data/url_request_unittest/redirect301-to-https.mock-http-headers",
3660 "data/url_request_unittest/redirect302-to-echo",
3661 "data/url_request_unittest/redirect302-to-echo-cacheable",
3662 "data/url_request_unittest/redirect302-to-echo-cacheable.mock-http-headers",
3663 "data/url_request_unittest/redirect302-to-echo.mock-http-headers",
3664 "data/url_request_unittest/redirect302-to-https",
3665 "data/url_request_unittest/redirect302-to-https.mock-http-headers",
3666 "data/url_request_unittest/redirect303-to-echo",
3667 "data/url_request_unittest/redirect303-to-echo.mock-http-headers",
3668 "data/url_request_unittest/redirect303-to-https",
3669 "data/url_request_unittest/redirect303-to-https.mock-http-headers",
3670 "data/url_request_unittest/redirect307-to-echo",
3671 "data/url_request_unittest/redirect307-to-echo.mock-http-headers",
3672 "data/url_request_unittest/redirect307-to-https",
3673 "data/url_request_unittest/redirect307-to-https.mock-http-headers",
3674 "data/url_request_unittest/redirect308-to-echo",
3675 "data/url_request_unittest/redirect308-to-echo.mock-http-headers",
3676 "data/url_request_unittest/redirect308-to-https",
3677 "data/url_request_unittest/redirect308-to-https.mock-http-headers",
3678 "data/url_request_unittest/simple.html",
3679 "data/url_request_unittest/simple.html.mock-http-headers",
3680 "data/url_request_unittest/two-content-lengths.html",
3681 "data/url_request_unittest/two-content-lengths.html.mock-http-headers",
3682 "data/url_request_unittest/with-headers.html",
3683 "data/url_request_unittest/with-headers.html.mock-http-headers",
eroman266bda9e2017-05-03 01:28:043684 "data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/chain.pem",
3685 "data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/main.test",
eroman266bda9e2017-05-03 01:28:043686 "data/verify_certificate_chain_unittest/expired-intermediate/chain.pem",
eromane7af9002017-05-13 05:04:013687 "data/verify_certificate_chain_unittest/expired-intermediate/not-after.test",
3688 "data/verify_certificate_chain_unittest/expired-intermediate/not-before.test",
eromanc1a8b5d02017-05-03 21:52:103689 "data/verify_certificate_chain_unittest/expired-root/chain.pem",
eromane7af9002017-05-13 05:04:013690 "data/verify_certificate_chain_unittest/expired-root/not-after-ta-with-constraints.test",
3691 "data/verify_certificate_chain_unittest/expired-root/not-after.test",
3692 "data/verify_certificate_chain_unittest/expired-root/not-before.test",
eroman266bda9e2017-05-03 01:28:043693 "data/verify_certificate_chain_unittest/expired-target/chain.pem",
eromane7af9002017-05-13 05:04:013694 "data/verify_certificate_chain_unittest/expired-target/not-after.test",
3695 "data/verify_certificate_chain_unittest/expired-target/not-before.test",
eroman266bda9e2017-05-03 01:28:043696 "data/verify_certificate_chain_unittest/incorrect-trust-anchor/chain.pem",
3697 "data/verify_certificate_chain_unittest/incorrect-trust-anchor/main.test",
3698 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/chain.pem",
3699 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/main.test",
3700 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/chain.pem",
3701 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/main.test",
eroman7333d9b2017-06-23 01:50:253702 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/any.test",
3703 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/chain.pem",
3704 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/clientauth.test",
3705 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/serverauth.test",
3706 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/any.test",
3707 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/chain.pem",
3708 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/clientauth.test",
3709 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/serverauth.test",
Eric Romanc8c2d6a2017-08-01 22:55:303710 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-chain.pem",
3711 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-any.test",
3712 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-clientAuth.test",
3713 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-serverAuth.test",
3714 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-chain.pem",
3715 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-any.test",
3716 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-clientAuth.test",
3717 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-serverAuth.test",
eroman266bda9e2017-05-03 01:28:043718 "data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/chain.pem",
3719 "data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/main.test",
3720 "data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/chain.pem",
3721 "data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/main.test",
eroman266bda9e2017-05-03 01:28:043722 "data/verify_certificate_chain_unittest/intermediate-signed-with-md5/chain.pem",
3723 "data/verify_certificate_chain_unittest/intermediate-signed-with-md5/main.test",
3724 "data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/chain.pem",
3725 "data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/main.test",
3726 "data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/chain.pem",
3727 "data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/main.test",
3728 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.pem",
3729 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.test",
3730 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.pem",
3731 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.test",
3732 "data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.pem",
3733 "data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.test",
3734 "data/verify_certificate_chain_unittest/key-rollover/newchain.pem",
3735 "data/verify_certificate_chain_unittest/key-rollover/newchain.test",
3736 "data/verify_certificate_chain_unittest/key-rollover/oldchain.pem",
3737 "data/verify_certificate_chain_unittest/key-rollover/oldchain.test",
3738 "data/verify_certificate_chain_unittest/key-rollover/rolloverchain.pem",
3739 "data/verify_certificate_chain_unittest/key-rollover/rolloverchain.test",
3740 "data/verify_certificate_chain_unittest/non-self-signed-root/chain.pem",
3741 "data/verify_certificate_chain_unittest/non-self-signed-root/main.test",
eromanc1a8b5d02017-05-03 21:52:103742 "data/verify_certificate_chain_unittest/non-self-signed-root/ta-with-constraints.test",
eroman605a5cc2017-06-03 02:45:243743 "data/verify_certificate_chain_unittest/pkits_errors/4.1.2.txt",
3744 "data/verify_certificate_chain_unittest/pkits_errors/4.1.3.txt",
3745 "data/verify_certificate_chain_unittest/pkits_errors/4.1.4.txt",
3746 "data/verify_certificate_chain_unittest/pkits_errors/4.1.5.txt",
3747 "data/verify_certificate_chain_unittest/pkits_errors/4.1.6.txt",
3748 "data/verify_certificate_chain_unittest/pkits_errors/4.10.1.txt",
3749 "data/verify_certificate_chain_unittest/pkits_errors/4.10.10.txt",
3750 "data/verify_certificate_chain_unittest/pkits_errors/4.10.2.txt",
3751 "data/verify_certificate_chain_unittest/pkits_errors/4.10.3.txt",
3752 "data/verify_certificate_chain_unittest/pkits_errors/4.10.4.txt",
3753 "data/verify_certificate_chain_unittest/pkits_errors/4.10.5.txt",
3754 "data/verify_certificate_chain_unittest/pkits_errors/4.10.6.txt",
3755 "data/verify_certificate_chain_unittest/pkits_errors/4.10.7.txt",
3756 "data/verify_certificate_chain_unittest/pkits_errors/4.10.8.txt",
3757 "data/verify_certificate_chain_unittest/pkits_errors/4.11.1.txt",
3758 "data/verify_certificate_chain_unittest/pkits_errors/4.11.10.txt",
3759 "data/verify_certificate_chain_unittest/pkits_errors/4.11.11.txt",
3760 "data/verify_certificate_chain_unittest/pkits_errors/4.11.3.txt",
3761 "data/verify_certificate_chain_unittest/pkits_errors/4.11.5.txt",
3762 "data/verify_certificate_chain_unittest/pkits_errors/4.11.6.txt",
3763 "data/verify_certificate_chain_unittest/pkits_errors/4.11.8.txt",
3764 "data/verify_certificate_chain_unittest/pkits_errors/4.11.9.txt",
3765 "data/verify_certificate_chain_unittest/pkits_errors/4.12.1.txt",
3766 "data/verify_certificate_chain_unittest/pkits_errors/4.12.10.txt",
3767 "data/verify_certificate_chain_unittest/pkits_errors/4.12.3.txt",
3768 "data/verify_certificate_chain_unittest/pkits_errors/4.12.4.txt",
3769 "data/verify_certificate_chain_unittest/pkits_errors/4.12.5.txt",
3770 "data/verify_certificate_chain_unittest/pkits_errors/4.12.6.txt",
3771 "data/verify_certificate_chain_unittest/pkits_errors/4.12.8.txt",
3772 "data/verify_certificate_chain_unittest/pkits_errors/4.13.10.txt",
3773 "data/verify_certificate_chain_unittest/pkits_errors/4.13.12.txt",
3774 "data/verify_certificate_chain_unittest/pkits_errors/4.13.13.txt",
3775 "data/verify_certificate_chain_unittest/pkits_errors/4.13.15.txt",
3776 "data/verify_certificate_chain_unittest/pkits_errors/4.13.16.txt",
3777 "data/verify_certificate_chain_unittest/pkits_errors/4.13.17.txt",
3778 "data/verify_certificate_chain_unittest/pkits_errors/4.13.2.txt",
3779 "data/verify_certificate_chain_unittest/pkits_errors/4.13.20.txt",
3780 "data/verify_certificate_chain_unittest/pkits_errors/4.13.21.txt",
3781 "data/verify_certificate_chain_unittest/pkits_errors/4.13.22.txt",
3782 "data/verify_certificate_chain_unittest/pkits_errors/4.13.23.txt",
3783 "data/verify_certificate_chain_unittest/pkits_errors/4.13.24.txt",
3784 "data/verify_certificate_chain_unittest/pkits_errors/4.13.25.txt",
3785 "data/verify_certificate_chain_unittest/pkits_errors/4.13.26.txt",
3786 "data/verify_certificate_chain_unittest/pkits_errors/4.13.27.txt",
3787 "data/verify_certificate_chain_unittest/pkits_errors/4.13.28.txt",
3788 "data/verify_certificate_chain_unittest/pkits_errors/4.13.29.txt",
3789 "data/verify_certificate_chain_unittest/pkits_errors/4.13.3.txt",
3790 "data/verify_certificate_chain_unittest/pkits_errors/4.13.31.txt",
3791 "data/verify_certificate_chain_unittest/pkits_errors/4.13.33.txt",
3792 "data/verify_certificate_chain_unittest/pkits_errors/4.13.34.txt",
3793 "data/verify_certificate_chain_unittest/pkits_errors/4.13.35.txt",
3794 "data/verify_certificate_chain_unittest/pkits_errors/4.13.36.txt",
3795 "data/verify_certificate_chain_unittest/pkits_errors/4.13.37.txt",
3796 "data/verify_certificate_chain_unittest/pkits_errors/4.13.38.txt",
3797 "data/verify_certificate_chain_unittest/pkits_errors/4.13.7.txt",
3798 "data/verify_certificate_chain_unittest/pkits_errors/4.13.8.txt",
3799 "data/verify_certificate_chain_unittest/pkits_errors/4.13.9.txt",
3800 "data/verify_certificate_chain_unittest/pkits_errors/4.16.2.txt",
3801 "data/verify_certificate_chain_unittest/pkits_errors/4.2.1.txt",
3802 "data/verify_certificate_chain_unittest/pkits_errors/4.2.2.txt",
3803 "data/verify_certificate_chain_unittest/pkits_errors/4.2.5.txt",
3804 "data/verify_certificate_chain_unittest/pkits_errors/4.2.6.txt",
3805 "data/verify_certificate_chain_unittest/pkits_errors/4.2.7.txt",
3806 "data/verify_certificate_chain_unittest/pkits_errors/4.3.1.txt",
3807 "data/verify_certificate_chain_unittest/pkits_errors/4.3.2.txt",
3808 "data/verify_certificate_chain_unittest/pkits_errors/4.6.1.txt",
3809 "data/verify_certificate_chain_unittest/pkits_errors/4.6.10.txt",
3810 "data/verify_certificate_chain_unittest/pkits_errors/4.6.11.txt",
3811 "data/verify_certificate_chain_unittest/pkits_errors/4.6.12.txt",
3812 "data/verify_certificate_chain_unittest/pkits_errors/4.6.16.txt",
3813 "data/verify_certificate_chain_unittest/pkits_errors/4.6.2.txt",
3814 "data/verify_certificate_chain_unittest/pkits_errors/4.6.3.txt",
3815 "data/verify_certificate_chain_unittest/pkits_errors/4.6.5.txt",
3816 "data/verify_certificate_chain_unittest/pkits_errors/4.6.6.txt",
3817 "data/verify_certificate_chain_unittest/pkits_errors/4.6.9.txt",
3818 "data/verify_certificate_chain_unittest/pkits_errors/4.7.1.txt",
3819 "data/verify_certificate_chain_unittest/pkits_errors/4.7.2.txt",
3820 "data/verify_certificate_chain_unittest/pkits_errors/4.8.1.txt",
3821 "data/verify_certificate_chain_unittest/pkits_errors/4.8.12.txt",
3822 "data/verify_certificate_chain_unittest/pkits_errors/4.8.14.txt",
3823 "data/verify_certificate_chain_unittest/pkits_errors/4.8.2.txt",
3824 "data/verify_certificate_chain_unittest/pkits_errors/4.8.3.txt",
3825 "data/verify_certificate_chain_unittest/pkits_errors/4.8.4.txt",
3826 "data/verify_certificate_chain_unittest/pkits_errors/4.8.5.txt",
3827 "data/verify_certificate_chain_unittest/pkits_errors/4.8.6.txt",
3828 "data/verify_certificate_chain_unittest/pkits_errors/4.8.7.txt",
3829 "data/verify_certificate_chain_unittest/pkits_errors/4.8.8.txt",
3830 "data/verify_certificate_chain_unittest/pkits_errors/4.8.9.txt",
3831 "data/verify_certificate_chain_unittest/pkits_errors/4.9.3.txt",
3832 "data/verify_certificate_chain_unittest/pkits_errors/4.9.5.txt",
3833 "data/verify_certificate_chain_unittest/pkits_errors/4.9.7.txt",
3834 "data/verify_certificate_chain_unittest/pkits_errors/4.9.8.txt",
eromanc1a8b5d02017-05-03 21:52:103835 "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/chain.pem",
3836 "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/main.test",
3837 "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/ta-with-constraints.test",
eroman7333d9b2017-06-23 01:50:253838 "data/verify_certificate_chain_unittest/root-eku-clientauth/chain.pem",
3839 "data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth-ta-with-constraints.test",
3840 "data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth.test",
eromanc1a8b5d02017-05-03 21:52:103841 "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/chain.pem",
3842 "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/main.test",
3843 "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/ta-with-constraints.test",
eroman266bda9e2017-05-03 01:28:043844 "data/verify_certificate_chain_unittest/target-and-intermediate/chain.pem",
eromand1c9c9b2017-05-04 19:23:453845 "data/verify_certificate_chain_unittest/target-and-intermediate/distrusted-root.test",
eroman266bda9e2017-05-03 01:28:043846 "data/verify_certificate_chain_unittest/target-and-intermediate/main.test",
eromand1c9c9b2017-05-04 19:23:453847 "data/verify_certificate_chain_unittest/target-and-intermediate/unspecified-trust-root.test",
eroman7333d9b2017-06-23 01:50:253848 "data/verify_certificate_chain_unittest/target-eku-clientauth/any.test",
3849 "data/verify_certificate_chain_unittest/target-eku-clientauth/chain.pem",
3850 "data/verify_certificate_chain_unittest/target-eku-clientauth/clientauth.test",
3851 "data/verify_certificate_chain_unittest/target-eku-clientauth/serverauth.test",
3852 "data/verify_certificate_chain_unittest/target-eku-none/any.test",
3853 "data/verify_certificate_chain_unittest/target-eku-none/chain.pem",
3854 "data/verify_certificate_chain_unittest/target-eku-none/clientauth.test",
3855 "data/verify_certificate_chain_unittest/target-eku-none/serverauth.test",
Eric Roman5431d702017-07-26 01:58:183856 "data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/chain.pem",
3857 "data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/main.test",
eroman266bda9e2017-05-03 01:28:043858 "data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/chain.pem",
3859 "data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/main.test",
3860 "data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/chain.pem",
3861 "data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/main.test",
eroman266bda9e2017-05-03 01:28:043862 "data/verify_certificate_chain_unittest/target-not-end-entity/chain.pem",
3863 "data/verify_certificate_chain_unittest/target-not-end-entity/main.test",
eromane7899432017-05-04 16:40:483864 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.pem",
3865 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.test",
3866 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.pem",
3867 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.test",
3868 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.pem",
3869 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.test",
3870 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.pem",
3871 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.test",
3872 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.pem",
3873 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.test",
3874 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.pem",
3875 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.test",
3876 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.pem",
3877 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.test",
3878 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.pem",
3879 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.test",
eroman266bda9e2017-05-03 01:28:043880 "data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/chain.pem",
3881 "data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/main.test",
3882 "data/verify_certificate_chain_unittest/target-signed-using-ecdsa/chain.pem",
3883 "data/verify_certificate_chain_unittest/target-signed-using-ecdsa/main.test",
3884 "data/verify_certificate_chain_unittest/target-signed-with-md5/chain.pem",
3885 "data/verify_certificate_chain_unittest/target-signed-with-md5/main.test",
3886 "data/verify_certificate_chain_unittest/target-unknown-critical-extension/chain.pem",
3887 "data/verify_certificate_chain_unittest/target-unknown-critical-extension/main.test",
3888 "data/verify_certificate_chain_unittest/target-wrong-signature/chain.pem",
3889 "data/verify_certificate_chain_unittest/target-wrong-signature/main.test",
eroman178f2c62017-06-07 01:03:443890 "data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/chain.pem",
3891 "data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/main.test",
3892 "data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/chain.pem",
3893 "data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/main.test",
eroman266bda9e2017-05-03 01:28:043894 "data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/chain.pem",
3895 "data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/main.test",
eromanc1a8b5d02017-05-03 21:52:103896 "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/chain.pem",
3897 "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/main.test",
3898 "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/ta-with-constraints.test",
ckrasic73f7240b2017-01-24 00:06:453899 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-dupe_attr.pem",
3900 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_attr.pem",
3901 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_rdn.pem",
3902 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap.pem",
3903 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-dupe_attr.pem",
3904 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_attr.pem",
3905 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_rdn.pem",
3906 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace.pem",
3907 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-dupe_attr.pem",
3908 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_attr.pem",
3909 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_rdn.pem",
3910 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled.pem",
3911 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-dupe_attr.pem",
3912 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_attr.pem",
3913 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_rdn.pem",
3914 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap.pem",
3915 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-dupe_attr.pem",
3916 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_attr.pem",
3917 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_rdn.pem",
3918 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace.pem",
3919 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_1.pem",
3920 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_2.pem",
3921 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-dupe_attr.pem",
3922 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_attr.pem",
3923 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_rdn.pem",
3924 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled.pem",
3925 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-dupe_attr.pem",
3926 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_attr.pem",
3927 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_rdn.pem",
3928 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap.pem",
3929 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-dupe_attr.pem",
3930 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_attr.pem",
3931 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_rdn.pem",
3932 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace.pem",
3933 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-dupe_attr.pem",
3934 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_attr.pem",
3935 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_rdn.pem",
3936 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled.pem",
3937 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-dupe_attr.pem",
3938 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_attr.pem",
3939 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_rdn.pem",
3940 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap.pem",
3941 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-dupe_attr.pem",
3942 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_attr.pem",
3943 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_rdn.pem",
3944 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace.pem",
3945 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-dupe_attr.pem",
3946 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_attr.pem",
3947 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_rdn.pem",
3948 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled.pem",
3949 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-dupe_attr.pem",
3950 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_attr.pem",
3951 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_rdn.pem",
3952 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap.pem",
3953 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-dupe_attr.pem",
3954 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_attr.pem",
3955 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_rdn.pem",
3956 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace.pem",
3957 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-dupe_attr.pem",
3958 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_attr.pem",
3959 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_rdn.pem",
3960 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled.pem",
3961 "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_1.pem",
3962 "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_2.pem",
3963 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-badAttributeType.pem",
3964 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-empty.pem",
3965 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-extradata.pem",
3966 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-onlyOneElement.pem",
3967 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-setNotSequence.pem",
3968 "data/verify_name_match_unittest/names/invalid-Name-setInsteadOfSequence.pem",
3969 "data/verify_name_match_unittest/names/invalid-RDN-empty.pem",
3970 "data/verify_name_match_unittest/names/invalid-RDN-sequenceInsteadOfSet.pem",
3971 "data/verify_name_match_unittest/names/unicode-mixed-normalized.pem",
3972 "data/verify_name_match_unittest/names/unicode-mixed-unnormalized.pem",
3973 "data/verify_name_match_unittest/names/unicode_bmp-BMPSTRING-unmangled.pem",
3974 "data/verify_name_match_unittest/names/unicode_bmp-UNIVERSALSTRING-unmangled.pem",
3975 "data/verify_name_match_unittest/names/unicode_bmp-UTF8-unmangled.pem",
3976 "data/verify_name_match_unittest/names/unicode_supplementary-UNIVERSALSTRING-unmangled.pem",
3977 "data/verify_name_match_unittest/names/unicode_supplementary-UTF8-unmangled.pem",
3978 "data/verify_name_match_unittest/names/valid-Name-empty.pem",
3979 "data/verify_name_match_unittest/names/valid-minimal.pem",
3980 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-spki-params-null.pem",
3981 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-unused-bits-signature.pem",
3982 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecdh-key.pem",
3983 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecmqv-key.pem",
3984 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-rsa-algorithm.pem",
3985 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-wrong-signature-format.pem",
3986 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512.pem",
3987 "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256-corrupted-data.pem",
3988 "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256.pem",
3989 "data/verify_signed_data_unittest/ecdsa-using-rsa-key.pem",
3990 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-length.pem",
3991 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-null.pem",
3992 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-key-params-absent.pem",
3993 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-using-pss-key-no-params.pem",
3994 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-wrong-algorithm.pem",
3995 "data/verify_signed_data_unittest/rsa-pkcs1-sha1.pem",
3996 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-key-encoded-ber.pem",
3997 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-spki-non-null-params.pem",
3998 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-ecdsa-algorithm.pem",
3999 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-id-ea-rsa.pem",
4000 "data/verify_signed_data_unittest/rsa-pkcs1-sha256.pem",
4001 "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-no-params.pem",
4002 "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-with-null-params.pem",
4003 "data/verify_signed_data_unittest/rsa-pss-sha1-salt20.pem",
4004 "data/verify_signed_data_unittest/rsa-pss-sha1-wrong-salt.pem",
4005 "data/verify_signed_data_unittest/rsa-pss-sha256-mgf1-sha512-salt33.pem",
4006 "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-params.pem",
4007 "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-wrong-params.pem",
4008 "data/verify_signed_data_unittest/rsa-pss-sha256-salt10.pem",
4009 "data/verify_signed_data_unittest/rsa-using-ec-key.pem",
4010 "data/verify_signed_data_unittest/rsa2048-pkcs1-sha512.pem",
4011 "third_party/nist-pkits/certs/AllCertificatesNoPoliciesTest2EE.crt",
4012 "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest10EE.crt",
4013 "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest13EE.crt",
4014 "third_party/nist-pkits/certs/AllCertificatesanyPolicyTest11EE.crt",
4015 "third_party/nist-pkits/certs/AnyPolicyTest14EE.crt",
4016 "third_party/nist-pkits/certs/BadCRLIssuerNameCACert.crt",
4017 "third_party/nist-pkits/certs/BadCRLSignatureCACert.crt",
4018 "third_party/nist-pkits/certs/BadSignedCACert.crt",
4019 "third_party/nist-pkits/certs/BadnotAfterDateCACert.crt",
4020 "third_party/nist-pkits/certs/BadnotBeforeDateCACert.crt",
4021 "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCACert.crt",
4022 "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCRLCert.crt",
4023 "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyCACert.crt",
4024 "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyOldWithNewCACert.crt",
4025 "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyCACert.crt",
4026 "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyNewWithOldCACert.crt",
4027 "third_party/nist-pkits/certs/CPSPointerQualifierTest20EE.crt",
4028 "third_party/nist-pkits/certs/DSACACert.crt",
4029 "third_party/nist-pkits/certs/DSAParametersInheritedCACert.crt",
4030 "third_party/nist-pkits/certs/DifferentPoliciesTest12EE.crt",
4031 "third_party/nist-pkits/certs/DifferentPoliciesTest3EE.crt",
4032 "third_party/nist-pkits/certs/DifferentPoliciesTest4EE.crt",
4033 "third_party/nist-pkits/certs/DifferentPoliciesTest5EE.crt",
4034 "third_party/nist-pkits/certs/DifferentPoliciesTest7EE.crt",
4035 "third_party/nist-pkits/certs/DifferentPoliciesTest8EE.crt",
4036 "third_party/nist-pkits/certs/DifferentPoliciesTest9EE.crt",
4037 "third_party/nist-pkits/certs/GeneralizedTimeCRLnextUpdateCACert.crt",
4038 "third_party/nist-pkits/certs/GoodCACert.crt",
4039 "third_party/nist-pkits/certs/GoodsubCACert.crt",
4040 "third_party/nist-pkits/certs/GoodsubCAPanyPolicyMapping1to2CACert.crt",
4041 "third_party/nist-pkits/certs/InvalidBadCRLIssuerNameTest5EE.crt",
4042 "third_party/nist-pkits/certs/InvalidBadCRLSignatureTest4EE.crt",
4043 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest7EE.crt",
4044 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest8EE.crt",
4045 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedNewWithOldTest5EE.crt",
4046 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedOldWithNewTest2EE.crt",
4047 "third_party/nist-pkits/certs/InvalidCASignatureTest2EE.crt",
4048 "third_party/nist-pkits/certs/InvalidCAnotAfterDateTest5EE.crt",
4049 "third_party/nist-pkits/certs/InvalidCAnotBeforeDateTest1EE.crt",
4050 "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest31EE.crt",
4051 "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest33EE.crt",
4052 "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest38EE.crt",
4053 "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest28EE.crt",
4054 "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest29EE.crt",
4055 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest10EE.crt",
4056 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest12EE.crt",
4057 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest13EE.crt",
4058 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest15EE.crt",
4059 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest16EE.crt",
4060 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest17EE.crt",
4061 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest20EE.crt",
4062 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest2EE.crt",
4063 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest3EE.crt",
4064 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest7EE.crt",
4065 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest8EE.crt",
4066 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest9EE.crt",
4067 "third_party/nist-pkits/certs/InvalidDSASignatureTest6EE.crt",
4068 "third_party/nist-pkits/certs/InvalidEESignatureTest3EE.crt",
4069 "third_party/nist-pkits/certs/InvalidEEnotAfterDateTest6EE.crt",
4070 "third_party/nist-pkits/certs/InvalidEEnotBeforeDateTest2EE.crt",
4071 "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest23EE.crt",
4072 "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest26EE.crt",
4073 "third_party/nist-pkits/certs/InvalidLongSerialNumberTest18EE.crt",
4074 "third_party/nist-pkits/certs/InvalidMappingFromanyPolicyTest7EE.crt",
4075 "third_party/nist-pkits/certs/InvalidMappingToanyPolicyTest8EE.crt",
4076 "third_party/nist-pkits/certs/InvalidMissingCRLTest1EE.crt",
4077 "third_party/nist-pkits/certs/InvalidMissingbasicConstraintsTest1EE.crt",
4078 "third_party/nist-pkits/certs/InvalidNameChainingOrderTest2EE.crt",
4079 "third_party/nist-pkits/certs/InvalidNameChainingTest1EE.crt",
4080 "third_party/nist-pkits/certs/InvalidNegativeSerialNumberTest15EE.crt",
4081 "third_party/nist-pkits/certs/InvalidOldCRLnextUpdateTest11EE.crt",
4082 "third_party/nist-pkits/certs/InvalidPolicyMappingTest10EE.crt",
4083 "third_party/nist-pkits/certs/InvalidPolicyMappingTest2EE.crt",
4084 "third_party/nist-pkits/certs/InvalidPolicyMappingTest4EE.crt",
4085 "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest22EE.crt",
4086 "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest24EE.crt",
4087 "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest26EE.crt",
4088 "third_party/nist-pkits/certs/InvalidRevokedCATest2EE.crt",
4089 "third_party/nist-pkits/certs/InvalidRevokedEETest3EE.crt",
4090 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest10EE.crt",
4091 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest8EE.crt",
4092 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest10EE.crt",
4093 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest11EE.crt",
4094 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest8EE.crt",
4095 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest9EE.crt",
4096 "third_party/nist-pkits/certs/InvalidSelfIssuedpathLenConstraintTest16EE.crt",
4097 "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest7EE.crt",
4098 "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest8EE.crt",
4099 "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest20EE.crt",
4100 "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest21EE.crt",
4101 "third_party/nist-pkits/certs/InvalidURInameConstraintsTest35EE.crt",
4102 "third_party/nist-pkits/certs/InvalidURInameConstraintsTest37EE.crt",
4103 "third_party/nist-pkits/certs/InvalidUnknownCRLEntryExtensionTest8EE.crt",
4104 "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest10EE.crt",
4105 "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest9EE.crt",
4106 "third_party/nist-pkits/certs/InvalidUnknownCriticalCertificateExtensionTest2EE.crt",
4107 "third_party/nist-pkits/certs/InvalidWrongCRLTest6EE.crt",
4108 "third_party/nist-pkits/certs/InvalidcAFalseTest2EE.crt",
4109 "third_party/nist-pkits/certs/InvalidcAFalseTest3EE.crt",
4110 "third_party/nist-pkits/certs/InvalidcRLIssuerTest27EE.crt",
4111 "third_party/nist-pkits/certs/InvalidcRLIssuerTest31EE.crt",
4112 "third_party/nist-pkits/certs/InvalidcRLIssuerTest32EE.crt",
4113 "third_party/nist-pkits/certs/InvalidcRLIssuerTest34EE.crt",
4114 "third_party/nist-pkits/certs/InvalidcRLIssuerTest35EE.crt",
4115 "third_party/nist-pkits/certs/InvaliddeltaCRLIndicatorNoBaseTest1EE.crt",
4116 "third_party/nist-pkits/certs/InvaliddeltaCRLTest10EE.crt",
4117 "third_party/nist-pkits/certs/InvaliddeltaCRLTest3EE.crt",
4118 "third_party/nist-pkits/certs/InvaliddeltaCRLTest4EE.crt",
4119 "third_party/nist-pkits/certs/InvaliddeltaCRLTest6EE.crt",
4120 "third_party/nist-pkits/certs/InvaliddeltaCRLTest9EE.crt",
4121 "third_party/nist-pkits/certs/InvaliddistributionPointTest2EE.crt",
4122 "third_party/nist-pkits/certs/InvaliddistributionPointTest3EE.crt",
4123 "third_party/nist-pkits/certs/InvaliddistributionPointTest6EE.crt",
4124 "third_party/nist-pkits/certs/InvaliddistributionPointTest8EE.crt",
4125 "third_party/nist-pkits/certs/InvaliddistributionPointTest9EE.crt",
4126 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest1EE.crt",
4127 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest4EE.crt",
4128 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest5EE.crt",
4129 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest6EE.crt",
4130 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest1EE.crt",
4131 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest3EE.crt",
4132 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest5EE.crt",
4133 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest6EE.crt",
4134 "third_party/nist-pkits/certs/InvalidkeyUsageCriticalcRLSignFalseTest4EE.crt",
4135 "third_party/nist-pkits/certs/InvalidkeyUsageCriticalkeyCertSignFalseTest1EE.crt",
4136 "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalcRLSignFalseTest5EE.crt",
4137 "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalkeyCertSignFalseTest2EE.crt",
4138 "third_party/nist-pkits/certs/InvalidonlyContainsAttributeCertsTest14EE.crt",
4139 "third_party/nist-pkits/certs/InvalidonlyContainsCACertsTest12EE.crt",
4140 "third_party/nist-pkits/certs/InvalidonlyContainsUserCertsTest11EE.crt",
4141 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest15EE.crt",
4142 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest16EE.crt",
4143 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest17EE.crt",
4144 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest20EE.crt",
4145 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest21EE.crt",
4146 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest10EE.crt",
4147 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest11EE.crt",
4148 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest12EE.crt",
4149 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest5EE.crt",
4150 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest6EE.crt",
4151 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest9EE.crt",
4152 "third_party/nist-pkits/certs/Invalidpre2000CRLnextUpdateTest12EE.crt",
4153 "third_party/nist-pkits/certs/Invalidpre2000UTCEEnotAfterDateTest7EE.crt",
4154 "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest3EE.crt",
4155 "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest5EE.crt",
4156 "third_party/nist-pkits/certs/LongSerialNumberCACert.crt",
4157 "third_party/nist-pkits/certs/Mapping1to2CACert.crt",
4158 "third_party/nist-pkits/certs/MappingFromanyPolicyCACert.crt",
4159 "third_party/nist-pkits/certs/MappingToanyPolicyCACert.crt",
4160 "third_party/nist-pkits/certs/MissingbasicConstraintsCACert.crt",
4161 "third_party/nist-pkits/certs/NameOrderingCACert.crt",
4162 "third_party/nist-pkits/certs/NegativeSerialNumberCACert.crt",
4163 "third_party/nist-pkits/certs/NoCRLCACert.crt",
4164 "third_party/nist-pkits/certs/NoPoliciesCACert.crt",
4165 "third_party/nist-pkits/certs/NoissuingDistributionPointCACert.crt",
4166 "third_party/nist-pkits/certs/OldCRLnextUpdateCACert.crt",
4167 "third_party/nist-pkits/certs/OverlappingPoliciesTest6EE.crt",
4168 "third_party/nist-pkits/certs/P12Mapping1to3CACert.crt",
4169 "third_party/nist-pkits/certs/P12Mapping1to3subCACert.crt",
4170 "third_party/nist-pkits/certs/P12Mapping1to3subsubCACert.crt",
4171 "third_party/nist-pkits/certs/P1Mapping1to234CACert.crt",
4172 "third_party/nist-pkits/certs/P1Mapping1to234subCACert.crt",
4173 "third_party/nist-pkits/certs/P1anyPolicyMapping1to2CACert.crt",
4174 "third_party/nist-pkits/certs/PanyPolicyMapping1to2CACert.crt",
4175 "third_party/nist-pkits/certs/PoliciesP1234CACert.crt",
4176 "third_party/nist-pkits/certs/PoliciesP1234subCAP123Cert.crt",
4177 "third_party/nist-pkits/certs/PoliciesP1234subsubCAP123P12Cert.crt",
4178 "third_party/nist-pkits/certs/PoliciesP123CACert.crt",
4179 "third_party/nist-pkits/certs/PoliciesP123subCAP12Cert.crt",
4180 "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P1Cert.crt",
4181 "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P2Cert.crt",
4182 "third_party/nist-pkits/certs/PoliciesP123subsubsubCAP12P2P1Cert.crt",
4183 "third_party/nist-pkits/certs/PoliciesP12CACert.crt",
4184 "third_party/nist-pkits/certs/PoliciesP12subCAP1Cert.crt",
4185 "third_party/nist-pkits/certs/PoliciesP12subsubCAP1P2Cert.crt",
4186 "third_party/nist-pkits/certs/PoliciesP2subCA2Cert.crt",
4187 "third_party/nist-pkits/certs/PoliciesP2subCACert.crt",
4188 "third_party/nist-pkits/certs/PoliciesP3CACert.crt",
4189 "third_party/nist-pkits/certs/RFC3280MandatoryAttributeTypesCACert.crt",
4190 "third_party/nist-pkits/certs/RFC3280OptionalAttributeTypesCACert.crt",
4191 "third_party/nist-pkits/certs/RevokedsubCACert.crt",
4192 "third_party/nist-pkits/certs/RolloverfromPrintableStringtoUTF8StringCACert.crt",
4193 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CRLSigningCert.crt",
4194 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CertificateSigningCACert.crt",
4195 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCRLSigningCert.crt",
4196 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCertificateSigningCACert.crt",
4197 "third_party/nist-pkits/certs/TrustAnchorRootCertificate.crt",
4198 "third_party/nist-pkits/certs/TwoCRLsCACert.crt",
4199 "third_party/nist-pkits/certs/UIDCACert.crt",
4200 "third_party/nist-pkits/certs/UTF8StringCaseInsensitiveMatchCACert.crt",
4201 "third_party/nist-pkits/certs/UTF8StringEncodedNamesCACert.crt",
4202 "third_party/nist-pkits/certs/UnknownCRLEntryExtensionCACert.crt",
4203 "third_party/nist-pkits/certs/UnknownCRLExtensionCACert.crt",
4204 "third_party/nist-pkits/certs/UserNoticeQualifierTest15EE.crt",
4205 "third_party/nist-pkits/certs/UserNoticeQualifierTest16EE.crt",
4206 "third_party/nist-pkits/certs/UserNoticeQualifierTest17EE.crt",
4207 "third_party/nist-pkits/certs/UserNoticeQualifierTest18EE.crt",
4208 "third_party/nist-pkits/certs/UserNoticeQualifierTest19EE.crt",
4209 "third_party/nist-pkits/certs/ValidBasicSelfIssuedCRLSigningKeyTest6EE.crt",
4210 "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest3EE.crt",
4211 "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest4EE.crt",
4212 "third_party/nist-pkits/certs/ValidBasicSelfIssuedOldWithNewTest1EE.crt",
4213 "third_party/nist-pkits/certs/ValidCertificatePathTest1EE.crt",
4214 "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest30EE.crt",
4215 "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest32EE.crt",
4216 "third_party/nist-pkits/certs/ValidDNandRFC822nameConstraintsTest27EE.crt",
4217 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest11EE.crt",
4218 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest14EE.crt",
4219 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest18EE.crt",
4220 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest19EE.crt",
4221 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest1EE.crt",
4222 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest4EE.crt",
4223 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest5EE.crt",
4224 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest6EE.crt",
4225 "third_party/nist-pkits/certs/ValidDSAParameterInheritanceTest5EE.crt",
4226 "third_party/nist-pkits/certs/ValidDSASignaturesTest4EE.crt",
4227 "third_party/nist-pkits/certs/ValidGeneralizedTimeCRLnextUpdateTest13EE.crt",
4228 "third_party/nist-pkits/certs/ValidGeneralizedTimenotAfterDateTest8EE.crt",
4229 "third_party/nist-pkits/certs/ValidGeneralizedTimenotBeforeDateTest4EE.crt",
4230 "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest22EE.crt",
4231 "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest24EE.crt",
4232 "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest25EE.crt",
4233 "third_party/nist-pkits/certs/ValidLongSerialNumberTest16EE.crt",
4234 "third_party/nist-pkits/certs/ValidLongSerialNumberTest17EE.crt",
4235 "third_party/nist-pkits/certs/ValidNameChainingCapitalizationTest5EE.crt",
4236 "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest3EE.crt",
4237 "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest4EE.crt",
4238 "third_party/nist-pkits/certs/ValidNameUIDsTest6EE.crt",
4239 "third_party/nist-pkits/certs/ValidNegativeSerialNumberTest14EE.crt",
4240 "third_party/nist-pkits/certs/ValidNoissuingDistributionPointTest10EE.crt",
4241 "third_party/nist-pkits/certs/ValidPolicyMappingTest11EE.crt",
4242 "third_party/nist-pkits/certs/ValidPolicyMappingTest12EE.crt",
4243 "third_party/nist-pkits/certs/ValidPolicyMappingTest13EE.crt",
4244 "third_party/nist-pkits/certs/ValidPolicyMappingTest14EE.crt",
4245 "third_party/nist-pkits/certs/ValidPolicyMappingTest1EE.crt",
4246 "third_party/nist-pkits/certs/ValidPolicyMappingTest3EE.crt",
4247 "third_party/nist-pkits/certs/ValidPolicyMappingTest5EE.crt",
4248 "third_party/nist-pkits/certs/ValidPolicyMappingTest6EE.crt",
4249 "third_party/nist-pkits/certs/ValidPolicyMappingTest9EE.crt",
4250 "third_party/nist-pkits/certs/ValidRFC3280MandatoryAttributeTypesTest7EE.crt",
4251 "third_party/nist-pkits/certs/ValidRFC3280OptionalAttributeTypesTest8EE.crt",
4252 "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest21EE.crt",
4253 "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest23EE.crt",
4254 "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest25EE.crt",
4255 "third_party/nist-pkits/certs/ValidRolloverfromPrintableStringtoUTF8StringTest10EE.crt",
4256 "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest7EE.crt",
4257 "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest9EE.crt",
4258 "third_party/nist-pkits/certs/ValidSelfIssuedinhibitPolicyMappingTest7EE.crt",
4259 "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest15EE.crt",
4260 "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest17EE.crt",
4261 "third_party/nist-pkits/certs/ValidSelfIssuedrequireExplicitPolicyTest6EE.crt",
4262 "third_party/nist-pkits/certs/ValidSeparateCertificateandCRLKeysTest19EE.crt",
4263 "third_party/nist-pkits/certs/ValidTwoCRLsTest7EE.crt",
4264 "third_party/nist-pkits/certs/ValidURInameConstraintsTest34EE.crt",
4265 "third_party/nist-pkits/certs/ValidURInameConstraintsTest36EE.crt",
4266 "third_party/nist-pkits/certs/ValidUTF8StringCaseInsensitiveMatchTest11EE.crt",
4267 "third_party/nist-pkits/certs/ValidUTF8StringEncodedNamesTest9EE.crt",
4268 "third_party/nist-pkits/certs/ValidUnknownNotCriticalCertificateExtensionTest1EE.crt",
4269 "third_party/nist-pkits/certs/ValidbasicConstraintsNotCriticalTest4EE.crt",
4270 "third_party/nist-pkits/certs/ValidcRLIssuerTest28EE.crt",
4271 "third_party/nist-pkits/certs/ValidcRLIssuerTest29EE.crt",
4272 "third_party/nist-pkits/certs/ValidcRLIssuerTest30EE.crt",
4273 "third_party/nist-pkits/certs/ValidcRLIssuerTest33EE.crt",
4274 "third_party/nist-pkits/certs/ValiddeltaCRLTest2EE.crt",
4275 "third_party/nist-pkits/certs/ValiddeltaCRLTest5EE.crt",
4276 "third_party/nist-pkits/certs/ValiddeltaCRLTest7EE.crt",
4277 "third_party/nist-pkits/certs/ValiddeltaCRLTest8EE.crt",
4278 "third_party/nist-pkits/certs/ValiddistributionPointTest1EE.crt",
4279 "third_party/nist-pkits/certs/ValiddistributionPointTest4EE.crt",
4280 "third_party/nist-pkits/certs/ValiddistributionPointTest5EE.crt",
4281 "third_party/nist-pkits/certs/ValiddistributionPointTest7EE.crt",
4282 "third_party/nist-pkits/certs/ValidinhibitAnyPolicyTest2EE.crt",
4283 "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest2EE.crt",
4284 "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest4EE.crt",
4285 "third_party/nist-pkits/certs/ValidkeyUsageNotCriticalTest3EE.crt",
4286 "third_party/nist-pkits/certs/ValidonlyContainsCACertsTest13EE.crt",
4287 "third_party/nist-pkits/certs/ValidonlySomeReasonsTest18EE.crt",
4288 "third_party/nist-pkits/certs/ValidonlySomeReasonsTest19EE.crt",
4289 "third_party/nist-pkits/certs/ValidpathLenConstraintTest13EE.crt",
4290 "third_party/nist-pkits/certs/ValidpathLenConstraintTest14EE.crt",
4291 "third_party/nist-pkits/certs/ValidpathLenConstraintTest7EE.crt",
4292 "third_party/nist-pkits/certs/ValidpathLenConstraintTest8EE.crt",
4293 "third_party/nist-pkits/certs/Validpre2000UTCnotBeforeDateTest3EE.crt",
4294 "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest1EE.crt",
4295 "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest2EE.crt",
4296 "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest4EE.crt",
4297 "third_party/nist-pkits/certs/WrongCRLCACert.crt",
4298 "third_party/nist-pkits/certs/anyPolicyCACert.crt",
4299 "third_party/nist-pkits/certs/basicConstraintsCriticalcAFalseCACert.crt",
4300 "third_party/nist-pkits/certs/basicConstraintsNotCriticalCACert.crt",
4301 "third_party/nist-pkits/certs/basicConstraintsNotCriticalcAFalseCACert.crt",
4302 "third_party/nist-pkits/certs/deltaCRLCA1Cert.crt",
4303 "third_party/nist-pkits/certs/deltaCRLCA2Cert.crt",
4304 "third_party/nist-pkits/certs/deltaCRLCA3Cert.crt",
4305 "third_party/nist-pkits/certs/deltaCRLIndicatorNoBaseCACert.crt",
4306 "third_party/nist-pkits/certs/distributionPoint1CACert.crt",
4307 "third_party/nist-pkits/certs/distributionPoint2CACert.crt",
4308 "third_party/nist-pkits/certs/indirectCRLCA1Cert.crt",
4309 "third_party/nist-pkits/certs/indirectCRLCA2Cert.crt",
4310 "third_party/nist-pkits/certs/indirectCRLCA3Cert.crt",
4311 "third_party/nist-pkits/certs/indirectCRLCA3cRLIssuerCert.crt",
4312 "third_party/nist-pkits/certs/indirectCRLCA4Cert.crt",
4313 "third_party/nist-pkits/certs/indirectCRLCA4cRLIssuerCert.crt",
4314 "third_party/nist-pkits/certs/indirectCRLCA5Cert.crt",
4315 "third_party/nist-pkits/certs/indirectCRLCA6Cert.crt",
4316 "third_party/nist-pkits/certs/inhibitAnyPolicy0CACert.crt",
4317 "third_party/nist-pkits/certs/inhibitAnyPolicy1CACert.crt",
4318 "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedCACert.crt",
4319 "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedsubCA2Cert.crt",
4320 "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA1Cert.crt",
4321 "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA2Cert.crt",
4322 "third_party/nist-pkits/certs/inhibitAnyPolicy1subCAIAP5Cert.crt",
4323 "third_party/nist-pkits/certs/inhibitAnyPolicy1subsubCA2Cert.crt",
4324 "third_party/nist-pkits/certs/inhibitAnyPolicy5CACert.crt",
4325 "third_party/nist-pkits/certs/inhibitAnyPolicy5subCACert.crt",
4326 "third_party/nist-pkits/certs/inhibitAnyPolicy5subsubCACert.crt",
4327 "third_party/nist-pkits/certs/inhibitAnyPolicyTest3EE.crt",
4328 "third_party/nist-pkits/certs/inhibitPolicyMapping0CACert.crt",
4329 "third_party/nist-pkits/certs/inhibitPolicyMapping0subCACert.crt",
4330 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12CACert.crt",
4331 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCACert.crt",
4332 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCAIPM5Cert.crt",
4333 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCACert.crt",
4334 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCAIPM5Cert.crt",
4335 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1CACert.crt",
4336 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedCACert.crt",
4337 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedsubCACert.crt",
4338 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subCACert.crt",
4339 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subsubCACert.crt",
4340 "third_party/nist-pkits/certs/inhibitPolicyMapping5CACert.crt",
4341 "third_party/nist-pkits/certs/inhibitPolicyMapping5subCACert.crt",
4342 "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubCACert.crt",
4343 "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubsubCACert.crt",
4344 "third_party/nist-pkits/certs/keyUsageCriticalcRLSignFalseCACert.crt",
4345 "third_party/nist-pkits/certs/keyUsageCriticalkeyCertSignFalseCACert.crt",
4346 "third_party/nist-pkits/certs/keyUsageNotCriticalCACert.crt",
4347 "third_party/nist-pkits/certs/keyUsageNotCriticalcRLSignFalseCACert.crt",
4348 "third_party/nist-pkits/certs/keyUsageNotCriticalkeyCertSignFalseCACert.crt",
4349 "third_party/nist-pkits/certs/nameConstraintsDN1CACert.crt",
4350 "third_party/nist-pkits/certs/nameConstraintsDN1SelfIssuedCACert.crt",
4351 "third_party/nist-pkits/certs/nameConstraintsDN1subCA1Cert.crt",
4352 "third_party/nist-pkits/certs/nameConstraintsDN1subCA2Cert.crt",
4353 "third_party/nist-pkits/certs/nameConstraintsDN1subCA3Cert.crt",
4354 "third_party/nist-pkits/certs/nameConstraintsDN2CACert.crt",
4355 "third_party/nist-pkits/certs/nameConstraintsDN3CACert.crt",
4356 "third_party/nist-pkits/certs/nameConstraintsDN3subCA1Cert.crt",
4357 "third_party/nist-pkits/certs/nameConstraintsDN3subCA2Cert.crt",
4358 "third_party/nist-pkits/certs/nameConstraintsDN4CACert.crt",
4359 "third_party/nist-pkits/certs/nameConstraintsDN5CACert.crt",
4360 "third_party/nist-pkits/certs/nameConstraintsDNS1CACert.crt",
4361 "third_party/nist-pkits/certs/nameConstraintsDNS2CACert.crt",
4362 "third_party/nist-pkits/certs/nameConstraintsRFC822CA1Cert.crt",
4363 "third_party/nist-pkits/certs/nameConstraintsRFC822CA2Cert.crt",
4364 "third_party/nist-pkits/certs/nameConstraintsRFC822CA3Cert.crt",
4365 "third_party/nist-pkits/certs/nameConstraintsURI1CACert.crt",
4366 "third_party/nist-pkits/certs/nameConstraintsURI2CACert.crt",
4367 "third_party/nist-pkits/certs/onlyContainsAttributeCertsCACert.crt",
4368 "third_party/nist-pkits/certs/onlyContainsCACertsCACert.crt",
4369 "third_party/nist-pkits/certs/onlyContainsUserCertsCACert.crt",
4370 "third_party/nist-pkits/certs/onlySomeReasonsCA1Cert.crt",
4371 "third_party/nist-pkits/certs/onlySomeReasonsCA2Cert.crt",
4372 "third_party/nist-pkits/certs/onlySomeReasonsCA3Cert.crt",
4373 "third_party/nist-pkits/certs/onlySomeReasonsCA4Cert.crt",
4374 "third_party/nist-pkits/certs/pathLenConstraint0CACert.crt",
4375 "third_party/nist-pkits/certs/pathLenConstraint0SelfIssuedCACert.crt",
4376 "third_party/nist-pkits/certs/pathLenConstraint0subCA2Cert.crt",
4377 "third_party/nist-pkits/certs/pathLenConstraint0subCACert.crt",
4378 "third_party/nist-pkits/certs/pathLenConstraint1CACert.crt",
4379 "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedCACert.crt",
4380 "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedsubCACert.crt",
4381 "third_party/nist-pkits/certs/pathLenConstraint1subCACert.crt",
4382 "third_party/nist-pkits/certs/pathLenConstraint6CACert.crt",
4383 "third_party/nist-pkits/certs/pathLenConstraint6subCA0Cert.crt",
4384 "third_party/nist-pkits/certs/pathLenConstraint6subCA1Cert.crt",
4385 "third_party/nist-pkits/certs/pathLenConstraint6subCA4Cert.crt",
4386 "third_party/nist-pkits/certs/pathLenConstraint6subsubCA00Cert.crt",
4387 "third_party/nist-pkits/certs/pathLenConstraint6subsubCA11Cert.crt",
4388 "third_party/nist-pkits/certs/pathLenConstraint6subsubCA41Cert.crt",
4389 "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA11XCert.crt",
4390 "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA41XCert.crt",
4391 "third_party/nist-pkits/certs/pre2000CRLnextUpdateCACert.crt",
4392 "third_party/nist-pkits/certs/requireExplicitPolicy0CACert.crt",
4393 "third_party/nist-pkits/certs/requireExplicitPolicy0subCACert.crt",
4394 "third_party/nist-pkits/certs/requireExplicitPolicy0subsubCACert.crt",
4395 "third_party/nist-pkits/certs/requireExplicitPolicy0subsubsubCACert.crt",
4396 "third_party/nist-pkits/certs/requireExplicitPolicy10CACert.crt",
4397 "third_party/nist-pkits/certs/requireExplicitPolicy10subCACert.crt",
4398 "third_party/nist-pkits/certs/requireExplicitPolicy10subsubCACert.crt",
4399 "third_party/nist-pkits/certs/requireExplicitPolicy10subsubsubCACert.crt",
4400 "third_party/nist-pkits/certs/requireExplicitPolicy2CACert.crt",
4401 "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedCACert.crt",
4402 "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedsubCACert.crt",
4403 "third_party/nist-pkits/certs/requireExplicitPolicy2subCACert.crt",
4404 "third_party/nist-pkits/certs/requireExplicitPolicy4CACert.crt",
4405 "third_party/nist-pkits/certs/requireExplicitPolicy4subCACert.crt",
4406 "third_party/nist-pkits/certs/requireExplicitPolicy4subsubCACert.crt",
4407 "third_party/nist-pkits/certs/requireExplicitPolicy4subsubsubCACert.crt",
4408 "third_party/nist-pkits/certs/requireExplicitPolicy5CACert.crt",
4409 "third_party/nist-pkits/certs/requireExplicitPolicy5subCACert.crt",
4410 "third_party/nist-pkits/certs/requireExplicitPolicy5subsubCACert.crt",
4411 "third_party/nist-pkits/certs/requireExplicitPolicy5subsubsubCACert.crt",
4412 "third_party/nist-pkits/certs/requireExplicitPolicy7CACert.crt",
4413 "third_party/nist-pkits/certs/requireExplicitPolicy7subCARE2Cert.crt",
4414 "third_party/nist-pkits/certs/requireExplicitPolicy7subsubCARE2RE4Cert.crt",
4415 "third_party/nist-pkits/certs/requireExplicitPolicy7subsubsubCARE2RE4Cert.crt",
4416 "third_party/nist-pkits/crls/BadCRLIssuerNameCACRL.crl",
4417 "third_party/nist-pkits/crls/BadCRLSignatureCACRL.crl",
4418 "third_party/nist-pkits/crls/BadSignedCACRL.crl",
4419 "third_party/nist-pkits/crls/BadnotAfterDateCACRL.crl",
4420 "third_party/nist-pkits/crls/BadnotBeforeDateCACRL.crl",
4421 "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCACRL.crl",
4422 "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCRLCertCRL.crl",
4423 "third_party/nist-pkits/crls/BasicSelfIssuedNewKeyCACRL.crl",
4424 "third_party/nist-pkits/crls/BasicSelfIssuedOldKeyCACRL.crl",
4425 "third_party/nist-pkits/crls/BasicSelfIssuedOldKeySelfIssuedCertCRL.crl",
4426 "third_party/nist-pkits/crls/DSACACRL.crl",
4427 "third_party/nist-pkits/crls/DSAParametersInheritedCACRL.crl",
4428 "third_party/nist-pkits/crls/GeneralizedTimeCRLnextUpdateCACRL.crl",
4429 "third_party/nist-pkits/crls/GoodCACRL.crl",
4430 "third_party/nist-pkits/crls/GoodsubCACRL.crl",
4431 "third_party/nist-pkits/crls/GoodsubCAPanyPolicyMapping1to2CACRL.crl",
4432 "third_party/nist-pkits/crls/LongSerialNumberCACRL.crl",
4433 "third_party/nist-pkits/crls/Mapping1to2CACRL.crl",
4434 "third_party/nist-pkits/crls/MappingFromanyPolicyCACRL.crl",
4435 "third_party/nist-pkits/crls/MappingToanyPolicyCACRL.crl",
4436 "third_party/nist-pkits/crls/MissingbasicConstraintsCACRL.crl",
4437 "third_party/nist-pkits/crls/NameOrderCACRL.crl",
4438 "third_party/nist-pkits/crls/NegativeSerialNumberCACRL.crl",
4439 "third_party/nist-pkits/crls/NoPoliciesCACRL.crl",
4440 "third_party/nist-pkits/crls/NoissuingDistributionPointCACRL.crl",
4441 "third_party/nist-pkits/crls/OldCRLnextUpdateCACRL.crl",
4442 "third_party/nist-pkits/crls/P12Mapping1to3CACRL.crl",
4443 "third_party/nist-pkits/crls/P12Mapping1to3subCACRL.crl",
4444 "third_party/nist-pkits/crls/P12Mapping1to3subsubCACRL.crl",
4445 "third_party/nist-pkits/crls/P1Mapping1to234CACRL.crl",
4446 "third_party/nist-pkits/crls/P1Mapping1to234subCACRL.crl",
4447 "third_party/nist-pkits/crls/P1anyPolicyMapping1to2CACRL.crl",
4448 "third_party/nist-pkits/crls/PanyPolicyMapping1to2CACRL.crl",
4449 "third_party/nist-pkits/crls/PoliciesP1234CACRL.crl",
4450 "third_party/nist-pkits/crls/PoliciesP1234subCAP123CRL.crl",
4451 "third_party/nist-pkits/crls/PoliciesP1234subsubCAP123P12CRL.crl",
4452 "third_party/nist-pkits/crls/PoliciesP123CACRL.crl",
4453 "third_party/nist-pkits/crls/PoliciesP123subCAP12CRL.crl",
4454 "third_party/nist-pkits/crls/PoliciesP123subsubCAP12P1CRL.crl",
4455 "third_party/nist-pkits/crls/PoliciesP123subsubCAP2P2CRL.crl",
4456 "third_party/nist-pkits/crls/PoliciesP123subsubsubCAP12P2P1CRL.crl",
4457 "third_party/nist-pkits/crls/PoliciesP12CACRL.crl",
4458 "third_party/nist-pkits/crls/PoliciesP12subCAP1CRL.crl",
4459 "third_party/nist-pkits/crls/PoliciesP12subsubCAP1P2CRL.crl",
4460 "third_party/nist-pkits/crls/PoliciesP2subCA2CRL.crl",
4461 "third_party/nist-pkits/crls/PoliciesP2subCACRL.crl",
4462 "third_party/nist-pkits/crls/PoliciesP3CACRL.crl",
4463 "third_party/nist-pkits/crls/RFC3280MandatoryAttributeTypesCACRL.crl",
4464 "third_party/nist-pkits/crls/RFC3280OptionalAttributeTypesCACRL.crl",
4465 "third_party/nist-pkits/crls/RevokedsubCACRL.crl",
4466 "third_party/nist-pkits/crls/RolloverfromPrintableStringtoUTF8StringCACRL.crl",
4467 "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCA2CRL.crl",
4468 "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCRL.crl",
4469 "third_party/nist-pkits/crls/TrustAnchorRootCRL.crl",
4470 "third_party/nist-pkits/crls/TwoCRLsCABadCRL.crl",
4471 "third_party/nist-pkits/crls/TwoCRLsCAGoodCRL.crl",
4472 "third_party/nist-pkits/crls/UIDCACRL.crl",
4473 "third_party/nist-pkits/crls/UTF8StringCaseInsensitiveMatchCACRL.crl",
4474 "third_party/nist-pkits/crls/UTF8StringEncodedNamesCACRL.crl",
4475 "third_party/nist-pkits/crls/UnknownCRLEntryExtensionCACRL.crl",
4476 "third_party/nist-pkits/crls/UnknownCRLExtensionCACRL.crl",
4477 "third_party/nist-pkits/crls/WrongCRLCACRL.crl",
4478 "third_party/nist-pkits/crls/anyPolicyCACRL.crl",
4479 "third_party/nist-pkits/crls/basicConstraintsCriticalcAFalseCACRL.crl",
4480 "third_party/nist-pkits/crls/basicConstraintsNotCriticalCACRL.crl",
4481 "third_party/nist-pkits/crls/basicConstraintsNotCriticalcAFalseCACRL.crl",
4482 "third_party/nist-pkits/crls/deltaCRLCA1CRL.crl",
4483 "third_party/nist-pkits/crls/deltaCRLCA1deltaCRL.crl",
4484 "third_party/nist-pkits/crls/deltaCRLCA2CRL.crl",
4485 "third_party/nist-pkits/crls/deltaCRLCA2deltaCRL.crl",
4486 "third_party/nist-pkits/crls/deltaCRLCA3CRL.crl",
4487 "third_party/nist-pkits/crls/deltaCRLCA3deltaCRL.crl",
4488 "third_party/nist-pkits/crls/deltaCRLIndicatorNoBaseCACRL.crl",
4489 "third_party/nist-pkits/crls/distributionPoint1CACRL.crl",
4490 "third_party/nist-pkits/crls/distributionPoint2CACRL.crl",
4491 "third_party/nist-pkits/crls/indirectCRLCA1CRL.crl",
4492 "third_party/nist-pkits/crls/indirectCRLCA3CRL.crl",
4493 "third_party/nist-pkits/crls/indirectCRLCA3cRLIssuerCRL.crl",
4494 "third_party/nist-pkits/crls/indirectCRLCA4cRLIssuerCRL.crl",
4495 "third_party/nist-pkits/crls/indirectCRLCA5CRL.crl",
4496 "third_party/nist-pkits/crls/inhibitAnyPolicy0CACRL.crl",
4497 "third_party/nist-pkits/crls/inhibitAnyPolicy1CACRL.crl",
4498 "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA1CRL.crl",
4499 "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA2CRL.crl",
4500 "third_party/nist-pkits/crls/inhibitAnyPolicy1subCAIAP5CRL.crl",
4501 "third_party/nist-pkits/crls/inhibitAnyPolicy1subsubCA2CRL.crl",
4502 "third_party/nist-pkits/crls/inhibitAnyPolicy5CACRL.crl",
4503 "third_party/nist-pkits/crls/inhibitAnyPolicy5subCACRL.crl",
4504 "third_party/nist-pkits/crls/inhibitAnyPolicy5subsubCACRL.crl",
4505 "third_party/nist-pkits/crls/inhibitPolicyMapping0CACRL.crl",
4506 "third_party/nist-pkits/crls/inhibitPolicyMapping0subCACRL.crl",
4507 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12CACRL.crl",
4508 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCACRL.crl",
4509 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCAIPM5CRL.crl",
4510 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCACRL.crl",
4511 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCAIPM5CRL.crl",
4512 "third_party/nist-pkits/crls/inhibitPolicyMapping1P1CACRL.crl",
4513 "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subCACRL.crl",
4514 "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subsubCACRL.crl",
4515 "third_party/nist-pkits/crls/inhibitPolicyMapping5CACRL.crl",
4516 "third_party/nist-pkits/crls/inhibitPolicyMapping5subCACRL.crl",
4517 "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubCACRL.crl",
4518 "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubsubCACRL.crl",
4519 "third_party/nist-pkits/crls/keyUsageCriticalcRLSignFalseCACRL.crl",
4520 "third_party/nist-pkits/crls/keyUsageCriticalkeyCertSignFalseCACRL.crl",
4521 "third_party/nist-pkits/crls/keyUsageNotCriticalCACRL.crl",
4522 "third_party/nist-pkits/crls/keyUsageNotCriticalcRLSignFalseCACRL.crl",
4523 "third_party/nist-pkits/crls/keyUsageNotCriticalkeyCertSignFalseCACRL.crl",
4524 "third_party/nist-pkits/crls/nameConstraintsDN1CACRL.crl",
4525 "third_party/nist-pkits/crls/nameConstraintsDN1subCA1CRL.crl",
4526 "third_party/nist-pkits/crls/nameConstraintsDN1subCA2CRL.crl",
4527 "third_party/nist-pkits/crls/nameConstraintsDN1subCA3CRL.crl",
4528 "third_party/nist-pkits/crls/nameConstraintsDN2CACRL.crl",
4529 "third_party/nist-pkits/crls/nameConstraintsDN3CACRL.crl",
4530 "third_party/nist-pkits/crls/nameConstraintsDN3subCA1CRL.crl",
4531 "third_party/nist-pkits/crls/nameConstraintsDN3subCA2CRL.crl",
4532 "third_party/nist-pkits/crls/nameConstraintsDN4CACRL.crl",
4533 "third_party/nist-pkits/crls/nameConstraintsDN5CACRL.crl",
4534 "third_party/nist-pkits/crls/nameConstraintsDNS1CACRL.crl",
4535 "third_party/nist-pkits/crls/nameConstraintsDNS2CACRL.crl",
4536 "third_party/nist-pkits/crls/nameConstraintsRFC822CA1CRL.crl",
4537 "third_party/nist-pkits/crls/nameConstraintsRFC822CA2CRL.crl",
4538 "third_party/nist-pkits/crls/nameConstraintsRFC822CA3CRL.crl",
4539 "third_party/nist-pkits/crls/nameConstraintsURI1CACRL.crl",
4540 "third_party/nist-pkits/crls/nameConstraintsURI2CACRL.crl",
4541 "third_party/nist-pkits/crls/onlyContainsAttributeCertsCACRL.crl",
4542 "third_party/nist-pkits/crls/onlyContainsCACertsCACRL.crl",
4543 "third_party/nist-pkits/crls/onlyContainsUserCertsCACRL.crl",
4544 "third_party/nist-pkits/crls/onlySomeReasonsCA1compromiseCRL.crl",
4545 "third_party/nist-pkits/crls/onlySomeReasonsCA1otherreasonsCRL.crl",
4546 "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL1.crl",
4547 "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL2.crl",
4548 "third_party/nist-pkits/crls/onlySomeReasonsCA3compromiseCRL.crl",
4549 "third_party/nist-pkits/crls/onlySomeReasonsCA3otherreasonsCRL.crl",
4550 "third_party/nist-pkits/crls/onlySomeReasonsCA4compromiseCRL.crl",
4551 "third_party/nist-pkits/crls/onlySomeReasonsCA4otherreasonsCRL.crl",
4552 "third_party/nist-pkits/crls/pathLenConstraint0CACRL.crl",
4553 "third_party/nist-pkits/crls/pathLenConstraint0subCA2CRL.crl",
4554 "third_party/nist-pkits/crls/pathLenConstraint0subCACRL.crl",
4555 "third_party/nist-pkits/crls/pathLenConstraint1CACRL.crl",
4556 "third_party/nist-pkits/crls/pathLenConstraint1subCACRL.crl",
4557 "third_party/nist-pkits/crls/pathLenConstraint6CACRL.crl",
4558 "third_party/nist-pkits/crls/pathLenConstraint6subCA0CRL.crl",
4559 "third_party/nist-pkits/crls/pathLenConstraint6subCA1CRL.crl",
4560 "third_party/nist-pkits/crls/pathLenConstraint6subCA4CRL.crl",
4561 "third_party/nist-pkits/crls/pathLenConstraint6subsubCA00CRL.crl",
4562 "third_party/nist-pkits/crls/pathLenConstraint6subsubCA11CRL.crl",
4563 "third_party/nist-pkits/crls/pathLenConstraint6subsubCA41CRL.crl",
4564 "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA11XCRL.crl",
4565 "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA41XCRL.crl",
4566 "third_party/nist-pkits/crls/pre2000CRLnextUpdateCACRL.crl",
4567 "third_party/nist-pkits/crls/requireExplicitPolicy0CACRL.crl",
4568 "third_party/nist-pkits/crls/requireExplicitPolicy0subCACRL.crl",
4569 "third_party/nist-pkits/crls/requireExplicitPolicy0subsubCACRL.crl",
4570 "third_party/nist-pkits/crls/requireExplicitPolicy0subsubsubCACRL.crl",
4571 "third_party/nist-pkits/crls/requireExplicitPolicy10CACRL.crl",
4572 "third_party/nist-pkits/crls/requireExplicitPolicy10subCACRL.crl",
4573 "third_party/nist-pkits/crls/requireExplicitPolicy10subsubCACRL.crl",
4574 "third_party/nist-pkits/crls/requireExplicitPolicy10subsubsubCACRL.crl",
4575 "third_party/nist-pkits/crls/requireExplicitPolicy2CACRL.crl",
4576 "third_party/nist-pkits/crls/requireExplicitPolicy2subCACRL.crl",
4577 "third_party/nist-pkits/crls/requireExplicitPolicy4CACRL.crl",
4578 "third_party/nist-pkits/crls/requireExplicitPolicy4subCACRL.crl",
4579 "third_party/nist-pkits/crls/requireExplicitPolicy4subsubCACRL.crl",
4580 "third_party/nist-pkits/crls/requireExplicitPolicy4subsubsubCACRL.crl",
4581 "third_party/nist-pkits/crls/requireExplicitPolicy5CACRL.crl",
4582 "third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl",
4583 "third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl",
4584 "third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl",
4585 "third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl",
4586 "third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl",
4587 "third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl",
4588 "third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.crl",
4589 ]
sdefresneb0a31642016-03-18 11:04:454590 outputs = [
4591 "{{bundle_resources_dir}}/" +
4592 "{{source_root_relative_dir}}/{{source_file_part}}",
4593 ]
4594}
4595
dpranke64df2832015-07-31 22:33:364596test("net_unittests") {
ckrasic73f7240b2017-01-24 00:06:454597 sources = [
4598 "android/cellular_signal_strength_unittest.cc",
4599 "android/dummy_spnego_authenticator.cc",
4600 "android/dummy_spnego_authenticator.h",
4601 "android/http_auth_negotiate_android_unittest.cc",
4602 "android/network_change_notifier_android_unittest.cc",
4603 "android/network_library_unittest.cc",
4604 "android/traffic_stats_unittest.cc",
4605 "base/address_family_unittest.cc",
4606 "base/address_list_unittest.cc",
4607 "base/address_tracker_linux_unittest.cc",
4608 "base/arena_unittest.cc",
4609 "base/backoff_entry_serializer_unittest.cc",
4610 "base/backoff_entry_unittest.cc",
4611 "base/chunked_upload_data_stream_unittest.cc",
4612 "base/data_url_unittest.cc",
4613 "base/directory_lister_unittest.cc",
4614 "base/directory_listing_unittest.cc",
4615 "base/elements_upload_data_stream_unittest.cc",
4616 "base/escape_unittest.cc",
4617 "base/expiring_cache_unittest.cc",
4618 "base/file_stream_unittest.cc",
4619 "base/filename_util_unittest.cc",
Bence Békyd5c16edf2017-08-04 17:32:304620 "base/hex_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:454621 "base/host_mapping_rules_unittest.cc",
4622 "base/host_port_pair_unittest.cc",
4623 "base/int128_unittest.cc",
fayangbaec8ff52017-01-28 03:26:124624 "base/interval_set_test.cc",
4625 "base/interval_test.cc",
ckrasic73f7240b2017-01-24 00:06:454626 "base/ip_address_unittest.cc",
4627 "base/ip_endpoint_unittest.cc",
4628 "base/ip_pattern_unittest.cc",
4629 "base/layered_network_delegate_unittest.cc",
4630 "base/lookup_string_in_fixed_set_unittest.cc",
4631 "base/mime_sniffer_unittest.cc",
4632 "base/mime_util_unittest.cc",
mgershaf9a9232017-04-13 20:19:034633 "base/mock_network_change_notifier.cc",
4634 "base/mock_network_change_notifier.h",
ckrasic73f7240b2017-01-24 00:06:454635 "base/network_activity_monitor_unittest.cc",
4636 "base/network_change_notifier_unittest.cc",
4637 "base/network_change_notifier_win_unittest.cc",
Sergey Ulanov5c33235ae2017-07-06 23:55:074638 "base/network_interfaces_getifaddrs_unittest.cc",
Sergey Ulanov5bb07d32017-07-12 04:14:544639 "base/network_interfaces_linux_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454640 "base/network_interfaces_unittest.cc",
Sergey Ulanov5bb07d32017-07-12 04:14:544641 "base/network_interfaces_win_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454642 "base/network_throttle_manager_impl_unittest.cc",
4643 "base/parse_number_unittest.cc",
4644 "base/percentile_estimator_unittest.cc",
4645 "base/port_util_unittest.cc",
4646 "base/prioritized_dispatcher_unittest.cc",
4647 "base/priority_queue_unittest.cc",
4648 "base/registry_controlled_domains/registry_controlled_domain_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454649 "base/static_cookie_policy_unittest.cc",
4650 "base/test_completion_callback_unittest.cc",
4651 "base/test_proxy_delegate.cc",
4652 "base/test_proxy_delegate.h",
4653 "base/upload_bytes_element_reader_unittest.cc",
4654 "base/upload_file_element_reader_unittest.cc",
4655 "base/url_util_unittest.cc",
4656 "cert/caching_cert_verifier_unittest.cc",
4657 "cert/cert_verifier_unittest.cc",
estarkd91e0b22017-01-31 01:10:284658 "cert/cert_verify_proc_android_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454659 "cert/cert_verify_proc_ios_unittest.cc",
eromance65aff2017-02-04 00:05:324660 "cert/cert_verify_proc_mac_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454661 "cert/cert_verify_proc_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454662 "cert/crl_set_unittest.cc",
4663 "cert/ct_known_logs_unittest.cc",
4664 "cert/ct_log_response_parser_unittest.cc",
4665 "cert/ct_log_verifier_unittest.cc",
4666 "cert/ct_objects_extractor_unittest.cc",
4667 "cert/ct_policy_enforcer_unittest.cc",
4668 "cert/ct_serialization_unittest.cc",
4669 "cert/ev_root_ca_metadata_unittest.cc",
4670 "cert/internal/cert_issuer_source_aia_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454671 "cert/internal/cert_issuer_source_static_unittest.cc",
4672 "cert/internal/cert_issuer_source_sync_unittest.h",
4673 "cert/internal/certificate_policies_unittest.cc",
4674 "cert/internal/extended_key_usage_unittest.cc",
Matt Mueller9e3ad3032017-09-14 19:29:314675 "cert/internal/general_names_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454676 "cert/internal/name_constraints_unittest.cc",
eromanc95383ac2017-05-26 19:37:304677 "cert/internal/nist_pkits_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454678 "cert/internal/nist_pkits_unittest.h",
Eric Romana2f6f55d2017-09-07 23:34:574679 "cert/internal/ocsp_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454680 "cert/internal/parse_certificate_unittest.cc",
4681 "cert/internal/parse_name_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454682 "cert/internal/parsed_certificate_unittest.cc",
4683 "cert/internal/path_builder_pkits_unittest.cc",
4684 "cert/internal/path_builder_unittest.cc",
4685 "cert/internal/path_builder_verify_certificate_chain_unittest.cc",
4686 "cert/internal/signature_algorithm_unittest.cc",
Eric Roman5431d702017-07-26 01:58:184687 "cert/internal/simple_path_builder_delegate_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454688 "cert/internal/test_helpers.cc",
4689 "cert/internal/test_helpers.h",
4690 "cert/internal/trust_store_collection_unittest.cc",
mattmea4ed8232017-02-28 23:13:234691 "cert/internal/trust_store_mac_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454692 "cert/internal/trust_store_nss_unittest.cc",
4693 "cert/internal/verify_certificate_chain_pkits_unittest.cc",
4694 "cert/internal/verify_certificate_chain_typed_unittest.h",
4695 "cert/internal/verify_certificate_chain_unittest.cc",
4696 "cert/internal/verify_name_match_unittest.cc",
4697 "cert/internal/verify_signed_data_unittest.cc",
4698 "cert/jwk_serializer_unittest.cc",
4699 "cert/merkle_audit_proof_unittest.cc",
4700 "cert/merkle_tree_leaf_unittest.cc",
4701 "cert/multi_log_ct_verifier_unittest.cc",
4702 "cert/multi_threaded_cert_verifier_unittest.cc",
4703 "cert/nss_cert_database_chromeos_unittest.cc",
4704 "cert/nss_cert_database_unittest.cc",
4705 "cert/nss_profile_filter_chromeos_unittest.cc",
4706 "cert/pem_tokenizer_unittest.cc",
4707 "cert/signed_certificate_timestamp_unittest.cc",
4708 "cert/sth_distributor_unittest.cc",
Emily Starkd29cdae2017-09-16 01:59:344709 "cert/symantec_certs_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454710 "cert/test_root_certs_unittest.cc",
4711 "cert/x509_cert_types_unittest.cc",
4712 "cert/x509_certificate_unittest.cc",
mattm1a07e632017-05-16 05:55:504713 "cert/x509_util_ios_and_mac_unittest.cc",
Matt Mueller10684c92017-08-09 07:24:094714 "cert/x509_util_nss_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454715 "cert/x509_util_unittest.cc",
4716 "cert_net/cert_net_fetcher_impl_unittest.cc",
4717 "cert_net/nss_ocsp_unittest.cc",
4718 "cookies/canonical_cookie_unittest.cc",
4719 "cookies/cookie_constants_unittest.cc",
4720 "cookies/cookie_monster_unittest.cc",
4721 "cookies/cookie_store_unittest.cc",
4722 "cookies/cookie_util_unittest.cc",
4723 "cookies/parsed_cookie_unittest.cc",
4724 "der/encode_values_unittest.cc",
4725 "der/input_unittest.cc",
4726 "der/parse_values_unittest.cc",
4727 "der/parser_unittest.cc",
Maks Orlovich036fd1f2017-08-07 17:51:114728 "disk_cache/backend_cleanup_tracker_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454729 "disk_cache/backend_unittest.cc",
4730 "disk_cache/blockfile/addr_unittest.cc",
4731 "disk_cache/blockfile/bitmap_unittest.cc",
4732 "disk_cache/blockfile/block_files_unittest.cc",
4733 "disk_cache/blockfile/mapped_file_unittest.cc",
4734 "disk_cache/blockfile/stats_unittest.cc",
4735 "disk_cache/blockfile/storage_block_unittest.cc",
4736 "disk_cache/cache_util_unittest.cc",
4737 "disk_cache/entry_unittest.cc",
4738 "disk_cache/simple/simple_experiment_unittest.cc",
4739 "disk_cache/simple/simple_index_file_unittest.cc",
4740 "disk_cache/simple/simple_index_unittest.cc",
4741 "disk_cache/simple/simple_test_util.cc",
4742 "disk_cache/simple/simple_test_util.h",
4743 "disk_cache/simple/simple_util_unittest.cc",
4744 "disk_cache/simple/simple_version_upgrade_unittest.cc",
4745 "dns/address_sorter_posix_unittest.cc",
4746 "dns/address_sorter_unittest.cc",
4747 "dns/dns_config_service_posix_unittest.cc",
4748 "dns/dns_config_service_unittest.cc",
4749 "dns/dns_config_service_win_unittest.cc",
4750 "dns/dns_hosts_unittest.cc",
4751 "dns/dns_query_unittest.cc",
4752 "dns/dns_response_unittest.cc",
4753 "dns/dns_session_unittest.cc",
juliatuttle8ff9d1532017-01-31 17:06:314754 "dns/dns_socket_pool_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454755 "dns/dns_transaction_unittest.cc",
4756 "dns/dns_util_unittest.cc",
4757 "dns/host_cache_unittest.cc",
4758 "dns/host_resolver_impl_unittest.cc",
4759 "dns/host_resolver_mojo_unittest.cc",
4760 "dns/mapped_host_resolver_unittest.cc",
4761 "dns/mdns_cache_unittest.cc",
4762 "dns/mdns_client_unittest.cc",
4763 "dns/mojo_host_resolver_impl_unittest.cc",
4764 "dns/record_parsed_unittest.cc",
4765 "dns/record_rdata_unittest.cc",
4766 "dns/serial_worker_unittest.cc",
4767 "extras/sqlite/sqlite_channel_id_store_unittest.cc",
4768 "extras/sqlite/sqlite_persistent_cookie_store_unittest.cc",
4769 "filter/brotli_source_stream_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454770 "filter/filter_source_stream_unittest.cc",
4771 "filter/gzip_source_stream_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454772 "ftp/ftp_auth_cache_unittest.cc",
4773 "ftp/ftp_ctrl_response_buffer_unittest.cc",
4774 "ftp/ftp_directory_listing_parser_ls_unittest.cc",
4775 "ftp/ftp_directory_listing_parser_unittest.cc",
4776 "ftp/ftp_directory_listing_parser_unittest.h",
4777 "ftp/ftp_directory_listing_parser_vms_unittest.cc",
4778 "ftp/ftp_directory_listing_parser_windows_unittest.cc",
4779 "ftp/ftp_network_transaction_unittest.cc",
4780 "ftp/ftp_util_unittest.cc",
4781 "http/bidirectional_stream_unittest.cc",
wangyix64ccc57c2017-06-01 23:14:164782 "http/broken_alternative_services_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454783 "http/http_auth_cache_unittest.cc",
4784 "http/http_auth_challenge_tokenizer_unittest.cc",
4785 "http/http_auth_controller_unittest.cc",
4786 "http/http_auth_filter_unittest.cc",
4787 "http/http_auth_gssapi_posix_unittest.cc",
4788 "http/http_auth_handler_basic_unittest.cc",
4789 "http/http_auth_handler_digest_unittest.cc",
4790 "http/http_auth_handler_factory_unittest.cc",
4791 "http/http_auth_handler_mock.cc",
4792 "http/http_auth_handler_mock.h",
4793 "http/http_auth_handler_negotiate_unittest.cc",
zentarob89acda42017-07-14 01:28:574794 "http/http_auth_handler_ntlm_portable_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454795 "http/http_auth_handler_unittest.cc",
4796 "http/http_auth_multi_round_parse_unittest.cc",
4797 "http/http_auth_preferences_unittest.cc",
4798 "http/http_auth_sspi_win_unittest.cc",
4799 "http/http_auth_unittest.cc",
4800 "http/http_basic_state_unittest.cc",
4801 "http/http_byte_range_unittest.cc",
4802 "http/http_cache_lookup_manager_unittest.cc",
4803 "http/http_cache_unittest.cc",
shivanishac6582e12017-07-14 22:18:194804 "http/http_cache_writers_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454805 "http/http_chunked_decoder_unittest.cc",
4806 "http/http_content_disposition_unittest.cc",
4807 "http/http_log_util_unittest.cc",
4808 "http/http_network_layer_unittest.cc",
4809 "http/http_network_transaction_ssl_unittest.cc",
4810 "http/http_network_transaction_unittest.cc",
4811 "http/http_proxy_client_socket_pool_unittest.cc",
4812 "http/http_request_headers_unittest.cc",
4813 "http/http_response_body_drainer_unittest.cc",
4814 "http/http_response_headers_unittest.cc",
4815 "http/http_response_info_unittest.cc",
4816 "http/http_security_headers_unittest.cc",
4817 "http/http_server_properties_impl_unittest.cc",
4818 "http/http_server_properties_manager_unittest.cc",
4819 "http/http_status_code_unittest.cc",
4820 "http/http_stream_factory_impl_job_controller_unittest.cc",
4821 "http/http_stream_factory_impl_request_unittest.cc",
4822 "http/http_stream_factory_impl_unittest.cc",
4823 "http/http_stream_parser_unittest.cc",
4824 "http/http_util_unittest.cc",
4825 "http/http_vary_data_unittest.cc",
4826 "http/mock_allow_http_auth_preferences.cc",
4827 "http/mock_allow_http_auth_preferences.h",
4828 "http/mock_gssapi_library_posix.cc",
4829 "http/mock_gssapi_library_posix.h",
4830 "http/mock_http_cache.cc",
4831 "http/mock_http_cache.h",
4832 "http/mock_sspi_library_win.cc",
4833 "http/mock_sspi_library_win.h",
4834 "http/transport_security_persister_unittest.cc",
4835 "http/transport_security_state_unittest.cc",
4836 "http/url_security_manager_unittest.cc",
4837 "http2/decoder/decode_buffer_test.cc",
4838 "http2/decoder/decode_http2_structures_test.cc",
4839 "http2/decoder/frame_decoder_state_test_util.cc",
4840 "http2/decoder/frame_decoder_state_test_util.h",
ckrasic73f7240b2017-01-24 00:06:454841 "http2/decoder/http2_frame_decoder_listener_test_util.cc",
4842 "http2/decoder/http2_frame_decoder_listener_test_util.h",
4843 "http2/decoder/http2_frame_decoder_test.cc",
4844 "http2/decoder/http2_structure_decoder_test.cc",
bnc0f57ba22017-01-27 02:43:364845 "http2/decoder/http2_structure_decoder_test_util.cc",
ckrasic73f7240b2017-01-24 00:06:454846 "http2/decoder/http2_structure_decoder_test_util.h",
4847 "http2/decoder/payload_decoders/altsvc_payload_decoder_test.cc",
4848 "http2/decoder/payload_decoders/continuation_payload_decoder_test.cc",
4849 "http2/decoder/payload_decoders/data_payload_decoder_test.cc",
4850 "http2/decoder/payload_decoders/goaway_payload_decoder_test.cc",
4851 "http2/decoder/payload_decoders/headers_payload_decoder_test.cc",
4852 "http2/decoder/payload_decoders/payload_decoder_base_test_util.cc",
4853 "http2/decoder/payload_decoders/payload_decoder_base_test_util.h",
4854 "http2/decoder/payload_decoders/ping_payload_decoder_test.cc",
4855 "http2/decoder/payload_decoders/priority_payload_decoder_test.cc",
4856 "http2/decoder/payload_decoders/push_promise_payload_decoder_test.cc",
4857 "http2/decoder/payload_decoders/rst_stream_payload_decoder_test.cc",
4858 "http2/decoder/payload_decoders/settings_payload_decoder_test.cc",
4859 "http2/decoder/payload_decoders/unknown_payload_decoder_test.cc",
4860 "http2/decoder/payload_decoders/window_update_payload_decoder_test.cc",
4861 "http2/hpack/decoder/hpack_block_collector.cc",
4862 "http2/hpack/decoder/hpack_block_collector.h",
4863 "http2/hpack/decoder/hpack_block_decoder_test.cc",
4864 "http2/hpack/decoder/hpack_decoder_state_test.cc",
4865 "http2/hpack/decoder/hpack_decoder_string_buffer_test.cc",
4866 "http2/hpack/decoder/hpack_decoder_tables_test.cc",
Bence Békybad9ef92017-07-28 13:36:274867 "http2/hpack/decoder/hpack_decoder_test.cc",
ckrasic73f7240b2017-01-24 00:06:454868 "http2/hpack/decoder/hpack_entry_collector.cc",
4869 "http2/hpack/decoder/hpack_entry_collector.h",
4870 "http2/hpack/decoder/hpack_entry_decoder_test.cc",
4871 "http2/hpack/decoder/hpack_entry_type_decoder_test.cc",
4872 "http2/hpack/decoder/hpack_string_collector.cc",
4873 "http2/hpack/decoder/hpack_string_collector.h",
4874 "http2/hpack/decoder/hpack_string_decoder_test.cc",
4875 "http2/hpack/decoder/hpack_varint_decoder_test.cc",
4876 "http2/hpack/decoder/hpack_whole_entry_buffer_test.cc",
ckrasic73f7240b2017-01-24 00:06:454877 "http2/hpack/hpack_string_test.cc",
4878 "http2/hpack/http2_hpack_constants_test.cc",
Bence Békyd1406522017-08-07 18:05:084879 "http2/hpack/huffman/hpack_huffman_decoder_test.cc",
ckrasic73f7240b2017-01-24 00:06:454880 "http2/hpack/tools/hpack_block_builder.cc",
4881 "http2/hpack/tools/hpack_block_builder.h",
4882 "http2/hpack/tools/hpack_block_builder_test.cc",
4883 "http2/hpack/tools/hpack_example.cc",
4884 "http2/hpack/tools/hpack_example.h",
4885 "http2/http2_constants_test.cc",
4886 "http2/http2_constants_test_util.cc",
4887 "http2/http2_constants_test_util.h",
4888 "http2/http2_structures_test.cc",
4889 "http2/http2_structures_test_util.cc",
4890 "http2/http2_structures_test_util.h",
Bence Békye53090e2017-07-12 02:58:404891 "http2/platform/api/http2_string_utils_test.cc",
bnc85ec3b102017-03-16 22:48:284892 "http2/test_tools/frame_parts.cc",
4893 "http2/test_tools/frame_parts.h",
4894 "http2/test_tools/frame_parts_collector.cc",
4895 "http2/test_tools/frame_parts_collector.h",
4896 "http2/test_tools/frame_parts_collector_listener.cc",
4897 "http2/test_tools/frame_parts_collector_listener.h",
ckrasic73f7240b2017-01-24 00:06:454898 "http2/tools/failure.cc",
4899 "http2/tools/failure.h",
4900 "http2/tools/http2_frame_builder.cc",
4901 "http2/tools/http2_frame_builder.h",
4902 "http2/tools/http2_random.cc",
4903 "http2/tools/http2_random.h",
4904 "http2/tools/random_decoder_test.cc",
4905 "http2/tools/random_decoder_test.h",
4906 "http2/tools/random_util.cc",
4907 "http2/tools/random_util.h",
4908 "log/file_net_log_observer_unittest.cc",
4909 "log/net_log_capture_mode_unittest.cc",
4910 "log/net_log_unittest.cc",
4911 "log/net_log_util_unittest.cc",
4912 "log/trace_net_log_observer_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454913 "nqe/effective_connection_type_unittest.cc",
tbansalf38471f2017-03-04 01:07:044914 "nqe/event_creator_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454915 "nqe/network_qualities_prefs_manager_unittest.cc",
tbansal35bdb0b2017-05-04 16:23:334916 "nqe/network_quality_estimator_params_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454917 "nqe/network_quality_estimator_unittest.cc",
tbansal82edab42017-06-19 05:55:254918 "nqe/network_quality_estimator_util_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454919 "nqe/network_quality_store_unittest.cc",
4920 "nqe/observation_buffer_unittest.cc",
tbansal180587c2017-02-16 15:13:234921 "nqe/socket_watcher_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454922 "nqe/throughput_analyzer_unittest.cc",
zentarob89acda42017-07-14 01:28:574923 "ntlm/des_unittest.cc",
Zentaro Kavanagh4e3aae82017-08-07 22:35:304924 "ntlm/md4_unittest.cc",
zentarob74795682017-07-14 00:58:224925 "ntlm/ntlm_buffer_reader_unittest.cc",
4926 "ntlm/ntlm_buffer_writer_unittest.cc",
Zentaro Kavanaghdd556612017-08-03 20:27:044927 "ntlm/ntlm_client_unittest.cc",
zentarob89acda42017-07-14 01:28:574928 "ntlm/ntlm_test_data.h",
4929 "ntlm/ntlm_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454930 "proxy/dhcp_proxy_script_adapter_fetcher_win_unittest.cc",
4931 "proxy/dhcp_proxy_script_fetcher_factory_unittest.cc",
4932 "proxy/dhcp_proxy_script_fetcher_win_unittest.cc",
4933 "proxy/mojo_proxy_resolver_factory_impl_unittest.cc",
4934 "proxy/mojo_proxy_resolver_impl_unittest.cc",
4935 "proxy/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc",
4936 "proxy/multi_threaded_proxy_resolver_unittest.cc",
4937 "proxy/network_delegate_error_observer_unittest.cc",
4938 "proxy/proxy_bypass_rules_unittest.cc",
4939 "proxy/proxy_config_service_android_unittest.cc",
4940 "proxy/proxy_config_service_linux_unittest.cc",
4941 "proxy/proxy_config_service_win_unittest.cc",
4942 "proxy/proxy_config_unittest.cc",
4943 "proxy/proxy_info_unittest.cc",
4944 "proxy/proxy_list_unittest.cc",
4945 "proxy/proxy_resolver_factory_mojo_unittest.cc",
4946 "proxy/proxy_resolver_v8_tracing_unittest.cc",
4947 "proxy/proxy_resolver_v8_tracing_wrapper_unittest.cc",
4948 "proxy/proxy_resolver_v8_unittest.cc",
4949 "proxy/proxy_script_decider_unittest.cc",
4950 "proxy/proxy_script_fetcher_impl_unittest.cc",
4951 "proxy/proxy_server_unittest.cc",
4952 "proxy/proxy_service_mojo_unittest.cc",
4953 "proxy/proxy_service_unittest.cc",
mmenke93be9ca2017-05-23 16:29:134954 "proxy/test_mojo_proxy_resolver_factory.cc",
4955 "proxy/test_mojo_proxy_resolver_factory.h",
ckrasic73f7240b2017-01-24 00:06:454956 "quic/chromium/bidirectional_stream_quic_impl_unittest.cc",
4957 "quic/chromium/crypto/proof_test_chromium.cc",
4958 "quic/chromium/crypto/proof_verifier_chromium_test.cc",
ckrasic73f7240b2017-01-24 00:06:454959 "quic/chromium/mock_crypto_client_stream_factory.cc",
4960 "quic/chromium/mock_crypto_client_stream_factory.h",
ckrasic73f7240b2017-01-24 00:06:454961 "quic/chromium/mock_quic_data.cc",
4962 "quic/chromium/mock_quic_data.h",
4963 "quic/chromium/network_connection_unittest.cc",
4964 "quic/chromium/properties_based_quic_server_info_test.cc",
4965 "quic/chromium/quic_address_mismatch_test.cc",
4966 "quic/chromium/quic_chromium_alarm_factory_test.cc",
4967 "quic/chromium/quic_chromium_client_session_peer.cc",
4968 "quic/chromium/quic_chromium_client_session_peer.h",
4969 "quic/chromium/quic_chromium_client_session_test.cc",
4970 "quic/chromium/quic_chromium_client_stream_test.cc",
4971 "quic/chromium/quic_chromium_connection_helper_test.cc",
4972 "quic/chromium/quic_clock_skew_detector_test.cc",
4973 "quic/chromium/quic_end_to_end_unittest.cc",
4974 "quic/chromium/quic_http_stream_test.cc",
4975 "quic/chromium/quic_http_utils_test.cc",
4976 "quic/chromium/quic_network_transaction_unittest.cc",
Yixin Wang0d2c6b7e12017-08-16 21:12:554977 "quic/chromium/quic_proxy_client_socket_unittest.cc",
rch99387f92017-04-03 21:12:044978 "quic/chromium/quic_stream_factory_peer.cc",
4979 "quic/chromium/quic_stream_factory_peer.h",
ckrasic73f7240b2017-01-24 00:06:454980 "quic/chromium/quic_stream_factory_test.cc",
4981 "quic/chromium/quic_test_packet_maker.cc",
4982 "quic/chromium/quic_test_packet_maker.h",
4983 "quic/chromium/quic_utils_chromium_test.cc",
rch1e369362017-04-03 19:44:514984 "quic/chromium/test_task_runner.cc",
4985 "quic/chromium/test_task_runner.h",
ckrasic73f7240b2017-01-24 00:06:454986 "quic/core/congestion_control/bandwidth_sampler_test.cc",
4987 "quic/core/congestion_control/bbr_sender_test.cc",
4988 "quic/core/congestion_control/cubic_bytes_test.cc",
4989 "quic/core/congestion_control/cubic_test.cc",
4990 "quic/core/congestion_control/general_loss_algorithm_test.cc",
4991 "quic/core/congestion_control/hybrid_slow_start_test.cc",
4992 "quic/core/congestion_control/pacing_sender_test.cc",
4993 "quic/core/congestion_control/prr_sender_test.cc",
4994 "quic/core/congestion_control/rtt_stats_test.cc",
4995 "quic/core/congestion_control/send_algorithm_test.cc",
4996 "quic/core/congestion_control/tcp_cubic_sender_bytes_test.cc",
4997 "quic/core/congestion_control/tcp_cubic_sender_packets_test.cc",
4998 "quic/core/congestion_control/windowed_filter_test.cc",
4999 "quic/core/crypto/aes_128_gcm_12_decrypter_test.cc",
5000 "quic/core/crypto/aes_128_gcm_12_encrypter_test.cc",
5001 "quic/core/crypto/cert_compressor_test.cc",
5002 "quic/core/crypto/chacha20_poly1305_decrypter_test.cc",
5003 "quic/core/crypto/chacha20_poly1305_encrypter_test.cc",
5004 "quic/core/crypto/channel_id_test.cc",
5005 "quic/core/crypto/common_cert_set_test.cc",
5006 "quic/core/crypto/crypto_framer_test.cc",
5007 "quic/core/crypto/crypto_handshake_message_test.cc",
5008 "quic/core/crypto/crypto_secret_boxer_test.cc",
5009 "quic/core/crypto/crypto_server_test.cc",
5010 "quic/core/crypto/crypto_utils_test.cc",
5011 "quic/core/crypto/curve25519_key_exchange_test.cc",
ckrasic73f7240b2017-01-24 00:06:455012 "quic/core/crypto/null_decrypter_test.cc",
5013 "quic/core/crypto/null_encrypter_test.cc",
5014 "quic/core/crypto/p256_key_exchange_test.cc",
5015 "quic/core/crypto/quic_compressed_certs_cache_test.cc",
5016 "quic/core/crypto/quic_crypto_client_config_test.cc",
5017 "quic/core/crypto/quic_crypto_server_config_test.cc",
5018 "quic/core/crypto/quic_random_test.cc",
Ryan Hamilton88151482017-09-06 14:55:455019 "quic/core/crypto/quic_tls_adapter_test.cc",
ckrasic73f7240b2017-01-24 00:06:455020 "quic/core/frames/quic_frames_test.cc",
vasilvv8b7782e2017-05-12 01:52:035021 "quic/core/packet_number_indexed_queue_test.cc",
ckrasic73f7240b2017-01-24 00:06:455022 "quic/core/quic_alarm_test.cc",
5023 "quic/core/quic_arena_scoped_ptr_test.cc",
5024 "quic/core/quic_bandwidth_test.cc",
5025 "quic/core/quic_buffered_packet_store_test.cc",
5026 "quic/core/quic_client_promised_info_test.cc",
5027 "quic/core/quic_client_push_promise_index_test.cc",
5028 "quic/core/quic_config_test.cc",
5029 "quic/core/quic_connection_test.cc",
5030 "quic/core/quic_crypto_client_stream_test.cc",
5031 "quic/core/quic_crypto_server_stream_test.cc",
5032 "quic/core/quic_crypto_stream_test.cc",
5033 "quic/core/quic_data_writer_test.cc",
5034 "quic/core/quic_error_codes_test.cc",
5035 "quic/core/quic_flow_controller_test.cc",
5036 "quic/core/quic_framer_test.cc",
5037 "quic/core/quic_header_list_test.cc",
5038 "quic/core/quic_headers_stream_test.cc",
xunjielicc6b1d02017-06-05 16:51:405039 "quic/test_tools/quic_test_utils_test.cc",
5040 "quic/test_tools/simulator/quic_endpoint_test.cc",
5041 "quic/test_tools/simulator/simulator_test.cc",
ckrasic73f7240b2017-01-24 00:06:455042
5043 # "quic/core/quic_multipath_received_packet_manager_test.cc",
5044 # "quic/core/quic_multipath_transmissions_map_test.cc",
5045 "quic/core/quic_one_block_arena_test.cc",
5046 "quic/core/quic_packet_creator_test.cc",
5047 "quic/core/quic_packet_generator_test.cc",
5048 "quic/core/quic_received_packet_manager_test.cc",
5049 "quic/core/quic_sent_packet_manager_test.cc",
5050 "quic/core/quic_server_id_test.cc",
5051 "quic/core/quic_server_session_base_test.cc",
5052 "quic/core/quic_session_test.cc",
5053 "quic/core/quic_simple_buffer_allocator_test.cc",
5054 "quic/core/quic_socket_address_coder_test.cc",
5055 "quic/core/quic_spdy_stream_test.cc",
fayangdf3cb2b2017-07-05 15:03:385056 "quic/core/quic_stream_send_buffer_test.cc",
ckrasic73f7240b2017-01-24 00:06:455057 "quic/core/quic_stream_sequencer_buffer_test.cc",
5058 "quic/core/quic_stream_sequencer_test.cc",
5059 "quic/core/quic_stream_test.cc",
5060 "quic/core/quic_sustained_bandwidth_recorder_test.cc",
5061 "quic/core/quic_tag_test.cc",
5062 "quic/core/quic_time_test.cc",
5063 "quic/core/quic_unacked_packet_map_test.cc",
5064 "quic/core/quic_utils_test.cc",
5065 "quic/core/quic_version_manager_test.cc",
5066 "quic/core/quic_versions_test.cc",
5067 "quic/core/quic_write_blocked_list_test.cc",
5068 "quic/core/spdy_utils_test.cc",
fayange992f9f2017-03-03 13:38:325069 "quic/platform/api/quic_endian_test.cc",
mpw3f859532017-02-16 20:00:315070 "quic/platform/api/quic_hostname_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:455071 "quic/platform/api/quic_lru_cache_test.cc",
Fan Yang62cae30f2017-09-01 20:50:515072 "quic/platform/api/quic_mem_slice_span_test.cc",
5073 "quic/platform/api/quic_mem_slice_test.cc",
ckrasic73f7240b2017-01-24 00:06:455074 "quic/platform/api/quic_reference_counted_test.cc",
5075 "quic/platform/api/quic_str_cat_test.cc",
5076 "quic/platform/api/quic_text_utils_test.cc",
fayang32caee402017-02-13 21:00:085077 "quic/platform/api/quic_url_test.cc",
ckrasic73f7240b2017-01-24 00:06:455078 "quic/platform/impl/quic_chromium_clock_test.cc",
jri3c1d5ca2017-06-02 04:52:235079 "quic/quartc/quartc_session_test.cc",
5080 "quic/quartc/quartc_stream_test.cc",
ckrasic73f7240b2017-01-24 00:06:455081 "quic/test_tools/crypto_test_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:455082 "socket/client_socket_pool_base_unittest.cc",
5083 "socket/mock_client_socket_pool_manager.cc",
5084 "socket/mock_client_socket_pool_manager.h",
5085 "socket/sequenced_socket_data_unittest.cc",
5086 "socket/socket_bio_adapter_unittest.cc",
5087 "socket/socks5_client_socket_unittest.cc",
5088 "socket/socks_client_socket_pool_unittest.cc",
5089 "socket/socks_client_socket_unittest.cc",
5090 "socket/ssl_client_socket_pool_unittest.cc",
5091 "socket/ssl_client_socket_unittest.cc",
5092 "socket/ssl_server_socket_unittest.cc",
5093 "socket/tcp_client_socket_unittest.cc",
5094 "socket/tcp_server_socket_unittest.cc",
5095 "socket/tcp_socket_unittest.cc",
5096 "socket/transport_client_socket_pool_test_util.cc",
5097 "socket/transport_client_socket_pool_test_util.h",
5098 "socket/transport_client_socket_pool_unittest.cc",
5099 "socket/transport_client_socket_unittest.cc",
5100 "socket/udp_socket_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455101 "socket/websocket_endpoint_lock_manager_unittest.cc",
5102 "socket/websocket_transport_client_socket_pool_unittest.cc",
bnc8f8f7d302017-04-24 18:08:065103 "spdy/chromium/bidirectional_stream_spdy_impl_unittest.cc",
5104 "spdy/chromium/buffered_spdy_framer_unittest.cc",
5105 "spdy/chromium/header_coalescer_test.cc",
5106 "spdy/chromium/http2_priority_dependencies_unittest.cc",
5107 "spdy/chromium/spdy_buffer_unittest.cc",
5108 "spdy/chromium/spdy_http_stream_unittest.cc",
5109 "spdy/chromium/spdy_http_utils_unittest.cc",
5110 "spdy/chromium/spdy_log_util_unittest.cc",
5111 "spdy/chromium/spdy_network_transaction_unittest.cc",
5112 "spdy/chromium/spdy_proxy_client_socket_unittest.cc",
5113 "spdy/chromium/spdy_read_queue_unittest.cc",
5114 "spdy/chromium/spdy_session_pool_unittest.cc",
5115 "spdy/chromium/spdy_session_test_util.cc",
5116 "spdy/chromium/spdy_session_test_util.h",
5117 "spdy/chromium/spdy_session_unittest.cc",
5118 "spdy/chromium/spdy_stream_test_util.cc",
5119 "spdy/chromium/spdy_stream_test_util.h",
5120 "spdy/chromium/spdy_stream_unittest.cc",
5121 "spdy/chromium/spdy_write_queue_unittest.cc",
5122 "spdy/core/array_output_buffer.cc",
5123 "spdy/core/array_output_buffer.h",
5124 "spdy/core/array_output_buffer_test.cc",
5125 "spdy/core/fuzzing/hpack_fuzz_util_test.cc",
Dianna Hu33dcd6c2017-07-24 15:01:465126 "spdy/core/hpack/hpack_decoder_adapter_test.cc",
bnc8f8f7d302017-04-24 18:08:065127 "spdy/core/hpack/hpack_encoder_test.cc",
5128 "spdy/core/hpack/hpack_entry_test.cc",
5129 "spdy/core/hpack/hpack_header_table_test.cc",
bnc8f8f7d302017-04-24 18:08:065130 "spdy/core/hpack/hpack_huffman_table_test.cc",
bnc8f8f7d302017-04-24 18:08:065131 "spdy/core/hpack/hpack_output_stream_test.cc",
5132 "spdy/core/hpack/hpack_round_trip_test.cc",
5133 "spdy/core/hpack/hpack_static_table_test.cc",
bnc8f8f7d302017-04-24 18:08:065134 "spdy/core/mock_spdy_framer_visitor.cc",
5135 "spdy/core/mock_spdy_framer_visitor.h",
5136 "spdy/core/priority_write_scheduler_test.cc",
5137 "spdy/core/spdy_alt_svc_wire_format_test.cc",
5138 "spdy/core/spdy_deframer_visitor.cc",
5139 "spdy/core/spdy_deframer_visitor.h",
5140 "spdy/core/spdy_deframer_visitor_test.cc",
5141 "spdy/core/spdy_frame_builder_test.cc",
5142 "spdy/core/spdy_frame_reader_test.cc",
5143 "spdy/core/spdy_framer_test.cc",
5144 "spdy/core/spdy_header_block_test.cc",
bnc8f8f7d302017-04-24 18:08:065145 "spdy/core/spdy_no_op_visitor.cc",
5146 "spdy/core/spdy_no_op_visitor.h",
5147 "spdy/core/spdy_pinnable_buffer_piece_test.cc",
5148 "spdy/core/spdy_prefixed_buffer_reader_test.cc",
5149 "spdy/core/spdy_protocol_test.cc",
5150 "spdy/core/spdy_protocol_test_utils.cc",
5151 "spdy/core/spdy_protocol_test_utils.h",
5152 "spdy/core/spdy_test_utils.cc",
5153 "spdy/core/spdy_test_utils.h",
bnced7be41d2017-03-28 17:30:245154 "spdy/platform/api/spdy_string_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:455155 "ssl/channel_id_service_unittest.cc",
mattm436ccfe2017-06-19 20:24:085156 "ssl/client_cert_identity_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455157 "ssl/client_cert_store_mac_unittest.cc",
5158 "ssl/client_cert_store_nss_unittest.cc",
5159 "ssl/client_cert_store_unittest-inl.h",
5160 "ssl/client_cert_store_win_unittest.cc",
5161 "ssl/default_channel_id_store_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455162 "ssl/ssl_cipher_suite_names_unittest.cc",
5163 "ssl/ssl_client_auth_cache_unittest.cc",
5164 "ssl/ssl_client_session_cache_unittest.cc",
5165 "ssl/ssl_config_service_unittest.cc",
5166 "ssl/ssl_config_unittest.cc",
5167 "ssl/ssl_connection_status_flags_unittest.cc",
5168 "ssl/ssl_platform_key_android_unittest.cc",
5169 "ssl/ssl_platform_key_mac_unittest.cc",
5170 "ssl/ssl_platform_key_nss_unittest.cc",
5171 "ssl/ssl_platform_key_util_unittest.cc",
davidbend6d1e4d2017-05-10 16:49:015172 "ssl/ssl_platform_key_win_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455173 "test/embedded_test_server/embedded_test_server_unittest.cc",
5174 "test/embedded_test_server/http_request_unittest.cc",
5175 "test/embedded_test_server/http_response_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455176 "test/run_all_unittests.cc",
5177 "third_party/nist-pkits/pkits_testcases-inl.h",
5178 "tools/content_decoder_tool/content_decoder_tool.cc",
5179 "tools/content_decoder_tool/content_decoder_tool.h",
5180 "tools/content_decoder_tool/content_decoder_tool_unittest.cc",
5181 "tools/quic/quic_simple_client_test.cc",
ckrasic73f7240b2017-01-24 00:06:455182 "tools/tld_cleanup/tld_cleanup_util_unittest.cc",
5183 "url_request/report_sender_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455184 "url_request/url_fetcher_impl_unittest.cc",
5185 "url_request/url_fetcher_response_writer_unittest.cc",
mmenkee2ad9922017-06-08 20:27:365186 "url_request/url_request_context_builder_mojo_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455187 "url_request/url_request_context_builder_unittest.cc",
5188 "url_request/url_request_context_unittest.cc",
5189 "url_request/url_request_data_job_unittest.cc",
5190 "url_request/url_request_file_dir_job_unittest.cc",
5191 "url_request/url_request_file_job_unittest.cc",
5192 "url_request/url_request_filter_unittest.cc",
5193 "url_request/url_request_ftp_job_unittest.cc",
5194 "url_request/url_request_http_job_unittest.cc",
5195 "url_request/url_request_job_factory_impl_unittest.cc",
5196 "url_request/url_request_job_unittest.cc",
5197 "url_request/url_request_quic_unittest.cc",
5198 "url_request/url_request_simple_job_unittest.cc",
5199 "url_request/url_request_throttler_simulation_unittest.cc",
5200 "url_request/url_request_throttler_test_support.cc",
5201 "url_request/url_request_throttler_test_support.h",
5202 "url_request/url_request_throttler_unittest.cc",
5203 "url_request/url_request_unittest.cc",
5204 "url_request/view_cache_helper_unittest.cc",
5205 ]
mattm1a07e632017-05-16 05:55:505206 net_unfiltered_sources = []
dpranke64df2832015-07-31 22:33:365207
5208 configs += [
5209 "//build/config:precompiled_headers",
5210
5211 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
5212 "//build/config/compiler:no_size_t_to_int_warning",
5213 ]
5214 defines = []
5215
5216 deps = [
dpranke64df2832015-07-31 22:33:365217 ":net",
xunjielicc6b1d02017-06-05 16:51:405218 ":quic_test_tools",
dpranke64df2832015-07-31 22:33:365219 ":simple_quic_tools",
5220 ":test_support",
5221 "//base",
dpranke64df2832015-07-31 22:33:365222 "//base/third_party/dynamic_annotations",
5223 "//crypto",
5224 "//crypto:platform",
5225 "//crypto:test_support",
dpranke64df2832015-07-31 22:33:365226 "//net/base/registry_controlled_domains",
eranm9657f672017-05-05 12:25:195227 "//net/data/ssl/certificate_transparency:ct_log_list",
martijnd369e6702017-03-21 18:36:455228 "//net/http:transport_security_state_unittest_data",
dpranke64df2832015-07-31 22:33:365229 "//testing/gmock",
5230 "//testing/gtest",
thomasanderson77bec4d2017-03-20 07:09:255231 "//third_party/protobuf:protobuf_lite",
dpranke64df2832015-07-31 22:33:365232 "//third_party/zlib",
5233 "//url",
kapishnikovabe280e2016-04-14 19:07:165234 "//url:url_features",
dpranke64df2832015-07-31 22:33:365235 ]
mmenkefd9d15c2017-06-29 13:45:545236
5237 if (enable_reporting) {
5238 sources += [
5239 "reporting/reporting_browsing_data_remover_unittest.cc",
5240 "reporting/reporting_cache_unittest.cc",
5241 "reporting/reporting_delivery_agent_unittest.cc",
5242 "reporting/reporting_endpoint_manager_unittest.cc",
5243 "reporting/reporting_garbage_collector_unittest.cc",
5244 "reporting/reporting_header_parser_unittest.cc",
5245 "reporting/reporting_network_change_observer_unittest.cc",
5246 "reporting/reporting_persister_unittest.cc",
5247 "reporting/reporting_service_unittest.cc",
5248 "reporting/reporting_test_util.cc",
5249 "reporting/reporting_test_util.h",
5250 "reporting/reporting_uploader_unittest.cc",
5251 ]
5252 }
5253
ckrasic73f7240b2017-01-24 00:06:455254 if (!is_proto_quic) {
5255 deps += [
5256 ":extras",
5257 "//base:i18n",
5258 "//sql",
5259 ]
5260 } else {
5261 sources -= [
5262 "extras/sqlite/sqlite_channel_id_store_unittest.cc",
5263 "extras/sqlite/sqlite_persistent_cookie_store_unittest.cc",
5264 ]
5265 }
dpranke64df2832015-07-31 22:33:365266
jbudorick944eb922016-06-20 15:38:305267 data = []
svaldez2135be52016-04-20 16:34:535268 data_deps = [
5269 "third_party/nist-pkits/",
5270 ]
dpranke64df2832015-07-31 22:33:365271
Scott Grahambe24b04f2017-09-21 23:27:525272 if (is_linux || is_mac || is_win || is_fuchsia) {
dpranke64df2832015-07-31 22:33:365273 deps += [
5274 "//third_party/pyftpdlib/",
5275 "//third_party/pywebsocket/",
5276 "//third_party/tlslite/",
5277 ]
mattm6586b432016-02-12 04:52:395278 data_deps += [
dpranke64df2832015-07-31 22:33:365279 "//third_party/pyftpdlib/",
5280 "//third_party/pywebsocket/",
5281 "//third_party/tlslite/",
5282 ]
5283 data += [
5284 "tools/testserver/",
5285 "//third_party/pyftpdlib/",
5286 "//third_party/pywebsocket/",
5287 "//third_party/tlslite/",
5288 "$root_out_dir/pyproto/google/",
dprankef497c7962015-07-31 19:46:235289 ]
5290 }
5291
dpranke64df2832015-07-31 22:33:365292 if (is_desktop_linux) {
5293 deps += [ ":epoll_quic_tools" ]
5294 }
5295 if (is_linux) {
ckrasic73f7240b2017-01-24 00:06:455296 sources += [
5297 "tools/quic/chlo_extractor_test.cc",
5298 "tools/quic/end_to_end_test.cc",
5299 "tools/quic/platform/impl/quic_epoll_clock_test.cc",
5300 "tools/quic/platform/impl/quic_socket_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:455301 "tools/quic/quic_client_test.cc",
5302 "tools/quic/quic_dispatcher_test.cc",
5303 "tools/quic/quic_epoll_alarm_factory_test.cc",
5304 "tools/quic/quic_epoll_connection_helper_test.cc",
5305 "tools/quic/quic_http_response_cache_test.cc",
5306 "tools/quic/quic_server_test.cc",
5307 "tools/quic/quic_simple_server_session_helper_test.cc",
5308 "tools/quic/quic_simple_server_session_test.cc",
5309 "tools/quic/quic_simple_server_stream_test.cc",
5310 "tools/quic/quic_simple_server_test.cc",
Ryan Hamiltonc4402302017-08-10 01:55:465311 "tools/quic/quic_spdy_client_session_test.cc",
ckrasic73f7240b2017-01-24 00:06:455312 "tools/quic/quic_spdy_client_stream_test.cc",
5313 "tools/quic/quic_spdy_server_stream_base_test.cc",
5314 "tools/quic/quic_time_wait_list_manager_test.cc",
5315 "tools/quic/stateless_rejector_test.cc",
ckrasic73f7240b2017-01-24 00:06:455316 ]
dpranke64df2832015-07-31 22:33:365317 deps += [
5318 ":epoll_quic_tools",
5319 ":epoll_server",
brettwbc8b2a22015-07-28 18:24:425320 ]
dpranke64df2832015-07-31 22:33:365321 }
[email protected]8a3f8242014-06-05 18:05:125322
dpranke64df2832015-07-31 22:33:365323 if (is_mac || is_ios) {
ckrasic73f7240b2017-01-24 00:06:455324 sources += [ "base/mac/url_conversions_unittest.mm" ]
dpranke64df2832015-07-31 22:33:365325 }
5326
mattmaf868e72016-09-23 23:25:205327 if (is_mac) {
5328 libs = [ "Security.framework" ]
5329 }
5330
dpranke64df2832015-07-31 22:33:365331 if (is_chromeos) {
5332 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ]
5333 }
5334
ckrasic73f7240b2017-01-24 00:06:455335 if (!is_proto_quic && v8_use_external_startup_data) {
dpranke64df2832015-07-31 22:33:365336 deps += [ "//gin" ]
5337 }
5338
zentarob74795682017-07-14 00:58:225339 if (is_win) {
5340 sources -= [
zentarob89acda42017-07-14 01:28:575341 "http/http_auth_handler_ntlm_portable_unittest.cc",
5342 "ntlm/des_unittest.cc",
Zentaro Kavanagh4e3aae82017-08-07 22:35:305343 "ntlm/md4_unittest.cc",
zentarob74795682017-07-14 00:58:225344 "ntlm/ntlm_buffer_reader_unittest.cc",
5345 "ntlm/ntlm_buffer_writer_unittest.cc",
Zentaro Kavanaghdd556612017-08-03 20:27:045346 "ntlm/ntlm_client_unittest.cc",
zentarob89acda42017-07-14 01:28:575347 "ntlm/ntlm_test_data.h",
5348 "ntlm/ntlm_unittest.cc",
zentarob74795682017-07-14 00:58:225349 ]
5350 }
5351
Sergey Ulanov2a0b0192017-08-31 23:09:405352 if (use_remote_test_server) {
5353 sources +=
5354 [ "test/spawned_test_server/remote_test_server_proxy_unittests.cc" ]
5355 }
5356
Sergey Ulanovec1d3de2017-09-19 19:27:475357 if (enable_python_utils) {
5358 sources += [ "test/python_utils_unittest.cc" ]
5359 }
5360
Sergey Ulanov7c0bcaf2017-08-28 19:03:265361 if (is_fuchsia) {
5362 use_test_server = true
5363 }
5364
dpranke64df2832015-07-31 22:33:365365 if (!use_nss_certs) {
5366 sources -= [
mattm9c63d442016-09-03 00:45:515367 "cert/internal/trust_store_nss_unittest.cc",
dpranke64df2832015-07-31 22:33:365368 "cert/nss_cert_database_unittest.cc",
Matt Mueller10684c92017-08-09 07:24:095369 "cert/x509_util_nss_unittest.cc",
dpranke64df2832015-07-31 22:33:365370 "ssl/client_cert_store_nss_unittest.cc",
davidben983d610b2016-12-14 19:35:405371 "ssl/ssl_platform_key_nss_unittest.cc",
[email protected]8a3f8242014-06-05 18:05:125372 ]
dpranke64df2832015-07-31 22:33:365373 if (is_chromeos) { # Already removed for all non-ChromeOS builds.
davidben2bcbc6b2015-04-22 02:36:415374 sources -= [
dpranke64df2832015-07-31 22:33:365375 "cert/nss_cert_database_chromeos_unittest.cc",
5376 "cert/nss_profile_filter_chromeos_unittest.cc",
davidben2bcbc6b2015-04-22 02:36:415377 ]
brettw43ae0e12015-07-14 22:12:365378 }
[email protected]8a3f8242014-06-05 18:05:125379 }
dpranke64df2832015-07-31 22:33:365380
dpranke64df2832015-07-31 22:33:365381 if (use_kerberos) {
5382 defines += [ "USE_KERBEROS" ]
5383 }
5384
5385 # These are excluded on Android, because the actual Kerberos support, which
5386 # these test, is in a separate app on Android.
5387 if (!use_kerberos || is_android) {
5388 sources -= [
5389 "http/http_auth_gssapi_posix_unittest.cc",
5390 "http/mock_gssapi_library_posix.cc",
5391 "http/mock_gssapi_library_posix.h",
5392 ]
5393 }
5394 if (!use_kerberos) {
5395 sources -= [ "http/http_auth_handler_negotiate_unittest.cc" ]
5396 }
5397
svaldez2135be52016-04-20 16:34:535398 if (!use_nss_certs) {
svaldeza1714ab2016-03-18 20:47:535399 # Only include this test when using NSS for cert verification.
dpranke64df2832015-07-31 22:33:365400 sources -= [ "cert_net/nss_ocsp_unittest.cc" ]
5401 }
5402
jbudorick1273a842016-04-01 19:50:055403 if (enable_websockets) {
ckrasic73f7240b2017-01-24 00:06:455404 sources += [
5405 "server/http_connection_unittest.cc",
5406 "server/http_server_response_info_unittest.cc",
5407 "server/http_server_unittest.cc",
5408 "server/web_socket_encoder_unittest.cc",
5409 "websockets/websocket_basic_stream_test.cc",
5410 "websockets/websocket_channel_test.cc",
5411 "websockets/websocket_deflate_parameters_test.cc",
5412 "websockets/websocket_deflate_predictor_impl_test.cc",
5413 "websockets/websocket_deflate_stream_test.cc",
5414 "websockets/websocket_deflater_test.cc",
5415 "websockets/websocket_end_to_end_test.cc",
5416 "websockets/websocket_errors_test.cc",
5417 "websockets/websocket_extension_parser_test.cc",
5418 "websockets/websocket_extension_test.cc",
5419 "websockets/websocket_frame_parser_test.cc",
5420 "websockets/websocket_frame_test.cc",
5421 "websockets/websocket_handshake_challenge_test.cc",
5422 "websockets/websocket_handshake_stream_create_helper_test.cc",
5423 "websockets/websocket_inflater_test.cc",
5424 "websockets/websocket_stream_cookie_test.cc",
5425 "websockets/websocket_stream_create_test_base.cc",
5426 "websockets/websocket_stream_create_test_base.h",
5427 "websockets/websocket_stream_test.cc",
5428 "websockets/websocket_test_util.cc",
5429 "websockets/websocket_test_util.h",
5430 ]
jbudorick1273a842016-04-01 19:50:055431 deps += [ ":http_server" ]
dpranke64df2832015-07-31 22:33:365432 }
5433
5434 if (disable_file_support) {
5435 sources -= [
5436 "base/directory_lister_unittest.cc",
Thiago Farinad673bb122016-01-06 23:18:165437 "base/directory_listing_unittest.cc",
shahriar.rostamia8c06daf2016-02-12 00:07:045438 "url_request/url_request_file_dir_job_unittest.cc",
dpranke64df2832015-07-31 22:33:365439 "url_request/url_request_file_job_unittest.cc",
5440 ]
5441 }
5442
5443 if (disable_ftp_support) {
5444 sources -= [
5445 "ftp/ftp_auth_cache_unittest.cc",
5446 "ftp/ftp_ctrl_response_buffer_unittest.cc",
5447 "ftp/ftp_directory_listing_parser_ls_unittest.cc",
dpranke64df2832015-07-31 22:33:365448 "ftp/ftp_directory_listing_parser_unittest.cc",
5449 "ftp/ftp_directory_listing_parser_unittest.h",
5450 "ftp/ftp_directory_listing_parser_vms_unittest.cc",
5451 "ftp/ftp_directory_listing_parser_windows_unittest.cc",
5452 "ftp/ftp_network_transaction_unittest.cc",
5453 "ftp/ftp_util_unittest.cc",
5454 "url_request/url_request_ftp_job_unittest.cc",
5455 ]
5456 }
5457
5458 if (!enable_built_in_dns) {
5459 sources -= [
5460 "dns/address_sorter_posix_unittest.cc",
5461 "dns/address_sorter_unittest.cc",
5462 ]
5463 }
5464
xunjieli905496a2015-08-31 15:51:175465 if (use_v8_in_net) {
mmenkee2ad9922017-06-08 20:27:365466 deps += [ ":net_with_v8" ]
dpranke64df2832015-07-31 22:33:365467 } else {
5468 sources -= [
5469 "proxy/proxy_resolver_v8_tracing_unittest.cc",
5470 "proxy/proxy_resolver_v8_tracing_wrapper_unittest.cc",
5471 "proxy/proxy_resolver_v8_unittest.cc",
5472 ]
5473 }
5474
mmenke93be9ca2017-05-23 16:29:135475 if (enable_net_mojo) {
dpranke64df2832015-07-31 22:33:365476 deps += [
5477 ":net_browser_services",
5478 ":net_utility_services",
rockotc637caf9b2016-02-10 09:57:085479 "//mojo/edk/system",
dpranke64df2832015-07-31 22:33:365480 ]
5481 } else {
5482 sources -= [
5483 "dns/host_resolver_mojo_unittest.cc",
5484 "dns/mojo_host_resolver_impl_unittest.cc",
5485 "proxy/mojo_proxy_resolver_factory_impl_unittest.cc",
5486 "proxy/mojo_proxy_resolver_impl_unittest.cc",
5487 "proxy/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc",
5488 "proxy/proxy_resolver_factory_mojo_unittest.cc",
5489 "proxy/proxy_service_mojo_unittest.cc",
mmenke93be9ca2017-05-23 16:29:135490 "proxy/test_mojo_proxy_resolver_factory.cc",
5491 "proxy/test_mojo_proxy_resolver_factory.h",
mmenkee2ad9922017-06-08 20:27:365492 "url_request/url_request_context_builder_mojo_unittest.cc",
dpranke64df2832015-07-31 22:33:365493 ]
5494 }
5495
5496 if (!enable_mdns) {
5497 sources -= [
5498 "dns/mdns_cache_unittest.cc",
5499 "dns/mdns_client_unittest.cc",
dpranke64df2832015-07-31 22:33:365500 ]
5501 }
5502
5503 if (is_ios) {
dpranke64df2832015-07-31 22:33:365504 sources -= [
5505 # TODO(droger): The following tests are disabled because the
5506 # implementation is missing or incomplete.
dpranke64df2832015-07-31 22:33:365507 "disk_cache/backend_unittest.cc",
5508 "disk_cache/blockfile/block_files_unittest.cc",
5509
5510 # Need to read input data files.
dpranke64df2832015-07-31 22:33:365511 "socket/ssl_server_socket_unittest.cc",
bnc8f8f7d302017-04-24 18:08:065512 "spdy/core/fuzzing/hpack_fuzz_util_test.cc",
dpranke64df2832015-07-31 22:33:365513
5514 # Need TestServer.
5515 "cert_net/cert_net_fetcher_impl_unittest.cc",
5516 "proxy/proxy_script_fetcher_impl_unittest.cc",
5517 "socket/ssl_client_socket_unittest.cc",
5518 "url_request/url_fetcher_impl_unittest.cc",
5519 "url_request/url_request_context_builder_unittest.cc",
dpranke64df2832015-07-31 22:33:365520 ]
mattm1a07e632017-05-16 05:55:505521 net_unfiltered_sources += [ "cert/x509_util_ios_and_mac_unittest.cc" ]
rsesek7d4ab4bc2016-07-22 17:35:135522
5523 bundle_deps = [ ":net_unittests_bundle_data" ]
dpranke64df2832015-07-31 22:33:365524 }
5525
Sergey Ulanov21dea152017-09-13 00:50:505526 if (enable_unix_sockets) {
5527 sources += [
5528 "socket/unix_domain_client_socket_posix_unittest.cc",
5529 "socket/unix_domain_server_socket_posix_unittest.cc",
5530 ]
5531 }
5532
Sergey Ulanov5c33235ae2017-07-06 23:55:075533 # Use getifaddrs() on POSIX platforms, except Linux and Android.
5534 if (!is_posix || is_linux || is_android) {
5535 sources -= [ "base/network_interfaces_getifaddrs_unittest.cc" ]
5536 }
5537
kapishnikovabe280e2016-04-14 19:07:165538 # Unit tests that aren't supported by the current ICU alternatives on Android.
5539 if (is_android && use_platform_icu_alternatives) {
5540 sources -= [
5541 "base/filename_util_unittest.cc",
5542 "base/url_util_unittest.cc",
5543 "cert/x509_certificate_unittest.cc",
5544 "proxy/proxy_resolver_v8_unittest.cc",
5545 "url_request/url_request_job_unittest.cc",
5546 ]
5547 }
5548
5549 # Unit tests that are not supported by the current ICU alternatives on iOS.
5550 if (is_ios && use_platform_icu_alternatives) {
5551 sources -= [
5552 "base/filename_util_unittest.cc",
5553 "base/url_util_unittest.cc",
5554 "cert/x509_certificate_unittest.cc",
5555 "http/http_auth_handler_basic_unittest.cc",
5556 "http/http_auth_handler_digest_unittest.cc",
5557 "http/http_auth_handler_factory_unittest.cc",
5558 "http/http_auth_unittest.cc",
5559 "http/http_content_disposition_unittest.cc",
5560 "http/http_network_transaction_unittest.cc",
5561 "http/http_proxy_client_socket_pool_unittest.cc",
5562 "socket/ssl_client_socket_pool_unittest.cc",
bnc8f8f7d302017-04-24 18:08:065563 "spdy/chromium/spdy_network_transaction_unittest.cc",
5564 "spdy/chromium/spdy_proxy_client_socket_unittest.cc",
kapishnikovabe280e2016-04-14 19:07:165565 "url_request/url_request_job_unittest.cc",
5566 "url_request/url_request_unittest.cc",
5567 ]
5568 }
5569
5570 # Exclude brotli test if the support for brotli is disabled.
xunjielif54f24a02016-11-04 15:51:545571 if (disable_brotli_filter) {
xunjieli084a9292016-09-23 18:15:045572 sources -= [ "filter/brotli_source_stream_unittest.cc" ]
kapishnikovabe280e2016-04-14 19:07:165573 }
5574
dpranke64df2832015-07-31 22:33:365575 if (is_android) {
agrieve732db3a2016-04-26 19:18:195576 data_deps += [ "//net/tools/testserver:testserver_py" ]
agrieve97176362015-12-01 16:36:195577 deps += [
5578 ":net_test_jni_headers",
agrievea5517aa2015-10-23 03:03:455579 "//base:base_java_unittest_support",
5580 "//net/android:net_java",
agrievea5517aa2015-10-23 03:03:455581 "//net/android:net_java_test_support",
Yipeng Wangff2db2d2017-06-16 13:54:525582 "//net/android:net_java_test_support_provider",
agrieve97176362015-12-01 16:36:195583 "//net/android:net_javatests",
agrievea5517aa2015-10-23 03:03:455584 "//net/android:net_unittests_apk_resources",
agrieve97176362015-12-01 16:36:195585
5586 # TODO(mmenke): This depends on test_support_base, which depends on
5587 # icu. Figure out a way to remove that dependency.
5588 "//testing/android/native_test:native_test_native_code",
pkotwicz8c7027d2015-11-11 06:30:075589 "//v8:v8_external_startup_data_assets",
agrievea5517aa2015-10-23 03:03:455590 ]
5591 android_manifest = "//net/android/unittest_support/AndroidManifest.xml"
dpranke64df2832015-07-31 22:33:365592 set_sources_assignment_filter([])
Sergey Ulanov5bb07d32017-07-12 04:14:545593 sources += [
5594 "base/address_tracker_linux_unittest.cc",
5595 "base/network_interfaces_linux_unittest.cc",
5596 ]
dpranke64df2832015-07-31 22:33:365597 set_sources_assignment_filter(sources_assignment_filter)
agrieve3ac557f02016-04-12 15:52:005598 shard_timeout = 300
dpranke64df2832015-07-31 22:33:365599 }
5600
dpranke64df2832015-07-31 22:33:365601 # Symbols for crashes when running tests on swarming.
5602 if (symbol_level > 0) {
5603 if (is_win) {
5604 data += [ "$root_out_dir/net_unittests.exe.pdb" ]
5605 } else if (is_mac) {
dprankede2945b82016-04-15 22:14:135606 # TODO(crbug.com/330301): make this conditional on mac_strip_release.
5607 # data += [ "$root_out_dir/net_unittests.dSYM/" ]
dpranke64df2832015-07-31 22:33:365608 }
5609 }
maksim.sisovc69619d2016-05-20 19:23:555610
5611 if (is_win) {
davidbend6d1e4d2017-05-10 16:49:015612 libs = [
5613 "iphlpapi.lib",
5614 "ncrypt.lib",
5615 ]
maksim.sisovc69619d2016-05-20 19:23:555616 }
davidben983d610b2016-12-14 19:35:405617
5618 if (is_chromecast && use_nss_certs) {
mattm436ccfe2017-06-19 20:24:085619 sources -= [
5620 "ssl/client_cert_store_nss_unittest.cc",
5621 "ssl/ssl_platform_key_nss_unittest.cc",
5622 ]
davidben983d610b2016-12-14 19:35:405623 }
martijnb9aca9d2017-03-31 19:56:155624
5625 # Include transport_security_state_generator tests.
5626 if (host_toolchain == current_toolchain) {
5627 deps += [ "//net/tools/transport_security_state_generator:transport_security_state_generator_test_sources" ]
5628 }
mattm1a07e632017-05-16 05:55:505629
5630 # Add back some sources that were otherwise filtered out.
5631 set_sources_assignment_filter([])
5632 sources += net_unfiltered_sources
5633 set_sources_assignment_filter(sources_assignment_filter)
dpranke64df2832015-07-31 22:33:365634}
5635
5636# !is_android && !is_win && !is_mac
ckrasic73f7240b2017-01-24 00:06:455637if (!is_ios && !is_proto_quic) {
sdefresne3001f172016-03-16 10:30:035638 # TODO(crbug.com/594965): this should be converted to "app" template and
5639 # enabled on iOS too.
5640 executable("net_perftests") {
5641 testonly = true
5642 sources = [
5643 "base/mime_sniffer_perftest.cc",
5644 "cookies/cookie_monster_perftest.cc",
gavinpc28fe1122016-05-13 17:49:055645 "disk_cache/disk_cache_perftest.cc",
sdefresne3001f172016-03-16 10:30:035646 "extras/sqlite/sqlite_persistent_cookie_store_perftest.cc",
tfarina5dd13c22016-11-16 12:08:265647 "socket/udp_socket_perftest.cc",
xunjielicc6b1d02017-06-05 16:51:405648 "url_request/url_request_quic_perftest.cc",
sdefresne3001f172016-03-16 10:30:035649 ]
[email protected]8a3f8242014-06-05 18:05:125650
sdefresne3001f172016-03-16 10:30:035651 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
5652 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
5653 deps = [
5654 ":extras",
5655 ":net",
xunjielicc6b1d02017-06-05 16:51:405656 ":quic_test_tools",
5657 ":simple_quic_tools",
sdefresne3001f172016-03-16 10:30:035658 ":test_support",
5659 "//base",
5660 "//base:i18n",
5661 "//base/test:test_support_perf",
thomasanderson84fa8b02017-05-18 23:38:475662 "//build/config:exe_and_shlib_deps",
brucedawsonf9f7d6292016-04-27 19:11:075663 "//build/win:default_exe_manifest",
sdefresne3001f172016-03-16 10:30:035664 "//testing/gtest",
xunjielicc6b1d02017-06-05 16:51:405665 "//testing/perf",
sdefresne3001f172016-03-16 10:30:035666 "//url",
5667 ]
xunjieli5a866842017-06-09 18:16:205668 data = [
5669 # Needed for isolate script to execute.
5670 "//testing/scripts/common.py",
5671 "//testing/xvfb.py",
5672 "//testing/scripts/run_gtest_perf_test.py",
5673 "//tools/perf/generate_legacy_perf_dashboard_json.py",
5674 ]
sdefresne3001f172016-03-16 10:30:035675 if (enable_websockets) {
5676 sources += [ "websockets/websocket_frame_perftest.cc" ]
5677 }
rockot9c67e5f2015-03-12 20:01:215678
sebmarchanda6de3462016-12-14 21:14:015679 # Some linker failures have been observed for this target on the Win64
5680 # continuous builder, see crbug.com/659369.
5681 # TODO(sebmarchand): Remove this once we have some data.
5682 if (is_win && linkrepro_root_dir != "") {
5683 ldflags = [ "/LINKREPRO:" + linkrepro_root_dir + "/" + target_name ]
5684 }
rockot9c67e5f2015-03-12 20:01:215685 }
rockot9c67e5f2015-03-12 20:01:215686}
mefff34b822016-01-11 15:28:085687
eromanfe8659e2016-03-02 23:47:025688# Fuzzers
5689
mmenke35a30012016-07-15 19:20:125690# This has a global (InitGlobals) that must always be linked in, so
5691# must be a source set instead of a static library.
5692source_set("net_fuzzer_test_support") {
eroman02b4fe562016-03-04 12:15:165693 testonly = true
5694
5695 sources = [
csharrison37ef9852016-08-23 19:00:195696 "base/fuzzer_test_support.cc",
mmenkea7da0712016-11-21 21:12:315697 "dns/fuzzed_host_resolver.cc",
5698 "dns/fuzzed_host_resolver.h",
xunjieli75837332016-10-31 16:51:265699 "filter/fuzzed_source_stream.cc",
5700 "filter/fuzzed_source_stream.h",
tfarina5dd13c22016-11-16 12:08:265701 "socket/fuzzed_datagram_client_socket.cc",
5702 "socket/fuzzed_datagram_client_socket.h",
morlovich5e6e19b2017-01-30 14:38:165703 "socket/fuzzed_server_socket.cc",
5704 "socket/fuzzed_server_socket.h",
mmenke99b57172016-04-14 20:44:335705 "socket/fuzzed_socket.cc",
5706 "socket/fuzzed_socket.h",
mmenkec951d412016-04-28 19:05:225707 "socket/fuzzed_socket_factory.cc",
5708 "socket/fuzzed_socket_factory.h",
eroman02b4fe562016-03-04 12:15:165709 ]
csharrisonf30fc95f2016-08-19 21:43:445710 public_deps = [
5711 "//base/test:test_support",
5712 ]
eroman02b4fe562016-03-04 12:15:165713 deps = [
5714 "//base",
5715 "//base:i18n",
mmenke99b57172016-04-14 20:44:335716 "//net",
eroman02b4fe562016-03-04 12:15:165717 ]
5718}
5719
csharrisonaa314dc2016-04-29 20:15:375720fuzzer_test("net_data_job_fuzzer") {
5721 sources = [
5722 "url_request/url_request_data_job_fuzzer.cc",
5723 ]
5724 deps = [
5725 ":net_fuzzer_test_support",
5726 ":test_support",
5727 "//base",
5728 "//net",
5729 ]
5730}
5731
mmenke5552a6a2016-03-28 23:11:595732fuzzer_test("net_mime_sniffer_fuzzer") {
5733 sources = [
5734 "base/mime_sniffer_fuzzer.cc",
5735 ]
5736 deps = [
5737 ":net_fuzzer_test_support",
5738 "//base",
5739 "//net",
5740 ]
mmoroz4a561d32016-07-07 17:45:125741 dict = "data/fuzzer_dictionaries/net_mime_sniffer_fuzzer.dict"
mmenke5552a6a2016-03-28 23:11:595742}
5743
mmoroz565e8df22016-03-04 18:17:205744fuzzer_test("net_parse_proxy_list_pac_fuzzer") {
eromane6264fd2016-03-02 22:46:305745 sources = [
5746 "proxy/parse_proxy_list_pac_fuzzer.cc",
5747 ]
5748 deps = [
eroman02b4fe562016-03-04 12:15:165749 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305750 "//net",
5751 ]
5752}
5753
mmoroz565e8df22016-03-04 18:17:205754fuzzer_test("net_parse_proxy_list_fuzzer") {
eromane6264fd2016-03-02 22:46:305755 sources = [
5756 "proxy/parse_proxy_list_fuzzer.cc",
5757 ]
5758 deps = [
eroman02b4fe562016-03-04 12:15:165759 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305760 "//net",
5761 ]
5762}
5763
mmoroz565e8df22016-03-04 18:17:205764fuzzer_test("net_parse_proxy_bypass_rules_fuzzer") {
eromane6264fd2016-03-02 22:46:305765 sources = [
5766 "proxy/parse_proxy_bypass_rules_fuzzer.cc",
5767 ]
5768 deps = [
eroman02b4fe562016-03-04 12:15:165769 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305770 "//net",
5771 ]
5772}
5773
mmoroz565e8df22016-03-04 18:17:205774fuzzer_test("net_parse_proxy_rules_fuzzer") {
eromane6264fd2016-03-02 22:46:305775 sources = [
5776 "proxy/parse_proxy_rules_fuzzer.cc",
5777 ]
5778 deps = [
eroman02b4fe562016-03-04 12:15:165779 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305780 "//net",
5781 ]
metzman31db75e2016-08-03 22:33:275782 dict = "data/fuzzer_dictionaries/net_parse_proxy_bypass_rules_fuzzer.dict"
eromane6264fd2016-03-02 22:46:305783}
5784
mmoroz565e8df22016-03-04 18:17:205785fuzzer_test("net_parse_data_url_fuzzer") {
eromane6264fd2016-03-02 22:46:305786 sources = [
5787 "base/parse_data_url_fuzzer.cc",
5788 ]
5789 deps = [
eroman02b4fe562016-03-04 12:15:165790 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305791 "//base",
5792 "//net",
5793 ]
mmoroz4a561d32016-07-07 17:45:125794 dict = "data/fuzzer_dictionaries/net_parse_data_url_fuzzer.dict"
eromane6264fd2016-03-02 22:46:305795}
5796
mmoroz565e8df22016-03-04 18:17:205797fuzzer_test("net_parse_ip_pattern_fuzzer") {
eromane6264fd2016-03-02 22:46:305798 sources = [
5799 "base/parse_ip_pattern_fuzzer.cc",
5800 ]
5801 deps = [
eroman02b4fe562016-03-04 12:15:165802 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305803 "//net",
5804 ]
5805}
5806
mmoroz565e8df22016-03-04 18:17:205807fuzzer_test("net_get_domain_and_registry_fuzzer") {
eromane6264fd2016-03-02 22:46:305808 sources = [
5809 "base/registry_controlled_domains/get_domain_and_registry_fuzzer.cc",
5810 ]
5811 deps = [
eroman02b4fe562016-03-04 12:15:165812 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305813 "//base",
eromane6264fd2016-03-02 22:46:305814 "//net",
5815 ]
mmoroz4a561d32016-07-07 17:45:125816 dict = "data/fuzzer_dictionaries/net_get_domain_and_registry_fuzzer.dict"
eromane6264fd2016-03-02 22:46:305817}
5818
mattmafe43b82016-04-28 20:40:545819fuzzer_test("net_cert_verify_name_match_fuzzer") {
5820 sources = [
5821 "cert/internal/verify_name_match_fuzzer.cc",
5822 ]
5823 deps = [
5824 ":net_fuzzer_test_support",
5825 "//base",
5826 "//net",
5827 ]
5828}
5829
mattm2c637da42016-04-28 02:55:595830fuzzer_test("net_cert_normalize_name_fuzzer") {
5831 sources = [
5832 "cert/internal/verify_name_match_normalizename_fuzzer.cc",
5833 ]
5834 deps = [
5835 "//base",
5836 "//net",
5837 ]
5838}
5839
mattmafe43b82016-04-28 20:40:545840fuzzer_test("net_cert_verify_name_in_subtree_fuzzer") {
5841 sources = [
5842 "cert/internal/verify_name_match_verifynameinsubtree_fuzzer.cc",
5843 ]
5844 deps = [
5845 ":net_fuzzer_test_support",
5846 "//base",
5847 "//net",
5848 ]
5849}
5850
nharper85d3b6f2016-04-28 20:58:195851fuzzer_test("net_cert_parse_certificate_fuzzer") {
5852 sources = [
5853 "cert/internal/parse_certificate_fuzzer.cc",
5854 ]
5855 deps = [
5856 "//base",
5857 "//net",
5858 ]
5859}
5860
mmoroz565e8df22016-03-04 18:17:205861fuzzer_test("net_parse_cookie_line_fuzzer") {
eromane6264fd2016-03-02 22:46:305862 sources = [
5863 "cookies/parse_cookie_line_fuzzer.cc",
5864 ]
5865 deps = [
eroman02b4fe562016-03-04 12:15:165866 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305867 "//net",
5868 ]
5869}
5870
mmoroz565e8df22016-03-04 18:17:205871fuzzer_test("net_dns_record_fuzzer") {
eromanfe8659e2016-03-02 23:47:025872 sources = [
5873 "dns/dns_record_fuzzer.cc",
5874 ]
5875 deps = [
eroman02b4fe562016-03-04 12:15:165876 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:025877 "//base",
5878 "//net",
5879 ]
mmoroz4a561d32016-07-07 17:45:125880 dict = "data/fuzzer_dictionaries/net_dns_record_fuzzer.dict"
eromanfe8659e2016-03-02 23:47:025881}
5882
zhongyi273af9f2016-04-28 18:46:345883fuzzer_test("net_dns_hosts_parse_fuzzer") {
5884 sources = [
5885 "dns/dns_hosts_parse_fuzzer.cc",
5886 ]
5887 deps = [
5888 ":net_fuzzer_test_support",
5889 "//base",
5890 "//net",
5891 ]
mmoroz4a561d32016-07-07 17:45:125892 dict = "data/fuzzer_dictionaries/net_dns_hosts_parse_fuzzer.dict"
zhongyi273af9f2016-04-28 18:46:345893}
5894
mmenke91c17162016-06-02 16:03:235895fuzzer_test("net_host_resolver_impl_fuzzer") {
5896 sources = [
mmenke91c17162016-06-02 16:03:235897 "dns/host_resolver_impl_fuzzer.cc",
5898 ]
5899 deps = [
5900 ":net_fuzzer_test_support",
5901 ":test_support",
5902 "//base",
5903 "//net",
5904 ]
mmoroz4a561d32016-07-07 17:45:125905 dict = "data/fuzzer_dictionaries/net_host_resolver_impl_fuzzer.dict"
mmenke91c17162016-06-02 16:03:235906}
5907
mmenke44e8e9c2016-03-29 18:38:575908fuzzer_test("net_http_stream_parser_fuzzer") {
5909 sources = [
5910 "http/http_stream_parser_fuzzer.cc",
5911 ]
5912 deps = [
5913 ":net_fuzzer_test_support",
5914 ":test_support",
5915 "//base",
5916 "//net",
5917 ]
mmoroz4a561d32016-07-07 17:45:125918 dict = "data/fuzzer_dictionaries/net_http_stream_parser_fuzzer.dict"
mmenke44e8e9c2016-03-29 18:38:575919}
5920
Zentaro Kavanaghdd556612017-08-03 20:27:045921fuzzer_test("net_ntlm_ntlm_client_fuzzer") {
5922 sources = [
5923 "ntlm/ntlm_client_fuzzer.cc",
5924 ]
5925 deps = [
5926 ":net_fuzzer_test_support",
5927 ":test_support",
5928 "//base",
5929 "//net",
5930 "//net:net_unittests",
5931 ]
5932 dict = "data/fuzzer_dictionaries/net_ntlm_ntlm_client_fuzzer.dict"
5933 seed_corpus = "data/fuzzer_data/ntlm_client_fuzzer/"
5934}
5935
xunjielid5ffeaf2016-11-01 15:22:005936if (!disable_brotli_filter) {
5937 fuzzer_test("net_brotli_source_stream_fuzzer") {
5938 sources = [
5939 "filter/brotli_source_stream_fuzzer.cc",
5940 ]
5941 deps = [
5942 ":net_fuzzer_test_support",
5943 ":test_support",
5944 "//base",
5945 "//net",
5946 ]
5947 }
5948}
5949
xunjieli75837332016-10-31 16:51:265950fuzzer_test("net_gzip_source_stream_fuzzer") {
5951 sources = [
5952 "filter/gzip_source_stream_fuzzer.cc",
5953 ]
5954 deps = [
5955 ":net_fuzzer_test_support",
5956 ":test_support",
5957 "//base",
5958 "//net",
5959 ]
5960}
5961
mmoroz565e8df22016-03-04 18:17:205962fuzzer_test("net_ftp_ctrl_response_fuzzer") {
eromanfe8659e2016-03-02 23:47:025963 sources = [
5964 "ftp/ftp_ctrl_response_fuzzer.cc",
5965 ]
5966 deps = [
eroman02b4fe562016-03-04 12:15:165967 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:025968 "//base",
5969 "//net",
5970 ]
5971}
5972
mmoroz565e8df22016-03-04 18:17:205973fuzzer_test("net_ftp_directory_listing_fuzzer") {
eromanfe8659e2016-03-02 23:47:025974 sources = [
5975 "ftp/ftp_directory_listing_fuzzer.cc",
5976 ]
5977 deps = [
eroman02b4fe562016-03-04 12:15:165978 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:025979 "//base",
eromanfe8659e2016-03-02 23:47:025980 "//net",
5981 ]
5982}
5983
mmoroz565e8df22016-03-04 18:17:205984fuzzer_test("net_unescape_url_component_fuzzer") {
eromanfe8659e2016-03-02 23:47:025985 sources = [
5986 "base/unescape_url_component_fuzzer.cc",
5987 ]
5988 deps = [
eroman02b4fe562016-03-04 12:15:165989 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:025990 "//base",
5991 "//net",
5992 ]
mmoroz34eb0082016-03-11 14:32:015993 dict = "base/unescape_url_component_fuzzer.dict"
mmoroz062a4a62016-04-12 09:02:335994 libfuzzer_options = [ "max_len = 2048" ]
eromanfe8659e2016-03-02 23:47:025995}
5996
ricea7b870e72016-09-01 04:41:045997fuzzer_test("net_websocket_deflate_stream_fuzzer") {
5998 sources = [
5999 "websockets/websocket_deflate_stream_fuzzer.cc",
6000 ]
6001 deps = [
6002 ":net_fuzzer_test_support",
6003 "//net",
6004 ]
6005 dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict"
6006 libfuzzer_options = [ "max_len=512" ]
6007}
6008
riceaf9dcc092016-09-13 12:42:006009fuzzer_test("net_websocket_extension_parser_fuzzer") {
6010 sources = [
6011 "websockets/websocket_extension_parser_fuzzer.cc",
6012 ]
6013 deps = [
6014 ":net_fuzzer_test_support",
6015 "//net",
6016 ]
6017 dict = "data/fuzzer_dictionaries/net_websocket_extension_parser_fuzzer.dict"
6018 libfuzzer_options = [ "max_len = 256" ]
6019}
6020
mmoroz565e8df22016-03-04 18:17:206021fuzzer_test("net_websocket_frame_parser_fuzzer") {
eromanfe8659e2016-03-02 23:47:026022 sources = [
6023 "websockets/websocket_frame_parser_fuzzer.cc",
6024 ]
6025 deps = [
eroman02b4fe562016-03-04 12:15:166026 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026027 "//net",
6028 ]
mmoroz4a561d32016-07-07 17:45:126029 dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict"
ricea105ae612016-09-08 08:00:076030 libfuzzer_options = [ "max_len=256" ]
eromanfe8659e2016-03-02 23:47:026031}
6032
mmoroz565e8df22016-03-04 18:17:206033fuzzer_test("net_http_chunked_decoder_fuzzer") {
eromanfe8659e2016-03-02 23:47:026034 sources = [
6035 "http/http_chunked_decoder_fuzzer.cc",
6036 ]
6037 deps = [
eroman02b4fe562016-03-04 12:15:166038 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026039 "//net",
6040 ]
6041}
6042
mmenke8e9314bc2016-04-15 21:45:026043fuzzer_test("net_http_proxy_client_socket_fuzzer") {
6044 sources = [
6045 "http/http_proxy_client_socket_fuzzer.cc",
6046 ]
6047 deps = [
6048 ":net_fuzzer_test_support",
6049 ":test_support",
6050 "//base",
6051 "//net",
6052 ]
mmoroz4a561d32016-07-07 17:45:126053 dict = "data/fuzzer_dictionaries/net_http_proxy_client_socket_fuzzer.dict"
mmenke8e9314bc2016-04-15 21:45:026054}
6055
mmoroz9299ef9b2016-09-01 17:37:096056fuzzer_test("net_parse_url_hostname_to_address_fuzzer") {
6057 sources = [
6058 "base/parse_url_hostname_to_address_fuzzer.cc",
6059 ]
6060 deps = [
6061 ":net_fuzzer_test_support",
6062 "//base",
6063 "//net",
6064 ]
6065 libfuzzer_options = [ "max_len=512" ]
6066 seed_corpus = "data/fuzzer_data/hostnames/"
6067}
6068
mmoroz565e8df22016-03-04 18:17:206069fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") {
eromanfe8659e2016-03-02 23:47:026070 sources = [
rchd4db7c152016-07-29 21:58:126071 "quic/core/quic_crypto_framer_parse_message_fuzzer.cc",
eromanfe8659e2016-03-02 23:47:026072 ]
6073 deps = [
eroman02b4fe562016-03-04 12:15:166074 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026075 "//base",
6076 "//net",
6077 ]
6078}
mmenke99b57172016-04-14 20:44:336079
6080fuzzer_test("net_socks_client_socket_fuzzer") {
6081 sources = [
6082 "socket/socks_client_socket_fuzzer.cc",
6083 ]
6084 deps = [
6085 ":net_fuzzer_test_support",
6086 ":test_support",
6087 "//base",
6088 "//net",
6089 ]
6090}
6091
6092fuzzer_test("net_socks5_client_socket_fuzzer") {
6093 sources = [
6094 "socket/socks5_client_socket_fuzzer.cc",
6095 ]
6096 deps = [
6097 ":net_fuzzer_test_support",
6098 ":test_support",
6099 "//base",
6100 "//net",
6101 ]
6102}
mmenkec951d412016-04-28 19:05:226103
mmenkea7da0712016-11-21 21:12:316104fuzzer_test("net_url_request_ftp_fuzzer") {
6105 sources = [
6106 "url_request/url_request_ftp_fuzzer.cc",
6107 ]
6108 deps = [
6109 ":net_fuzzer_test_support",
6110 ":test_support",
6111 "//base",
6112 "//net",
6113 ]
6114 dict = "data/fuzzer_dictionaries/net_url_request_ftp_fuzzer.dict"
6115 seed_corpus = "data/fuzzer_data/net_url_request_ftp_fuzzer/"
6116}
6117
mmenkec951d412016-04-28 19:05:226118fuzzer_test("net_url_request_fuzzer") {
6119 sources = [
6120 "url_request/url_request_fuzzer.cc",
6121 ]
6122 deps = [
6123 ":net_fuzzer_test_support",
6124 ":test_support",
6125 "//base",
6126 "//net",
6127 ]
mmoroz4a561d32016-07-07 17:45:126128 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict"
mmenkec951d412016-04-28 19:05:226129}
csharrison88d2a612016-09-09 16:58:546130
6131fuzzer_test("net_auth_challenge_tokenizer_fuzzer") {
6132 sources = [
6133 "http/http_auth_challenge_tokenizer_fuzzer.cc",
6134 ]
6135 deps = [
6136 ":net_fuzzer_test_support",
6137 ":test_support",
6138 "//base",
6139 "//net",
6140 ]
6141}
martijndb9ad4f2016-10-26 18:34:096142
estarka57e8162017-04-21 18:01:056143fuzzer_test("net_http_security_headers_expect_ct_fuzzer") {
6144 sources = [
6145 "http/http_security_headers_expect_ct_fuzzer.cc",
6146 ]
6147 deps = [
6148 ":net_fuzzer_test_support",
6149 "//base",
6150 "//net",
6151 "//url",
6152 ]
6153 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
6154 seed_corpus = "data/fuzzer_data/http_security_headers/"
6155}
6156
martijndb9ad4f2016-10-26 18:34:096157fuzzer_test("net_http_security_headers_hsts_fuzzer") {
6158 sources = [
6159 "http/http_security_headers_hsts_fuzzer.cc",
6160 ]
6161 deps = [
6162 "//base",
6163 "//net",
6164 ]
6165 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
estarka57e8162017-04-21 18:01:056166 seed_corpus = "data/fuzzer_data/http_security_headers/"
martijndb9ad4f2016-10-26 18:34:096167}
6168
6169fuzzer_test("net_http_security_headers_hpkp_fuzzer") {
6170 sources = [
6171 "http/http_security_headers_hpkp_fuzzer.cc",
6172 ]
6173 deps = [
martijn15387afb2016-10-27 22:21:046174 ":net_fuzzer_test_support",
martijndb9ad4f2016-10-26 18:34:096175 "//base",
6176 "//net",
6177 "//url",
6178 ]
6179 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
estarka57e8162017-04-21 18:01:056180 seed_corpus = "data/fuzzer_data/http_security_headers/"
martijndb9ad4f2016-10-26 18:34:096181}
6182
6183fuzzer_test("net_http_security_headers_hpkp_report_only_fuzzer") {
6184 sources = [
6185 "http/http_security_headers_hpkp_report_only_fuzzer.cc",
6186 ]
6187 deps = [
martijn15387afb2016-10-27 22:21:046188 ":net_fuzzer_test_support",
martijndb9ad4f2016-10-26 18:34:096189 "//base",
6190 "//net",
6191 "//url",
6192 ]
6193 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
6194}
martijn40db4b762016-12-14 00:26:456195
martijnda940792016-12-29 01:36:516196fuzzer_test("net_http_transport_security_state_static_fuzzer") {
6197 sources = [
6198 "http/transport_security_state_static_fuzzer.cc",
6199 ]
6200 deps = [
6201 ":net_fuzzer_test_support",
6202 "//net",
6203 ]
6204 dict =
6205 "data/fuzzer_dictionaries/net_http_transport_security_state_fuzzer.dict"
6206}
6207
morlovich5e6e19b2017-01-30 14:38:166208fuzzer_test("net_http_server_fuzzer") {
6209 sources = [
6210 "server/http_server_fuzzer.cc",
6211 ]
6212 deps = [
6213 ":http_server",
6214 ":net_fuzzer_test_support",
6215 ":test_support",
6216 "//base",
6217 "//net",
6218 ]
6219 dict = "data/fuzzer_dictionaries/net_http_server_fuzzer.dict"
6220 seed_corpus = "data/fuzzer_data/http_server_requests/"
6221}
6222
morlovich833190ec2017-02-10 16:53:046223fuzzer_test("net_spdy_session_fuzzer") {
6224 sources = [
bnc8f8f7d302017-04-24 18:08:066225 "spdy/chromium/spdy_session_fuzzer.cc",
morlovich833190ec2017-02-10 16:53:046226 ]
6227 deps = [
6228 ":net_fuzzer_test_support",
6229 ":test_support",
6230 "//base",
6231 "//net",
6232 ]
6233 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
6234 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
6235}