blob: e7b10b3e2458e8bffeeecca9a141235697b7c029 [file] [log] [blame]
[email protected]4625ade2014-04-15 19:26:441# Copyright (c) 2013 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
mefff34b822016-01-11 15:28:085import("//build/buildflag_header.gni")
slan77bdc2e62015-09-21 17:56:266import("//build/config/chromecast_build.gni")
brettw4cab0f12015-09-14 21:40:017import("//build/config/compiler/compiler.gni")
[email protected]4625ade2014-04-15 19:26:448import("//build/config/crypto.gni")
9import("//build/config/features.gni")
10import("//build/config/ui.gni")
sdefresneeb265862016-09-08 14:27:1211import("//net/features.gni")
eromane6264fd2016-03-02 22:46:3012import("//testing/libfuzzer/fuzzer_test.gni")
qsrfb5251d12015-01-21 15:57:2213import("//testing/test.gni")
rockot9c67e5f2015-03-12 20:01:2114import("//third_party/icu/config.gni")
rtennetib6f1c0d2015-04-03 17:52:0615import("//third_party/protobuf/proto_library.gni")
tfarinae597851a2015-10-06 23:14:4116import("//tools/grit/grit_rule.gni")
kapishnikovabe280e2016-04-14 19:07:1617import("//url/features.gni")
ckrasic73f7240b2017-01-24 00:06:4518
19if (!is_proto_quic) {
20 import("//v8/gni/v8.gni")
21}
[email protected]26046b52014-07-16 00:11:0322
[email protected]4625ade2014-04-15 19:26:4423if (is_android) {
24 import("//build/config/android/config.gni")
[email protected]ef0eb442014-05-15 09:32:1825 import("//build/config/android/rules.gni")
[email protected]4625ade2014-04-15 19:26:4426} else if (is_mac) {
27 import("//build/config/mac/mac_sdk.gni")
28}
29
[email protected]4625ade2014-04-15 19:26:4430# The way the cache uses mmap() is inefficient on some Android devices. If
31# this flag is set, we hackily avoid using mmap() in the disk cache. We are
32# pretty confident that mmap-ing the index would not hurt any existing x86
33# android devices, but we cannot be so sure about the variety of ARM devices.
34# So enable it for x86 only for now.
dpranke43276212015-02-20 02:55:1935posix_avoid_mmap = is_android && current_cpu != "x86"
[email protected]4625ade2014-04-15 19:26:4436
ckrasic73f7240b2017-01-24 00:06:4537use_v8_in_net = !is_ios && !is_proto_quic
38enable_built_in_dns = !is_ios && !is_proto_quic
[email protected]4625ade2014-04-15 19:26:4439
Fabrice de Gans-Riberi9fba3aff2018-04-12 19:00:4840# Unix sockets are not supported on iOS or NaCl.
41enable_unix_sockets = is_posix && !is_ios && !is_nacl
Sergey Ulanov21dea152017-09-13 00:50:5042
Sergey Volk3ee3537f2018-06-12 01:45:4843# x86/x64 cast_shell builds run on regular trybots and can use python runtime
44# and remote test server. ARM cast_shell builds don't have python runtime.
45is_arm_cast_shell_build =
46 is_chromecast && (current_cpu == "arm" || current_cpu == "arm64")
Sergey Ulanov2a0b0192017-08-31 23:09:4047
Sergey Ulanovec1d3de2017-09-19 19:27:4748# Python works only on Linux, MacOS and Windows.
Sergey Volk3ee3537f2018-06-12 01:45:4849enable_python_utils =
50 !is_arm_cast_shell_build && !is_android && !is_fuchsia && !is_ios
51
52# Android, Chromecast and Fuchsia can't run testserver.py directly, so they
53# use remote test server.
54use_remote_test_server = !enable_python_utils
55
56config("net_test_config") {
57 if (use_remote_test_server) {
58 defines = [ "USE_REMOTE_TEST_SERVER" ]
59 }
60}
Sergey Ulanovec1d3de2017-09-19 19:27:4761
Scott Violet0caaaf432018-03-24 00:43:5962buildflag_header("buildflags") {
63 header = "net_buildflags.h"
brettwa1228ebb2016-10-28 03:51:3464 flags = [
65 "POSIX_AVOID_MMAP=$posix_avoid_mmap",
66 "DISABLE_FILE_SUPPORT=$disable_file_support",
67 "DISABLE_FTP_SUPPORT=$disable_ftp_support",
brettw5224a182016-10-28 22:13:0268 "ENABLE_MDNS=$enable_mdns",
mmenkefd9d15c2017-06-29 13:45:5469 "ENABLE_REPORTING=$enable_reporting",
brettwa1228ebb2016-10-28 03:51:3470 "ENABLE_WEBSOCKETS=$enable_websockets",
xunjieli815ad5b2017-07-18 15:51:3571 "INCLUDE_TRANSPORT_SECURITY_STATE_PRELOAD_LIST=$include_transport_security_state_preload_list",
brettwa1228ebb2016-10-28 03:51:3472 ]
[email protected]4625ade2014-04-15 19:26:4473}
74
xunjieli905496a2015-08-31 15:51:1775config("net_internal_config") {
[email protected]8603c5de2014-04-16 20:34:3176 defines = [
[email protected]8603c5de2014-04-16 20:34:3177 "DLOPEN_KERBEROS",
scottmg34fb7e52014-12-03 23:27:2478 "NET_IMPLEMENTATION",
[email protected]8603c5de2014-04-16 20:34:3179 ]
dpranke43276212015-02-20 02:55:1980
[email protected]4625ade2014-04-15 19:26:4481 if (use_kerberos) {
82 defines += [ "USE_KERBEROS" ]
83 if (is_android) {
xunjieli905496a2015-08-31 15:51:1784 include_dirs = [ "/usr/include/kerberosV" ]
[email protected]4625ade2014-04-15 19:26:4485 }
[email protected]4625ade2014-04-15 19:26:4486 }
87
88 if (enable_built_in_dns) {
89 defines += [ "ENABLE_BUILT_IN_DNS" ]
xunjieli905496a2015-08-31 15:51:1790 }
91}
92
kapishnikovabe280e2016-04-14 19:07:1693net_configs = [
xunjieli905496a2015-08-31 15:51:1794 ":net_internal_config",
95 "//build/config:precompiled_headers",
96
rsesek99679aa2016-06-28 21:24:1797 "//build/config/compiler:wexit_time_destructors",
xunjieli905496a2015-08-31 15:51:1798]
99
kapishnikovabe280e2016-04-14 19:07:16100if (is_linux) {
101 net_configs += [ "//build/config/linux:libresolv" ]
xunjieli905496a2015-08-31 15:51:17102}
103
xunjieli0b7f5b62016-12-06 20:43:48104source_set("constants") {
105 sources = [
106 "base/trace_constants.cc",
107 "base/trace_constants.h",
108 ]
109 deps = [
110 "//base",
111 ]
112}
113
xunjieli905496a2015-08-31 15:51:17114component("net") {
ckrasic73f7240b2017-01-24 00:06:45115 sources = [
116 "base/address_family.cc",
117 "base/address_family.h",
118 "base/address_list.cc",
119 "base/address_list.h",
ckrasic73f7240b2017-01-24 00:06:45120 "base/auth.cc",
121 "base/auth.h",
122 "base/completion_callback.h",
Matt Menkedadd6c72018-01-30 23:07:25123 "base/completion_once_callback.h",
Bence Béky61f756c2018-04-25 14:17:53124 "base/completion_repeating_callback.h",
Charles 'Buck' Krasiced43ded2018-03-23 18:48:12125 "base/datagram_buffer.cc",
126 "base/datagram_buffer.h",
ckrasic73f7240b2017-01-24 00:06:45127 "base/escape.cc",
128 "base/escape.h",
129 "base/hash_value.cc",
130 "base/hash_value.h",
131 "base/host_port_pair.cc",
132 "base/host_port_pair.h",
fayangbaec8ff52017-01-28 03:26:12133 "base/interval.h",
134 "base/interval_set.h",
ckrasic73f7240b2017-01-24 00:06:45135 "base/io_buffer.cc",
136 "base/io_buffer.h",
137 "base/ip_address.cc",
138 "base/ip_address.h",
139 "base/ip_endpoint.cc",
140 "base/ip_endpoint.h",
ckrasic73f7240b2017-01-24 00:06:45141 "base/load_timing_info.cc",
142 "base/load_timing_info.h",
143 "base/lookup_string_in_fixed_set.cc",
144 "base/lookup_string_in_fixed_set.h",
145 "base/net_error_details.h",
146 "base/net_error_list.h",
147 "base/net_errors.cc",
148 "base/net_errors.h",
ckrasic73f7240b2017-01-24 00:06:45149 "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",
ckrasic73f7240b2017-01-24 00:06:45172 "cert/cert_status_flags.cc",
173 "cert/cert_status_flags.h",
mmenke392ec462017-03-23 18:49:35174 "cert/cert_status_flags_list.h",
ckrasic73f7240b2017-01-24 00:06:45175 "cert/cert_verifier.cc",
176 "cert/cert_verifier.h",
177 "cert/cert_verify_result.cc",
178 "cert/cert_verify_result.h",
179 "cert/client_cert_verifier.h",
180 "cert/crl_set.cc",
181 "cert/crl_set.h",
ckrasic73f7240b2017-01-24 00:06:45182 "cert/ct_policy_enforcer.cc",
183 "cert/ct_policy_enforcer.h",
184 "cert/ct_policy_status.h",
185 "cert/ct_verifier.h",
186 "cert/ct_verify_result.cc",
187 "cert/ct_verify_result.h",
188 "cert/do_nothing_ct_verifier.cc",
189 "cert/do_nothing_ct_verifier.h",
190 "cert/internal/cert_error_id.cc",
191 "cert/internal/cert_error_id.h",
192 "cert/internal/cert_error_params.cc",
193 "cert/internal/cert_error_params.h",
ckrasic73f7240b2017-01-24 00:06:45194 "cert/internal/cert_errors.cc",
195 "cert/internal/cert_errors.h",
196 "cert/internal/cert_issuer_source.h",
197 "cert/internal/cert_issuer_source_aia.cc",
198 "cert/internal/cert_issuer_source_aia.h",
199 "cert/internal/cert_issuer_source_static.cc",
200 "cert/internal/cert_issuer_source_static.h",
201 "cert/internal/certificate_policies.cc",
202 "cert/internal/certificate_policies.h",
Eric Romancaa0a602017-07-28 21:17:11203 "cert/internal/common_cert_errors.cc",
204 "cert/internal/common_cert_errors.h",
ckrasic73f7240b2017-01-24 00:06:45205 "cert/internal/extended_key_usage.cc",
206 "cert/internal/extended_key_usage.h",
Matt Mueller9e3ad3032017-09-14 19:29:31207 "cert/internal/general_names.cc",
208 "cert/internal/general_names.h",
ckrasic73f7240b2017-01-24 00:06:45209 "cert/internal/name_constraints.cc",
210 "cert/internal/name_constraints.h",
Eric Romana2f6f55d2017-09-07 23:34:57211 "cert/internal/ocsp.cc",
212 "cert/internal/ocsp.h",
ckrasic73f7240b2017-01-24 00:06:45213 "cert/internal/parse_certificate.cc",
214 "cert/internal/parse_certificate.h",
215 "cert/internal/parse_name.cc",
216 "cert/internal/parse_name.h",
ckrasic73f7240b2017-01-24 00:06:45217 "cert/internal/parsed_certificate.cc",
218 "cert/internal/parsed_certificate.h",
219 "cert/internal/path_builder.cc",
220 "cert/internal/path_builder.h",
Eric Romancc56d16f2017-10-11 23:04:26221 "cert/internal/revocation_checker.cc",
222 "cert/internal/revocation_checker.h",
ckrasic73f7240b2017-01-24 00:06:45223 "cert/internal/signature_algorithm.cc",
224 "cert/internal/signature_algorithm.h",
Eric Roman5431d702017-07-26 01:58:18225 "cert/internal/simple_path_builder_delegate.cc",
226 "cert/internal/simple_path_builder_delegate.h",
ckrasic73f7240b2017-01-24 00:06:45227 "cert/internal/trust_store.cc",
228 "cert/internal/trust_store.h",
229 "cert/internal/trust_store_collection.cc",
230 "cert/internal/trust_store_collection.h",
231 "cert/internal/trust_store_in_memory.cc",
232 "cert/internal/trust_store_in_memory.h",
233 "cert/internal/verify_certificate_chain.cc",
234 "cert/internal/verify_certificate_chain.h",
235 "cert/internal/verify_name_match.cc",
236 "cert/internal/verify_name_match.h",
237 "cert/internal/verify_signed_data.cc",
238 "cert/internal/verify_signed_data.h",
239 "cert/ocsp_revocation_status.h",
240 "cert/ocsp_verify_result.cc",
241 "cert/ocsp_verify_result.h",
242 "cert/pem_tokenizer.cc",
243 "cert/pem_tokenizer.h",
244 "cert/sct_status_flags.cc",
245 "cert/sct_status_flags.h",
246 "cert/signed_certificate_timestamp.cc",
247 "cert/signed_certificate_timestamp.h",
248 "cert/signed_certificate_timestamp_and_status.cc",
249 "cert/signed_certificate_timestamp_and_status.h",
250 "cert/signed_tree_head.cc",
251 "cert/signed_tree_head.h",
Emily Starkd29cdae2017-09-16 01:59:34252 "cert/symantec_certs.cc",
253 "cert/symantec_certs.h",
ckrasic73f7240b2017-01-24 00:06:45254 "cert/x509_cert_types.cc",
255 "cert/x509_cert_types.h",
256 "cert/x509_certificate.cc",
257 "cert/x509_certificate.h",
258 "cert/x509_certificate_net_log_param.cc",
259 "cert/x509_certificate_net_log_param.h",
ckrasic73f7240b2017-01-24 00:06:45260 "cert/x509_util.cc",
261 "cert/x509_util.h",
ckrasic73f7240b2017-01-24 00:06:45262 "der/encode_values.cc",
263 "der/encode_values.h",
264 "der/input.cc",
265 "der/input.h",
266 "der/parse_values.cc",
267 "der/parse_values.h",
268 "der/parser.cc",
269 "der/parser.h",
270 "der/tag.cc",
271 "der/tag.h",
Mustafa Emre Acer108257c2018-06-22 20:49:13272 "extras/preload_data/decoder.cc",
273 "extras/preload_data/decoder.h",
ckrasic73f7240b2017-01-24 00:06:45274 "http/http_auth_challenge_tokenizer.cc",
275 "http/http_auth_challenge_tokenizer.h",
276 "http/http_auth_scheme.cc",
277 "http/http_auth_scheme.h",
278 "http/http_byte_range.cc",
279 "http/http_byte_range.h",
280 "http/http_log_util.cc",
281 "http/http_log_util.h",
Andrey Kosyakov83a6eee2017-08-14 19:20:04282 "http/http_raw_request_headers.cc",
283 "http/http_raw_request_headers.h",
ckrasic73f7240b2017-01-24 00:06:45284 "http/http_request_headers.cc",
285 "http/http_request_headers.h",
286 "http/http_response_headers.cc",
287 "http/http_response_headers.h",
288 "http/http_response_info.cc",
289 "http/http_response_info.h",
290 "http/http_security_headers.cc",
291 "http/http_security_headers.h",
Daniel Bratella6f7191d2017-11-23 09:20:37292 "http/http_status_code_list.h",
ckrasic73f7240b2017-01-24 00:06:45293 "http/http_util.cc",
294 "http/http_util.h",
295 "http/http_vary_data.cc",
296 "http/http_vary_data.h",
297 "http/transport_security_state.cc",
298 "http/transport_security_state.h",
xunjieli815ad5b2017-07-18 15:51:35299 "http/transport_security_state_source.cc",
martijn9b806ab22017-03-18 16:13:21300 "http/transport_security_state_source.h",
ckrasic73f7240b2017-01-24 00:06:45301 "log/net_log.cc",
302 "log/net_log.h",
303 "log/net_log_capture_mode.cc",
304 "log/net_log_capture_mode.h",
305 "log/net_log_entry.cc",
306 "log/net_log_entry.h",
mmenke392ec462017-03-23 18:49:35307 "log/net_log_event_type.h",
ckrasic73f7240b2017-01-24 00:06:45308 "log/net_log_event_type_list.h",
mmenke392ec462017-03-23 18:49:35309 "log/net_log_parameters_callback.h",
ckrasic73f7240b2017-01-24 00:06:45310 "log/net_log_source.cc",
311 "log/net_log_source.h",
mmenke392ec462017-03-23 18:49:35312 "log/net_log_source_type.h",
ckrasic73f7240b2017-01-24 00:06:45313 "log/net_log_source_type_list.h",
314 "log/net_log_with_source.cc",
315 "log/net_log_with_source.h",
316 "socket/client_socket_handle.cc",
317 "socket/client_socket_handle.h",
318 "socket/connection_attempts.h",
319 "socket/next_proto.cc",
320 "socket/next_proto.h",
xunjieli321a96f32017-03-07 19:42:17321 "socket/socket.cc",
ckrasic73f7240b2017-01-24 00:06:45322 "socket/socket.h",
323 "socket/socket_bio_adapter.cc",
324 "socket/socket_bio_adapter.h",
325 "socket/socket_performance_watcher.h",
326 "socket/socket_performance_watcher_factory.h",
327 "socket/ssl_client_socket.cc",
328 "socket/ssl_client_socket.h",
329 "socket/ssl_client_socket_impl.cc",
330 "socket/ssl_client_socket_impl.h",
331 "socket/ssl_socket.h",
Bence Békydae8af5f2018-04-13 08:53:17332 "socket/stream_socket.cc",
333 "socket/stream_socket.h",
ckrasic73f7240b2017-01-24 00:06:45334 "ssl/channel_id_service.cc",
335 "ssl/channel_id_service.h",
336 "ssl/channel_id_store.cc",
337 "ssl/channel_id_store.h",
mattm436ccfe2017-06-19 20:24:08338 "ssl/client_cert_identity.cc",
339 "ssl/client_cert_identity.h",
340 "ssl/client_cert_identity_mac.cc",
341 "ssl/client_cert_identity_mac.h",
ckrasic73f7240b2017-01-24 00:06:45342 "ssl/default_channel_id_store.cc",
343 "ssl/default_channel_id_store.h",
ckrasic73f7240b2017-01-24 00:06:45344 "ssl/openssl_ssl_util.cc",
345 "ssl/openssl_ssl_util.h",
346 "ssl/ssl_cert_request_info.cc",
347 "ssl/ssl_cert_request_info.h",
348 "ssl/ssl_cipher_suite_names.cc",
349 "ssl/ssl_cipher_suite_names.h",
350 "ssl/ssl_client_auth_cache.cc",
351 "ssl/ssl_client_auth_cache.h",
352 "ssl/ssl_client_cert_type.h",
353 "ssl/ssl_client_session_cache.cc",
354 "ssl/ssl_client_session_cache.h",
355 "ssl/ssl_config.cc",
356 "ssl/ssl_config.h",
357 "ssl/ssl_config_service.cc",
358 "ssl/ssl_config_service.h",
359 "ssl/ssl_connection_status_flags.h",
360 "ssl/ssl_info.cc",
361 "ssl/ssl_info.h",
David Benjaminb9bafbe2017-11-07 21:41:38362 "ssl/ssl_private_key.cc",
ckrasic73f7240b2017-01-24 00:06:45363 "ssl/ssl_private_key.h",
364 "ssl/ssl_server_config.cc",
365 "ssl/ssl_server_config.h",
366 "ssl/token_binding.cc",
367 "ssl/token_binding.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:16368 "third_party/quic/core/quic_error_codes.cc",
369 "third_party/quic/core/quic_error_codes.h",
ckrasic73f7240b2017-01-24 00:06:45370 ]
kapishnikovabe280e2016-04-14 19:07:16371 net_unfiltered_sources = []
372
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:58373 if (is_posix || is_fuchsia) {
374 sources += [ "base/net_errors_posix.cc" ]
375 }
376
kapishnikovabe280e2016-04-14 19:07:16377 deps = [
Eric Orth24feb5b2018-05-25 19:42:46378 ":net_deps",
kapishnikovabe280e2016-04-14 19:07:16379 ]
380
381 public_deps = [
Eric Orth24feb5b2018-05-25 19:42:46382 ":net_public_deps",
383 "//net/dns",
384 "//net/dns:dns_client",
385 "//net/dns:host_resolver_impl",
386 "//net/dns:mdns_client",
387 "//net/dns:public",
388 ]
389
390 allow_circular_includes_from = [
391 "//net/dns",
392 "//net/dns:dns_client",
393 "//net/dns:host_resolver_impl",
394 "//net/dns:mdns_client",
395 "//net/dns:public",
kapishnikovabe280e2016-04-14 19:07:16396 ]
397
398 if (!is_nacl) {
ckrasic73f7240b2017-01-24 00:06:45399 sources += [
400 "android/cellular_signal_strength.cc",
401 "android/cellular_signal_strength.h",
402 "android/cert_verify_result_android.cc",
403 "android/cert_verify_result_android.h",
404 "android/gurl_utils.cc",
ckrasic73f7240b2017-01-24 00:06:45405 "android/http_auth_negotiate_android.cc",
406 "android/http_auth_negotiate_android.h",
407 "android/keystore.cc",
408 "android/keystore.h",
409 "android/legacy_openssl.h",
ckrasic73f7240b2017-01-24 00:06:45410 "android/network_change_notifier_android.cc",
411 "android/network_change_notifier_android.h",
412 "android/network_change_notifier_delegate_android.cc",
413 "android/network_change_notifier_delegate_android.h",
414 "android/network_change_notifier_factory_android.cc",
415 "android/network_change_notifier_factory_android.h",
416 "android/network_library.cc",
417 "android/network_library.h",
418 "android/traffic_stats.cc",
419 "android/traffic_stats.h",
420 "base/address_tracker_linux.cc",
421 "base/address_tracker_linux.h",
bnc4fab8022017-03-24 16:35:03422 "base/arena.cc",
423 "base/arena.h",
ckrasic73f7240b2017-01-24 00:06:45424 "base/backoff_entry.cc",
425 "base/backoff_entry.h",
426 "base/backoff_entry_serializer.cc",
427 "base/backoff_entry_serializer.h",
428 "base/cache_type.h",
429 "base/chunked_upload_data_stream.cc",
430 "base/chunked_upload_data_stream.h",
ckrasic73f7240b2017-01-24 00:06:45431 "base/data_url.cc",
432 "base/data_url.h",
433 "base/elements_upload_data_stream.cc",
434 "base/elements_upload_data_stream.h",
435 "base/expiring_cache.h",
436 "base/file_stream.cc",
437 "base/file_stream.h",
438 "base/file_stream_context.cc",
439 "base/file_stream_context.h",
ckrasic73f7240b2017-01-24 00:06:45440 "base/file_stream_context_win.cc",
441 "base/filename_util.cc",
442 "base/filename_util.h",
443 "base/filename_util_internal.cc",
444 "base/filename_util_internal.h",
Bence Békyd5c16edf2017-08-04 17:32:30445 "base/hex_utils.cc",
446 "base/hex_utils.h",
ckrasic73f7240b2017-01-24 00:06:45447 "base/host_mapping_rules.cc",
448 "base/host_mapping_rules.h",
449 "base/int128.cc",
450 "base/int128.h",
451 "base/iovec.h",
452 "base/ip_pattern.cc",
453 "base/ip_pattern.h",
454 "base/layered_network_delegate.cc",
455 "base/layered_network_delegate.h",
bnc4fab8022017-03-24 16:35:03456 "base/linked_hash_map.h",
ckrasic73f7240b2017-01-24 00:06:45457 "base/load_flags.h",
458 "base/load_flags_list.h",
459 "base/load_states.h",
460 "base/load_states_list.h",
461 "base/logging_network_change_observer.cc",
462 "base/logging_network_change_observer.h",
ckrasic73f7240b2017-01-24 00:06:45463 "base/mime_sniffer.cc",
464 "base/mime_sniffer.h",
465 "base/mime_util.cc",
466 "base/mime_util.h",
467 "base/net_errors_win.cc",
468 "base/net_info_source_list.h",
469 "base/network_activity_monitor.cc",
470 "base/network_activity_monitor.h",
471 "base/network_change_notifier.cc",
472 "base/network_change_notifier.h",
473 "base/network_change_notifier_factory.h",
474 "base/network_change_notifier_linux.cc",
475 "base/network_change_notifier_linux.h",
476 "base/network_change_notifier_mac.cc",
477 "base/network_change_notifier_mac.h",
478 "base/network_change_notifier_win.cc",
479 "base/network_change_notifier_win.h",
480 "base/network_config_watcher_mac.cc",
481 "base/network_config_watcher_mac.h",
482 "base/network_delegate.cc",
483 "base/network_delegate.h",
484 "base/network_delegate_impl.cc",
485 "base/network_delegate_impl.h",
486 "base/network_interfaces_linux.cc",
wychen36575ffb2017-04-01 05:50:47487 "base/network_interfaces_linux.h",
Sergey Ulanov5c33235ae2017-07-06 23:55:07488 "base/network_interfaces_nacl.cc",
ckrasic73f7240b2017-01-24 00:06:45489 "base/network_interfaces_win.cc",
thakisb8590c92017-03-23 18:14:53490 "base/network_interfaces_win.h",
ckrasic73f7240b2017-01-24 00:06:45491 "base/platform_mime_util.h",
492 "base/platform_mime_util_linux.cc",
493 "base/platform_mime_util_mac.mm",
494 "base/platform_mime_util_win.cc",
495 "base/prioritized_dispatcher.cc",
496 "base/prioritized_dispatcher.h",
Josh Karlindd9a5d142018-06-06 00:35:48497 "base/prioritized_task_runner.cc",
498 "base/prioritized_task_runner.h",
ckrasic73f7240b2017-01-24 00:06:45499 "base/priority_queue.h",
500 "base/proxy_delegate.h",
Lily Houghton582d4622018-01-22 22:43:40501 "base/proxy_server.cc",
502 "base/proxy_server.h",
503 "base/proxy_server_mac.cc",
ckrasic73f7240b2017-01-24 00:06:45504 "base/request_priority.cc",
505 "base/request_priority.h",
ckrasic73f7240b2017-01-24 00:06:45506 "base/static_cookie_policy.cc",
507 "base/static_cookie_policy.h",
508 "base/test_data_stream.cc",
509 "base/test_data_stream.h",
510 "base/upload_bytes_element_reader.cc",
511 "base/upload_bytes_element_reader.h",
512 "base/upload_data_stream.cc",
513 "base/upload_data_stream.h",
514 "base/upload_element_reader.cc",
515 "base/upload_element_reader.h",
516 "base/upload_file_element_reader.cc",
517 "base/upload_file_element_reader.h",
518 "base/upload_progress.h",
519 "base/winsock_init.cc",
520 "base/winsock_init.h",
521 "base/winsock_util.cc",
522 "base/winsock_util.h",
523 "cert/caching_cert_verifier.cc",
524 "cert/caching_cert_verifier.h",
ckrasic73f7240b2017-01-24 00:06:45525 "cert/cert_database_mac.cc",
Eric Roman227a7f32017-10-09 22:46:45526 "cert/cert_net_fetcher.cc",
ckrasic73f7240b2017-01-24 00:06:45527 "cert/cert_net_fetcher.h",
528 "cert/cert_verify_proc.cc",
529 "cert/cert_verify_proc.h",
530 "cert/cert_verify_proc_android.cc",
531 "cert/cert_verify_proc_android.h",
eroman8ccd62d2017-03-16 23:54:26532 "cert/cert_verify_proc_builtin.cc",
533 "cert/cert_verify_proc_builtin.h",
ckrasic73f7240b2017-01-24 00:06:45534 "cert/cert_verify_proc_ios.cc",
535 "cert/cert_verify_proc_ios.h",
536 "cert/cert_verify_proc_mac.cc",
537 "cert/cert_verify_proc_mac.h",
538 "cert/cert_verify_proc_nss.cc",
539 "cert/cert_verify_proc_nss.h",
ckrasic73f7240b2017-01-24 00:06:45540 "cert/cert_verify_proc_win.cc",
541 "cert/cert_verify_proc_win.h",
ckrasic73f7240b2017-01-24 00:06:45542 "cert/ct_log_response_parser.cc",
543 "cert/ct_log_response_parser.h",
544 "cert/ct_log_verifier.cc",
545 "cert/ct_log_verifier.h",
546 "cert/ct_log_verifier_util.cc",
547 "cert/ct_log_verifier_util.h",
548 "cert/ct_objects_extractor.cc",
549 "cert/ct_objects_extractor.h",
550 "cert/ct_sct_to_string.cc",
551 "cert/ct_sct_to_string.h",
552 "cert/ct_serialization.cc",
553 "cert/ct_serialization.h",
554 "cert/ct_signed_certificate_timestamp_log_param.cc",
555 "cert/ct_signed_certificate_timestamp_log_param.h",
556 "cert/ev_root_ca_metadata.cc",
557 "cert/ev_root_ca_metadata.h",
eromanf628d6b2017-04-19 22:47:27558 "cert/internal/system_trust_store.cc",
559 "cert/internal/system_trust_store.h",
mattmea4ed8232017-02-28 23:13:23560 "cert/internal/trust_store_mac.cc",
561 "cert/internal/trust_store_mac.h",
ckrasic73f7240b2017-01-24 00:06:45562 "cert/internal/trust_store_nss.cc",
563 "cert/internal/trust_store_nss.h",
564 "cert/jwk_serializer.cc",
565 "cert/jwk_serializer.h",
Ryan Sleevi19a7bde2017-11-22 06:51:39566 "cert/known_roots.cc",
567 "cert/known_roots.h",
eromanf2971fd2017-04-20 20:10:45568 "cert/known_roots_mac.cc",
569 "cert/known_roots_mac.h",
570 "cert/known_roots_nss.cc",
571 "cert/known_roots_nss.h",
572 "cert/known_roots_win.cc",
573 "cert/known_roots_win.h",
ckrasic73f7240b2017-01-24 00:06:45574 "cert/merkle_audit_proof.cc",
575 "cert/merkle_audit_proof.h",
576 "cert/merkle_consistency_proof.cc",
577 "cert/merkle_consistency_proof.h",
578 "cert/merkle_tree_leaf.cc",
579 "cert/merkle_tree_leaf.h",
580 "cert/multi_log_ct_verifier.cc",
581 "cert/multi_log_ct_verifier.h",
582 "cert/multi_threaded_cert_verifier.cc",
583 "cert/multi_threaded_cert_verifier.h",
584 "cert/nss_cert_database.cc",
585 "cert/nss_cert_database.h",
586 "cert/nss_cert_database_chromeos.cc",
587 "cert/nss_cert_database_chromeos.h",
588 "cert/nss_profile_filter_chromeos.cc",
589 "cert/nss_profile_filter_chromeos.h",
Ryan Sleevi19a7bde2017-11-22 06:51:39590 "cert/root_cert_list_generated.h",
ckrasic73f7240b2017-01-24 00:06:45591 "cert/test_keychain_search_list_mac.cc",
592 "cert/test_keychain_search_list_mac.h",
593 "cert/test_root_certs.cc",
594 "cert/test_root_certs.h",
595 "cert/test_root_certs_android.cc",
596 "cert/test_root_certs_mac.cc",
597 "cert/test_root_certs_nss.cc",
ckrasic73f7240b2017-01-24 00:06:45598 "cert/test_root_certs_win.cc",
ckrasic73f7240b2017-01-24 00:06:45599 "cert/x509_util_android.cc",
mattm4cede8d2017-04-11 02:55:01600 "cert/x509_util_ios.cc",
601 "cert/x509_util_ios.h",
mattm1a07e632017-05-16 05:55:50602 "cert/x509_util_ios_and_mac.cc",
603 "cert/x509_util_ios_and_mac.h",
ckrasic73f7240b2017-01-24 00:06:45604 "cert/x509_util_mac.cc",
605 "cert/x509_util_mac.h",
606 "cert/x509_util_nss.cc",
607 "cert/x509_util_nss.h",
mattm2fe429a2017-06-20 01:53:44608 "cert/x509_util_win.cc",
609 "cert/x509_util_win.h",
ckrasic73f7240b2017-01-24 00:06:45610 "cert_net/cert_net_fetcher_impl.cc",
611 "cert_net/cert_net_fetcher_impl.h",
612 "cert_net/nss_ocsp.cc",
613 "cert_net/nss_ocsp.h",
614 "cookies/canonical_cookie.cc",
615 "cookies/canonical_cookie.h",
Victor Costan14f47c12018-03-01 08:02:24616 "cookies/cookie_change_dispatcher.cc",
617 "cookies/cookie_change_dispatcher.h",
ckrasic73f7240b2017-01-24 00:06:45618 "cookies/cookie_constants.cc",
619 "cookies/cookie_constants.h",
Chris Mumfordd8ed9f82018-05-01 15:43:13620 "cookies/cookie_deletion_info.cc",
621 "cookies/cookie_deletion_info.h",
ckrasic73f7240b2017-01-24 00:06:45622 "cookies/cookie_monster.cc",
623 "cookies/cookie_monster.h",
Victor Costan14f47c12018-03-01 08:02:24624 "cookies/cookie_monster_change_dispatcher.cc",
625 "cookies/cookie_monster_change_dispatcher.h",
ckrasic73f7240b2017-01-24 00:06:45626 "cookies/cookie_options.cc",
627 "cookies/cookie_options.h",
628 "cookies/cookie_store.cc",
629 "cookies/cookie_store.h",
630 "cookies/cookie_util.cc",
631 "cookies/cookie_util.h",
632 "cookies/parsed_cookie.cc",
633 "cookies/parsed_cookie.h",
Maks Orlovich036fd1f2017-08-07 17:51:11634 "disk_cache/backend_cleanup_tracker.cc",
635 "disk_cache/backend_cleanup_tracker.h",
ckrasic73f7240b2017-01-24 00:06:45636 "disk_cache/blockfile/addr.cc",
637 "disk_cache/blockfile/addr.h",
638 "disk_cache/blockfile/backend_impl.cc",
639 "disk_cache/blockfile/backend_impl.h",
640 "disk_cache/blockfile/bitmap.cc",
641 "disk_cache/blockfile/bitmap.h",
642 "disk_cache/blockfile/block_files.cc",
643 "disk_cache/blockfile/block_files.h",
644 "disk_cache/blockfile/disk_format.cc",
645 "disk_cache/blockfile/disk_format.h",
646 "disk_cache/blockfile/disk_format_base.h",
647 "disk_cache/blockfile/entry_impl.cc",
648 "disk_cache/blockfile/entry_impl.h",
649 "disk_cache/blockfile/errors.h",
650 "disk_cache/blockfile/eviction.cc",
651 "disk_cache/blockfile/eviction.h",
652 "disk_cache/blockfile/experiments.h",
653 "disk_cache/blockfile/file.cc",
654 "disk_cache/blockfile/file.h",
655 "disk_cache/blockfile/file_block.h",
656 "disk_cache/blockfile/file_ios.cc",
657 "disk_cache/blockfile/file_lock.cc",
658 "disk_cache/blockfile/file_lock.h",
ckrasic73f7240b2017-01-24 00:06:45659 "disk_cache/blockfile/file_win.cc",
660 "disk_cache/blockfile/histogram_macros.h",
661 "disk_cache/blockfile/in_flight_backend_io.cc",
662 "disk_cache/blockfile/in_flight_backend_io.h",
663 "disk_cache/blockfile/in_flight_io.cc",
664 "disk_cache/blockfile/in_flight_io.h",
665 "disk_cache/blockfile/mapped_file.cc",
666 "disk_cache/blockfile/mapped_file.h",
ckrasic73f7240b2017-01-24 00:06:45667 "disk_cache/blockfile/mapped_file_win.cc",
668 "disk_cache/blockfile/rankings.cc",
669 "disk_cache/blockfile/rankings.h",
670 "disk_cache/blockfile/sparse_control.cc",
671 "disk_cache/blockfile/sparse_control.h",
672 "disk_cache/blockfile/stats.cc",
673 "disk_cache/blockfile/stats.h",
674 "disk_cache/blockfile/storage_block-inl.h",
675 "disk_cache/blockfile/storage_block.h",
676 "disk_cache/blockfile/stress_support.h",
677 "disk_cache/blockfile/trace.cc",
678 "disk_cache/blockfile/trace.h",
679 "disk_cache/blockfile/webfonts_histogram.cc",
680 "disk_cache/blockfile/webfonts_histogram.h",
681 "disk_cache/cache_util.cc",
682 "disk_cache/cache_util.h",
ckrasic73f7240b2017-01-24 00:06:45683 "disk_cache/cache_util_win.cc",
684 "disk_cache/disk_cache.cc",
685 "disk_cache/disk_cache.h",
686 "disk_cache/memory/mem_backend_impl.cc",
687 "disk_cache/memory/mem_backend_impl.h",
688 "disk_cache/memory/mem_entry_impl.cc",
689 "disk_cache/memory/mem_entry_impl.h",
690 "disk_cache/net_log_parameters.cc",
691 "disk_cache/net_log_parameters.h",
692 "disk_cache/simple/simple_backend_impl.cc",
693 "disk_cache/simple/simple_backend_impl.h",
694 "disk_cache/simple/simple_backend_version.h",
695 "disk_cache/simple/simple_entry_format.cc",
696 "disk_cache/simple/simple_entry_format.h",
697 "disk_cache/simple/simple_entry_format_history.h",
698 "disk_cache/simple/simple_entry_impl.cc",
699 "disk_cache/simple/simple_entry_impl.h",
700 "disk_cache/simple/simple_entry_operation.cc",
701 "disk_cache/simple/simple_entry_operation.h",
Maks Orlovichf378b3a2017-10-31 16:27:30702 "disk_cache/simple/simple_file_tracker.cc",
703 "disk_cache/simple/simple_file_tracker.h",
ckrasic73f7240b2017-01-24 00:06:45704 "disk_cache/simple/simple_histogram_macros.h",
705 "disk_cache/simple/simple_index.cc",
706 "disk_cache/simple/simple_index.h",
707 "disk_cache/simple/simple_index_delegate.h",
708 "disk_cache/simple/simple_index_file.cc",
709 "disk_cache/simple/simple_index_file.h",
ckrasic73f7240b2017-01-24 00:06:45710 "disk_cache/simple/simple_index_file_win.cc",
711 "disk_cache/simple/simple_net_log_parameters.cc",
712 "disk_cache/simple/simple_net_log_parameters.h",
713 "disk_cache/simple/simple_synchronous_entry.cc",
714 "disk_cache/simple/simple_synchronous_entry.h",
715 "disk_cache/simple/simple_util.cc",
716 "disk_cache/simple/simple_util.h",
ckrasic73f7240b2017-01-24 00:06:45717 "disk_cache/simple/simple_util_win.cc",
718 "disk_cache/simple/simple_version_upgrade.cc",
719 "disk_cache/simple/simple_version_upgrade.h",
ckrasic73f7240b2017-01-24 00:06:45720 "filter/filter_source_stream.cc",
721 "filter/filter_source_stream.h",
722 "filter/gzip_header.cc",
723 "filter/gzip_header.h",
724 "filter/gzip_source_stream.cc",
725 "filter/gzip_source_stream.h",
ckrasic73f7240b2017-01-24 00:06:45726 "filter/source_stream.cc",
727 "filter/source_stream.h",
728 "filter/source_stream_type_list.h",
729 "http/bidirectional_stream.cc",
730 "http/bidirectional_stream.h",
731 "http/bidirectional_stream_impl.cc",
732 "http/bidirectional_stream_impl.h",
733 "http/bidirectional_stream_request_info.cc",
734 "http/bidirectional_stream_request_info.h",
wangyix64ccc57c2017-06-01 23:14:16735 "http/broken_alternative_services.cc",
736 "http/broken_alternative_services.h",
ckrasic73f7240b2017-01-24 00:06:45737 "http/failing_http_transaction_factory.cc",
738 "http/failing_http_transaction_factory.h",
739 "http/http_auth.cc",
740 "http/http_auth.h",
741 "http/http_auth_cache.cc",
742 "http/http_auth_cache.h",
743 "http/http_auth_controller.cc",
744 "http/http_auth_controller.h",
745 "http/http_auth_filter.cc",
746 "http/http_auth_filter.h",
ckrasic73f7240b2017-01-24 00:06:45747 "http/http_auth_handler.cc",
748 "http/http_auth_handler.h",
749 "http/http_auth_handler_basic.cc",
750 "http/http_auth_handler_basic.h",
751 "http/http_auth_handler_digest.cc",
752 "http/http_auth_handler_digest.h",
753 "http/http_auth_handler_factory.cc",
754 "http/http_auth_handler_factory.h",
755 "http/http_auth_handler_negotiate.cc",
756 "http/http_auth_handler_negotiate.h",
757 "http/http_auth_handler_ntlm.cc",
758 "http/http_auth_handler_ntlm.h",
759 "http/http_auth_handler_ntlm_portable.cc",
760 "http/http_auth_handler_ntlm_win.cc",
761 "http/http_auth_multi_round_parse.cc",
762 "http/http_auth_multi_round_parse.h",
763 "http/http_auth_preferences.cc",
764 "http/http_auth_preferences.h",
765 "http/http_auth_sspi_win.cc",
766 "http/http_auth_sspi_win.h",
767 "http/http_basic_state.cc",
768 "http/http_basic_state.h",
769 "http/http_basic_stream.cc",
770 "http/http_basic_stream.h",
771 "http/http_cache.cc",
772 "http/http_cache.h",
773 "http/http_cache_lookup_manager.cc",
774 "http/http_cache_lookup_manager.h",
775 "http/http_cache_transaction.cc",
776 "http/http_cache_transaction.h",
shivanishac6582e12017-07-14 22:18:19777 "http/http_cache_writers.cc",
778 "http/http_cache_writers.h",
ckrasic73f7240b2017-01-24 00:06:45779 "http/http_chunked_decoder.cc",
780 "http/http_chunked_decoder.h",
781 "http/http_content_disposition.cc",
782 "http/http_content_disposition.h",
783 "http/http_network_layer.cc",
784 "http/http_network_layer.h",
785 "http/http_network_session.cc",
786 "http/http_network_session.h",
787 "http/http_network_session_peer.cc",
788 "http/http_network_session_peer.h",
789 "http/http_network_transaction.cc",
790 "http/http_network_transaction.h",
791 "http/http_proxy_client_socket.cc",
792 "http/http_proxy_client_socket.h",
793 "http/http_proxy_client_socket_pool.cc",
794 "http/http_proxy_client_socket_pool.h",
795 "http/http_proxy_client_socket_wrapper.cc",
796 "http/http_proxy_client_socket_wrapper.h",
797 "http/http_request_info.cc",
798 "http/http_request_info.h",
799 "http/http_response_body_drainer.cc",
800 "http/http_response_body_drainer.h",
801 "http/http_server_properties.cc",
802 "http/http_server_properties.h",
803 "http/http_server_properties_impl.cc",
804 "http/http_server_properties_impl.h",
805 "http/http_server_properties_manager.cc",
806 "http/http_server_properties_manager.h",
807 "http/http_status_code.cc",
808 "http/http_status_code.h",
809 "http/http_stream.h",
810 "http/http_stream_factory.cc",
811 "http/http_stream_factory.h",
Xida Chen9bfe0b62018-04-24 19:52:21812 "http/http_stream_factory_job.cc",
813 "http/http_stream_factory_job.h",
814 "http/http_stream_factory_job_controller.cc",
815 "http/http_stream_factory_job_controller.h",
ckrasic73f7240b2017-01-24 00:06:45816 "http/http_stream_parser.cc",
817 "http/http_stream_parser.h",
Bence Béky6b44abf2018-04-11 10:32:51818 "http/http_stream_request.cc",
819 "http/http_stream_request.h",
ckrasic73f7240b2017-01-24 00:06:45820 "http/http_transaction.h",
821 "http/http_transaction_factory.h",
822 "http/http_version.h",
ckrasic73f7240b2017-01-24 00:06:45823 "http/partial_data.cc",
824 "http/partial_data.h",
825 "http/proxy_client_socket.cc",
826 "http/proxy_client_socket.h",
827 "http/proxy_connect_redirect_http_stream.cc",
828 "http/proxy_connect_redirect_http_stream.h",
Eric Roman6f8003352018-03-01 22:49:14829 "http/proxy_fallback.cc",
830 "http/proxy_fallback.h",
ckrasic73f7240b2017-01-24 00:06:45831 "http/transport_security_persister.cc",
832 "http/transport_security_persister.h",
ckrasic73f7240b2017-01-24 00:06:45833 "http/url_security_manager.cc",
834 "http/url_security_manager.h",
ckrasic73f7240b2017-01-24 00:06:45835 "http/url_security_manager_win.cc",
ckrasic73f7240b2017-01-24 00:06:45836 "log/file_net_log_observer.cc",
837 "log/file_net_log_observer.h",
838 "log/net_log_util.cc",
839 "log/net_log_util.h",
840 "log/trace_net_log_observer.cc",
841 "log/trace_net_log_observer.h",
ckrasic73f7240b2017-01-24 00:06:45842 "nqe/cached_network_quality.cc",
843 "nqe/cached_network_quality.h",
844 "nqe/effective_connection_type.cc",
845 "nqe/effective_connection_type.h",
tbansal1bd4a952017-06-06 23:01:46846 "nqe/effective_connection_type_observer.h",
ckrasic73f7240b2017-01-24 00:06:45847 "nqe/event_creator.cc",
848 "nqe/event_creator.h",
Tarun Bansal9414bae2017-11-21 01:37:23849 "nqe/network_id.cc",
ckrasic73f7240b2017-01-24 00:06:45850 "nqe/network_id.h",
851 "nqe/network_qualities_prefs_manager.cc",
852 "nqe/network_qualities_prefs_manager.h",
853 "nqe/network_quality.cc",
854 "nqe/network_quality.h",
855 "nqe/network_quality_estimator.cc",
856 "nqe/network_quality_estimator.h",
857 "nqe/network_quality_estimator_params.cc",
858 "nqe/network_quality_estimator_params.h",
tbansal82edab42017-06-19 05:55:25859 "nqe/network_quality_estimator_util.cc",
860 "nqe/network_quality_estimator_util.h",
Devdeep Ray35f50662017-08-11 02:41:30861 "nqe/network_quality_observation.cc",
ckrasic73f7240b2017-01-24 00:06:45862 "nqe/network_quality_observation.h",
Tarun Bansald2677a12017-08-31 01:26:38863 "nqe/network_quality_observation_source.cc",
ckrasic73f7240b2017-01-24 00:06:45864 "nqe/network_quality_observation_source.h",
tbansal1bd4a952017-06-06 23:01:46865 "nqe/network_quality_provider.cc",
866 "nqe/network_quality_provider.h",
ckrasic73f7240b2017-01-24 00:06:45867 "nqe/network_quality_store.cc",
868 "nqe/network_quality_store.h",
Devdeep Ray35f50662017-08-11 02:41:30869 "nqe/observation_buffer.cc",
ckrasic73f7240b2017-01-24 00:06:45870 "nqe/observation_buffer.h",
tbansal1bd4a952017-06-06 23:01:46871 "nqe/rtt_throughput_estimates_observer.h",
ckrasic73f7240b2017-01-24 00:06:45872 "nqe/socket_watcher.cc",
873 "nqe/socket_watcher.h",
874 "nqe/socket_watcher_factory.cc",
875 "nqe/socket_watcher_factory.h",
876 "nqe/throughput_analyzer.cc",
877 "nqe/throughput_analyzer.h",
878 "nqe/weighted_observation.h",
zentarob89acda42017-07-14 01:28:57879 "ntlm/ntlm.cc",
880 "ntlm/ntlm.h",
zentarob74795682017-07-14 00:58:22881 "ntlm/ntlm_buffer_reader.cc",
882 "ntlm/ntlm_buffer_reader.h",
883 "ntlm/ntlm_buffer_writer.cc",
884 "ntlm/ntlm_buffer_writer.h",
Zentaro Kavanaghdd556612017-08-03 20:27:04885 "ntlm/ntlm_client.cc",
886 "ntlm/ntlm_client.h",
Ryan Sleevi34ac4b2f2018-05-15 01:46:46887 "ntlm/ntlm_constants.cc",
zentarob74795682017-07-14 00:58:22888 "ntlm/ntlm_constants.h",
Lily Houghton582d4622018-01-22 22:43:40889 "proxy_resolution/dhcp_pac_file_adapter_fetcher_win.cc",
890 "proxy_resolution/dhcp_pac_file_adapter_fetcher_win.h",
891 "proxy_resolution/dhcp_pac_file_fetcher.cc",
892 "proxy_resolution/dhcp_pac_file_fetcher.h",
893 "proxy_resolution/dhcp_pac_file_fetcher_factory.cc",
894 "proxy_resolution/dhcp_pac_file_fetcher_factory.h",
895 "proxy_resolution/dhcp_pac_file_fetcher_win.cc",
896 "proxy_resolution/dhcp_pac_file_fetcher_win.h",
897 "proxy_resolution/dhcpcsvc_init_win.cc",
898 "proxy_resolution/dhcpcsvc_init_win.h",
899 "proxy_resolution/multi_threaded_proxy_resolver.cc",
900 "proxy_resolution/multi_threaded_proxy_resolver.h",
901 "proxy_resolution/network_delegate_error_observer.cc",
902 "proxy_resolution/network_delegate_error_observer.h",
903 "proxy_resolution/pac_file_data.cc",
904 "proxy_resolution/pac_file_data.h",
905 "proxy_resolution/pac_file_decider.cc",
906 "proxy_resolution/pac_file_decider.h",
907 "proxy_resolution/pac_file_fetcher.h",
908 "proxy_resolution/pac_file_fetcher_impl.cc",
909 "proxy_resolution/pac_file_fetcher_impl.h",
910 "proxy_resolution/pac_js_library.h",
911 "proxy_resolution/polling_proxy_config_service.cc",
912 "proxy_resolution/polling_proxy_config_service.h",
913 "proxy_resolution/proxy_bypass_rules.cc",
914 "proxy_resolution/proxy_bypass_rules.h",
915 "proxy_resolution/proxy_config.cc",
916 "proxy_resolution/proxy_config.h",
917 "proxy_resolution/proxy_config_service.h",
918 "proxy_resolution/proxy_config_service_android.cc",
919 "proxy_resolution/proxy_config_service_android.h",
920 "proxy_resolution/proxy_config_service_fixed.cc",
921 "proxy_resolution/proxy_config_service_fixed.h",
922 "proxy_resolution/proxy_config_service_ios.cc",
923 "proxy_resolution/proxy_config_service_ios.h",
924 "proxy_resolution/proxy_config_service_linux.cc",
925 "proxy_resolution/proxy_config_service_linux.h",
926 "proxy_resolution/proxy_config_service_mac.cc",
927 "proxy_resolution/proxy_config_service_mac.h",
928 "proxy_resolution/proxy_config_service_win.cc",
929 "proxy_resolution/proxy_config_service_win.h",
Ramin Halavatica8d5252018-03-12 05:33:49930 "proxy_resolution/proxy_config_with_annotation.cc",
931 "proxy_resolution/proxy_config_with_annotation.h",
Lily Houghton582d4622018-01-22 22:43:40932 "proxy_resolution/proxy_info.cc",
933 "proxy_resolution/proxy_info.h",
934 "proxy_resolution/proxy_list.cc",
935 "proxy_resolution/proxy_list.h",
Lily Houghtonffe89daa02018-03-09 18:30:03936 "proxy_resolution/proxy_resolution_service.cc",
937 "proxy_resolution/proxy_resolution_service.h",
Lily Houghton582d4622018-01-22 22:43:40938 "proxy_resolution/proxy_resolver.h",
939 "proxy_resolution/proxy_resolver_error_observer.h",
940 "proxy_resolution/proxy_resolver_factory.cc",
941 "proxy_resolution/proxy_resolver_factory.h",
942 "proxy_resolution/proxy_resolver_mac.cc",
943 "proxy_resolution/proxy_resolver_mac.h",
944 "proxy_resolution/proxy_resolver_winhttp.cc",
945 "proxy_resolution/proxy_resolver_winhttp.h",
946 "proxy_resolution/proxy_retry_info.h",
ckrasic73f7240b2017-01-24 00:06:45947 "quic/chromium/bidirectional_stream_quic_impl.cc",
948 "quic/chromium/bidirectional_stream_quic_impl.h",
949 "quic/chromium/crypto/channel_id_chromium.cc",
950 "quic/chromium/crypto/channel_id_chromium.h",
951 "quic/chromium/crypto/proof_source_chromium.cc",
952 "quic/chromium/crypto/proof_source_chromium.h",
953 "quic/chromium/crypto/proof_verifier_chromium.cc",
954 "quic/chromium/crypto/proof_verifier_chromium.h",
955 "quic/chromium/network_connection.cc",
956 "quic/chromium/network_connection.h",
957 "quic/chromium/properties_based_quic_server_info.cc",
958 "quic/chromium/properties_based_quic_server_info.h",
959 "quic/chromium/quic_address_mismatch.cc",
960 "quic/chromium/quic_address_mismatch.h",
961 "quic/chromium/quic_chromium_alarm_factory.cc",
962 "quic/chromium/quic_chromium_alarm_factory.h",
963 "quic/chromium/quic_chromium_client_session.cc",
964 "quic/chromium/quic_chromium_client_session.h",
965 "quic/chromium/quic_chromium_client_stream.cc",
966 "quic/chromium/quic_chromium_client_stream.h",
967 "quic/chromium/quic_chromium_connection_helper.cc",
968 "quic/chromium/quic_chromium_connection_helper.h",
969 "quic/chromium/quic_chromium_packet_reader.cc",
970 "quic/chromium/quic_chromium_packet_reader.h",
971 "quic/chromium/quic_chromium_packet_writer.cc",
972 "quic/chromium/quic_chromium_packet_writer.h",
973 "quic/chromium/quic_clock_skew_detector.cc",
974 "quic/chromium/quic_clock_skew_detector.h",
975 "quic/chromium/quic_connection_logger.cc",
976 "quic/chromium/quic_connection_logger.h",
Zhongyi Shi8fff75b2017-11-19 21:36:36977 "quic/chromium/quic_connectivity_probing_manager.cc",
978 "quic/chromium/quic_connectivity_probing_manager.h",
ckrasic73f7240b2017-01-24 00:06:45979 "quic/chromium/quic_crypto_client_stream_factory.cc",
980 "quic/chromium/quic_crypto_client_stream_factory.h",
981 "quic/chromium/quic_http_stream.cc",
982 "quic/chromium/quic_http_stream.h",
983 "quic/chromium/quic_http_utils.cc",
984 "quic/chromium/quic_http_utils.h",
Yixin Wang0d2c6b7e12017-08-16 21:12:55985 "quic/chromium/quic_proxy_client_socket.cc",
986 "quic/chromium/quic_proxy_client_socket.h",
ckrasic73f7240b2017-01-24 00:06:45987 "quic/chromium/quic_server_info.cc",
988 "quic/chromium/quic_server_info.h",
Paul Jensen8e3c5d32018-02-19 17:06:33989 "quic/chromium/quic_session_key.cc",
990 "quic/chromium/quic_session_key.h",
ckrasic73f7240b2017-01-24 00:06:45991 "quic/chromium/quic_stream_factory.cc",
992 "quic/chromium/quic_stream_factory.h",
993 "quic/chromium/quic_utils_chromium.cc",
994 "quic/chromium/quic_utils_chromium.h",
ckrasic73f7240b2017-01-24 00:06:45995 "socket/client_socket_factory.cc",
996 "socket/client_socket_factory.h",
997 "socket/client_socket_pool.cc",
998 "socket/client_socket_pool.h",
999 "socket/client_socket_pool_base.cc",
1000 "socket/client_socket_pool_base.h",
1001 "socket/client_socket_pool_manager.cc",
1002 "socket/client_socket_pool_manager.h",
1003 "socket/client_socket_pool_manager_impl.cc",
1004 "socket/client_socket_pool_manager_impl.h",
1005 "socket/datagram_client_socket.h",
1006 "socket/datagram_server_socket.h",
1007 "socket/datagram_socket.h",
1008 "socket/diff_serv_code_point.h",
1009 "socket/server_socket.cc",
1010 "socket/server_socket.h",
1011 "socket/socket_descriptor.cc",
1012 "socket/socket_descriptor.h",
1013 "socket/socket_net_log_params.cc",
1014 "socket/socket_net_log_params.h",
tfarina8a407062017-04-06 13:14:171015 "socket/socket_options.cc",
1016 "socket/socket_options.h",
Paul Jensenec3c11122017-11-28 16:48:381017 "socket/socket_tag.cc",
1018 "socket/socket_tag.h",
ckrasic73f7240b2017-01-24 00:06:451019 "socket/socks5_client_socket.cc",
1020 "socket/socks5_client_socket.h",
1021 "socket/socks_client_socket.cc",
1022 "socket/socks_client_socket.h",
1023 "socket/socks_client_socket_pool.cc",
1024 "socket/socks_client_socket_pool.h",
1025 "socket/ssl_client_socket_pool.cc",
1026 "socket/ssl_client_socket_pool.h",
1027 "socket/ssl_server_socket.h",
1028 "socket/ssl_server_socket_impl.cc",
1029 "socket/ssl_server_socket_impl.h",
ckrasic73f7240b2017-01-24 00:06:451030 "socket/tcp_client_socket.cc",
1031 "socket/tcp_client_socket.h",
1032 "socket/tcp_server_socket.cc",
1033 "socket/tcp_server_socket.h",
ckrasic73f7240b2017-01-24 00:06:451034 "socket/tcp_socket.h",
ckrasic73f7240b2017-01-24 00:06:451035 "socket/tcp_socket_win.cc",
1036 "socket/tcp_socket_win.h",
Helen Li48f117e2018-05-29 20:38:401037 "socket/transport_client_socket.cc",
Helen Lid5bb9222018-04-12 15:33:091038 "socket/transport_client_socket.h",
ckrasic73f7240b2017-01-24 00:06:451039 "socket/transport_client_socket_pool.cc",
1040 "socket/transport_client_socket_pool.h",
1041 "socket/udp_client_socket.cc",
1042 "socket/udp_client_socket.h",
1043 "socket/udp_net_log_parameters.cc",
1044 "socket/udp_net_log_parameters.h",
1045 "socket/udp_server_socket.cc",
1046 "socket/udp_server_socket.h",
1047 "socket/udp_socket.h",
ckrasic73f7240b2017-01-24 00:06:451048 "socket/udp_socket_win.cc",
1049 "socket/udp_socket_win.h",
ckrasic73f7240b2017-01-24 00:06:451050 "socket/websocket_endpoint_lock_manager.cc",
1051 "socket/websocket_endpoint_lock_manager.h",
1052 "socket/websocket_transport_client_socket_pool.cc",
1053 "socket/websocket_transport_client_socket_pool.h",
1054 "socket/websocket_transport_connect_sub_job.cc",
1055 "socket/websocket_transport_connect_sub_job.h",
Bence Béky94658bf2018-05-11 19:22:581056 "spdy/bidirectional_stream_spdy_impl.cc",
1057 "spdy/bidirectional_stream_spdy_impl.h",
1058 "spdy/buffered_spdy_framer.cc",
1059 "spdy/buffered_spdy_framer.h",
1060 "spdy/header_coalescer.cc",
1061 "spdy/header_coalescer.h",
1062 "spdy/http2_priority_dependencies.cc",
1063 "spdy/http2_priority_dependencies.h",
1064 "spdy/http2_push_promise_index.cc",
1065 "spdy/http2_push_promise_index.h",
1066 "spdy/multiplexed_http_stream.cc",
1067 "spdy/multiplexed_http_stream.h",
1068 "spdy/multiplexed_session.cc",
1069 "spdy/multiplexed_session.h",
1070 "spdy/server_push_delegate.h",
1071 "spdy/spdy_buffer.cc",
1072 "spdy/spdy_buffer.h",
1073 "spdy/spdy_buffer_producer.cc",
1074 "spdy/spdy_buffer_producer.h",
1075 "spdy/spdy_http_stream.cc",
1076 "spdy/spdy_http_stream.h",
1077 "spdy/spdy_http_utils.cc",
1078 "spdy/spdy_http_utils.h",
1079 "spdy/spdy_log_util.cc",
1080 "spdy/spdy_log_util.h",
1081 "spdy/spdy_proxy_client_socket.cc",
1082 "spdy/spdy_proxy_client_socket.h",
1083 "spdy/spdy_read_queue.cc",
1084 "spdy/spdy_read_queue.h",
1085 "spdy/spdy_session.cc",
1086 "spdy/spdy_session.h",
1087 "spdy/spdy_session_key.cc",
1088 "spdy/spdy_session_key.h",
1089 "spdy/spdy_session_pool.cc",
1090 "spdy/spdy_session_pool.h",
1091 "spdy/spdy_stream.cc",
1092 "spdy/spdy_stream.h",
1093 "spdy/spdy_write_queue.cc",
1094 "spdy/spdy_write_queue.h",
ckrasic73f7240b2017-01-24 00:06:451095 "ssl/client_cert_store.h",
1096 "ssl/client_cert_store_mac.cc",
1097 "ssl/client_cert_store_mac.h",
1098 "ssl/client_cert_store_nss.cc",
1099 "ssl/client_cert_store_nss.h",
1100 "ssl/client_cert_store_win.cc",
1101 "ssl/client_cert_store_win.h",
1102 "ssl/ssl_config_service_defaults.cc",
1103 "ssl/ssl_config_service_defaults.h",
1104 "ssl/ssl_key_logger.cc",
1105 "ssl/ssl_key_logger.h",
ckrasic73f7240b2017-01-24 00:06:451106 "ssl/ssl_platform_key_android.cc",
thakisb8590c92017-03-23 18:14:531107 "ssl/ssl_platform_key_android.h",
ckrasic73f7240b2017-01-24 00:06:451108 "ssl/ssl_platform_key_mac.cc",
thakisb8590c92017-03-23 18:14:531109 "ssl/ssl_platform_key_mac.h",
ckrasic73f7240b2017-01-24 00:06:451110 "ssl/ssl_platform_key_nss.cc",
mattm436ccfe2017-06-19 20:24:081111 "ssl/ssl_platform_key_nss.h",
ckrasic73f7240b2017-01-24 00:06:451112 "ssl/ssl_platform_key_util.cc",
1113 "ssl/ssl_platform_key_util.h",
1114 "ssl/ssl_platform_key_win.cc",
1115 "ssl/test_ssl_private_key.cc",
1116 "ssl/test_ssl_private_key.h",
1117 "ssl/threaded_ssl_private_key.cc",
1118 "ssl/threaded_ssl_private_key.h",
Ryan Hamiltondf987ecb2018-04-18 15:42:011119 "third_party/http2/decoder/decode_buffer.cc",
1120 "third_party/http2/decoder/decode_buffer.h",
1121 "third_party/http2/decoder/decode_http2_structures.cc",
1122 "third_party/http2/decoder/decode_http2_structures.h",
1123 "third_party/http2/decoder/decode_status.cc",
1124 "third_party/http2/decoder/decode_status.h",
1125 "third_party/http2/decoder/frame_decoder_state.cc",
1126 "third_party/http2/decoder/frame_decoder_state.h",
1127 "third_party/http2/decoder/http2_frame_decoder.cc",
1128 "third_party/http2/decoder/http2_frame_decoder.h",
1129 "third_party/http2/decoder/http2_frame_decoder_listener.cc",
1130 "third_party/http2/decoder/http2_frame_decoder_listener.h",
1131 "third_party/http2/decoder/http2_structure_decoder.cc",
1132 "third_party/http2/decoder/http2_structure_decoder.h",
1133 "third_party/http2/decoder/payload_decoders/altsvc_payload_decoder.cc",
1134 "third_party/http2/decoder/payload_decoders/altsvc_payload_decoder.h",
1135 "third_party/http2/decoder/payload_decoders/continuation_payload_decoder.cc",
1136 "third_party/http2/decoder/payload_decoders/continuation_payload_decoder.h",
1137 "third_party/http2/decoder/payload_decoders/data_payload_decoder.cc",
1138 "third_party/http2/decoder/payload_decoders/data_payload_decoder.h",
1139 "third_party/http2/decoder/payload_decoders/goaway_payload_decoder.cc",
1140 "third_party/http2/decoder/payload_decoders/goaway_payload_decoder.h",
1141 "third_party/http2/decoder/payload_decoders/headers_payload_decoder.cc",
1142 "third_party/http2/decoder/payload_decoders/headers_payload_decoder.h",
1143 "third_party/http2/decoder/payload_decoders/ping_payload_decoder.cc",
1144 "third_party/http2/decoder/payload_decoders/ping_payload_decoder.h",
1145 "third_party/http2/decoder/payload_decoders/priority_payload_decoder.cc",
1146 "third_party/http2/decoder/payload_decoders/priority_payload_decoder.h",
1147 "third_party/http2/decoder/payload_decoders/push_promise_payload_decoder.cc",
1148 "third_party/http2/decoder/payload_decoders/push_promise_payload_decoder.h",
1149 "third_party/http2/decoder/payload_decoders/rst_stream_payload_decoder.cc",
1150 "third_party/http2/decoder/payload_decoders/rst_stream_payload_decoder.h",
1151 "third_party/http2/decoder/payload_decoders/settings_payload_decoder.cc",
1152 "third_party/http2/decoder/payload_decoders/settings_payload_decoder.h",
1153 "third_party/http2/decoder/payload_decoders/unknown_payload_decoder.cc",
1154 "third_party/http2/decoder/payload_decoders/unknown_payload_decoder.h",
1155 "third_party/http2/decoder/payload_decoders/window_update_payload_decoder.cc",
1156 "third_party/http2/decoder/payload_decoders/window_update_payload_decoder.h",
1157 "third_party/http2/hpack/decoder/hpack_block_decoder.cc",
1158 "third_party/http2/hpack/decoder/hpack_block_decoder.h",
1159 "third_party/http2/hpack/decoder/hpack_decoder.cc",
1160 "third_party/http2/hpack/decoder/hpack_decoder.h",
1161 "third_party/http2/hpack/decoder/hpack_decoder_listener.cc",
1162 "third_party/http2/hpack/decoder/hpack_decoder_listener.h",
1163 "third_party/http2/hpack/decoder/hpack_decoder_state.cc",
1164 "third_party/http2/hpack/decoder/hpack_decoder_state.h",
1165 "third_party/http2/hpack/decoder/hpack_decoder_string_buffer.cc",
1166 "third_party/http2/hpack/decoder/hpack_decoder_string_buffer.h",
1167 "third_party/http2/hpack/decoder/hpack_decoder_tables.cc",
1168 "third_party/http2/hpack/decoder/hpack_decoder_tables.h",
1169 "third_party/http2/hpack/decoder/hpack_entry_decoder.cc",
1170 "third_party/http2/hpack/decoder/hpack_entry_decoder.h",
1171 "third_party/http2/hpack/decoder/hpack_entry_decoder_listener.cc",
1172 "third_party/http2/hpack/decoder/hpack_entry_decoder_listener.h",
1173 "third_party/http2/hpack/decoder/hpack_entry_type_decoder.cc",
1174 "third_party/http2/hpack/decoder/hpack_entry_type_decoder.h",
1175 "third_party/http2/hpack/decoder/hpack_string_decoder.cc",
1176 "third_party/http2/hpack/decoder/hpack_string_decoder.h",
1177 "third_party/http2/hpack/decoder/hpack_string_decoder_listener.cc",
1178 "third_party/http2/hpack/decoder/hpack_string_decoder_listener.h",
1179 "third_party/http2/hpack/decoder/hpack_varint_decoder.cc",
1180 "third_party/http2/hpack/decoder/hpack_varint_decoder.h",
1181 "third_party/http2/hpack/decoder/hpack_whole_entry_buffer.cc",
1182 "third_party/http2/hpack/decoder/hpack_whole_entry_buffer.h",
1183 "third_party/http2/hpack/decoder/hpack_whole_entry_listener.cc",
1184 "third_party/http2/hpack/decoder/hpack_whole_entry_listener.h",
1185 "third_party/http2/hpack/hpack_static_table_entries.inc",
1186 "third_party/http2/hpack/hpack_string.cc",
1187 "third_party/http2/hpack/hpack_string.h",
1188 "third_party/http2/hpack/http2_hpack_constants.cc",
1189 "third_party/http2/hpack/http2_hpack_constants.h",
1190 "third_party/http2/hpack/huffman/hpack_huffman_decoder.cc",
1191 "third_party/http2/hpack/huffman/hpack_huffman_decoder.h",
1192 "third_party/http2/http2_constants.cc",
1193 "third_party/http2/http2_constants.h",
1194 "third_party/http2/http2_structures.cc",
1195 "third_party/http2/http2_structures.h",
1196 "third_party/http2/platform/api/http2_export.h",
1197 "third_party/http2/platform/api/http2_ptr_util.h",
1198 "third_party/http2/platform/api/http2_reconstruct_object.h",
1199 "third_party/http2/platform/api/http2_string.h",
1200 "third_party/http2/platform/api/http2_string_piece.h",
1201 "third_party/http2/platform/api/http2_string_utils.h",
1202 "third_party/http2/platform/impl/http2_export_impl.h",
1203 "third_party/http2/platform/impl/http2_ptr_util_impl.h",
1204 "third_party/http2/platform/impl/http2_reconstruct_object_impl.h",
1205 "third_party/http2/platform/impl/http2_string_impl.h",
1206 "third_party/http2/platform/impl/http2_string_piece_impl.h",
1207 "third_party/http2/platform/impl/http2_string_utils_impl.h",
1208 "third_party/http2/tools/http2_bug_tracker.h",
ckrasic73f7240b2017-01-24 00:06:451209 "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
1210 "third_party/mozilla_security_manager/nsNSSCertificateDB.h",
1211 "third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
1212 "third_party/mozilla_security_manager/nsPKCS12Blob.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161213 "third_party/quic/core/congestion_control/bandwidth_sampler.cc",
1214 "third_party/quic/core/congestion_control/bandwidth_sampler.h",
1215 "third_party/quic/core/congestion_control/bbr_sender.cc",
1216 "third_party/quic/core/congestion_control/bbr_sender.h",
1217 "third_party/quic/core/congestion_control/cubic_bytes.cc",
1218 "third_party/quic/core/congestion_control/cubic_bytes.h",
1219 "third_party/quic/core/congestion_control/general_loss_algorithm.cc",
1220 "third_party/quic/core/congestion_control/general_loss_algorithm.h",
1221 "third_party/quic/core/congestion_control/hybrid_slow_start.cc",
1222 "third_party/quic/core/congestion_control/hybrid_slow_start.h",
1223 "third_party/quic/core/congestion_control/loss_detection_interface.h",
1224 "third_party/quic/core/congestion_control/pacing_sender.cc",
1225 "third_party/quic/core/congestion_control/pacing_sender.h",
1226 "third_party/quic/core/congestion_control/prr_sender.cc",
1227 "third_party/quic/core/congestion_control/prr_sender.h",
1228 "third_party/quic/core/congestion_control/rtt_stats.cc",
1229 "third_party/quic/core/congestion_control/rtt_stats.h",
1230 "third_party/quic/core/congestion_control/send_algorithm_interface.cc",
1231 "third_party/quic/core/congestion_control/send_algorithm_interface.h",
1232 "third_party/quic/core/congestion_control/tcp_cubic_sender_bytes.cc",
1233 "third_party/quic/core/congestion_control/tcp_cubic_sender_bytes.h",
1234 "third_party/quic/core/congestion_control/windowed_filter.h",
1235 "third_party/quic/core/crypto/aead_base_decrypter.cc",
1236 "third_party/quic/core/crypto/aead_base_decrypter.h",
1237 "third_party/quic/core/crypto/aead_base_encrypter.cc",
1238 "third_party/quic/core/crypto/aead_base_encrypter.h",
1239 "third_party/quic/core/crypto/aes_128_gcm_12_decrypter.cc",
1240 "third_party/quic/core/crypto/aes_128_gcm_12_decrypter.h",
1241 "third_party/quic/core/crypto/aes_128_gcm_12_encrypter.cc",
1242 "third_party/quic/core/crypto/aes_128_gcm_12_encrypter.h",
1243 "third_party/quic/core/crypto/aes_128_gcm_decrypter.cc",
1244 "third_party/quic/core/crypto/aes_128_gcm_decrypter.h",
1245 "third_party/quic/core/crypto/aes_128_gcm_encrypter.cc",
1246 "third_party/quic/core/crypto/aes_128_gcm_encrypter.h",
1247 "third_party/quic/core/crypto/aes_256_gcm_decrypter.cc",
1248 "third_party/quic/core/crypto/aes_256_gcm_decrypter.h",
1249 "third_party/quic/core/crypto/aes_256_gcm_encrypter.cc",
1250 "third_party/quic/core/crypto/aes_256_gcm_encrypter.h",
1251 "third_party/quic/core/crypto/cert_compressor.cc",
1252 "third_party/quic/core/crypto/cert_compressor.h",
1253 "third_party/quic/core/crypto/chacha20_poly1305_decrypter.cc",
1254 "third_party/quic/core/crypto/chacha20_poly1305_decrypter.h",
1255 "third_party/quic/core/crypto/chacha20_poly1305_encrypter.cc",
1256 "third_party/quic/core/crypto/chacha20_poly1305_encrypter.h",
1257 "third_party/quic/core/crypto/chacha20_poly1305_tls_decrypter.cc",
1258 "third_party/quic/core/crypto/chacha20_poly1305_tls_decrypter.h",
1259 "third_party/quic/core/crypto/chacha20_poly1305_tls_encrypter.cc",
1260 "third_party/quic/core/crypto/chacha20_poly1305_tls_encrypter.h",
1261 "third_party/quic/core/crypto/channel_id.cc",
1262 "third_party/quic/core/crypto/channel_id.h",
1263 "third_party/quic/core/crypto/common_cert_set.cc",
1264 "third_party/quic/core/crypto/common_cert_set.h",
1265 "third_party/quic/core/crypto/crypto_framer.cc",
1266 "third_party/quic/core/crypto/crypto_framer.h",
1267 "third_party/quic/core/crypto/crypto_handshake.cc",
1268 "third_party/quic/core/crypto/crypto_handshake.h",
1269 "third_party/quic/core/crypto/crypto_handshake_message.cc",
1270 "third_party/quic/core/crypto/crypto_handshake_message.h",
1271 "third_party/quic/core/crypto/crypto_message_parser.h",
1272 "third_party/quic/core/crypto/crypto_protocol.h",
1273 "third_party/quic/core/crypto/crypto_secret_boxer.cc",
1274 "third_party/quic/core/crypto/crypto_secret_boxer.h",
1275 "third_party/quic/core/crypto/crypto_server_config_protobuf.cc",
1276 "third_party/quic/core/crypto/crypto_server_config_protobuf.h",
1277 "third_party/quic/core/crypto/crypto_utils.cc",
1278 "third_party/quic/core/crypto/crypto_utils.h",
1279 "third_party/quic/core/crypto/curve25519_key_exchange.cc",
1280 "third_party/quic/core/crypto/curve25519_key_exchange.h",
1281 "third_party/quic/core/crypto/ephemeral_key_source.h",
1282 "third_party/quic/core/crypto/key_exchange.h",
1283 "third_party/quic/core/crypto/null_decrypter.cc",
1284 "third_party/quic/core/crypto/null_decrypter.h",
1285 "third_party/quic/core/crypto/null_encrypter.cc",
1286 "third_party/quic/core/crypto/null_encrypter.h",
1287 "third_party/quic/core/crypto/p256_key_exchange.cc",
1288 "third_party/quic/core/crypto/p256_key_exchange.h",
1289 "third_party/quic/core/crypto/proof_source.cc",
1290 "third_party/quic/core/crypto/proof_source.h",
1291 "third_party/quic/core/crypto/proof_verifier.h",
1292 "third_party/quic/core/crypto/quic_compressed_certs_cache.cc",
1293 "third_party/quic/core/crypto/quic_compressed_certs_cache.h",
1294 "third_party/quic/core/crypto/quic_crypto_client_config.cc",
1295 "third_party/quic/core/crypto/quic_crypto_client_config.h",
1296 "third_party/quic/core/crypto/quic_crypto_proof.cc",
1297 "third_party/quic/core/crypto/quic_crypto_proof.h",
1298 "third_party/quic/core/crypto/quic_crypto_server_config.cc",
1299 "third_party/quic/core/crypto/quic_crypto_server_config.h",
1300 "third_party/quic/core/crypto/quic_decrypter.cc",
1301 "third_party/quic/core/crypto/quic_decrypter.h",
1302 "third_party/quic/core/crypto/quic_encrypter.cc",
1303 "third_party/quic/core/crypto/quic_encrypter.h",
1304 "third_party/quic/core/crypto/quic_random.cc",
1305 "third_party/quic/core/crypto/quic_random.h",
1306 "third_party/quic/core/crypto/quic_tls_adapter.cc",
1307 "third_party/quic/core/crypto/quic_tls_adapter.h",
1308 "third_party/quic/core/crypto/scoped_evp_aead_ctx.cc",
1309 "third_party/quic/core/crypto/scoped_evp_aead_ctx.h",
1310 "third_party/quic/core/crypto/transport_parameters.cc",
1311 "third_party/quic/core/crypto/transport_parameters.h",
1312 "third_party/quic/core/frames/quic_ack_frame.cc",
1313 "third_party/quic/core/frames/quic_ack_frame.h",
1314 "third_party/quic/core/frames/quic_application_close_frame.cc",
1315 "third_party/quic/core/frames/quic_application_close_frame.h",
1316 "third_party/quic/core/frames/quic_blocked_frame.cc",
1317 "third_party/quic/core/frames/quic_blocked_frame.h",
1318 "third_party/quic/core/frames/quic_connection_close_frame.cc",
1319 "third_party/quic/core/frames/quic_connection_close_frame.h",
1320 "third_party/quic/core/frames/quic_control_frame.h",
1321 "third_party/quic/core/frames/quic_frame.cc",
1322 "third_party/quic/core/frames/quic_frame.h",
1323 "third_party/quic/core/frames/quic_goaway_frame.cc",
1324 "third_party/quic/core/frames/quic_goaway_frame.h",
1325 "third_party/quic/core/frames/quic_max_stream_id_frame.cc",
1326 "third_party/quic/core/frames/quic_max_stream_id_frame.h",
1327 "third_party/quic/core/frames/quic_mtu_discovery_frame.h",
1328 "third_party/quic/core/frames/quic_new_connection_id_frame.cc",
1329 "third_party/quic/core/frames/quic_new_connection_id_frame.h",
1330 "third_party/quic/core/frames/quic_padding_frame.cc",
1331 "third_party/quic/core/frames/quic_padding_frame.h",
1332 "third_party/quic/core/frames/quic_path_challenge_frame.cc",
1333 "third_party/quic/core/frames/quic_path_challenge_frame.h",
1334 "third_party/quic/core/frames/quic_path_response_frame.cc",
1335 "third_party/quic/core/frames/quic_path_response_frame.h",
1336 "third_party/quic/core/frames/quic_ping_frame.cc",
1337 "third_party/quic/core/frames/quic_ping_frame.h",
1338 "third_party/quic/core/frames/quic_rst_stream_frame.cc",
1339 "third_party/quic/core/frames/quic_rst_stream_frame.h",
1340 "third_party/quic/core/frames/quic_stop_sending_frame.cc",
1341 "third_party/quic/core/frames/quic_stop_sending_frame.h",
1342 "third_party/quic/core/frames/quic_stop_waiting_frame.cc",
1343 "third_party/quic/core/frames/quic_stop_waiting_frame.h",
1344 "third_party/quic/core/frames/quic_stream_frame.cc",
1345 "third_party/quic/core/frames/quic_stream_frame.h",
1346 "third_party/quic/core/frames/quic_stream_id_blocked_frame.cc",
1347 "third_party/quic/core/frames/quic_stream_id_blocked_frame.h",
1348 "third_party/quic/core/frames/quic_window_update_frame.cc",
1349 "third_party/quic/core/frames/quic_window_update_frame.h",
1350 "third_party/quic/core/packet_number_indexed_queue.h",
1351 "third_party/quic/core/quic_ack_listener_interface.cc",
1352 "third_party/quic/core/quic_ack_listener_interface.h",
1353 "third_party/quic/core/quic_alarm.cc",
1354 "third_party/quic/core/quic_alarm.h",
1355 "third_party/quic/core/quic_alarm_factory.h",
1356 "third_party/quic/core/quic_arena_scoped_ptr.h",
1357 "third_party/quic/core/quic_bandwidth.cc",
1358 "third_party/quic/core/quic_bandwidth.h",
1359 "third_party/quic/core/quic_blocked_writer_interface.h",
1360 "third_party/quic/core/quic_buffer_allocator.cc",
1361 "third_party/quic/core/quic_buffer_allocator.h",
1362 "third_party/quic/core/quic_buffered_packet_store.cc",
1363 "third_party/quic/core/quic_buffered_packet_store.h",
1364 "third_party/quic/core/quic_client_promised_info.cc",
1365 "third_party/quic/core/quic_client_promised_info.h",
1366 "third_party/quic/core/quic_client_push_promise_index.cc",
1367 "third_party/quic/core/quic_client_push_promise_index.h",
1368 "third_party/quic/core/quic_config.cc",
1369 "third_party/quic/core/quic_config.h",
1370 "third_party/quic/core/quic_connection.cc",
1371 "third_party/quic/core/quic_connection.h",
1372 "third_party/quic/core/quic_connection_close_delegate_interface.h",
1373 "third_party/quic/core/quic_connection_stats.cc",
1374 "third_party/quic/core/quic_connection_stats.h",
1375 "third_party/quic/core/quic_constants.cc",
1376 "third_party/quic/core/quic_constants.h",
1377 "third_party/quic/core/quic_control_frame_manager.cc",
1378 "third_party/quic/core/quic_control_frame_manager.h",
1379 "third_party/quic/core/quic_crypto_client_handshaker.cc",
1380 "third_party/quic/core/quic_crypto_client_handshaker.h",
1381 "third_party/quic/core/quic_crypto_client_stream.cc",
1382 "third_party/quic/core/quic_crypto_client_stream.h",
1383 "third_party/quic/core/quic_crypto_handshaker.cc",
1384 "third_party/quic/core/quic_crypto_handshaker.h",
1385 "third_party/quic/core/quic_crypto_server_handshaker.cc",
1386 "third_party/quic/core/quic_crypto_server_handshaker.h",
1387 "third_party/quic/core/quic_crypto_server_stream.cc",
1388 "third_party/quic/core/quic_crypto_server_stream.h",
1389 "third_party/quic/core/quic_crypto_stream.cc",
1390 "third_party/quic/core/quic_crypto_stream.h",
1391 "third_party/quic/core/quic_data_reader.cc",
1392 "third_party/quic/core/quic_data_reader.h",
1393 "third_party/quic/core/quic_data_writer.cc",
1394 "third_party/quic/core/quic_data_writer.h",
1395 "third_party/quic/core/quic_flags_list.h",
1396 "third_party/quic/core/quic_flow_controller.cc",
1397 "third_party/quic/core/quic_flow_controller.h",
1398 "third_party/quic/core/quic_framer.cc",
1399 "third_party/quic/core/quic_framer.h",
1400 "third_party/quic/core/quic_header_list.cc",
1401 "third_party/quic/core/quic_header_list.h",
1402 "third_party/quic/core/quic_headers_stream.cc",
1403 "third_party/quic/core/quic_headers_stream.h",
1404 "third_party/quic/core/quic_one_block_arena.h",
1405 "third_party/quic/core/quic_packet_creator.cc",
1406 "third_party/quic/core/quic_packet_creator.h",
1407 "third_party/quic/core/quic_packet_generator.cc",
1408 "third_party/quic/core/quic_packet_generator.h",
1409 "third_party/quic/core/quic_packet_writer.h",
1410 "third_party/quic/core/quic_packets.cc",
1411 "third_party/quic/core/quic_packets.h",
1412 "third_party/quic/core/quic_pending_retransmission.h",
1413 "third_party/quic/core/quic_received_packet_manager.cc",
1414 "third_party/quic/core/quic_received_packet_manager.h",
1415 "third_party/quic/core/quic_sent_packet_manager.cc",
1416 "third_party/quic/core/quic_sent_packet_manager.h",
1417 "third_party/quic/core/quic_server_id.cc",
1418 "third_party/quic/core/quic_server_id.h",
1419 "third_party/quic/core/quic_server_session_base.cc",
1420 "third_party/quic/core/quic_server_session_base.h",
1421 "third_party/quic/core/quic_session.cc",
1422 "third_party/quic/core/quic_session.h",
1423 "third_party/quic/core/quic_simple_buffer_allocator.cc",
1424 "third_party/quic/core/quic_simple_buffer_allocator.h",
1425 "third_party/quic/core/quic_socket_address_coder.cc",
1426 "third_party/quic/core/quic_socket_address_coder.h",
1427 "third_party/quic/core/quic_spdy_client_session_base.cc",
1428 "third_party/quic/core/quic_spdy_client_session_base.h",
1429 "third_party/quic/core/quic_spdy_session.cc",
1430 "third_party/quic/core/quic_spdy_session.h",
1431 "third_party/quic/core/quic_spdy_stream.cc",
1432 "third_party/quic/core/quic_spdy_stream.h",
1433 "third_party/quic/core/quic_stream.cc",
1434 "third_party/quic/core/quic_stream.h",
1435 "third_party/quic/core/quic_stream_frame_data_producer.h",
1436 "third_party/quic/core/quic_stream_send_buffer.cc",
1437 "third_party/quic/core/quic_stream_send_buffer.h",
1438 "third_party/quic/core/quic_stream_sequencer.cc",
1439 "third_party/quic/core/quic_stream_sequencer.h",
1440 "third_party/quic/core/quic_stream_sequencer_buffer.cc",
1441 "third_party/quic/core/quic_stream_sequencer_buffer.h",
1442 "third_party/quic/core/quic_sustained_bandwidth_recorder.cc",
1443 "third_party/quic/core/quic_sustained_bandwidth_recorder.h",
1444 "third_party/quic/core/quic_tag.cc",
1445 "third_party/quic/core/quic_tag.h",
1446 "third_party/quic/core/quic_time.cc",
1447 "third_party/quic/core/quic_time.h",
1448 "third_party/quic/core/quic_transmission_info.cc",
1449 "third_party/quic/core/quic_transmission_info.h",
1450 "third_party/quic/core/quic_types.cc",
1451 "third_party/quic/core/quic_types.h",
1452 "third_party/quic/core/quic_unacked_packet_map.cc",
1453 "third_party/quic/core/quic_unacked_packet_map.h",
1454 "third_party/quic/core/quic_utils.cc",
1455 "third_party/quic/core/quic_utils.h",
1456 "third_party/quic/core/quic_version_manager.cc",
1457 "third_party/quic/core/quic_version_manager.h",
1458 "third_party/quic/core/quic_versions.cc",
1459 "third_party/quic/core/quic_versions.h",
1460 "third_party/quic/core/quic_write_blocked_list.cc",
1461 "third_party/quic/core/quic_write_blocked_list.h",
1462 "third_party/quic/core/spdy_utils.cc",
1463 "third_party/quic/core/spdy_utils.h",
1464 "third_party/quic/core/tls_client_handshaker.cc",
1465 "third_party/quic/core/tls_client_handshaker.h",
1466 "third_party/quic/core/tls_handshaker.cc",
1467 "third_party/quic/core/tls_handshaker.h",
1468 "third_party/quic/core/tls_server_handshaker.cc",
1469 "third_party/quic/core/tls_server_handshaker.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161470 "third_party/quic/platform/api/quic_aligned.h",
1471 "third_party/quic/platform/api/quic_arraysize.h",
1472 "third_party/quic/platform/api/quic_bug_tracker.h",
1473 "third_party/quic/platform/api/quic_clock.cc",
1474 "third_party/quic/platform/api/quic_clock.h",
1475 "third_party/quic/platform/api/quic_containers.h",
1476 "third_party/quic/platform/api/quic_endian.h",
1477 "third_party/quic/platform/api/quic_estimate_memory_usage.h",
1478 "third_party/quic/platform/api/quic_export.h",
Bin Wu831935e2018-06-08 22:06:351479 "third_party/quic/platform/api/quic_exported_stats.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161480 "third_party/quic/platform/api/quic_fallthrough.h",
Ryan Hamiltond3bf5a12018-05-30 06:23:421481 "third_party/quic/platform/api/quic_file_utils.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161482 "third_party/quic/platform/api/quic_flag_utils.h",
1483 "third_party/quic/platform/api/quic_flags.h",
Ryan Hamiltonb8382972018-06-30 03:26:491484 "third_party/quic/platform/api/quic_hkdf.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161485 "third_party/quic/platform/api/quic_hostname_utils.cc",
1486 "third_party/quic/platform/api/quic_hostname_utils.h",
Ryan Hamilton0ce63302018-06-26 23:26:211487 "third_party/quic/platform/api/quic_interval.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161488 "third_party/quic/platform/api/quic_ip_address.cc",
1489 "third_party/quic/platform/api/quic_ip_address.h",
1490 "third_party/quic/platform/api/quic_ip_address_family.h",
1491 "third_party/quic/platform/api/quic_logging.h",
1492 "third_party/quic/platform/api/quic_lru_cache.h",
1493 "third_party/quic/platform/api/quic_map_util.h",
1494 "third_party/quic/platform/api/quic_mem_slice.h",
1495 "third_party/quic/platform/api/quic_mem_slice_span.h",
1496 "third_party/quic/platform/api/quic_mutex.cc",
1497 "third_party/quic/platform/api/quic_mutex.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161498 "third_party/quic/platform/api/quic_pcc_sender.h",
1499 "third_party/quic/platform/api/quic_prefetch.h",
1500 "third_party/quic/platform/api/quic_ptr_util.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161501 "third_party/quic/platform/api/quic_reference_counted.h",
1502 "third_party/quic/platform/api/quic_singleton.h",
1503 "third_party/quic/platform/api/quic_sleep.h",
1504 "third_party/quic/platform/api/quic_socket_address.cc",
1505 "third_party/quic/platform/api/quic_socket_address.h",
1506 "third_party/quic/platform/api/quic_stack_trace.h",
1507 "third_party/quic/platform/api/quic_str_cat.h",
1508 "third_party/quic/platform/api/quic_string.h",
1509 "third_party/quic/platform/api/quic_string_piece.h",
1510 "third_party/quic/platform/api/quic_text_utils.h",
1511 "third_party/quic/platform/api/quic_url.cc",
1512 "third_party/quic/platform/api/quic_url.h",
1513 "third_party/quic/platform/api/quic_url_utils.cc",
1514 "third_party/quic/platform/api/quic_url_utils.h",
1515 "third_party/quic/platform/impl/quic_aligned_impl.h",
1516 "third_party/quic/platform/impl/quic_arraysize_impl.h",
1517 "third_party/quic/platform/impl/quic_bug_tracker_impl.h",
1518 "third_party/quic/platform/impl/quic_chromium_clock.cc",
1519 "third_party/quic/platform/impl/quic_chromium_clock.h",
1520 "third_party/quic/platform/impl/quic_containers_impl.h",
1521 "third_party/quic/platform/impl/quic_endian_impl.h",
1522 "third_party/quic/platform/impl/quic_estimate_memory_usage_impl.h",
1523 "third_party/quic/platform/impl/quic_export_impl.h",
Bin Wu831935e2018-06-08 22:06:351524 "third_party/quic/platform/impl/quic_exported_stats_impl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161525 "third_party/quic/platform/impl/quic_fallthrough_impl.h",
Ryan Hamiltond3bf5a12018-05-30 06:23:421526 "third_party/quic/platform/impl/quic_file_utils_impl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161527 "third_party/quic/platform/impl/quic_flag_utils_impl.h",
1528 "third_party/quic/platform/impl/quic_flags_impl.cc",
1529 "third_party/quic/platform/impl/quic_flags_impl.h",
Ryan Hamiltonb8382972018-06-30 03:26:491530 "third_party/quic/platform/impl/quic_hkdf_impl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161531 "third_party/quic/platform/impl/quic_hostname_utils_impl.cc",
1532 "third_party/quic/platform/impl/quic_hostname_utils_impl.h",
Ryan Hamilton0ce63302018-06-26 23:26:211533 "third_party/quic/platform/impl/quic_interval_impl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161534 "third_party/quic/platform/impl/quic_ip_address_impl.cc",
1535 "third_party/quic/platform/impl/quic_ip_address_impl.h",
1536 "third_party/quic/platform/impl/quic_logging_impl.h",
1537 "third_party/quic/platform/impl/quic_lru_cache_impl.h",
1538 "third_party/quic/platform/impl/quic_map_util_impl.h",
1539 "third_party/quic/platform/impl/quic_mem_slice_impl.cc",
1540 "third_party/quic/platform/impl/quic_mem_slice_impl.h",
1541 "third_party/quic/platform/impl/quic_mem_slice_span_impl.cc",
1542 "third_party/quic/platform/impl/quic_mem_slice_span_impl.h",
1543 "third_party/quic/platform/impl/quic_mutex_impl.cc",
1544 "third_party/quic/platform/impl/quic_mutex_impl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161545 "third_party/quic/platform/impl/quic_pcc_sender_impl.h",
1546 "third_party/quic/platform/impl/quic_prefetch_impl.h",
1547 "third_party/quic/platform/impl/quic_ptr_util_impl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161548 "third_party/quic/platform/impl/quic_reference_counted_impl.h",
1549 "third_party/quic/platform/impl/quic_singleton_impl.h",
1550 "third_party/quic/platform/impl/quic_sleep_impl.h",
1551 "third_party/quic/platform/impl/quic_socket_address_impl.cc",
1552 "third_party/quic/platform/impl/quic_socket_address_impl.h",
1553 "third_party/quic/platform/impl/quic_stack_trace_impl.h",
1554 "third_party/quic/platform/impl/quic_str_cat_impl.h",
1555 "third_party/quic/platform/impl/quic_string_impl.h",
1556 "third_party/quic/platform/impl/quic_string_piece_impl.h",
1557 "third_party/quic/platform/impl/quic_text_utils_impl.h",
1558 "third_party/quic/platform/impl/quic_url_impl.cc",
1559 "third_party/quic/platform/impl/quic_url_impl.h",
1560 "third_party/quic/platform/impl/quic_url_utils_impl.cc",
1561 "third_party/quic/platform/impl/quic_url_utils_impl.h",
1562 "third_party/quic/quartc/quartc_clock_interface.h",
1563 "third_party/quic/quartc/quartc_factory.cc",
1564 "third_party/quic/quartc/quartc_factory.h",
1565 "third_party/quic/quartc/quartc_factory_interface.cc",
1566 "third_party/quic/quartc/quartc_factory_interface.h",
1567 "third_party/quic/quartc/quartc_packet_writer.cc",
1568 "third_party/quic/quartc/quartc_packet_writer.h",
1569 "third_party/quic/quartc/quartc_session.cc",
1570 "third_party/quic/quartc/quartc_session.h",
1571 "third_party/quic/quartc/quartc_session_interface.h",
1572 "third_party/quic/quartc/quartc_stream.cc",
1573 "third_party/quic/quartc/quartc_stream.h",
1574 "third_party/quic/quartc/quartc_stream_interface.h",
1575 "third_party/quic/quartc/quartc_task_runner_interface.h",
Ryan Hamilton2e003eea2018-05-02 00:24:291576 "third_party/spdy/core/fuzzing/hpack_fuzz_util.cc",
1577 "third_party/spdy/core/fuzzing/hpack_fuzz_util.h",
1578 "third_party/spdy/core/hpack/hpack_constants.cc",
1579 "third_party/spdy/core/hpack/hpack_constants.h",
1580 "third_party/spdy/core/hpack/hpack_decoder_adapter.cc",
1581 "third_party/spdy/core/hpack/hpack_decoder_adapter.h",
1582 "third_party/spdy/core/hpack/hpack_encoder.cc",
1583 "third_party/spdy/core/hpack/hpack_encoder.h",
1584 "third_party/spdy/core/hpack/hpack_entry.cc",
1585 "third_party/spdy/core/hpack/hpack_entry.h",
1586 "third_party/spdy/core/hpack/hpack_header_table.cc",
1587 "third_party/spdy/core/hpack/hpack_header_table.h",
1588 "third_party/spdy/core/hpack/hpack_huffman_table.cc",
1589 "third_party/spdy/core/hpack/hpack_huffman_table.h",
1590 "third_party/spdy/core/hpack/hpack_output_stream.cc",
1591 "third_party/spdy/core/hpack/hpack_output_stream.h",
1592 "third_party/spdy/core/hpack/hpack_static_table.cc",
1593 "third_party/spdy/core/hpack/hpack_static_table.h",
1594 "third_party/spdy/core/http2_frame_decoder_adapter.cc",
1595 "third_party/spdy/core/http2_frame_decoder_adapter.h",
1596 "third_party/spdy/core/priority_write_scheduler.h",
1597 "third_party/spdy/core/spdy_alt_svc_wire_format.cc",
1598 "third_party/spdy/core/spdy_alt_svc_wire_format.h",
1599 "third_party/spdy/core/spdy_bitmasks.h",
1600 "third_party/spdy/core/spdy_bug_tracker.h",
1601 "third_party/spdy/core/spdy_frame_builder.cc",
1602 "third_party/spdy/core/spdy_frame_builder.h",
1603 "third_party/spdy/core/spdy_frame_reader.cc",
1604 "third_party/spdy/core/spdy_frame_reader.h",
1605 "third_party/spdy/core/spdy_framer.cc",
1606 "third_party/spdy/core/spdy_framer.h",
1607 "third_party/spdy/core/spdy_header_block.cc",
1608 "third_party/spdy/core/spdy_header_block.h",
1609 "third_party/spdy/core/spdy_headers_handler_interface.h",
1610 "third_party/spdy/core/spdy_pinnable_buffer_piece.cc",
1611 "third_party/spdy/core/spdy_pinnable_buffer_piece.h",
1612 "third_party/spdy/core/spdy_prefixed_buffer_reader.cc",
1613 "third_party/spdy/core/spdy_prefixed_buffer_reader.h",
1614 "third_party/spdy/core/spdy_protocol.cc",
1615 "third_party/spdy/core/spdy_protocol.h",
1616 "third_party/spdy/core/write_scheduler.h",
1617 "third_party/spdy/core/zero_copy_output_buffer.h",
1618 "third_party/spdy/platform/api/spdy_estimate_memory_usage.h",
1619 "third_party/spdy/platform/api/spdy_export.h",
1620 "third_party/spdy/platform/api/spdy_flags.h",
1621 "third_party/spdy/platform/api/spdy_mem_slice.h",
1622 "third_party/spdy/platform/api/spdy_ptr_util.h",
1623 "third_party/spdy/platform/api/spdy_string.h",
1624 "third_party/spdy/platform/api/spdy_string_piece.h",
1625 "third_party/spdy/platform/api/spdy_string_utils.h",
1626 "third_party/spdy/platform/impl/spdy_estimate_memory_usage_impl.h",
1627 "third_party/spdy/platform/impl/spdy_export_impl.h",
1628 "third_party/spdy/platform/impl/spdy_flags_impl.cc",
1629 "third_party/spdy/platform/impl/spdy_flags_impl.h",
1630 "third_party/spdy/platform/impl/spdy_mem_slice_impl.cc",
1631 "third_party/spdy/platform/impl/spdy_mem_slice_impl.h",
1632 "third_party/spdy/platform/impl/spdy_ptr_util_impl.h",
1633 "third_party/spdy/platform/impl/spdy_string_impl.h",
1634 "third_party/spdy/platform/impl/spdy_string_piece_impl.h",
1635 "third_party/spdy/platform/impl/spdy_string_utils_impl.cc",
1636 "third_party/spdy/platform/impl/spdy_string_utils_impl.h",
ckrasic73f7240b2017-01-24 00:06:451637 "url_request/data_protocol_handler.cc",
1638 "url_request/data_protocol_handler.h",
1639 "url_request/http_user_agent_settings.h",
1640 "url_request/redirect_info.cc",
1641 "url_request/redirect_info.h",
Tsuyoshi Horo9e2ec4df2017-10-16 15:15:551642 "url_request/redirect_util.cc",
1643 "url_request/redirect_util.h",
ckrasic73f7240b2017-01-24 00:06:451644 "url_request/report_sender.cc",
1645 "url_request/report_sender.h",
ckrasic73f7240b2017-01-24 00:06:451646 "url_request/static_http_user_agent_settings.cc",
1647 "url_request/static_http_user_agent_settings.h",
1648 "url_request/url_fetcher.cc",
1649 "url_request/url_fetcher.h",
1650 "url_request/url_fetcher_core.cc",
1651 "url_request/url_fetcher_core.h",
1652 "url_request/url_fetcher_delegate.cc",
1653 "url_request/url_fetcher_delegate.h",
1654 "url_request/url_fetcher_factory.h",
1655 "url_request/url_fetcher_impl.cc",
1656 "url_request/url_fetcher_impl.h",
1657 "url_request/url_fetcher_response_writer.cc",
1658 "url_request/url_fetcher_response_writer.h",
1659 "url_request/url_range_request_job.cc",
1660 "url_request/url_range_request_job.h",
1661 "url_request/url_request.cc",
1662 "url_request/url_request.h",
1663 "url_request/url_request_context.cc",
1664 "url_request/url_request_context.h",
1665 "url_request/url_request_context_builder.cc",
1666 "url_request/url_request_context_builder.h",
1667 "url_request/url_request_context_getter.cc",
1668 "url_request/url_request_context_getter.h",
1669 "url_request/url_request_context_getter_observer.h",
1670 "url_request/url_request_context_storage.cc",
1671 "url_request/url_request_context_storage.h",
1672 "url_request/url_request_data_job.cc",
1673 "url_request/url_request_data_job.h",
1674 "url_request/url_request_error_job.cc",
1675 "url_request/url_request_error_job.h",
1676 "url_request/url_request_filter.cc",
1677 "url_request/url_request_filter.h",
1678 "url_request/url_request_http_job.cc",
1679 "url_request/url_request_http_job.h",
Thiemo Nagel0793b9c532018-04-18 16:57:581680 "url_request/url_request_http_job_histogram.h",
ckrasic73f7240b2017-01-24 00:06:451681 "url_request/url_request_intercepting_job_factory.cc",
1682 "url_request/url_request_intercepting_job_factory.h",
1683 "url_request/url_request_interceptor.cc",
1684 "url_request/url_request_interceptor.h",
1685 "url_request/url_request_job.cc",
1686 "url_request/url_request_job.h",
1687 "url_request/url_request_job_factory.cc",
1688 "url_request/url_request_job_factory.h",
1689 "url_request/url_request_job_factory_impl.cc",
1690 "url_request/url_request_job_factory_impl.h",
1691 "url_request/url_request_job_manager.cc",
1692 "url_request/url_request_job_manager.h",
1693 "url_request/url_request_netlog_params.cc",
1694 "url_request/url_request_netlog_params.h",
1695 "url_request/url_request_redirect_job.cc",
1696 "url_request/url_request_redirect_job.h",
1697 "url_request/url_request_simple_job.cc",
1698 "url_request/url_request_simple_job.h",
1699 "url_request/url_request_status.cc",
1700 "url_request/url_request_status.h",
1701 "url_request/url_request_test_job.cc",
1702 "url_request/url_request_test_job.h",
1703 "url_request/url_request_throttler_entry.cc",
1704 "url_request/url_request_throttler_entry.h",
1705 "url_request/url_request_throttler_entry_interface.h",
1706 "url_request/url_request_throttler_manager.cc",
1707 "url_request/url_request_throttler_manager.h",
1708 "url_request/view_cache_helper.cc",
1709 "url_request/view_cache_helper.h",
1710 "url_request/websocket_handshake_userdata_key.cc",
1711 "url_request/websocket_handshake_userdata_key.h",
ckrasic73f7240b2017-01-24 00:06:451712 ]
kapishnikovabe280e2016-04-14 19:07:161713
mmenkefd9d15c2017-06-29 13:45:541714 if (enable_reporting) {
1715 sources += [
Julia Tuttle472098d2018-02-28 21:43:581716 "network_error_logging/network_error_logging_delegate.cc",
1717 "network_error_logging/network_error_logging_delegate.h",
Julia Tuttle6c949ae2017-11-17 16:36:271718 "network_error_logging/network_error_logging_service.cc",
1719 "network_error_logging/network_error_logging_service.h",
mmenkefd9d15c2017-06-29 13:45:541720 "reporting/reporting_browsing_data_remover.cc",
1721 "reporting/reporting_browsing_data_remover.h",
1722 "reporting/reporting_cache.cc",
1723 "reporting/reporting_cache.h",
1724 "reporting/reporting_client.cc",
1725 "reporting/reporting_client.h",
1726 "reporting/reporting_context.cc",
1727 "reporting/reporting_context.h",
1728 "reporting/reporting_delegate.cc",
1729 "reporting/reporting_delegate.h",
1730 "reporting/reporting_delivery_agent.cc",
1731 "reporting/reporting_delivery_agent.h",
1732 "reporting/reporting_endpoint_manager.cc",
1733 "reporting/reporting_endpoint_manager.h",
mmenkefd9d15c2017-06-29 13:45:541734 "reporting/reporting_garbage_collector.cc",
1735 "reporting/reporting_garbage_collector.h",
1736 "reporting/reporting_header_parser.cc",
1737 "reporting/reporting_header_parser.h",
1738 "reporting/reporting_network_change_observer.cc",
1739 "reporting/reporting_network_change_observer.h",
1740 "reporting/reporting_observer.cc",
1741 "reporting/reporting_observer.h",
mmenkefd9d15c2017-06-29 13:45:541742 "reporting/reporting_policy.cc",
1743 "reporting/reporting_policy.h",
1744 "reporting/reporting_report.cc",
1745 "reporting/reporting_report.h",
1746 "reporting/reporting_service.cc",
1747 "reporting/reporting_service.h",
1748 "reporting/reporting_uploader.cc",
1749 "reporting/reporting_uploader.h",
1750 ]
1751 }
1752
kapishnikovabe280e2016-04-14 19:07:161753 if (!use_kerberos) {
1754 sources -= [
1755 "http/http_auth_handler_negotiate.cc",
1756 "http/http_auth_handler_negotiate.h",
1757 ]
1758 }
1759
Fabrice de Gans-Riberi9fba3aff2018-04-12 19:00:481760 if (is_posix || is_fuchsia) {
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:581761 sources += [
1762 "base/file_stream_context_posix.cc",
1763 "base/network_interfaces_posix.cc",
1764 "base/network_interfaces_posix.h",
1765 "disk_cache/blockfile/file_posix.cc",
1766 "disk_cache/cache_util_posix.cc",
1767 "disk_cache/simple/simple_index_file_posix.cc",
1768 "disk_cache/simple/simple_util_posix.cc",
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:581769 "http/url_security_manager_posix.cc",
1770 "socket/socket_posix.cc",
1771 "socket/socket_posix.h",
1772 "socket/tcp_socket_posix.cc",
1773 "socket/tcp_socket_posix.h",
1774 "socket/udp_socket_posix.cc",
1775 "socket/udp_socket_posix.h",
1776 ]
kapishnikovabe280e2016-04-14 19:07:161777 if (posix_avoid_mmap) {
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:581778 sources += [ "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc" ]
kapishnikovabe280e2016-04-14 19:07:161779 } else {
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:581780 sources += [ "disk_cache/blockfile/mapped_file_posix.cc" ]
kapishnikovabe280e2016-04-14 19:07:161781 }
1782 }
1783
zentarob74795682017-07-14 00:58:221784 if (is_win) {
1785 sources -= [
zentarob89acda42017-07-14 01:28:571786 "ntlm/ntlm.cc",
1787 "ntlm/ntlm.h",
zentarob74795682017-07-14 00:58:221788 "ntlm/ntlm_buffer_reader.cc",
1789 "ntlm/ntlm_buffer_reader.h",
1790 "ntlm/ntlm_buffer_writer.cc",
1791 "ntlm/ntlm_buffer_writer.h",
Zentaro Kavanaghdd556612017-08-03 20:27:041792 "ntlm/ntlm_client.cc",
1793 "ntlm/ntlm_client.h",
zentarob74795682017-07-14 00:58:221794 "ntlm/ntlm_constants.h",
1795 ]
1796 }
1797
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:581798 if (use_kerberos && ((is_posix && !is_android) || is_fuchsia)) {
1799 sources += [
kapishnikovabe280e2016-04-14 19:07:161800 "http/http_auth_gssapi_posix.cc",
1801 "http/http_auth_gssapi_posix.h",
1802 ]
1803 }
1804
Sergey Ulanov5c33235ae2017-07-06 23:55:071805 if (!is_nacl) {
David Benjamin739c2c82018-05-10 19:31:061806 sources -= [ "base/network_interfaces_nacl.cc" ]
Sergey Ulanov5c33235ae2017-07-06 23:55:071807 }
1808
1809 # Use getifaddrs() on POSIX platforms, except Linux and Android.
Fabrice de Gans-Riberi9fba3aff2018-04-12 19:00:481810 if (is_posix && !is_linux && !is_android) {
1811 sources += [
Sergey Ulanov5c33235ae2017-07-06 23:55:071812 "base/network_interfaces_getifaddrs.cc",
1813 "base/network_interfaces_getifaddrs.h",
1814 ]
1815 }
1816
kapishnikovabe280e2016-04-14 19:07:161817 if (!use_nss_certs) {
1818 sources -= [
mattm9c63d442016-09-03 00:45:511819 "cert/internal/trust_store_nss.cc",
1820 "cert/internal/trust_store_nss.h",
eromanf2971fd2017-04-20 20:10:451821 "cert/known_roots_nss.cc",
1822 "cert/known_roots_nss.h",
kapishnikovabe280e2016-04-14 19:07:161823 "cert/nss_cert_database.cc",
1824 "cert/nss_cert_database.h",
kapishnikovabe280e2016-04-14 19:07:161825 "ssl/client_cert_store_nss.cc",
1826 "ssl/client_cert_store_nss.h",
kapishnikovabe280e2016-04-14 19:07:161827 "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
1828 "third_party/mozilla_security_manager/nsNSSCertificateDB.h",
1829 "third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
1830 "third_party/mozilla_security_manager/nsPKCS12Blob.h",
1831 ]
1832 if (is_chromeos) {
1833 # These were already removed on non-ChromeOS.
1834 sources -= [
1835 "cert/nss_cert_database_chromeos.cc",
1836 "cert/nss_cert_database_chromeos.h",
1837 "cert/nss_profile_filter_chromeos.cc",
1838 "cert/nss_profile_filter_chromeos.h",
1839 ]
1840 }
mattmbbf7fc02017-06-19 23:38:191841 sources -= [ "ssl/ssl_platform_key_nss.cc" ]
svaldez2135be52016-04-20 16:34:531842 } else {
davidben8d569f52016-07-29 16:03:181843 sources += [
1844 "third_party/nss/ssl/cmpcert.cc",
1845 "third_party/nss/ssl/cmpcert.h",
1846 ]
kapishnikovabe280e2016-04-14 19:07:161847 }
1848
svaldez2135be52016-04-20 16:34:531849 if (!use_nss_certs) {
kapishnikovabe280e2016-04-14 19:07:161850 # These files are part of the partial implementation of NSS for
1851 # cert verification, so keep them in that case.
1852 sources -= [
1853 "cert/cert_verify_proc_nss.cc",
1854 "cert/cert_verify_proc_nss.h",
1855 "cert/test_root_certs_nss.cc",
svaldez2135be52016-04-20 16:34:531856 "cert/x509_util_nss.cc",
kapishnikovabe280e2016-04-14 19:07:161857 "cert_net/nss_ocsp.cc",
1858 "cert_net/nss_ocsp.h",
1859 ]
1860 }
1861
kapishnikovabe280e2016-04-14 19:07:161862 if (is_chromecast && use_nss_certs) {
mattm436ccfe2017-06-19 20:24:081863 sources -= [
1864 "ssl/client_cert_store_nss.cc",
1865 "ssl/client_cert_store_nss.h",
1866 "ssl/ssl_platform_key_nss.cc",
1867 ]
kapishnikovabe280e2016-04-14 19:07:161868 }
1869
kapishnikovabe280e2016-04-14 19:07:161870 if (is_win) {
1871 sources -= [ "http/http_auth_handler_ntlm_portable.cc" ]
1872 } else { # !is_win
1873 sources -= [
1874 "base/winsock_init.cc",
1875 "base/winsock_init.h",
1876 "base/winsock_util.cc",
1877 "base/winsock_util.h",
Lily Houghton582d4622018-01-22 22:43:401878 "proxy_resolution/proxy_resolver_winhttp.cc",
1879 "proxy_resolution/proxy_resolver_winhttp.h",
kapishnikovabe280e2016-04-14 19:07:161880 ]
1881 }
1882
1883 if (is_ios) {
1884 # Add back some sources that were otherwise filtered out.
1885 # iOS needs some Mac files.
1886 net_unfiltered_sources += [
1887 "base/mac/url_conversions.h",
1888 "base/mac/url_conversions.mm",
1889 "base/network_change_notifier_mac.cc",
wychenebb66ffb2017-04-05 07:19:371890 "base/network_change_notifier_mac.h",
kapishnikovabe280e2016-04-14 19:07:161891 "base/network_config_watcher_mac.cc",
wychenebb66ffb2017-04-05 07:19:371892 "base/network_config_watcher_mac.h",
kapishnikovabe280e2016-04-14 19:07:161893 "base/platform_mime_util_mac.mm",
Lily Houghton582d4622018-01-22 22:43:401894 "base/proxy_server_mac.cc",
svaldez2135be52016-04-20 16:34:531895 "cert/test_root_certs_mac.cc",
mattm1a07e632017-05-16 05:55:501896 "cert/x509_util_ios_and_mac.cc",
1897 "cert/x509_util_ios_and_mac.h",
Lily Houghton582d4622018-01-22 22:43:401898 "proxy_resolution/proxy_resolver_mac.cc",
1899 "proxy_resolution/proxy_resolver_mac.h",
kapishnikovabe280e2016-04-14 19:07:161900 ]
1901
1902 sources -= [ "disk_cache/blockfile/file_posix.cc" ]
1903 }
1904
kapishnikovabe280e2016-04-14 19:07:161905 if (is_ios || is_mac) {
ckrasic73f7240b2017-01-24 00:06:451906 sources += [
1907 "base/mac/url_conversions.h",
1908 "base/mac/url_conversions.mm",
1909 ]
kapishnikovabe280e2016-04-14 19:07:161910 }
1911
1912 if (is_android) {
kapishnikovabe280e2016-04-14 19:07:161913 # Add some Linux sources that were excluded by the filter, but which
1914 # are needed.
1915 net_unfiltered_sources += [
1916 "base/address_tracker_linux.cc",
1917 "base/address_tracker_linux.h",
1918 "base/network_interfaces_linux.cc",
1919 "base/network_interfaces_linux.h",
1920 "base/platform_mime_util_linux.cc",
1921 ]
1922 }
Sergey Ulanov49085572017-07-10 23:25:461923
1924 if (is_fuchsia) {
1925 sources += [
Kevin Marshall3e89fd72018-06-05 21:29:101926 "base/network_change_notifier_fuchsia.cc",
1927 "base/network_change_notifier_fuchsia.h",
Sergey Ulanov2beef3d2017-10-19 21:53:531928 "base/network_interfaces_fuchsia.cc",
Sergey Ulanov49085572017-07-10 23:25:461929 "base/platform_mime_util_fuchsia.cc",
Sergey Ulanov49085572017-07-10 23:25:461930 "cert/test_root_certs_fuchsia.cc",
1931 ]
1932 }
kapishnikovabe280e2016-04-14 19:07:161933 }
xunjieli905496a2015-08-31 15:51:171934
Sergey Ulanov21dea152017-09-13 00:50:501935 if (enable_unix_sockets) {
1936 sources += [
1937 "socket/unix_domain_client_socket_posix.cc",
1938 "socket/unix_domain_client_socket_posix.h",
1939 "socket/unix_domain_server_socket_posix.cc",
1940 "socket/unix_domain_server_socket_posix.h",
1941 ]
1942 }
1943
xunjieli905496a2015-08-31 15:51:171944 # Add back some sources that were otherwise filtered out.
1945 set_sources_assignment_filter([])
kapishnikovabe280e2016-04-14 19:07:161946 sources += net_unfiltered_sources
xunjieli905496a2015-08-31 15:51:171947 set_sources_assignment_filter(sources_assignment_filter)
1948
1949 cflags = []
[email protected]4625ade2014-04-15 19:26:441950
1951 if (is_mac) {
[email protected]4625ade2014-04-15 19:26:441952 libs = [
rsesek02aa51c2016-05-11 02:13:571953 "CFNetwork.framework",
1954 "CoreServices.framework",
[email protected]ab9ce6e2014-04-17 20:33:191955 "Foundation.framework",
1956 "Security.framework",
1957 "SystemConfiguration.framework",
1958 "resolv",
[email protected]4625ade2014-04-15 19:26:441959 ]
1960 }
1961
1962 if (is_ios) {
[email protected]4625ade2014-04-15 19:26:441963 libs = [
[email protected]ab9ce6e2014-04-17 20:33:191964 "CFNetwork.framework",
1965 "MobileCoreServices.framework",
1966 "Security.framework",
1967 "SystemConfiguration.framework",
1968 "resolv",
[email protected]4625ade2014-04-15 19:26:441969 ]
xunjieli06d93982015-08-27 17:13:021970 }
xunjieli4c8c6922015-08-27 16:02:401971
jam5332a632016-04-01 22:36:051972 if (is_win) {
1973 libs = [
1974 "crypt32.lib",
1975 "dhcpcsvc.lib",
1976 "iphlpapi.lib",
davidben62399192016-09-13 01:54:221977 "ncrypt.lib",
jam5332a632016-04-01 22:36:051978 "rpcrt4.lib",
1979 "secur32.lib",
1980 "urlmon.lib",
1981 "winhttp.lib",
1982 ]
1983 }
1984
sergeyu99d83f92015-09-14 23:03:331985 if (!is_nacl) {
1986 if (!disable_file_support) {
ckrasic73f7240b2017-01-24 00:06:451987 sources += [
1988 "base/directory_lister.cc",
1989 "base/directory_lister.h",
1990 "base/directory_listing.cc",
1991 "base/directory_listing.h",
1992 "url_request/file_protocol_handler.cc",
1993 "url_request/file_protocol_handler.h",
1994 "url_request/url_request_file_dir_job.cc",
1995 "url_request/url_request_file_dir_job.h",
1996 "url_request/url_request_file_job.cc",
1997 "url_request/url_request_file_job.h",
1998 ]
sergeyu99d83f92015-09-14 23:03:331999 }
xunjieli06d93982015-08-27 17:13:022000
sergeyu99d83f92015-09-14 23:03:332001 if (!disable_ftp_support) {
ckrasic73f7240b2017-01-24 00:06:452002 sources += [
2003 "ftp/ftp_auth_cache.cc",
2004 "ftp/ftp_auth_cache.h",
2005 "ftp/ftp_ctrl_response_buffer.cc",
2006 "ftp/ftp_ctrl_response_buffer.h",
2007 "ftp/ftp_directory_listing_parser.cc",
2008 "ftp/ftp_directory_listing_parser.h",
2009 "ftp/ftp_directory_listing_parser_ls.cc",
2010 "ftp/ftp_directory_listing_parser_ls.h",
2011 "ftp/ftp_directory_listing_parser_vms.cc",
2012 "ftp/ftp_directory_listing_parser_vms.h",
2013 "ftp/ftp_directory_listing_parser_windows.cc",
2014 "ftp/ftp_directory_listing_parser_windows.h",
2015 "ftp/ftp_network_layer.cc",
2016 "ftp/ftp_network_layer.h",
2017 "ftp/ftp_network_session.cc",
2018 "ftp/ftp_network_session.h",
2019 "ftp/ftp_network_transaction.cc",
2020 "ftp/ftp_network_transaction.h",
2021 "ftp/ftp_request_info.h",
2022 "ftp/ftp_response_info.cc",
2023 "ftp/ftp_response_info.h",
2024 "ftp/ftp_server_type_histograms.cc",
2025 "ftp/ftp_server_type_histograms.h",
2026 "ftp/ftp_transaction.h",
2027 "ftp/ftp_transaction_factory.h",
2028 "ftp/ftp_util.cc",
2029 "ftp/ftp_util.h",
2030 "url_request/ftp_protocol_handler.cc",
2031 "url_request/ftp_protocol_handler.h",
2032 "url_request/url_request_ftp_job.cc",
2033 "url_request/url_request_ftp_job.h",
2034 ]
sergeyu99d83f92015-09-14 23:03:332035 }
xunjieli905496a2015-08-31 15:51:172036
sergeyu99d83f92015-09-14 23:03:332037 if (enable_websockets) {
ckrasic73f7240b2017-01-24 00:06:452038 sources += [
2039 "websockets/websocket_basic_handshake_stream.cc",
2040 "websockets/websocket_basic_handshake_stream.h",
2041 "websockets/websocket_basic_stream.cc",
2042 "websockets/websocket_basic_stream.h",
Bence Béky7294fc22018-02-08 14:26:172043 "websockets/websocket_basic_stream_adapters.cc",
2044 "websockets/websocket_basic_stream_adapters.h",
ckrasic73f7240b2017-01-24 00:06:452045 "websockets/websocket_channel.cc",
2046 "websockets/websocket_channel.h",
2047 "websockets/websocket_deflate_parameters.cc",
2048 "websockets/websocket_deflate_parameters.h",
2049 "websockets/websocket_deflate_predictor.h",
2050 "websockets/websocket_deflate_predictor_impl.cc",
2051 "websockets/websocket_deflate_predictor_impl.h",
2052 "websockets/websocket_deflate_stream.cc",
2053 "websockets/websocket_deflate_stream.h",
2054 "websockets/websocket_deflater.cc",
2055 "websockets/websocket_deflater.h",
2056 "websockets/websocket_errors.cc",
2057 "websockets/websocket_errors.h",
mmenke392ec462017-03-23 18:49:352058 "websockets/websocket_event_interface.h",
ckrasic73f7240b2017-01-24 00:06:452059 "websockets/websocket_extension.cc",
2060 "websockets/websocket_extension.h",
2061 "websockets/websocket_extension_parser.cc",
2062 "websockets/websocket_extension_parser.h",
2063 "websockets/websocket_frame.cc",
2064 "websockets/websocket_frame.h",
2065 "websockets/websocket_frame_parser.cc",
2066 "websockets/websocket_frame_parser.h",
2067 "websockets/websocket_handshake_challenge.cc",
2068 "websockets/websocket_handshake_challenge.h",
2069 "websockets/websocket_handshake_constants.cc",
2070 "websockets/websocket_handshake_constants.h",
2071 "websockets/websocket_handshake_request_info.cc",
2072 "websockets/websocket_handshake_request_info.h",
2073 "websockets/websocket_handshake_response_info.cc",
2074 "websockets/websocket_handshake_response_info.h",
Bence Békycc7249a2018-03-06 16:23:272075 "websockets/websocket_handshake_stream_base.cc",
ckrasic73f7240b2017-01-24 00:06:452076 "websockets/websocket_handshake_stream_base.h",
2077 "websockets/websocket_handshake_stream_create_helper.cc",
2078 "websockets/websocket_handshake_stream_create_helper.h",
Bence Béky46bfbc12018-02-22 19:28:202079 "websockets/websocket_http2_handshake_stream.cc",
2080 "websockets/websocket_http2_handshake_stream.h",
ckrasic73f7240b2017-01-24 00:06:452081 "websockets/websocket_inflater.cc",
2082 "websockets/websocket_inflater.h",
2083 "websockets/websocket_stream.cc",
2084 "websockets/websocket_stream.h",
2085 ]
sergeyu99d83f92015-09-14 23:03:332086 }
xunjieli905496a2015-08-31 15:51:172087
sergeyu99d83f92015-09-14 23:03:332088 # ICU support.
kapishnikovabe280e2016-04-14 19:07:162089 if (use_platform_icu_alternatives) {
2090 if (is_android) {
2091 # Use ICU alternative on Android.
torned8b7d9252016-08-04 19:41:452092 sources += [ "base/net_string_util_icu_alternatives_android.cc" ]
kapishnikovabe280e2016-04-14 19:07:162093 } else if (is_ios) {
2094 # Use ICU alternative on iOS.
2095 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ]
2096 } else {
2097 assert(false,
2098 "ICU alternative is not implemented for platform: " + target_os)
2099 }
2100 } else {
2101 # Use ICU.
kapishnikovabe280e2016-04-14 19:07:162102 sources += [
2103 "base/filename_util_icu.cc",
2104 "base/net_string_util_icu.cc",
2105 ]
2106 }
eustasfbec9132015-12-30 14:56:512107
2108 # Brotli support.
kapishnikovabe280e2016-04-14 19:07:162109 if (!disable_brotli_filter) {
thakisb8590c92017-03-23 18:14:532110 sources += [
2111 "filter/brotli_source_stream.cc",
2112 "filter/brotli_source_stream.h",
2113 ]
kapishnikovabe280e2016-04-14 19:07:162114 } else {
xunjieli084a9292016-09-23 18:15:042115 sources += [ "filter/brotli_source_stream_disabled.cc" ]
kapishnikovabe280e2016-04-14 19:07:162116 }
[email protected]85191ed2014-05-15 00:41:492117 }
[email protected]4625ade2014-04-15 19:26:442118}
2119
Eric Orth24feb5b2018-05-25 19:42:462120# Private dependencies for the //net component and for any build targets (e.g.
2121# source sets with circular dependencies with //net) that need to share the same
2122# dependencies.
2123source_set("net_deps") {
2124 visibility = [
2125 ":net",
2126 "//net/dns",
2127 "//net/dns:dns_client",
2128 "//net/dns:host_resolver_impl",
2129 "//net/dns:mdns_client",
2130 "//net/dns:public",
2131 ]
2132
2133 public_deps = [
2134 ":constants",
2135 ":net_resources",
2136 "//base",
2137 "//net/base/registry_controlled_domains",
2138 "//third_party/protobuf:protobuf_lite",
2139 "//url:url_features",
2140 ]
2141
2142 public_configs = net_configs
2143
2144 if (include_transport_security_state_preload_list) {
2145 public_deps += [ "//net/http:generate_transport_security_state" ]
2146 }
2147
2148 if (!is_nacl) {
2149 public_deps += [
2150 "//base/third_party/dynamic_annotations",
2151 "//third_party/zlib",
2152 ]
2153
2154 if (use_gio) {
2155 public_configs += [ "//build/linux:gio_config" ]
2156 }
2157
2158 if (is_android) {
2159 public_deps += [ ":net_jni_headers" ]
2160 }
2161
2162 if (is_fuchsia) {
2163 public_deps += [ "//third_party/fuchsia-sdk:netstack" ]
2164 }
2165
2166 if (use_platform_icu_alternatives) {
2167 if (is_android) {
2168 public_deps += [ ":net_jni_headers" ]
2169 }
2170 } else {
2171 public_deps += [
2172 "//base:i18n",
2173 "//third_party/icu",
2174 ]
2175 }
2176
2177 if (!disable_brotli_filter) {
2178 public_deps += [ "//third_party/brotli:dec" ]
2179 }
2180 }
2181}
2182
2183# Public dependencies for the //net component and for any build targets (e.g.
2184# source sets with circular dependencies with //net) that need to share the same
2185# dependencies.
2186source_set("net_public_deps") {
2187 visibility = [
2188 ":net",
2189 "//net/dns",
2190 "//net/dns:dns_client",
2191 "//net/dns:host_resolver_impl",
2192 "//net/dns:mdns_client",
2193 "//net/dns:public",
2194 ]
2195
2196 public_deps = [
2197 ":buildflags",
2198 ":net_nqe_proto",
2199 ":net_quic_proto",
Eric Orth24feb5b2018-05-25 19:42:462200 "//crypto",
2201 "//crypto:platform",
Veranika Liaukevich8a686442018-05-29 18:55:122202 "//net/traffic_annotation",
Eric Orth24feb5b2018-05-25 19:42:462203 "//third_party/boringssl",
2204 "//url",
2205 ]
2206
2207 if (is_nacl) {
2208 public_deps += [ "//native_client_sdk/src/libraries/nacl_io" ]
2209 }
2210}
2211
[email protected]4625ade2014-04-15 19:26:442212grit("net_resources") {
2213 source = "base/net_resources.grd"
[email protected]b89c53842014-07-23 16:32:322214 outputs = [
2215 "grit/net_resources.h",
2216 "net_resources.pak",
[email protected]b89c53842014-07-23 16:32:322217 ]
[email protected]4625ade2014-04-15 19:26:442218}
2219
Tarun Bansalcdfa34b2017-11-23 05:11:172220proto_library("net_nqe_proto") {
Eric Orth24feb5b2018-05-25 19:42:462221 visibility = [ ":net_public_deps" ]
Tarun Bansalcdfa34b2017-11-23 05:11:172222
2223 sources = [
2224 "nqe/proto/network_id_proto.proto",
2225 ]
2226 cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:"
2227 cc_include = "net/base/net_export.h"
2228 component_build_force_source_set = true
2229
2230 defines = [ "NET_IMPLEMENTATION" ]
2231
2232 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
2233}
2234
rtennetib6f1c0d2015-04-03 17:52:062235proto_library("net_quic_proto") {
Eric Orth24feb5b2018-05-25 19:42:462236 visibility = [ ":net_public_deps" ]
brettw2e7db0a2015-04-24 22:59:172237
rtennetib6f1c0d2015-04-03 17:52:062238 sources = [
Ryan Hamilton56b10c5d2018-05-11 13:40:162239 "third_party/quic/core/proto/cached_network_parameters.proto",
2240 "third_party/quic/core/proto/source_address_token.proto",
rtennetib6f1c0d2015-04-03 17:52:062241 ]
2242 cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:"
2243 cc_include = "net/base/net_export.h"
brettw7ef80452016-06-30 00:43:182244 component_build_force_source_set = true
rtennetib6f1c0d2015-04-03 17:52:062245
2246 defines = [ "NET_IMPLEMENTATION" ]
2247
2248 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
2249}
2250
ckrasic73f7240b2017-01-24 00:06:452251if (!is_proto_quic) {
2252 static_library("extras") {
2253 sources = [
2254 "extras/sqlite/cookie_crypto_delegate.h",
2255 "extras/sqlite/sqlite_channel_id_store.cc",
2256 "extras/sqlite/sqlite_channel_id_store.h",
2257 "extras/sqlite/sqlite_persistent_cookie_store.cc",
2258 "extras/sqlite/sqlite_persistent_cookie_store.h",
2259 ]
2260 configs += [ "//build/config/compiler:wexit_time_destructors" ]
2261 deps = [
2262 ":net",
2263 "//base",
2264 "//sql:sql",
2265 ]
2266 }
mef327a8e42014-08-29 17:10:032267}
2268
sdefresne3001f172016-03-16 10:30:032269if (!is_ios) {
2270 executable("dump_cache") {
2271 testonly = true
2272 sources = [
2273 "tools/dump_cache/dump_cache.cc",
2274 "tools/dump_cache/dump_files.cc",
2275 "tools/dump_cache/dump_files.h",
2276 ]
[email protected]4625ade2014-04-15 19:26:442277
sdefresne3001f172016-03-16 10:30:032278 deps = [
2279 ":net",
2280 ":test_support",
2281 "//base",
brucedawsonf9f7d6292016-04-27 19:11:072282 "//build/win:default_exe_manifest",
sdefresne3001f172016-03-16 10:30:032283 ]
2284 }
[email protected]8603c5de2014-04-16 20:34:312285}
2286
eroman12951312017-05-05 22:55:512287# This section can be updated from globbing rules using:
2288# python ./tools/update_ios_bundle_data.py
sdefresneb0a31642016-03-18 11:04:452289bundle_data("test_support_bundle_data") {
sdefresne04f91142016-04-21 08:41:592290 visibility = [ ":test_support" ]
sdefresneb0a31642016-03-18 11:04:452291 testonly = true
ckrasic73f7240b2017-01-24 00:06:452292 sources = [
zhongyid7dd2db12017-04-14 17:01:252293 "data/quic_http_response_cache_data_with_push/test.example.com/favicon.ico",
2294 "data/quic_http_response_cache_data_with_push/test.example.com/index.html",
2295 "data/quic_http_response_cache_data_with_push/test.example.com/index2.html",
2296 "data/quic_http_response_cache_data_with_push/test.example.com/kitten-1.jpg",
ckrasic73f7240b2017-01-24 00:06:452297 "data/ssl/certificates/1024-rsa-ee-by-1024-rsa-intermediate.pem",
2298 "data/ssl/certificates/1024-rsa-ee-by-2048-rsa-intermediate.pem",
2299 "data/ssl/certificates/1024-rsa-ee-by-768-rsa-intermediate.pem",
2300 "data/ssl/certificates/1024-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2301 "data/ssl/certificates/1024-rsa-intermediate.pem",
2302 "data/ssl/certificates/10_year_validity.pem",
2303 "data/ssl/certificates/11_year_validity.pem",
2304 "data/ssl/certificates/2029_globalsign_com_cert.pem",
2305 "data/ssl/certificates/2048-rsa-ee-by-1024-rsa-intermediate.pem",
2306 "data/ssl/certificates/2048-rsa-ee-by-2048-rsa-intermediate.pem",
2307 "data/ssl/certificates/2048-rsa-ee-by-768-rsa-intermediate.pem",
2308 "data/ssl/certificates/2048-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2309 "data/ssl/certificates/2048-rsa-intermediate.pem",
2310 "data/ssl/certificates/2048-rsa-root.pem",
2311 "data/ssl/certificates/39_months_after_2015_04.pem",
Ryan Sleevifb6f86642018-04-07 03:55:382312 "data/ssl/certificates/39_months_based_on_last_day.pem",
ckrasic73f7240b2017-01-24 00:06:452313 "data/ssl/certificates/40_months_after_2015_04.pem",
2314 "data/ssl/certificates/60_months_after_2012_07.pem",
2315 "data/ssl/certificates/61_months_after_2012_07.pem",
2316 "data/ssl/certificates/768-rsa-ee-by-1024-rsa-intermediate.pem",
2317 "data/ssl/certificates/768-rsa-ee-by-2048-rsa-intermediate.pem",
2318 "data/ssl/certificates/768-rsa-ee-by-768-rsa-intermediate.pem",
2319 "data/ssl/certificates/768-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2320 "data/ssl/certificates/768-rsa-intermediate.pem",
Ryan Sleevi1f9eb9f2018-01-23 21:25:142321 "data/ssl/certificates/825_days_1_second_after_2018_03_01.pem",
2322 "data/ssl/certificates/825_days_after_2018_03_01.pem",
2323 "data/ssl/certificates/826_days_after_2018_03_01.pem",
Matt Muellerc391cdf2018-02-08 01:05:572324 "data/ssl/certificates/BUILD.gn",
eroman12951312017-05-05 22:55:512325 "data/ssl/certificates/README",
ckrasic73f7240b2017-01-24 00:06:452326 "data/ssl/certificates/aia-cert.pem",
2327 "data/ssl/certificates/aia-intermediate.der",
2328 "data/ssl/certificates/aia-root.pem",
2329 "data/ssl/certificates/bad_validity.pem",
Kunihiko Sakamoto97cfcf52018-06-26 03:08:222330 "data/ssl/certificates/can_sign_http_exchanges_draft_extension.pem",
ckrasic73f7240b2017-01-24 00:06:452331 "data/ssl/certificates/client-empty-password.p12",
2332 "data/ssl/certificates/client-nokey.p12",
2333 "data/ssl/certificates/client-null-password.p12",
2334 "data/ssl/certificates/client.p12",
2335 "data/ssl/certificates/client_1.key",
2336 "data/ssl/certificates/client_1.pem",
2337 "data/ssl/certificates/client_1.pk8",
2338 "data/ssl/certificates/client_1_ca.pem",
2339 "data/ssl/certificates/client_2.key",
2340 "data/ssl/certificates/client_2.pem",
2341 "data/ssl/certificates/client_2.pk8",
2342 "data/ssl/certificates/client_2_ca.pem",
2343 "data/ssl/certificates/client_3.key",
2344 "data/ssl/certificates/client_3.pem",
2345 "data/ssl/certificates/client_3.pk8",
2346 "data/ssl/certificates/client_3_ca.pem",
2347 "data/ssl/certificates/client_4.key",
2348 "data/ssl/certificates/client_4.pem",
2349 "data/ssl/certificates/client_4.pk8",
2350 "data/ssl/certificates/client_4_ca.pem",
2351 "data/ssl/certificates/client_5.key",
2352 "data/ssl/certificates/client_5.pem",
2353 "data/ssl/certificates/client_5.pk8",
2354 "data/ssl/certificates/client_5_ca.pem",
2355 "data/ssl/certificates/client_6.key",
2356 "data/ssl/certificates/client_6.pem",
2357 "data/ssl/certificates/client_6.pk8",
2358 "data/ssl/certificates/client_6_ca.pem",
2359 "data/ssl/certificates/client_root_ca.pem",
Ryan Sleevic2fcac62017-12-21 16:37:042360 "data/ssl/certificates/common_name_only.pem",
Rob Percival5c442f82018-03-28 22:10:572361 "data/ssl/certificates/comodo-chain.pem",
ckrasic73f7240b2017-01-24 00:06:452362 "data/ssl/certificates/crit-codeSigning-chain.pem",
2363 "data/ssl/certificates/crlset_by_intermediate_serial.raw",
2364 "data/ssl/certificates/crlset_by_leaf_spki.raw",
Eric Roman3b13fe0a2018-01-10 22:54:432365 "data/ssl/certificates/crlset_by_leaf_subject_no_spki.raw",
ckrasic73f7240b2017-01-24 00:06:452366 "data/ssl/certificates/crlset_by_root_serial.raw",
Eric Roman3b13fe0a2018-01-10 22:54:432367 "data/ssl/certificates/crlset_by_root_subject.raw",
2368 "data/ssl/certificates/crlset_by_root_subject_no_spki.raw",
ckrasic73f7240b2017-01-24 00:06:452369 "data/ssl/certificates/cross-signed-leaf.pem",
2370 "data/ssl/certificates/cross-signed-root-md5.pem",
2371 "data/ssl/certificates/cross-signed-root-sha256.pem",
2372 "data/ssl/certificates/ct-test-embedded-cert.pem",
2373 "data/ssl/certificates/ct-test-embedded-with-intermediate-chain.pem",
2374 "data/ssl/certificates/ct-test-embedded-with-intermediate-preca-chain.pem",
2375 "data/ssl/certificates/ct-test-embedded-with-preca-chain.pem",
Ryan Sleevid6c6a402018-04-14 01:33:042376 "data/ssl/certificates/daltonridgeapts.com-chain.pem",
Ryan Sleevibd9ca3112017-12-23 05:22:192377 "data/ssl/certificates/dec_2017.pem",
ckrasic73f7240b2017-01-24 00:06:452378 "data/ssl/certificates/diginotar_cyber_ca.pem",
2379 "data/ssl/certificates/diginotar_pkioverheid.pem",
2380 "data/ssl/certificates/diginotar_pkioverheid_g2.pem",
2381 "data/ssl/certificates/diginotar_public_ca_2025.pem",
2382 "data/ssl/certificates/diginotar_root_ca.pem",
2383 "data/ssl/certificates/diginotar_services_1024_ca.pem",
ckrasic73f7240b2017-01-24 00:06:452384 "data/ssl/certificates/duplicate_cn_1.p12",
2385 "data/ssl/certificates/duplicate_cn_1.pem",
2386 "data/ssl/certificates/duplicate_cn_2.p12",
2387 "data/ssl/certificates/duplicate_cn_2.pem",
2388 "data/ssl/certificates/eku-test-root.pem",
2389 "data/ssl/certificates/empty_subject_cert.der",
2390 "data/ssl/certificates/expired_cert.pem",
2391 "data/ssl/certificates/explicit-policy-chain.pem",
2392 "data/ssl/certificates/foaf.me.chromium-test-cert.der",
Ryan Sleevic646e482018-01-27 18:08:562393 "data/ssl/certificates/gms.hongleong.com.my-verisign-chain.pem",
ckrasic73f7240b2017-01-24 00:06:452394 "data/ssl/certificates/google.binary.p7b",
2395 "data/ssl/certificates/google.chain.pem",
2396 "data/ssl/certificates/google.pem_cert.p7b",
2397 "data/ssl/certificates/google.pem_pkcs7.p7b",
2398 "data/ssl/certificates/google.single.der",
2399 "data/ssl/certificates/google.single.pem",
2400 "data/ssl/certificates/google_diginotar.pem",
2401 "data/ssl/certificates/googlenew.chain.pem",
2402 "data/ssl/certificates/intermediate_ca_cert.pem",
2403 "data/ssl/certificates/invalid_key_usage_cert.der",
David Benjamin03c28a42018-05-11 23:12:072404 "data/ssl/certificates/key_usage_p256_both.pem",
2405 "data/ssl/certificates/key_usage_p256_digitalsignature.pem",
2406 "data/ssl/certificates/key_usage_p256_keyagreement.pem",
2407 "data/ssl/certificates/key_usage_p256_no_extension.pem",
2408 "data/ssl/certificates/key_usage_rsa_both.pem",
2409 "data/ssl/certificates/key_usage_rsa_digitalsignature.pem",
2410 "data/ssl/certificates/key_usage_rsa_keyencipherment.pem",
2411 "data/ssl/certificates/key_usage_rsa_no_extension.pem",
ckrasic73f7240b2017-01-24 00:06:452412 "data/ssl/certificates/large_key.pem",
2413 "data/ssl/certificates/localhost_cert.pem",
2414 "data/ssl/certificates/mit.davidben.der",
2415 "data/ssl/certificates/multi-root-A-by-B.pem",
2416 "data/ssl/certificates/multi-root-B-by-C.pem",
2417 "data/ssl/certificates/multi-root-B-by-F.pem",
2418 "data/ssl/certificates/multi-root-BFE.keychain",
2419 "data/ssl/certificates/multi-root-C-by-D.pem",
2420 "data/ssl/certificates/multi-root-C-by-E.pem",
2421 "data/ssl/certificates/multi-root-D-by-D.pem",
2422 "data/ssl/certificates/multi-root-E-by-E.pem",
2423 "data/ssl/certificates/multi-root-F-by-E.pem",
2424 "data/ssl/certificates/multi-root-chain1.pem",
2425 "data/ssl/certificates/multi-root-chain2.pem",
2426 "data/ssl/certificates/multi-root-crlset-C.raw",
2427 "data/ssl/certificates/multi-root-crlset-CD-and-FE.raw",
2428 "data/ssl/certificates/multi-root-crlset-D-and-E.raw",
2429 "data/ssl/certificates/multi-root-crlset-E.raw",
2430 "data/ssl/certificates/multi-root-crlset-unrelated.raw",
eroman12951312017-05-05 22:55:512431 "data/ssl/certificates/multi-root.keychain",
ckrasic73f7240b2017-01-24 00:06:452432 "data/ssl/certificates/multivalue_rdn.pem",
2433 "data/ssl/certificates/name_constraint_bad.pem",
2434 "data/ssl/certificates/name_constraint_good.pem",
2435 "data/ssl/certificates/ndn.ca.crt",
2436 "data/ssl/certificates/nist.der",
2437 "data/ssl/certificates/no_subject_common_name_cert.pem",
2438 "data/ssl/certificates/non-crit-codeSigning-chain.pem",
2439 "data/ssl/certificates/ocsp-test-root.pem",
2440 "data/ssl/certificates/ok_cert.pem",
2441 "data/ssl/certificates/ok_cert_by_intermediate.pem",
2442 "data/ssl/certificates/post_june_2016.pem",
2443 "data/ssl/certificates/pre_br_validity_bad_121.pem",
2444 "data/ssl/certificates/pre_br_validity_bad_2020.pem",
2445 "data/ssl/certificates/pre_br_validity_ok.pem",
2446 "data/ssl/certificates/pre_june_2016.pem",
2447 "data/ssl/certificates/prime256v1-ecdsa-ee-by-1024-rsa-intermediate.pem",
2448 "data/ssl/certificates/prime256v1-ecdsa-ee-by-2048-rsa-intermediate.pem",
2449 "data/ssl/certificates/prime256v1-ecdsa-ee-by-768-rsa-intermediate.pem",
2450 "data/ssl/certificates/prime256v1-ecdsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2451 "data/ssl/certificates/prime256v1-ecdsa-intermediate.pem",
2452 "data/ssl/certificates/punycodetest.pem",
John Abd-El-Malek1c36bfd2017-12-19 19:21:362453 "data/ssl/certificates/quic-chain.pem",
John Abd-El-Malekec2f0822017-12-20 21:35:112454 "data/ssl/certificates/quic-leaf-cert.key",
2455 "data/ssl/certificates/quic-leaf-cert.key.pkcs8.pem",
2456 "data/ssl/certificates/quic-leaf-cert.key.sct",
John Abd-El-Malek1c36bfd2017-12-19 19:21:362457 "data/ssl/certificates/quic-root.pem",
ckrasic73f7240b2017-01-24 00:06:452458 "data/ssl/certificates/redundant-server-chain.pem",
2459 "data/ssl/certificates/redundant-validated-chain-root.pem",
2460 "data/ssl/certificates/redundant-validated-chain.pem",
2461 "data/ssl/certificates/reject_intranet_hosts.pem",
2462 "data/ssl/certificates/root_ca_cert.pem",
2463 "data/ssl/certificates/salesforce_com_test.pem",
2464 "data/ssl/certificates/self-signed-invalid-name.pem",
2465 "data/ssl/certificates/self-signed-invalid-sig.pem",
2466 "data/ssl/certificates/sha1_2016.pem",
2467 "data/ssl/certificates/sha1_dec_2015.pem",
2468 "data/ssl/certificates/sha1_jan_2016.pem",
Ryan Sleevic2fcac62017-12-21 16:37:042469 "data/ssl/certificates/sha1_leaf.pem",
ckrasic73f7240b2017-01-24 00:06:452470 "data/ssl/certificates/spdy_pooling.pem",
2471 "data/ssl/certificates/start_after_expiry.pem",
2472 "data/ssl/certificates/subjectAltName_sanity_check.pem",
elawrencec7484f52017-04-05 21:46:422473 "data/ssl/certificates/subjectAltName_www_example_com.pem",
ckrasic73f7240b2017-01-24 00:06:452474 "data/ssl/certificates/thawte.single.pem",
2475 "data/ssl/certificates/tls_feature_extension.pem",
eroman12951312017-05-05 22:55:512476 "data/ssl/certificates/trustcenter.websecurity.symantec.com.pem",
ckrasic73f7240b2017-01-24 00:06:452477 "data/ssl/certificates/unescaped.pem",
2478 "data/ssl/certificates/unittest.key.bin",
2479 "data/ssl/certificates/unittest.originbound.der",
2480 "data/ssl/certificates/unittest.originbound.key.der",
2481 "data/ssl/certificates/unittest.selfsigned.der",
2482 "data/ssl/certificates/verisign_class3_g5_crosssigned-trusted.keychain",
2483 "data/ssl/certificates/verisign_class3_g5_crosssigned.pem",
2484 "data/ssl/certificates/verisign_intermediate_ca_2011.pem",
2485 "data/ssl/certificates/verisign_intermediate_ca_2016.pem",
2486 "data/ssl/certificates/weak_digest_md2_ee.pem",
2487 "data/ssl/certificates/weak_digest_md2_intermediate.pem",
2488 "data/ssl/certificates/weak_digest_md2_root.pem",
2489 "data/ssl/certificates/weak_digest_md4_ee.pem",
2490 "data/ssl/certificates/weak_digest_md4_intermediate.pem",
2491 "data/ssl/certificates/weak_digest_md4_root.pem",
2492 "data/ssl/certificates/weak_digest_md5_ee.pem",
2493 "data/ssl/certificates/weak_digest_md5_intermediate.pem",
2494 "data/ssl/certificates/weak_digest_md5_root.pem",
2495 "data/ssl/certificates/weak_digest_sha1_ee.pem",
2496 "data/ssl/certificates/weak_digest_sha1_intermediate.pem",
2497 "data/ssl/certificates/weak_digest_sha1_root.pem",
2498 "data/ssl/certificates/websocket_cacert.pem",
2499 "data/ssl/certificates/websocket_client_cert.p12",
2500 "data/ssl/certificates/wildcard.pem",
ckrasic73f7240b2017-01-24 00:06:452501 "data/ssl/certificates/x509_verify_results.chain.pem",
2502 ]
sdefresneb0a31642016-03-18 11:04:452503 outputs = [
2504 "{{bundle_resources_dir}}/" +
2505 "{{source_root_relative_dir}}/{{source_file_part}}",
2506 ]
2507}
2508
brettw3871f522016-07-14 22:08:342509static_library("test_support") {
Brett Wilson8f80ad0b2014-09-08 19:50:242510 testonly = true
[email protected]8603c5de2014-04-16 20:34:312511 sources = [
[email protected]8603c5de2014-04-16 20:34:312512 "base/load_timing_info_test_util.cc",
2513 "base/load_timing_info_test_util.h",
2514 "base/mock_file_stream.cc",
2515 "base/mock_file_stream.h",
Helen Lif18af04d2017-10-19 17:26:072516 "base/mock_network_change_notifier.cc",
2517 "base/mock_network_change_notifier.h",
[email protected]8603c5de2014-04-16 20:34:312518 "base/test_completion_callback.cc",
2519 "base/test_completion_callback.h",
[email protected]8603c5de2014-04-16 20:34:312520 "cert/mock_cert_verifier.cc",
2521 "cert/mock_cert_verifier.h",
ryanchung987b2ff2016-02-19 00:17:122522 "cert/mock_client_cert_verifier.cc",
2523 "cert/mock_client_cert_verifier.h",
Victor Costan85874942018-02-28 04:11:442524 "cookies/canonical_cookie_test_helpers.h",
Victor Costan1dcd6752018-03-16 12:31:362525 "cookies/cookie_change_dispatcher_test_helpers.cc",
2526 "cookies/cookie_change_dispatcher_test_helpers.h",
[email protected]8603c5de2014-04-16 20:34:312527 "cookies/cookie_monster_store_test.cc",
2528 "cookies/cookie_monster_store_test.h",
Victor Costanf8cb27d2018-02-21 09:16:232529 "cookies/cookie_store_change_unittest.h",
[email protected]8603c5de2014-04-16 20:34:312530 "cookies/cookie_store_test_callbacks.cc",
2531 "cookies/cookie_store_test_callbacks.h",
2532 "cookies/cookie_store_test_helpers.cc",
2533 "cookies/cookie_store_test_helpers.h",
drogerfd8b2772015-12-04 14:34:562534 "cookies/cookie_store_unittest.h",
[email protected]8603c5de2014-04-16 20:34:312535 "disk_cache/disk_cache_test_base.cc",
2536 "disk_cache/disk_cache_test_base.h",
2537 "disk_cache/disk_cache_test_util.cc",
2538 "disk_cache/disk_cache_test_util.h",
Matt Menke1dd3f2f2017-08-09 17:10:062539 "filter/filter_source_stream_test_util.cc",
2540 "filter/filter_source_stream_test_util.h",
xunjieli6cc8b84b2016-11-08 15:23:392541 "filter/mock_source_stream.cc",
2542 "filter/mock_source_stream.h",
zhongyi3c412982016-06-18 00:34:302543 "http/http_stream_factory_test_util.cc",
2544 "http/http_stream_factory_test_util.h",
[email protected]8a3f8242014-06-05 18:05:122545 "http/http_transaction_test_util.cc",
2546 "http/http_transaction_test_util.h",
vishal.b62985ca92015-04-17 08:45:512547 "log/test_net_log.cc",
2548 "log/test_net_log.h",
mmenke43758e62015-05-04 21:09:462549 "log/test_net_log_entry.cc",
2550 "log/test_net_log_entry.h",
mmenke0034c542015-05-05 22:34:592551 "log/test_net_log_util.cc",
mmenke43758e62015-05-04 21:09:462552 "log/test_net_log_util.h",
tbansal785a6ab2016-10-10 20:19:282553 "nqe/network_quality_estimator_test_util.cc",
2554 "nqe/network_quality_estimator_test_util.h",
Lily Houghton582d4622018-01-22 22:43:402555 "proxy_resolution/mock_pac_file_fetcher.cc",
2556 "proxy_resolution/mock_pac_file_fetcher.h",
2557 "proxy_resolution/mock_proxy_resolver.cc",
2558 "proxy_resolution/mock_proxy_resolver.h",
2559 "proxy_resolution/proxy_config_service_common_unittest.cc",
2560 "proxy_resolution/proxy_config_service_common_unittest.h",
[email protected]8603c5de2014-04-16 20:34:312561 "socket/socket_test_util.cc",
2562 "socket/socket_test_util.h",
Bence Béky94658bf2018-05-11 19:22:582563 "spdy/spdy_test_util_common.cc",
2564 "spdy/spdy_test_util_common.h",
mattm436ccfe2017-06-19 20:24:082565 "ssl/client_cert_identity_test_util.cc",
2566 "ssl/client_cert_identity_test_util.h",
2567 "ssl/ssl_private_key_test_util.cc",
2568 "ssl/ssl_private_key_test_util.h",
[email protected]8603c5de2014-04-16 20:34:312569 "test/cert_test_util.cc",
2570 "test/cert_test_util.h",
[email protected]83e1ae32014-07-18 10:57:072571 "test/cert_test_util_nss.cc",
nharper2e171cf2015-06-01 20:29:232572 "test/channel_id_test_util.cc",
2573 "test/channel_id_test_util.h",
[email protected]8603c5de2014-04-16 20:34:312574 "test/ct_test_util.cc",
2575 "test/ct_test_util.h",
John Abd-El-Malekf071beb2018-01-30 18:03:242576 "test/embedded_test_server/controllable_http_response.cc",
2577 "test/embedded_test_server/controllable_http_response.h",
svaldez7d25c562015-10-30 19:09:452578 "test/embedded_test_server/default_handlers.cc",
2579 "test/embedded_test_server/default_handlers.h",
[email protected]8603c5de2014-04-16 20:34:312580 "test/embedded_test_server/embedded_test_server.cc",
2581 "test/embedded_test_server/embedded_test_server.h",
mmenke392ec462017-03-23 18:49:352582 "test/embedded_test_server/embedded_test_server_connection_listener.h",
[email protected]8603c5de2014-04-16 20:34:312583 "test/embedded_test_server/http_connection.cc",
2584 "test/embedded_test_server/http_connection.h",
2585 "test/embedded_test_server/http_request.cc",
2586 "test/embedded_test_server/http_request.h",
2587 "test/embedded_test_server/http_response.cc",
2588 "test/embedded_test_server/http_response.h",
svaldez6e7e82a22015-10-28 19:39:532589 "test/embedded_test_server/request_handler_util.cc",
2590 "test/embedded_test_server/request_handler_util.h",
mmenke93be9ca2017-05-23 16:29:132591 "test/embedded_test_server/simple_connection_listener.cc",
2592 "test/embedded_test_server/simple_connection_listener.h",
sammc6ac3fe52015-02-25 06:00:282593 "test/event_waiter.h",
johnme36ae5802016-05-10 15:46:242594 "test/gtest_util.h",
mattmc1ec9d92017-05-25 01:40:302595 "test/keychain_test_util_mac.cc",
2596 "test/keychain_test_util_mac.h",
[email protected]8603c5de2014-04-16 20:34:312597 "test/net_test_suite.cc",
2598 "test/net_test_suite.h",
Misha Efimov2f3f8ed2018-03-06 13:27:282599 "test/quic_simple_test_server.cc",
2600 "test/quic_simple_test_server.h",
johnme36ae5802016-05-10 15:46:242601 "test/scoped_disable_exit_on_dfatal.cc",
2602 "test/scoped_disable_exit_on_dfatal.h",
Sergey Ulanov7de85802018-01-19 19:50:342603 "test/tcp_socket_proxy.cc",
2604 "test/tcp_socket_proxy.h",
brettw6315e032015-11-27 18:38:362605 "test/test_certificate_data.h",
rsleevia69c79a2016-06-22 03:28:432606 "test/test_data_directory.cc",
2607 "test/test_data_directory.h",
Bence Béky98447b12018-05-08 03:14:012608 "test/test_with_scoped_task_environment.h",
sherouk51b4b098b2015-08-10 09:00:432609 "test/url_request/ssl_certificate_error_job.cc",
2610 "test/url_request/ssl_certificate_error_job.h",
Brett Wilson32ce17a2014-11-10 17:45:302611 "test/url_request/url_request_failed_job.cc",
2612 "test/url_request/url_request_failed_job.h",
xunjieli5d1f9892016-05-18 20:44:342613 "test/url_request/url_request_hanging_read_job.cc",
2614 "test/url_request/url_request_hanging_read_job.h",
mef3e826cf2014-12-13 18:40:402615 "test/url_request/url_request_mock_data_job.cc",
2616 "test/url_request/url_request_mock_data_job.h",
jam8e45cd72015-01-20 16:33:442617 "test/url_request/url_request_slow_download_job.cc",
2618 "test/url_request/url_request_slow_download_job.h",
[email protected]8603c5de2014-04-16 20:34:312619 "url_request/test_url_fetcher_factory.cc",
2620 "url_request/test_url_fetcher_factory.h",
2621 "url_request/url_request_test_util.cc",
2622 "url_request/url_request_test_util.h",
2623 ]
2624
Ryan Sleevic2fcac62017-12-21 16:37:042625 configs += [ "//build/config:precompiled_headers" ]
[email protected]8603c5de2014-04-16 20:34:312626
Brett Wilsone53895272014-09-23 23:41:462627 public_deps = [
[email protected]8603c5de2014-04-16 20:34:312628 "//base",
2629 "//base/test:test_support",
[email protected]22fe91d2014-08-12 17:07:122630 "//crypto",
[email protected]59ff2d42014-04-22 22:25:232631 "//net",
Eric Orth24feb5b2018-05-25 19:42:462632 "//net/dns:test_support",
[email protected]8603c5de2014-04-16 20:34:312633 "//net/tools/tld_cleanup",
Veranika Liaukevich8a686442018-05-29 18:55:122634 "//net/traffic_annotation:test_support",
[email protected]8603c5de2014-04-16 20:34:312635 "//testing/gmock",
2636 "//testing/gtest",
2637 "//url",
2638 ]
2639
Matt Menke1dd3f2f2017-08-09 17:10:062640 deps = [
Misha Efimov2f3f8ed2018-03-06 13:27:282641 ":simple_quic_tools",
Matt Menke1dd3f2f2017-08-09 17:10:062642 "//third_party/zlib",
2643 ]
sdefresne04f91142016-04-21 08:41:592644
Eric Orth24feb5b2018-05-25 19:42:462645 allow_circular_includes_from = [ "//net/dns:test_support" ]
2646
jbudorick944eb922016-06-20 15:38:302647 data = [
2648 "data/",
2649 ]
2650
rsesek7d4ab4bc2016-07-22 17:35:132651 if (is_ios) {
2652 deps += [ ":test_support_bundle_data" ]
2653 } else {
jamb533b7e2015-03-04 17:12:052654 public_deps += [ "//third_party/protobuf:py_proto" ]
2655 }
2656
svaldez2135be52016-04-20 16:34:532657 if (use_nss_certs) {
scottmg34fb7e52014-12-03 23:27:242658 public_deps += [ "//crypto:platform" ]
[email protected]8603c5de2014-04-16 20:34:312659 }
2660
Sergey Ulanovec1d3de2017-09-19 19:27:472661 if (!is_ios) {
sherouk3eee4a82015-09-01 10:42:332662 sources += [
Sergey Ulanovec1d3de2017-09-19 19:27:472663 "test/spawned_test_server/base_test_server.cc",
2664 "test/spawned_test_server/base_test_server.h",
2665 "test/spawned_test_server/spawned_test_server.h",
2666 ]
Sergey Ulanov7de85802018-01-19 19:50:342667 }
Sergey Ulanovec1d3de2017-09-19 19:27:472668
Sergey Volk3ee3537f2018-06-12 01:45:482669 public_configs = [ ":net_test_config" ]
2670
Sergey Ulanov7de85802018-01-19 19:50:342671 if (use_remote_test_server) {
2672 sources += [
2673 "test/spawned_test_server/remote_test_server.cc",
2674 "test/spawned_test_server/remote_test_server.h",
2675 "test/spawned_test_server/remote_test_server_config.cc",
2676 "test/spawned_test_server/remote_test_server_config.h",
2677 "test/spawned_test_server/remote_test_server_spawner_request.cc",
2678 "test/spawned_test_server/remote_test_server_spawner_request.h",
2679 ]
2680 } else if (!is_ios) {
2681 sources += [
2682 "test/spawned_test_server/local_test_server.cc",
2683 "test/spawned_test_server/local_test_server.h",
Sergey Ulanov7de85802018-01-19 19:50:342684 ]
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:582685 if (is_win) {
2686 sources += [ "test/spawned_test_server/local_test_server_win.cc" ]
2687 } else if (is_posix || is_fuchsia) {
2688 sources += [ "test/spawned_test_server/local_test_server_posix.cc" ]
2689 }
Sergey Ulanovec1d3de2017-09-19 19:27:472690 }
2691
2692 if (enable_python_utils) {
2693 sources += [
2694 "test/python_utils.cc",
2695 "test/python_utils.h",
[email protected]8603c5de2014-04-16 20:34:312696 ]
2697 }
2698
2699 if (use_v8_in_net) {
Brett Wilsone53895272014-09-23 23:41:462700 public_deps += [ ":net_with_v8" ]
[email protected]8603c5de2014-04-16 20:34:312701 }
2702
davidben15d69d482014-09-29 18:24:082703 if (!use_nss_certs) {
scottmg34fb7e52014-12-03 23:27:242704 sources -= [ "test/cert_test_util_nss.cc" ]
[email protected]83e1ae32014-07-18 10:57:072705 }
xunjielia6888202015-04-14 21:34:252706
2707 if (!disable_file_support) {
2708 sources += [
2709 "test/url_request/url_request_mock_http_job.cc",
2710 "test/url_request/url_request_mock_http_job.h",
2711 "url_request/test_url_request_interceptor.cc",
2712 "url_request/test_url_request_interceptor.h",
2713 ]
2714 }
Eric Orthb812a442018-05-04 20:26:482715
2716 if (enable_reporting) {
2717 sources += [
2718 "reporting/reporting_test_util.cc",
2719 "reporting/reporting_test_util.h",
2720 ]
2721 }
[email protected]8603c5de2014-04-16 20:34:312722}
2723
2724if (use_v8_in_net) {
2725 component("net_with_v8") {
2726 sources = [
Lily Houghton582d4622018-01-22 22:43:402727 "proxy_resolution/proxy_resolver_v8.cc",
2728 "proxy_resolution/proxy_resolver_v8.h",
2729 "proxy_resolution/proxy_resolver_v8_tracing.cc",
2730 "proxy_resolution/proxy_resolver_v8_tracing.h",
2731 "proxy_resolution/proxy_resolver_v8_tracing_wrapper.cc",
2732 "proxy_resolution/proxy_resolver_v8_tracing_wrapper.h",
[email protected]8603c5de2014-04-16 20:34:312733 ]
2734
2735 defines = [ "NET_IMPLEMENTATION" ]
dprankea22b0732015-10-21 21:15:112736
[email protected]8603c5de2014-04-16 20:34:312737 configs += [
[email protected]8603c5de2014-04-16 20:34:312738 "//build/config/compiler:wexit_time_destructors",
dprankea22b0732015-10-21 21:15:112739 "//v8:external_startup_data",
[email protected]8603c5de2014-04-16 20:34:312740 ]
2741
Brett Wilsone53895272014-09-23 23:41:462742 public_deps = [
xunjieli0b7f5b62016-12-06 20:43:482743 ":constants",
[email protected]8603c5de2014-04-16 20:34:312744 ":net",
Brett Wilsone53895272014-09-23 23:41:462745 ]
2746 deps = [
[email protected]8603c5de2014-04-16 20:34:312747 "//base",
2748 "//gin",
2749 "//url",
2750 "//v8",
2751 ]
2752 }
2753}
2754
2755if (!is_ios && !is_android) {
mattm36d89682016-06-08 22:22:402756 executable("cert_verify_tool") {
2757 testonly = true
2758 sources = [
2759 "tools/cert_verify_tool/cert_verify_tool.cc",
2760 "tools/cert_verify_tool/cert_verify_tool_util.cc",
2761 "tools/cert_verify_tool/cert_verify_tool_util.h",
2762 "tools/cert_verify_tool/verify_using_cert_verify_proc.cc",
2763 "tools/cert_verify_tool/verify_using_cert_verify_proc.h",
mattm3c66edc2016-07-13 22:40:422764 "tools/cert_verify_tool/verify_using_path_builder.cc",
2765 "tools/cert_verify_tool/verify_using_path_builder.h",
mattm36d89682016-06-08 22:22:402766 ]
2767
mattm36d89682016-06-08 22:22:402768 deps = [
2769 ":net",
2770 ":test_support",
2771 "//base",
mattm36d89682016-06-08 22:22:402772 "//build/win:default_exe_manifest",
2773 ]
mattm49957fe2017-03-02 01:45:292774
2775 if (is_mac) {
2776 libs = [ "Security.framework" ]
2777 }
mattm36d89682016-06-08 22:22:402778 }
2779
[email protected]8603c5de2014-04-16 20:34:312780 executable("crash_cache") {
Brett Wilson8f80ad0b2014-09-08 19:50:242781 testonly = true
scottmg34fb7e52014-12-03 23:27:242782 sources = [
2783 "tools/crash_cache/crash_cache.cc",
2784 ]
dpranke43276212015-02-20 02:55:192785
[email protected]8603c5de2014-04-16 20:34:312786 deps = [
2787 ":net",
[email protected]b2b2bf52014-05-28 20:26:572788 ":test_support",
[email protected]8603c5de2014-04-16 20:34:312789 "//base",
brucedawsonf9f7d6292016-04-27 19:11:072790 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312791 ]
2792 }
2793
[email protected]8603c5de2014-04-16 20:34:312794 executable("dns_fuzz_stub") {
Brett Wilson8f80ad0b2014-09-08 19:50:242795 testonly = true
scottmg34fb7e52014-12-03 23:27:242796 sources = [
2797 "tools/dns_fuzz_stub/dns_fuzz_stub.cc",
2798 ]
dpranke43276212015-02-20 02:55:192799
[email protected]8603c5de2014-04-16 20:34:312800 deps = [
2801 ":net",
2802 "//base",
brucedawsonf9f7d6292016-04-27 19:11:072803 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312804 ]
2805 }
2806
2807 executable("gdig") {
Brett Wilson8f80ad0b2014-09-08 19:50:242808 testonly = true
[email protected]8603c5de2014-04-16 20:34:312809 sources = [
2810 "tools/gdig/file_net_log.cc",
thakisb8590c92017-03-23 18:14:532811 "tools/gdig/file_net_log.h",
[email protected]8603c5de2014-04-16 20:34:312812 "tools/gdig/gdig.cc",
2813 ]
2814 deps = [
2815 ":net",
2816 "//base",
brucedawsonf9f7d6292016-04-27 19:11:072817 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312818 ]
2819 }
2820
rockot9c67e5f2015-03-12 20:01:212821 executable("hpack_example_generator") {
2822 testonly = true
2823 sources = [
Ryan Hamilton2e003eea2018-05-02 00:24:292824 "third_party/spdy/core/fuzzing/hpack_example_generator.cc",
rockot9c67e5f2015-03-12 20:01:212825 ]
2826
rockot9c67e5f2015-03-12 20:01:212827 deps = [
rockot9c67e5f2015-03-12 20:01:212828 ":net",
brettwba7a73d2015-08-31 22:17:392829 "//base",
brucedawsonf9f7d6292016-04-27 19:11:072830 "//build/win:default_exe_manifest",
rockot9c67e5f2015-03-12 20:01:212831 ]
2832 }
2833
[email protected]8603c5de2014-04-16 20:34:312834 if (use_v8_in_net) {
2835 executable("net_watcher") {
Brett Wilson8f80ad0b2014-09-08 19:50:242836 testonly = true
scottmg34fb7e52014-12-03 23:27:242837 sources = [
2838 "tools/net_watcher/net_watcher.cc",
2839 ]
[email protected]8603c5de2014-04-16 20:34:312840 deps = [
2841 ":net",
2842 ":net_with_v8",
2843 "//base",
brucedawsonf9f7d6292016-04-27 19:11:072844 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312845 ]
[email protected]8603c5de2014-04-16 20:34:312846 }
2847 }
2848
2849 executable("run_testserver") {
Brett Wilson8f80ad0b2014-09-08 19:50:242850 testonly = true
scottmg34fb7e52014-12-03 23:27:242851 sources = [
2852 "tools/testserver/run_testserver.cc",
2853 ]
[email protected]8603c5de2014-04-16 20:34:312854 deps = [
[email protected]b2b2bf52014-05-28 20:26:572855 ":test_support",
[email protected]8603c5de2014-04-16 20:34:312856 "//base",
2857 "//base/test:test_support",
brucedawsonf9f7d6292016-04-27 19:11:072858 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312859 "//testing/gtest",
2860 ]
2861 }
2862
2863 executable("stress_cache") {
Brett Wilson8f80ad0b2014-09-08 19:50:242864 testonly = true
scottmg34fb7e52014-12-03 23:27:242865 sources = [
rvargase23fcf652015-03-04 19:59:222866 "tools/stress_cache/stress_cache.cc",
scottmg34fb7e52014-12-03 23:27:242867 ]
dpranke43276212015-02-20 02:55:192868
[email protected]8603c5de2014-04-16 20:34:312869 deps = [
2870 ":net",
[email protected]b2b2bf52014-05-28 20:26:572871 ":test_support",
[email protected]8603c5de2014-04-16 20:34:312872 "//base",
brucedawsonf9f7d6292016-04-27 19:11:072873 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312874 ]
2875 }
2876
2877 executable("tld_cleanup") {
scottmg34fb7e52014-12-03 23:27:242878 sources = [
2879 "tools/tld_cleanup/tld_cleanup.cc",
2880 ]
dpranke43276212015-02-20 02:55:192881
[email protected]8603c5de2014-04-16 20:34:312882 deps = [
2883 "//base",
2884 "//base:i18n",
brucedawsonf9f7d6292016-04-27 19:11:072885 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312886 "//net/tools/tld_cleanup",
2887 ]
2888 }
2889}
2890
gabadie0774bee2016-05-12 14:02:582891if (is_linux || is_mac) {
gabadie64af64a2016-03-29 16:36:422892 executable("cachetool") {
2893 testonly = true
2894 sources = [
2895 "tools/cachetool/cachetool.cc",
2896 ]
2897 deps = [
2898 ":net",
2899 ":test_support",
2900 "//base",
2901 ]
2902 }
2903
2904 executable("content_decoder_tool") {
2905 testonly = true
2906 sources = [
gabadie64af64a2016-03-29 16:36:422907 "tools/content_decoder_tool/content_decoder_tool.cc",
xunjielibb2d9f202016-11-01 16:37:272908 "tools/content_decoder_tool/content_decoder_tool.h",
2909 "tools/content_decoder_tool/content_decoder_tool_bin.cc",
gabadie64af64a2016-03-29 16:36:422910 ]
2911 deps = [
2912 ":net",
2913 ":test_support",
2914 "//base",
2915 "//url",
2916 ]
2917 }
gabadie0774bee2016-05-12 14:02:582918}
gabadie64af64a2016-03-29 16:36:422919
gabadie0774bee2016-05-12 14:02:582920if (is_linux) {
[email protected]8a3f8242014-06-05 18:05:122921 static_library("epoll_server") {
[email protected]8603c5de2014-04-16 20:34:312922 sources = [
2923 "tools/epoll_server/epoll_server.cc",
2924 "tools/epoll_server/epoll_server.h",
2925 ]
2926 deps = [
2927 ":net",
2928 "//base",
2929 ]
2930 }
2931
rch216445c2015-03-27 00:23:282932 source_set("epoll_quic_tools") {
[email protected]8603c5de2014-04-16 20:34:312933 sources = [
Ryan Hamilton56b10c5d2018-05-11 13:40:162934 "third_party/quic/core/quic_default_packet_writer.cc",
2935 "third_party/quic/core/quic_default_packet_writer.h",
2936 "third_party/quic/core/quic_epoll_alarm_factory.cc",
2937 "third_party/quic/core/quic_epoll_alarm_factory.h",
2938 "third_party/quic/core/quic_epoll_connection_helper.cc",
2939 "third_party/quic/core/quic_epoll_connection_helper.h",
2940 "third_party/quic/core/quic_packet_reader.cc",
2941 "third_party/quic/core/quic_packet_reader.h",
2942 "third_party/quic/core/quic_packet_writer_wrapper.cc",
2943 "third_party/quic/core/quic_packet_writer_wrapper.h",
2944 "third_party/quic/platform/impl/quic_epoll_clock.cc",
2945 "third_party/quic/platform/impl/quic_epoll_clock.h",
2946 "third_party/quic/platform/impl/quic_socket_utils.cc",
2947 "third_party/quic/platform/impl/quic_socket_utils.h",
2948 "third_party/quic/tools/quic_client.cc",
2949 "third_party/quic/tools/quic_client.h",
2950 "third_party/quic/tools/quic_client_epoll_network_helper.cc",
2951 "third_party/quic/tools/quic_client_epoll_network_helper.h",
2952 "third_party/quic/tools/quic_server.cc",
2953 "third_party/quic/tools/quic_server.h",
[email protected]8603c5de2014-04-16 20:34:312954 ]
2955 deps = [
[email protected]8603c5de2014-04-16 20:34:312956 ":epoll_server",
2957 ":net",
tfarina8ac4d17f2015-12-16 02:11:112958 ":simple_quic_tools",
[email protected]8603c5de2014-04-16 20:34:312959 "//base",
2960 "//base/third_party/dynamic_annotations",
2961 "//crypto",
[email protected]edfd0f42014-07-22 18:20:372962 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:312963 "//url",
2964 ]
2965 }
2966
rch216445c2015-03-27 00:23:282967 executable("epoll_quic_client") {
scottmg34fb7e52014-12-03 23:27:242968 sources = [
Ryan Hamilton56b10c5d2018-05-11 13:40:162969 "third_party/quic/tools/quic_client_bin.cc",
scottmg34fb7e52014-12-03 23:27:242970 ]
[email protected]8603c5de2014-04-16 20:34:312971 deps = [
rch216445c2015-03-27 00:23:282972 ":epoll_quic_tools",
agrieved7a71c882015-11-20 19:53:282973 ":epoll_server",
rch216445c2015-03-27 00:23:282974 ":net",
2975 ":simple_quic_tools",
2976 "//base",
2977 "//third_party/boringssl",
2978 ]
2979 }
2980
2981 executable("epoll_quic_server") {
2982 sources = [
Ryan Hamilton56b10c5d2018-05-11 13:40:162983 "third_party/quic/tools/quic_server_bin.cc",
rch216445c2015-03-27 00:23:282984 ]
2985 deps = [
rch216445c2015-03-27 00:23:282986 ":epoll_quic_tools",
agrieved7a71c882015-11-20 19:53:282987 ":epoll_server",
[email protected]8603c5de2014-04-16 20:34:312988 ":net",
rchda78df5a2015-03-22 05:16:372989 ":simple_quic_tools",
[email protected]8603c5de2014-04-16 20:34:312990 "//base",
[email protected]edfd0f42014-07-22 18:20:372991 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:312992 ]
2993 }
[email protected]8603c5de2014-04-16 20:34:312994}
2995
[email protected]ef0eb442014-05-15 09:32:182996if (is_android) {
2997 generate_jni("net_jni_headers") {
2998 sources = [
tbansalc04b7aa2016-07-02 06:54:372999 "android/java/src/org/chromium/net/AndroidCellularSignalStrength.java",
[email protected]ef0eb442014-05-15 09:32:183000 "android/java/src/org/chromium/net/AndroidCertVerifyResult.java",
3001 "android/java/src/org/chromium/net/AndroidKeyStore.java",
3002 "android/java/src/org/chromium/net/AndroidNetworkLibrary.java",
tbansal59a1ddc2015-09-14 17:35:013003 "android/java/src/org/chromium/net/AndroidTrafficStats.java",
[email protected]ef0eb442014-05-15 09:32:183004 "android/java/src/org/chromium/net/GURLUtils.java",
aberentec894a52015-07-09 14:45:533005 "android/java/src/org/chromium/net/HttpNegotiateAuthenticator.java",
xunjieli905496a2015-08-31 15:51:173006 "android/java/src/org/chromium/net/NetStringUtil.java",
[email protected]ef0eb442014-05-15 09:32:183007 "android/java/src/org/chromium/net/NetworkChangeNotifier.java",
3008 "android/java/src/org/chromium/net/ProxyChangeListener.java",
3009 "android/java/src/org/chromium/net/X509Util.java",
3010 ]
3011 jni_package = "net"
3012 }
cjhopmandad5f4272014-09-05 01:00:553013 generate_jni("net_test_jni_headers") {
3014 sources = [
3015 "android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java",
mgershd21d6d142016-12-14 23:06:363016 "android/javatests/src/org/chromium/net/AndroidNetworkLibraryTestUtil.java",
pauljensen6815aef2017-05-05 03:00:063017 "android/javatests/src/org/chromium/net/AndroidProxyConfigServiceTestUtil.java",
aberentec894a52015-07-09 14:45:533018 "test/android/javatests/src/org/chromium/net/test/DummySpnegoAuthenticator.java",
jbudorickccffb982015-12-22 01:21:353019 "test/android/javatests/src/org/chromium/net/test/EmbeddedTestServerImpl.java",
cjhopmandad5f4272014-09-05 01:00:553020 ]
brettwcdccaf02015-07-27 16:27:093021 jni_package = "net/test"
cjhopmandad5f4272014-09-05 01:00:553022 }
[email protected]ef0eb442014-05-15 09:32:183023}
[email protected]8603c5de2014-04-16 20:34:313024
3025if (is_android || is_linux) {
3026 executable("disk_cache_memory_test") {
Brett Wilson8f80ad0b2014-09-08 19:50:243027 testonly = true
scottmg34fb7e52014-12-03 23:27:243028 sources = [
3029 "tools/disk_cache_memory_test/disk_cache_memory_test.cc",
3030 ]
[email protected]8603c5de2014-04-16 20:34:313031 deps = [
3032 ":net",
3033 "//base",
3034 ]
3035 }
3036}
[email protected]8a3f8242014-06-05 18:05:123037
xunjielicc6b1d02017-06-05 16:51:403038source_set("quic_test_tools") {
3039 testonly = true
3040 sources = [
3041 "quic/chromium/crypto_test_utils_chromium.cc",
Victor Vasiliev3b5cf152018-07-02 18:47:413042 "third_party/quic/core/quic_trace_visitor.cc",
3043 "third_party/quic/core/quic_trace_visitor.h",
Ryan Hamiltonb8382972018-06-30 03:26:493044 "third_party/quic/platform/api/quic_hkdf_test.cc",
Ryan Hamilton1ce45712018-06-27 20:26:263045 "third_party/quic/platform/api/quic_mock_log.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163046 "third_party/quic/platform/api/quic_test.h",
3047 "third_party/quic/platform/api/quic_test_loopback.cc",
3048 "third_party/quic/platform/api/quic_test_loopback.h",
3049 "third_party/quic/platform/api/quic_test_mem_slice_vector.h",
Victor Vasiliev0ac6bd832018-05-19 00:14:443050 "third_party/quic/platform/api/quic_test_output.h",
Ryan Hamilton1ce45712018-06-27 20:26:263051 "third_party/quic/platform/impl/quic_mock_log_impl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163052 "third_party/quic/platform/impl/quic_test_impl.cc",
3053 "third_party/quic/platform/impl/quic_test_impl.h",
3054 "third_party/quic/platform/impl/quic_test_loopback_impl.cc",
3055 "third_party/quic/platform/impl/quic_test_loopback_impl.h",
3056 "third_party/quic/platform/impl/quic_test_mem_slice_vector_impl.cc",
3057 "third_party/quic/platform/impl/quic_test_mem_slice_vector_impl.h",
Victor Vasiliev0ac6bd832018-05-19 00:14:443058 "third_party/quic/platform/impl/quic_test_output_impl.cc",
3059 "third_party/quic/platform/impl/quic_test_output_impl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163060 "third_party/quic/test_tools/crypto_test_utils.cc",
3061 "third_party/quic/test_tools/crypto_test_utils.h",
3062 "third_party/quic/test_tools/failing_proof_source.cc",
3063 "third_party/quic/test_tools/failing_proof_source.h",
3064 "third_party/quic/test_tools/fake_proof_source.cc",
3065 "third_party/quic/test_tools/fake_proof_source.h",
3066 "third_party/quic/test_tools/mock_clock.cc",
3067 "third_party/quic/test_tools/mock_clock.h",
3068 "third_party/quic/test_tools/mock_crypto_client_stream.cc",
3069 "third_party/quic/test_tools/mock_crypto_client_stream.h",
3070 "third_party/quic/test_tools/mock_decrypter.cc",
3071 "third_party/quic/test_tools/mock_decrypter.h",
3072 "third_party/quic/test_tools/mock_encrypter.cc",
3073 "third_party/quic/test_tools/mock_encrypter.h",
3074 "third_party/quic/test_tools/mock_quic_client_promised_info.cc",
3075 "third_party/quic/test_tools/mock_quic_client_promised_info.h",
3076 "third_party/quic/test_tools/mock_quic_dispatcher.cc",
3077 "third_party/quic/test_tools/mock_quic_dispatcher.h",
3078 "third_party/quic/test_tools/mock_quic_session_visitor.cc",
3079 "third_party/quic/test_tools/mock_quic_session_visitor.h",
3080 "third_party/quic/test_tools/mock_quic_spdy_client_stream.cc",
3081 "third_party/quic/test_tools/mock_quic_spdy_client_stream.h",
3082 "third_party/quic/test_tools/mock_random.cc",
3083 "third_party/quic/test_tools/mock_random.h",
3084 "third_party/quic/test_tools/quic_buffered_packet_store_peer.cc",
3085 "third_party/quic/test_tools/quic_buffered_packet_store_peer.h",
3086 "third_party/quic/test_tools/quic_client_promised_info_peer.cc",
3087 "third_party/quic/test_tools/quic_client_promised_info_peer.h",
3088 "third_party/quic/test_tools/quic_config_peer.cc",
3089 "third_party/quic/test_tools/quic_config_peer.h",
3090 "third_party/quic/test_tools/quic_connection_peer.cc",
3091 "third_party/quic/test_tools/quic_connection_peer.h",
3092 "third_party/quic/test_tools/quic_crypto_server_config_peer.cc",
3093 "third_party/quic/test_tools/quic_crypto_server_config_peer.h",
3094 "third_party/quic/test_tools/quic_flow_controller_peer.cc",
3095 "third_party/quic/test_tools/quic_flow_controller_peer.h",
3096 "third_party/quic/test_tools/quic_framer_peer.cc",
3097 "third_party/quic/test_tools/quic_framer_peer.h",
3098 "third_party/quic/test_tools/quic_packet_creator_peer.cc",
3099 "third_party/quic/test_tools/quic_packet_creator_peer.h",
3100 "third_party/quic/test_tools/quic_packet_generator_peer.cc",
3101 "third_party/quic/test_tools/quic_packet_generator_peer.h",
3102 "third_party/quic/test_tools/quic_sent_packet_manager_peer.cc",
3103 "third_party/quic/test_tools/quic_sent_packet_manager_peer.h",
3104 "third_party/quic/test_tools/quic_session_peer.cc",
3105 "third_party/quic/test_tools/quic_session_peer.h",
3106 "third_party/quic/test_tools/quic_spdy_session_peer.cc",
3107 "third_party/quic/test_tools/quic_spdy_session_peer.h",
3108 "third_party/quic/test_tools/quic_spdy_stream_peer.cc",
3109 "third_party/quic/test_tools/quic_spdy_stream_peer.h",
3110 "third_party/quic/test_tools/quic_stream_peer.cc",
3111 "third_party/quic/test_tools/quic_stream_peer.h",
3112 "third_party/quic/test_tools/quic_stream_send_buffer_peer.cc",
3113 "third_party/quic/test_tools/quic_stream_send_buffer_peer.h",
3114 "third_party/quic/test_tools/quic_stream_sequencer_buffer_peer.cc",
3115 "third_party/quic/test_tools/quic_stream_sequencer_buffer_peer.h",
3116 "third_party/quic/test_tools/quic_stream_sequencer_peer.cc",
3117 "third_party/quic/test_tools/quic_stream_sequencer_peer.h",
3118 "third_party/quic/test_tools/quic_sustained_bandwidth_recorder_peer.cc",
3119 "third_party/quic/test_tools/quic_sustained_bandwidth_recorder_peer.h",
3120 "third_party/quic/test_tools/quic_test_utils.cc",
3121 "third_party/quic/test_tools/quic_test_utils.h",
3122 "third_party/quic/test_tools/quic_time_wait_list_manager_peer.cc",
3123 "third_party/quic/test_tools/quic_time_wait_list_manager_peer.h",
3124 "third_party/quic/test_tools/rtt_stats_peer.cc",
3125 "third_party/quic/test_tools/rtt_stats_peer.h",
3126 "third_party/quic/test_tools/simple_data_producer.cc",
3127 "third_party/quic/test_tools/simple_data_producer.h",
3128 "third_party/quic/test_tools/simple_quic_framer.cc",
3129 "third_party/quic/test_tools/simple_quic_framer.h",
3130 "third_party/quic/test_tools/simple_session_notifier.cc",
3131 "third_party/quic/test_tools/simple_session_notifier.h",
3132 "third_party/quic/test_tools/simulator/actor.cc",
3133 "third_party/quic/test_tools/simulator/actor.h",
3134 "third_party/quic/test_tools/simulator/alarm_factory.cc",
3135 "third_party/quic/test_tools/simulator/alarm_factory.h",
3136 "third_party/quic/test_tools/simulator/link.cc",
3137 "third_party/quic/test_tools/simulator/link.h",
3138 "third_party/quic/test_tools/simulator/packet_filter.cc",
3139 "third_party/quic/test_tools/simulator/packet_filter.h",
3140 "third_party/quic/test_tools/simulator/port.cc",
3141 "third_party/quic/test_tools/simulator/port.h",
3142 "third_party/quic/test_tools/simulator/queue.cc",
3143 "third_party/quic/test_tools/simulator/queue.h",
3144 "third_party/quic/test_tools/simulator/quic_endpoint.cc",
3145 "third_party/quic/test_tools/simulator/quic_endpoint.h",
3146 "third_party/quic/test_tools/simulator/simulator.cc",
3147 "third_party/quic/test_tools/simulator/simulator.h",
3148 "third_party/quic/test_tools/simulator/switch.cc",
3149 "third_party/quic/test_tools/simulator/switch.h",
3150 "third_party/quic/test_tools/simulator/traffic_policer.cc",
3151 "third_party/quic/test_tools/simulator/traffic_policer.h",
xunjielicc6b1d02017-06-05 16:51:403152 ]
3153 deps = [
3154 ":net",
3155 ":simple_quic_tools",
3156 ":test_support",
3157 "//base",
3158 "//crypto:test_support",
3159 "//testing/gmock",
3160 "//testing/gtest",
3161 "//third_party/boringssl",
3162 "//third_party/protobuf:protobuf_lite",
Victor Vasiliev3b5cf152018-07-02 18:47:413163 "//third_party/quic_trace:quic_trace_proto",
xunjielicc6b1d02017-06-05 16:51:403164 ]
3165
3166 if (is_linux) {
3167 sources += [
Ryan Hamilton56b10c5d2018-05-11 13:40:163168 "third_party/quic/test_tools/bad_packet_writer.cc",
3169 "third_party/quic/test_tools/bad_packet_writer.h",
3170 "third_party/quic/test_tools/limited_mtu_test_writer.cc",
3171 "third_party/quic/test_tools/limited_mtu_test_writer.h",
3172 "third_party/quic/test_tools/mock_epoll_server.cc",
3173 "third_party/quic/test_tools/mock_epoll_server.h",
3174 "third_party/quic/test_tools/mock_quic_time_wait_list_manager.cc",
3175 "third_party/quic/test_tools/mock_quic_time_wait_list_manager.h",
3176 "third_party/quic/test_tools/packet_dropping_test_writer.cc",
3177 "third_party/quic/test_tools/packet_dropping_test_writer.h",
3178 "third_party/quic/test_tools/packet_reordering_writer.cc",
3179 "third_party/quic/test_tools/packet_reordering_writer.h",
3180 "third_party/quic/test_tools/quic_client_peer.cc",
3181 "third_party/quic/test_tools/quic_client_peer.h",
3182 "third_party/quic/test_tools/quic_dispatcher_peer.cc",
3183 "third_party/quic/test_tools/quic_dispatcher_peer.h",
3184 "third_party/quic/test_tools/quic_server_peer.cc",
3185 "third_party/quic/test_tools/quic_server_peer.h",
3186 "third_party/quic/test_tools/quic_test_client.cc",
3187 "third_party/quic/test_tools/quic_test_client.h",
3188 "third_party/quic/test_tools/quic_test_server.cc",
3189 "third_party/quic/test_tools/quic_test_server.h",
3190 "third_party/quic/test_tools/server_thread.cc",
3191 "third_party/quic/test_tools/server_thread.h",
xunjielicc6b1d02017-06-05 16:51:403192 ]
3193 deps += [
3194 ":epoll_quic_tools",
3195 ":epoll_server",
3196 ]
3197 }
3198}
3199
rch47ad01f2015-03-20 21:17:233200source_set("simple_quic_tools") {
rcha9d12ce12015-03-19 23:06:493201 sources = [
Ryan Hamilton56b10c5d2018-05-11 13:40:163202 "third_party/quic/core/chlo_extractor.cc",
3203 "third_party/quic/core/chlo_extractor.h",
3204 "third_party/quic/core/quic_dispatcher.cc",
3205 "third_party/quic/core/quic_dispatcher.h",
3206 "third_party/quic/core/quic_per_connection_packet_writer.cc",
3207 "third_party/quic/core/quic_per_connection_packet_writer.h",
3208 "third_party/quic/core/quic_process_packet_interface.h",
3209 "third_party/quic/core/quic_spdy_client_session.cc",
3210 "third_party/quic/core/quic_spdy_client_session.h",
3211 "third_party/quic/core/quic_spdy_client_stream.cc",
3212 "third_party/quic/core/quic_spdy_client_stream.h",
3213 "third_party/quic/core/quic_spdy_server_stream_base.cc",
3214 "third_party/quic/core/quic_spdy_server_stream_base.h",
3215 "third_party/quic/core/quic_time_wait_list_manager.cc",
3216 "third_party/quic/core/quic_time_wait_list_manager.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163217 "third_party/quic/core/stateless_rejector.cc",
3218 "third_party/quic/core/stateless_rejector.h",
Rajesh Mahindrae6c0da12018-05-17 21:02:543219 "third_party/quic/tools/quic_backend_response.cc",
3220 "third_party/quic/tools/quic_backend_response.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163221 "third_party/quic/tools/quic_client_base.cc",
3222 "third_party/quic/tools/quic_client_base.h",
Rajesh Mahindrae6c0da12018-05-17 21:02:543223 "third_party/quic/tools/quic_memory_cache_backend.cc",
3224 "third_party/quic/tools/quic_memory_cache_backend.h",
Victor Vasiliev71846d62018-05-17 18:06:193225 "third_party/quic/tools/quic_simple_client_session.cc",
3226 "third_party/quic/tools/quic_simple_client_session.h",
3227 "third_party/quic/tools/quic_simple_client_stream.cc",
3228 "third_party/quic/tools/quic_simple_client_stream.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163229 "third_party/quic/tools/quic_simple_crypto_server_stream_helper.cc",
3230 "third_party/quic/tools/quic_simple_crypto_server_stream_helper.h",
3231 "third_party/quic/tools/quic_simple_dispatcher.cc",
3232 "third_party/quic/tools/quic_simple_dispatcher.h",
3233 "third_party/quic/tools/quic_simple_server_session.cc",
3234 "third_party/quic/tools/quic_simple_server_session.h",
3235 "third_party/quic/tools/quic_simple_server_stream.cc",
3236 "third_party/quic/tools/quic_simple_server_stream.h",
3237 "third_party/quic/tools/quic_spdy_client_base.cc",
3238 "third_party/quic/tools/quic_spdy_client_base.h",
Ryan Hamiltonc4402302017-08-10 01:55:463239 "tools/quic/quic_client_message_loop_network_helper.cc",
3240 "tools/quic/quic_client_message_loop_network_helper.h",
rcha9d12ce12015-03-19 23:06:493241 "tools/quic/quic_simple_client.cc",
3242 "tools/quic/quic_simple_client.h",
rch216445c2015-03-27 00:23:283243 "tools/quic/quic_simple_per_connection_packet_writer.cc",
3244 "tools/quic/quic_simple_per_connection_packet_writer.h",
3245 "tools/quic/quic_simple_server.cc",
3246 "tools/quic/quic_simple_server.h",
3247 "tools/quic/quic_simple_server_packet_writer.cc",
3248 "tools/quic/quic_simple_server_packet_writer.h",
mpwb5c8da92016-06-05 20:07:313249 "tools/quic/quic_simple_server_session_helper.cc",
3250 "tools/quic/quic_simple_server_session_helper.h",
rchda78df5a2015-03-22 05:16:373251 "tools/quic/synchronous_host_resolver.cc",
3252 "tools/quic/synchronous_host_resolver.h",
rcha9d12ce12015-03-19 23:06:493253 ]
3254 deps = [
3255 ":net",
3256 "//base",
rch47ad01f2015-03-20 21:17:233257 "//base/third_party/dynamic_annotations",
Victor Vasiliev44700b6e2018-05-06 23:23:223258 "//third_party/protobuf:protobuf_lite",
rch47ad01f2015-03-20 21:17:233259 "//url",
3260 ]
3261}
3262
sherouk51b4b098b2015-08-10 09:00:433263if (!is_ios) {
3264 executable("quic_client") {
3265 sources = [
3266 "tools/quic/quic_simple_client_bin.cc",
3267 ]
3268 deps = [
3269 ":net",
3270 ":simple_quic_tools",
3271 "//base",
brucedawsonf9f7d6292016-04-27 19:11:073272 "//build/win:default_exe_manifest",
sherouk51b4b098b2015-08-10 09:00:433273 "//url",
3274 ]
3275 }
3276 executable("quic_server") {
3277 sources = [
3278 "tools/quic/quic_simple_server_bin.cc",
3279 ]
3280 deps = [
3281 ":net",
3282 ":simple_quic_tools",
3283 "//base",
brucedawsonf9f7d6292016-04-27 19:11:073284 "//build/win:default_exe_manifest",
sherouk51b4b098b2015-08-10 09:00:433285 "//third_party/boringssl",
3286 "//third_party/protobuf:protobuf_lite",
3287 ]
3288 }
rchf80f62d12016-05-11 00:47:313289 executable("quic_packet_printer") {
3290 sources = [
Ryan Hamilton56b10c5d2018-05-11 13:40:163291 "third_party/quic/tools/quic_packet_printer_bin.cc",
rchf80f62d12016-05-11 00:47:313292 ]
3293 deps = [
3294 ":net",
3295 ":simple_quic_tools",
3296 "//base",
rchf80f62d12016-05-11 00:47:313297 "//build/win:default_exe_manifest",
3298 "//third_party/boringssl",
3299 "//third_party/protobuf:protobuf_lite",
3300 ]
3301 }
mpwbbea85d2016-08-27 14:39:213302 executable("quic_reject_reason_decoder") {
3303 sources = [
Ryan Hamilton56b10c5d2018-05-11 13:40:163304 "third_party/quic/tools/quic_reject_reason_decoder_bin.cc",
mpwbbea85d2016-08-27 14:39:213305 ]
3306 deps = [
3307 ":net",
3308 ":simple_quic_tools",
3309 "//base",
mpwbbea85d2016-08-27 14:39:213310 "//build/win:default_exe_manifest",
3311 "//third_party/boringssl",
3312 "//third_party/protobuf:protobuf_lite",
3313 ]
3314 }
danzh1401f0a2016-05-19 13:41:103315 executable("crypto_message_printer") {
3316 sources = [
3317 "tools/quic/crypto_message_printer_bin.cc",
3318 ]
3319 deps = [
3320 ":net",
3321 "//base",
danzh1401f0a2016-05-19 13:41:103322 "//build/win:default_exe_manifest",
3323 ]
3324 }
rch216445c2015-03-27 00:23:283325}
3326
eromand5207a92017-05-05 17:49:363327# This section can be updated from globbing rules using:
3328# python ./tools/update_ios_bundle_data.py
sdefresneb0a31642016-03-18 11:04:453329bundle_data("net_unittests_bundle_data") {
3330 testonly = true
ckrasic73f7240b2017-01-24 00:06:453331 sources = [
3332 "data/cert_issuer_source_aia_unittest/i.pem",
3333 "data/cert_issuer_source_aia_unittest/i2.pem",
3334 "data/cert_issuer_source_aia_unittest/i3.pem",
eromand5207a92017-05-05 17:49:363335 "data/cert_issuer_source_aia_unittest/root.pem",
ckrasic73f7240b2017-01-24 00:06:453336 "data/cert_issuer_source_aia_unittest/target_file_aia.pem",
3337 "data/cert_issuer_source_aia_unittest/target_file_and_http_aia.pem",
3338 "data/cert_issuer_source_aia_unittest/target_invalid_and_http_aia.pem",
3339 "data/cert_issuer_source_aia_unittest/target_invalid_url_aia.pem",
3340 "data/cert_issuer_source_aia_unittest/target_no_aia.pem",
3341 "data/cert_issuer_source_aia_unittest/target_one_aia.pem",
3342 "data/cert_issuer_source_aia_unittest/target_six_aia.pem",
3343 "data/cert_issuer_source_aia_unittest/target_three_aia.pem",
3344 "data/cert_issuer_source_aia_unittest/target_two_aia.pem",
3345 "data/cert_issuer_source_static_unittest/c1.pem",
3346 "data/cert_issuer_source_static_unittest/c2.pem",
3347 "data/cert_issuer_source_static_unittest/d.pem",
3348 "data/cert_issuer_source_static_unittest/e1.pem",
3349 "data/cert_issuer_source_static_unittest/e2.pem",
3350 "data/cert_issuer_source_static_unittest/i1_1.pem",
3351 "data/cert_issuer_source_static_unittest/i1_2.pem",
3352 "data/cert_issuer_source_static_unittest/i2.pem",
3353 "data/cert_issuer_source_static_unittest/i3_1.pem",
3354 "data/cert_issuer_source_static_unittest/i3_2.pem",
3355 "data/cert_issuer_source_static_unittest/root.pem",
3356 "data/certificate_policies_unittest/anypolicy.pem",
3357 "data/certificate_policies_unittest/anypolicy_with_qualifier.pem",
3358 "data/certificate_policies_unittest/invalid-anypolicy_with_custom_qualifier.pem",
3359 "data/certificate_policies_unittest/invalid-empty.pem",
3360 "data/certificate_policies_unittest/invalid-policy_1_2_3_dupe.pem",
3361 "data/certificate_policies_unittest/invalid-policy_1_2_3_policyinformation_unconsumed_data.pem",
3362 "data/certificate_policies_unittest/invalid-policy_1_2_3_policyqualifierinfo_unconsumed_data.pem",
3363 "data/certificate_policies_unittest/invalid-policy_1_2_3_with_empty_qualifiers_sequence.pem",
3364 "data/certificate_policies_unittest/invalid-policy_identifier_not_oid.pem",
3365 "data/certificate_policies_unittest/policy_1_2_3.pem",
3366 "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4.pem",
3367 "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4_with_qualifiers.pem",
3368 "data/certificate_policies_unittest/policy_1_2_3_with_custom_qualifier.pem",
3369 "data/certificate_policies_unittest/policy_1_2_3_with_qualifier.pem",
jam29f1aed42017-06-06 21:37:433370 "data/embedded_test_server/mock-headers-without-crlf.html",
3371 "data/embedded_test_server/mock-headers-without-crlf.html.mock-http-headers",
ckrasic73f7240b2017-01-24 00:06:453372 "data/filter_unittests/google.br",
3373 "data/filter_unittests/google.txt",
3374 "data/name_constraints_unittest/directoryname-excludeall.pem",
3375 "data/name_constraints_unittest/directoryname-excluded.pem",
3376 "data/name_constraints_unittest/directoryname.pem",
3377 "data/name_constraints_unittest/directoryname_and_dnsname.pem",
3378 "data/name_constraints_unittest/directoryname_and_dnsname_and_ipaddress.pem",
3379 "data/name_constraints_unittest/dnsname-exclude_dot.pem",
3380 "data/name_constraints_unittest/dnsname-excludeall.pem",
3381 "data/name_constraints_unittest/dnsname-excluded.pem",
3382 "data/name_constraints_unittest/dnsname-excluded_with_leading_dot.pem",
3383 "data/name_constraints_unittest/dnsname-permitted_two_dot.pem",
3384 "data/name_constraints_unittest/dnsname-permitted_with_leading_dot.pem",
3385 "data/name_constraints_unittest/dnsname-with_max.pem",
3386 "data/name_constraints_unittest/dnsname-with_min_0.pem",
3387 "data/name_constraints_unittest/dnsname-with_min_0_and_max.pem",
3388 "data/name_constraints_unittest/dnsname-with_min_1.pem",
3389 "data/name_constraints_unittest/dnsname-with_min_1_and_max.pem",
3390 "data/name_constraints_unittest/dnsname.pem",
3391 "data/name_constraints_unittest/dnsname2.pem",
3392 "data/name_constraints_unittest/edipartyname-excluded.pem",
3393 "data/name_constraints_unittest/edipartyname-permitted.pem",
3394 "data/name_constraints_unittest/invalid-empty_excluded_subtree.pem",
3395 "data/name_constraints_unittest/invalid-empty_permitted_subtree.pem",
3396 "data/name_constraints_unittest/invalid-no_subtrees.pem",
3397 "data/name_constraints_unittest/ipaddress-excludeall.pem",
3398 "data/name_constraints_unittest/ipaddress-excluded.pem",
3399 "data/name_constraints_unittest/ipaddress-invalid_addr.pem",
3400 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_1.pem",
3401 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_2.pem",
3402 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_3.pem",
3403 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_4.pem",
3404 "data/name_constraints_unittest/ipaddress-permit_all.pem",
3405 "data/name_constraints_unittest/ipaddress-permit_prefix1.pem",
3406 "data/name_constraints_unittest/ipaddress-permit_prefix31.pem",
3407 "data/name_constraints_unittest/ipaddress-permit_singlehost.pem",
3408 "data/name_constraints_unittest/ipaddress.pem",
3409 "data/name_constraints_unittest/name-ca.pem",
3410 "data/name_constraints_unittest/name-de.pem",
3411 "data/name_constraints_unittest/name-empty.pem",
3412 "data/name_constraints_unittest/name-jp-tokyo.pem",
3413 "data/name_constraints_unittest/name-jp.pem",
3414 "data/name_constraints_unittest/name-us-arizona-1.1.1.1.pem",
3415 "data/name_constraints_unittest/name-us-arizona-192.168.1.1.pem",
3416 "data/name_constraints_unittest/name-us-arizona-email.pem",
3417 "data/name_constraints_unittest/name-us-arizona-foo.com.pem",
3418 "data/name_constraints_unittest/name-us-arizona-ipv6.pem",
3419 "data/name_constraints_unittest/name-us-arizona-permitted.example.com.pem",
3420 "data/name_constraints_unittest/name-us-arizona.pem",
3421 "data/name_constraints_unittest/name-us-california-192.168.1.1.pem",
3422 "data/name_constraints_unittest/name-us-california-mountain_view.pem",
3423 "data/name_constraints_unittest/name-us-california-permitted.example.com.pem",
3424 "data/name_constraints_unittest/name-us-california.pem",
3425 "data/name_constraints_unittest/name-us.pem",
3426 "data/name_constraints_unittest/othername-excluded.pem",
3427 "data/name_constraints_unittest/othername-permitted.pem",
3428 "data/name_constraints_unittest/registeredid-excluded.pem",
3429 "data/name_constraints_unittest/registeredid-permitted.pem",
3430 "data/name_constraints_unittest/rfc822name-excluded.pem",
3431 "data/name_constraints_unittest/rfc822name-permitted.pem",
Matt Mueller766bedc92017-09-14 23:30:413432 "data/name_constraints_unittest/san-directoryname.pem",
3433 "data/name_constraints_unittest/san-dnsname.pem",
ckrasic73f7240b2017-01-24 00:06:453434 "data/name_constraints_unittest/san-edipartyname.pem",
3435 "data/name_constraints_unittest/san-excluded-directoryname.pem",
3436 "data/name_constraints_unittest/san-excluded-dnsname.pem",
3437 "data/name_constraints_unittest/san-excluded-ipaddress.pem",
3438 "data/name_constraints_unittest/san-invalid-empty.pem",
3439 "data/name_constraints_unittest/san-invalid-ipaddress.pem",
Matt Mueller766bedc92017-09-14 23:30:413440 "data/name_constraints_unittest/san-ipaddress4.pem",
3441 "data/name_constraints_unittest/san-ipaddress6.pem",
ckrasic73f7240b2017-01-24 00:06:453442 "data/name_constraints_unittest/san-othername.pem",
3443 "data/name_constraints_unittest/san-permitted.pem",
3444 "data/name_constraints_unittest/san-registeredid.pem",
3445 "data/name_constraints_unittest/san-rfc822name.pem",
3446 "data/name_constraints_unittest/san-uri.pem",
3447 "data/name_constraints_unittest/san-x400address.pem",
3448 "data/name_constraints_unittest/uri-excluded.pem",
3449 "data/name_constraints_unittest/uri-permitted.pem",
3450 "data/name_constraints_unittest/x400address-excluded.pem",
3451 "data/name_constraints_unittest/x400address-permitted.pem",
Eric Romana2f6f55d2017-09-07 23:34:573452 "data/ocsp_unittest/bad_ocsp_type.pem",
3453 "data/ocsp_unittest/bad_signature.pem",
3454 "data/ocsp_unittest/bad_status.pem",
3455 "data/ocsp_unittest/good_response.pem",
3456 "data/ocsp_unittest/good_response_next_update.pem",
Steven Valdez060eac42017-09-21 22:31:573457 "data/ocsp_unittest/good_response_sha256.pem",
Eric Romana2f6f55d2017-09-07 23:34:573458 "data/ocsp_unittest/has_extension.pem",
3459 "data/ocsp_unittest/has_single_extension.pem",
3460 "data/ocsp_unittest/has_version.pem",
Eric Romanff242622017-09-25 21:49:443461 "data/ocsp_unittest/malformed_request.pem",
Eric Romana2f6f55d2017-09-07 23:34:573462 "data/ocsp_unittest/missing_response.pem",
3463 "data/ocsp_unittest/multiple_response.pem",
3464 "data/ocsp_unittest/no_response.pem",
3465 "data/ocsp_unittest/ocsp_extra_certs.pem",
3466 "data/ocsp_unittest/ocsp_sign_bad_indirect.pem",
3467 "data/ocsp_unittest/ocsp_sign_direct.pem",
3468 "data/ocsp_unittest/ocsp_sign_indirect.pem",
3469 "data/ocsp_unittest/ocsp_sign_indirect_missing.pem",
3470 "data/ocsp_unittest/other_response.pem",
3471 "data/ocsp_unittest/responder_id.pem",
3472 "data/ocsp_unittest/responder_name.pem",
3473 "data/ocsp_unittest/revoke_response.pem",
3474 "data/ocsp_unittest/revoke_response_reason.pem",
3475 "data/ocsp_unittest/unknown_response.pem",
Ryan Sleevi3dabe0b2018-04-05 03:59:013476 "data/ov_name_constraints/int-bmp-o1.pem",
3477 "data/ov_name_constraints/int-cn.pem",
3478 "data/ov_name_constraints/int-o1-o2.pem",
3479 "data/ov_name_constraints/int-o1-plus-o2.pem",
3480 "data/ov_name_constraints/int-o2-o1.pem",
3481 "data/ov_name_constraints/int-o3.pem",
3482 "data/ov_name_constraints/leaf-no-o.pem",
3483 "data/ov_name_constraints/leaf-o1-o2.pem",
3484 "data/ov_name_constraints/leaf-o1.pem",
3485 "data/ov_name_constraints/nc-int-exclude-o1.pem",
3486 "data/ov_name_constraints/nc-int-permit-bmp-o1.pem",
3487 "data/ov_name_constraints/nc-int-permit-cn.pem",
3488 "data/ov_name_constraints/nc-int-permit-dns.pem",
3489 "data/ov_name_constraints/nc-int-permit-o1.pem",
3490 "data/ov_name_constraints/nc-int-permit-o2-o1-o3.pem",
3491 "data/ov_name_constraints/root.pem",
Eric Roman7b45a272017-08-02 03:21:443492 "data/parse_certificate_unittest/bad_key_usage.pem",
3493 "data/parse_certificate_unittest/bad_policy_qualifiers.pem",
3494 "data/parse_certificate_unittest/bad_signature_algorithm_oid.pem",
3495 "data/parse_certificate_unittest/bad_validity.pem",
ckrasic73f7240b2017-01-24 00:06:453496 "data/parse_certificate_unittest/basic_constraints_ca_false.pem",
3497 "data/parse_certificate_unittest/basic_constraints_ca_no_path.pem",
3498 "data/parse_certificate_unittest/basic_constraints_ca_path_9.pem",
3499 "data/parse_certificate_unittest/basic_constraints_negative_path.pem",
3500 "data/parse_certificate_unittest/basic_constraints_not_ca.pem",
3501 "data/parse_certificate_unittest/basic_constraints_path_too_large.pem",
3502 "data/parse_certificate_unittest/basic_constraints_pathlen_255.pem",
3503 "data/parse_certificate_unittest/basic_constraints_pathlen_256.pem",
3504 "data/parse_certificate_unittest/basic_constraints_pathlen_not_ca.pem",
3505 "data/parse_certificate_unittest/basic_constraints_unconsumed_data.pem",
3506 "data/parse_certificate_unittest/cert_algorithm_not_sequence.pem",
3507 "data/parse_certificate_unittest/cert_data_after_signature.pem",
3508 "data/parse_certificate_unittest/cert_empty_sequence.pem",
3509 "data/parse_certificate_unittest/cert_missing_signature.pem",
3510 "data/parse_certificate_unittest/cert_not_sequence.pem",
3511 "data/parse_certificate_unittest/cert_signature_not_bit_string.pem",
3512 "data/parse_certificate_unittest/cert_skeleton.pem",
3513 "data/parse_certificate_unittest/cert_version3.pem",
Eric Romandb460e92017-08-01 17:17:343514 "data/parse_certificate_unittest/crldp_1uri_noissuer.pem",
3515 "data/parse_certificate_unittest/crldp_3uri_noissuer.pem",
3516 "data/parse_certificate_unittest/crldp_full_name_as_dirname.pem",
3517 "data/parse_certificate_unittest/crldp_issuer_as_dirname.pem",
ckrasic73f7240b2017-01-24 00:06:453518 "data/parse_certificate_unittest/extended_key_usage.pem",
3519 "data/parse_certificate_unittest/extension_critical.pem",
3520 "data/parse_certificate_unittest/extension_critical_0.pem",
3521 "data/parse_certificate_unittest/extension_critical_3.pem",
3522 "data/parse_certificate_unittest/extension_not_critical.pem",
3523 "data/parse_certificate_unittest/extensions_data_after_sequence.pem",
3524 "data/parse_certificate_unittest/extensions_duplicate_key_usage.pem",
3525 "data/parse_certificate_unittest/extensions_empty_sequence.pem",
3526 "data/parse_certificate_unittest/extensions_not_sequence.pem",
3527 "data/parse_certificate_unittest/extensions_real.pem",
Eric Roman7b45a272017-08-02 03:21:443528 "data/parse_certificate_unittest/failed_signature_algorithm.pem",
eromand312c062017-05-19 03:06:293529 "data/parse_certificate_unittest/inhibit_any_policy.pem",
Eric Roman7b45a272017-08-02 03:21:443530 "data/parse_certificate_unittest/issuer_bad_printable_string.pem",
ckrasic73f7240b2017-01-24 00:06:453531 "data/parse_certificate_unittest/key_usage.pem",
Eric Roman7b45a272017-08-02 03:21:443532 "data/parse_certificate_unittest/name_constraints_bad_ip.pem",
ckrasic73f7240b2017-01-24 00:06:453533 "data/parse_certificate_unittest/policies.pem",
eroman25ead1bcf82017-05-13 06:44:583534 "data/parse_certificate_unittest/policy_constraints_empty.pem",
3535 "data/parse_certificate_unittest/policy_constraints_inhibit.pem",
3536 "data/parse_certificate_unittest/policy_constraints_inhibit_require.pem",
3537 "data/parse_certificate_unittest/policy_constraints_require.pem",
Eric Roman7b45a272017-08-02 03:21:443538 "data/parse_certificate_unittest/policy_qualifiers_empty_sequence.pem",
mattm312644de2017-05-16 08:13:183539 "data/parse_certificate_unittest/serial_37_bytes.pem",
3540 "data/parse_certificate_unittest/serial_negative.pem",
Eric Roman5d1934622017-08-03 03:57:093541 "data/parse_certificate_unittest/serial_not_minimal.pem",
3542 "data/parse_certificate_unittest/serial_not_number.pem",
3543 "data/parse_certificate_unittest/serial_zero.pem",
mattm312644de2017-05-16 08:13:183544 "data/parse_certificate_unittest/serial_zero_padded.pem",
3545 "data/parse_certificate_unittest/serial_zero_padded_21_bytes.pem",
mattm2fe429a2017-06-20 01:53:443546 "data/parse_certificate_unittest/signature_algorithm_null.pem",
ckrasic73f7240b2017-01-24 00:06:453547 "data/parse_certificate_unittest/subject_alt_name.pem",
Eric Roman7b45a272017-08-02 03:21:443548 "data/parse_certificate_unittest/subject_blank_subjectaltname_not_critical.pem",
3549 "data/parse_certificate_unittest/subject_not_ascii.pem",
3550 "data/parse_certificate_unittest/subject_not_printable_string.pem",
Matt Mueller6c8b07c62017-10-09 21:02:253551 "data/parse_certificate_unittest/subject_printable_string_containing_utf8_client_cert.pem",
mattm788812f2017-05-05 23:49:093552 "data/parse_certificate_unittest/subject_t61string.pem",
3553 "data/parse_certificate_unittest/subject_t61string_1-32.pem",
3554 "data/parse_certificate_unittest/subject_t61string_126-160.pem",
3555 "data/parse_certificate_unittest/subject_t61string_actual.pem",
Eric Roman7b45a272017-08-02 03:21:443556 "data/parse_certificate_unittest/subjectaltname_bad_ip.pem",
3557 "data/parse_certificate_unittest/subjectaltname_dns_not_ascii.pem",
3558 "data/parse_certificate_unittest/subjectaltname_general_names_empty_sequence.pem",
3559 "data/parse_certificate_unittest/subjectaltname_trailing_data.pem",
ckrasic73f7240b2017-01-24 00:06:453560 "data/parse_certificate_unittest/tbs_explicit_v1.pem",
ckrasic73f7240b2017-01-24 00:06:453561 "data/parse_certificate_unittest/tbs_v1.pem",
3562 "data/parse_certificate_unittest/tbs_v1_extensions.pem",
3563 "data/parse_certificate_unittest/tbs_v2_extensions.pem",
3564 "data/parse_certificate_unittest/tbs_v2_issuer_and_subject_unique_id.pem",
3565 "data/parse_certificate_unittest/tbs_v2_issuer_unique_id.pem",
3566 "data/parse_certificate_unittest/tbs_v2_no_optionals.pem",
3567 "data/parse_certificate_unittest/tbs_v3_all_optionals.pem",
3568 "data/parse_certificate_unittest/tbs_v3_data_after_extensions.pem",
3569 "data/parse_certificate_unittest/tbs_v3_extensions.pem",
3570 "data/parse_certificate_unittest/tbs_v3_extensions_not_sequence.pem",
3571 "data/parse_certificate_unittest/tbs_v3_no_optionals.pem",
3572 "data/parse_certificate_unittest/tbs_v3_real.pem",
3573 "data/parse_certificate_unittest/tbs_v4.pem",
3574 "data/parse_certificate_unittest/tbs_validity_both_generalized_time.pem",
3575 "data/parse_certificate_unittest/tbs_validity_both_utc_time.pem",
3576 "data/parse_certificate_unittest/tbs_validity_generalized_time_and_utc_time.pem",
3577 "data/parse_certificate_unittest/tbs_validity_relaxed.pem",
3578 "data/parse_certificate_unittest/tbs_validity_utc_time_and_generalized_time.pem",
Eric Roman7b45a272017-08-02 03:21:443579 "data/parse_certificate_unittest/v1_explicit_version.pem",
Matt Mueller6c8b07c62017-10-09 21:02:253580 "data/parse_certificate_unittest/v3_certificate_template.pk8",
ckrasic73f7240b2017-01-24 00:06:453581 "data/test.html",
3582 "data/url_request_unittest/308-without-location-header",
3583 "data/url_request_unittest/308-without-location-header.mock-http-headers",
3584 "data/url_request_unittest/BullRunSpeech.txt",
3585 "data/url_request_unittest/content-type-normalization.html",
3586 "data/url_request_unittest/content-type-normalization.html.mock-http-headers",
Emily Stark4cfecf072017-08-08 01:05:513587 "data/url_request_unittest/expect-ct-header-multiple.html",
3588 "data/url_request_unittest/expect-ct-header-multiple.html.mock-http-headers",
3589 "data/url_request_unittest/expect-ct-header-preload.html",
3590 "data/url_request_unittest/expect-ct-header-preload.html.mock-http-headers",
ckrasic73f7240b2017-01-24 00:06:453591 "data/url_request_unittest/expect-ct-header.html",
3592 "data/url_request_unittest/expect-ct-header.html.mock-http-headers",
3593 "data/url_request_unittest/filedir-sentinel",
3594 "data/url_request_unittest/gzip-encoded",
3595 "data/url_request_unittest/gzip-encoded.mock-http-headers",
3596 "data/url_request_unittest/hpkp-headers-report-only.html",
3597 "data/url_request_unittest/hpkp-headers-report-only.html.mock-http-headers",
3598 "data/url_request_unittest/hpkp-headers.html",
3599 "data/url_request_unittest/hpkp-headers.html.mock-http-headers",
3600 "data/url_request_unittest/hsts-and-hpkp-headers.html",
3601 "data/url_request_unittest/hsts-and-hpkp-headers.html.mock-http-headers",
3602 "data/url_request_unittest/hsts-and-hpkp-headers2.html",
3603 "data/url_request_unittest/hsts-and-hpkp-headers2.html.mock-http-headers",
3604 "data/url_request_unittest/hsts-headers.html",
3605 "data/url_request_unittest/hsts-headers.html.mock-http-headers",
3606 "data/url_request_unittest/hsts-multiple-headers.html",
3607 "data/url_request_unittest/hsts-multiple-headers.html.mock-http-headers",
3608 "data/url_request_unittest/redirect-test.html",
3609 "data/url_request_unittest/redirect-test.html.mock-http-headers",
3610 "data/url_request_unittest/redirect-to-data.html",
3611 "data/url_request_unittest/redirect-to-data.html.mock-http-headers",
3612 "data/url_request_unittest/redirect-to-echoall",
3613 "data/url_request_unittest/redirect-to-echoall.mock-http-headers",
3614 "data/url_request_unittest/redirect-to-file.html",
3615 "data/url_request_unittest/redirect-to-file.html.mock-http-headers",
3616 "data/url_request_unittest/redirect-to-invalid-url.html",
3617 "data/url_request_unittest/redirect-to-invalid-url.html.mock-http-headers",
3618 "data/url_request_unittest/redirect301-to-echo",
3619 "data/url_request_unittest/redirect301-to-echo.mock-http-headers",
3620 "data/url_request_unittest/redirect301-to-https",
3621 "data/url_request_unittest/redirect301-to-https.mock-http-headers",
3622 "data/url_request_unittest/redirect302-to-echo",
3623 "data/url_request_unittest/redirect302-to-echo-cacheable",
3624 "data/url_request_unittest/redirect302-to-echo-cacheable.mock-http-headers",
3625 "data/url_request_unittest/redirect302-to-echo.mock-http-headers",
3626 "data/url_request_unittest/redirect302-to-https",
3627 "data/url_request_unittest/redirect302-to-https.mock-http-headers",
3628 "data/url_request_unittest/redirect303-to-echo",
3629 "data/url_request_unittest/redirect303-to-echo.mock-http-headers",
3630 "data/url_request_unittest/redirect303-to-https",
3631 "data/url_request_unittest/redirect303-to-https.mock-http-headers",
3632 "data/url_request_unittest/redirect307-to-echo",
3633 "data/url_request_unittest/redirect307-to-echo.mock-http-headers",
3634 "data/url_request_unittest/redirect307-to-https",
3635 "data/url_request_unittest/redirect307-to-https.mock-http-headers",
3636 "data/url_request_unittest/redirect308-to-echo",
3637 "data/url_request_unittest/redirect308-to-echo.mock-http-headers",
3638 "data/url_request_unittest/redirect308-to-https",
3639 "data/url_request_unittest/redirect308-to-https.mock-http-headers",
3640 "data/url_request_unittest/simple.html",
3641 "data/url_request_unittest/simple.html.mock-http-headers",
3642 "data/url_request_unittest/two-content-lengths.html",
3643 "data/url_request_unittest/two-content-lengths.html.mock-http-headers",
3644 "data/url_request_unittest/with-headers.html",
3645 "data/url_request_unittest/with-headers.html.mock-http-headers",
eroman266bda9e2017-05-03 01:28:043646 "data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/chain.pem",
3647 "data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/main.test",
eroman266bda9e2017-05-03 01:28:043648 "data/verify_certificate_chain_unittest/expired-intermediate/chain.pem",
eromane7af9002017-05-13 05:04:013649 "data/verify_certificate_chain_unittest/expired-intermediate/not-after.test",
3650 "data/verify_certificate_chain_unittest/expired-intermediate/not-before.test",
eromanc1a8b5d02017-05-03 21:52:103651 "data/verify_certificate_chain_unittest/expired-root/chain.pem",
eromane7af9002017-05-13 05:04:013652 "data/verify_certificate_chain_unittest/expired-root/not-after-ta-with-constraints.test",
3653 "data/verify_certificate_chain_unittest/expired-root/not-after.test",
3654 "data/verify_certificate_chain_unittest/expired-root/not-before.test",
eroman266bda9e2017-05-03 01:28:043655 "data/verify_certificate_chain_unittest/expired-target/chain.pem",
eromane7af9002017-05-13 05:04:013656 "data/verify_certificate_chain_unittest/expired-target/not-after.test",
3657 "data/verify_certificate_chain_unittest/expired-target/not-before.test",
eroman266bda9e2017-05-03 01:28:043658 "data/verify_certificate_chain_unittest/incorrect-trust-anchor/chain.pem",
3659 "data/verify_certificate_chain_unittest/incorrect-trust-anchor/main.test",
Matt Mueller905e4e3d2018-02-14 02:11:173660 "data/verify_certificate_chain_unittest/intermediate-and-target-wrong-signature/chain.pem",
3661 "data/verify_certificate_chain_unittest/intermediate-and-target-wrong-signature/main.test",
eroman266bda9e2017-05-03 01:28:043662 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/chain.pem",
3663 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/main.test",
3664 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/chain.pem",
3665 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/main.test",
eroman7333d9b2017-06-23 01:50:253666 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/any.test",
3667 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/chain.pem",
3668 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/clientauth.test",
3669 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/serverauth.test",
3670 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/any.test",
3671 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/chain.pem",
3672 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/clientauth.test",
3673 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/serverauth.test",
Eric Romanc8c2d6a2017-08-01 22:55:303674 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-chain.pem",
3675 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-any.test",
3676 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-clientAuth.test",
3677 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-serverAuth.test",
3678 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-chain.pem",
3679 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-any.test",
3680 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-clientAuth.test",
3681 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-serverAuth.test",
eroman266bda9e2017-05-03 01:28:043682 "data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/chain.pem",
3683 "data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/main.test",
3684 "data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/chain.pem",
3685 "data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/main.test",
eroman266bda9e2017-05-03 01:28:043686 "data/verify_certificate_chain_unittest/intermediate-signed-with-md5/chain.pem",
3687 "data/verify_certificate_chain_unittest/intermediate-signed-with-md5/main.test",
3688 "data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/chain.pem",
3689 "data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/main.test",
3690 "data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/chain.pem",
3691 "data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/main.test",
3692 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.pem",
3693 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.test",
3694 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.pem",
3695 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.test",
3696 "data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.pem",
3697 "data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.test",
3698 "data/verify_certificate_chain_unittest/key-rollover/newchain.pem",
3699 "data/verify_certificate_chain_unittest/key-rollover/newchain.test",
3700 "data/verify_certificate_chain_unittest/key-rollover/oldchain.pem",
3701 "data/verify_certificate_chain_unittest/key-rollover/oldchain.test",
3702 "data/verify_certificate_chain_unittest/key-rollover/rolloverchain.pem",
3703 "data/verify_certificate_chain_unittest/key-rollover/rolloverchain.test",
Matt Muellerc391cdf2018-02-08 01:05:573704 "data/verify_certificate_chain_unittest/many-names/ok-all-types.pem",
3705 "data/verify_certificate_chain_unittest/many-names/ok-all-types.test",
3706 "data/verify_certificate_chain_unittest/many-names/ok-different-types-dirnames.pem",
3707 "data/verify_certificate_chain_unittest/many-names/ok-different-types-dirnames.test",
3708 "data/verify_certificate_chain_unittest/many-names/ok-different-types-dns.pem",
3709 "data/verify_certificate_chain_unittest/many-names/ok-different-types-dns.test",
3710 "data/verify_certificate_chain_unittest/many-names/ok-different-types-ips.pem",
3711 "data/verify_certificate_chain_unittest/many-names/ok-different-types-ips.test",
3712 "data/verify_certificate_chain_unittest/many-names/toomany-all-types.pem",
3713 "data/verify_certificate_chain_unittest/many-names/toomany-all-types.test",
3714 "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-excluded.pem",
3715 "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-excluded.test",
3716 "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-permitted.pem",
3717 "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-permitted.test",
3718 "data/verify_certificate_chain_unittest/many-names/toomany-dns-excluded.pem",
3719 "data/verify_certificate_chain_unittest/many-names/toomany-dns-excluded.test",
3720 "data/verify_certificate_chain_unittest/many-names/toomany-dns-permitted.pem",
3721 "data/verify_certificate_chain_unittest/many-names/toomany-dns-permitted.test",
3722 "data/verify_certificate_chain_unittest/many-names/toomany-ips-excluded.pem",
3723 "data/verify_certificate_chain_unittest/many-names/toomany-ips-excluded.test",
3724 "data/verify_certificate_chain_unittest/many-names/toomany-ips-permitted.pem",
3725 "data/verify_certificate_chain_unittest/many-names/toomany-ips-permitted.test",
eroman266bda9e2017-05-03 01:28:043726 "data/verify_certificate_chain_unittest/non-self-signed-root/chain.pem",
3727 "data/verify_certificate_chain_unittest/non-self-signed-root/main.test",
eromanc1a8b5d02017-05-03 21:52:103728 "data/verify_certificate_chain_unittest/non-self-signed-root/ta-with-constraints.test",
eroman605a5cc2017-06-03 02:45:243729 "data/verify_certificate_chain_unittest/pkits_errors/4.1.2.txt",
3730 "data/verify_certificate_chain_unittest/pkits_errors/4.1.3.txt",
3731 "data/verify_certificate_chain_unittest/pkits_errors/4.1.4.txt",
3732 "data/verify_certificate_chain_unittest/pkits_errors/4.1.5.txt",
3733 "data/verify_certificate_chain_unittest/pkits_errors/4.1.6.txt",
3734 "data/verify_certificate_chain_unittest/pkits_errors/4.10.1.txt",
3735 "data/verify_certificate_chain_unittest/pkits_errors/4.10.10.txt",
3736 "data/verify_certificate_chain_unittest/pkits_errors/4.10.2.txt",
3737 "data/verify_certificate_chain_unittest/pkits_errors/4.10.3.txt",
3738 "data/verify_certificate_chain_unittest/pkits_errors/4.10.4.txt",
3739 "data/verify_certificate_chain_unittest/pkits_errors/4.10.5.txt",
3740 "data/verify_certificate_chain_unittest/pkits_errors/4.10.6.txt",
3741 "data/verify_certificate_chain_unittest/pkits_errors/4.10.7.txt",
3742 "data/verify_certificate_chain_unittest/pkits_errors/4.10.8.txt",
3743 "data/verify_certificate_chain_unittest/pkits_errors/4.11.1.txt",
3744 "data/verify_certificate_chain_unittest/pkits_errors/4.11.10.txt",
3745 "data/verify_certificate_chain_unittest/pkits_errors/4.11.11.txt",
3746 "data/verify_certificate_chain_unittest/pkits_errors/4.11.3.txt",
3747 "data/verify_certificate_chain_unittest/pkits_errors/4.11.5.txt",
3748 "data/verify_certificate_chain_unittest/pkits_errors/4.11.6.txt",
3749 "data/verify_certificate_chain_unittest/pkits_errors/4.11.8.txt",
3750 "data/verify_certificate_chain_unittest/pkits_errors/4.11.9.txt",
3751 "data/verify_certificate_chain_unittest/pkits_errors/4.12.1.txt",
3752 "data/verify_certificate_chain_unittest/pkits_errors/4.12.10.txt",
3753 "data/verify_certificate_chain_unittest/pkits_errors/4.12.3.txt",
3754 "data/verify_certificate_chain_unittest/pkits_errors/4.12.4.txt",
3755 "data/verify_certificate_chain_unittest/pkits_errors/4.12.5.txt",
3756 "data/verify_certificate_chain_unittest/pkits_errors/4.12.6.txt",
3757 "data/verify_certificate_chain_unittest/pkits_errors/4.12.8.txt",
3758 "data/verify_certificate_chain_unittest/pkits_errors/4.13.10.txt",
3759 "data/verify_certificate_chain_unittest/pkits_errors/4.13.12.txt",
3760 "data/verify_certificate_chain_unittest/pkits_errors/4.13.13.txt",
3761 "data/verify_certificate_chain_unittest/pkits_errors/4.13.15.txt",
3762 "data/verify_certificate_chain_unittest/pkits_errors/4.13.16.txt",
3763 "data/verify_certificate_chain_unittest/pkits_errors/4.13.17.txt",
3764 "data/verify_certificate_chain_unittest/pkits_errors/4.13.2.txt",
3765 "data/verify_certificate_chain_unittest/pkits_errors/4.13.20.txt",
3766 "data/verify_certificate_chain_unittest/pkits_errors/4.13.21.txt",
3767 "data/verify_certificate_chain_unittest/pkits_errors/4.13.22.txt",
3768 "data/verify_certificate_chain_unittest/pkits_errors/4.13.23.txt",
3769 "data/verify_certificate_chain_unittest/pkits_errors/4.13.24.txt",
3770 "data/verify_certificate_chain_unittest/pkits_errors/4.13.25.txt",
3771 "data/verify_certificate_chain_unittest/pkits_errors/4.13.26.txt",
3772 "data/verify_certificate_chain_unittest/pkits_errors/4.13.27.txt",
3773 "data/verify_certificate_chain_unittest/pkits_errors/4.13.28.txt",
3774 "data/verify_certificate_chain_unittest/pkits_errors/4.13.29.txt",
3775 "data/verify_certificate_chain_unittest/pkits_errors/4.13.3.txt",
3776 "data/verify_certificate_chain_unittest/pkits_errors/4.13.31.txt",
3777 "data/verify_certificate_chain_unittest/pkits_errors/4.13.33.txt",
3778 "data/verify_certificate_chain_unittest/pkits_errors/4.13.34.txt",
3779 "data/verify_certificate_chain_unittest/pkits_errors/4.13.35.txt",
3780 "data/verify_certificate_chain_unittest/pkits_errors/4.13.36.txt",
3781 "data/verify_certificate_chain_unittest/pkits_errors/4.13.37.txt",
3782 "data/verify_certificate_chain_unittest/pkits_errors/4.13.38.txt",
3783 "data/verify_certificate_chain_unittest/pkits_errors/4.13.7.txt",
3784 "data/verify_certificate_chain_unittest/pkits_errors/4.13.8.txt",
3785 "data/verify_certificate_chain_unittest/pkits_errors/4.13.9.txt",
3786 "data/verify_certificate_chain_unittest/pkits_errors/4.16.2.txt",
3787 "data/verify_certificate_chain_unittest/pkits_errors/4.2.1.txt",
3788 "data/verify_certificate_chain_unittest/pkits_errors/4.2.2.txt",
3789 "data/verify_certificate_chain_unittest/pkits_errors/4.2.5.txt",
3790 "data/verify_certificate_chain_unittest/pkits_errors/4.2.6.txt",
3791 "data/verify_certificate_chain_unittest/pkits_errors/4.2.7.txt",
3792 "data/verify_certificate_chain_unittest/pkits_errors/4.3.1.txt",
3793 "data/verify_certificate_chain_unittest/pkits_errors/4.3.2.txt",
3794 "data/verify_certificate_chain_unittest/pkits_errors/4.6.1.txt",
3795 "data/verify_certificate_chain_unittest/pkits_errors/4.6.10.txt",
3796 "data/verify_certificate_chain_unittest/pkits_errors/4.6.11.txt",
3797 "data/verify_certificate_chain_unittest/pkits_errors/4.6.12.txt",
3798 "data/verify_certificate_chain_unittest/pkits_errors/4.6.16.txt",
3799 "data/verify_certificate_chain_unittest/pkits_errors/4.6.2.txt",
3800 "data/verify_certificate_chain_unittest/pkits_errors/4.6.3.txt",
3801 "data/verify_certificate_chain_unittest/pkits_errors/4.6.5.txt",
3802 "data/verify_certificate_chain_unittest/pkits_errors/4.6.6.txt",
3803 "data/verify_certificate_chain_unittest/pkits_errors/4.6.9.txt",
3804 "data/verify_certificate_chain_unittest/pkits_errors/4.7.1.txt",
3805 "data/verify_certificate_chain_unittest/pkits_errors/4.7.2.txt",
3806 "data/verify_certificate_chain_unittest/pkits_errors/4.8.1.txt",
3807 "data/verify_certificate_chain_unittest/pkits_errors/4.8.12.txt",
3808 "data/verify_certificate_chain_unittest/pkits_errors/4.8.14.txt",
3809 "data/verify_certificate_chain_unittest/pkits_errors/4.8.2.txt",
3810 "data/verify_certificate_chain_unittest/pkits_errors/4.8.3.txt",
3811 "data/verify_certificate_chain_unittest/pkits_errors/4.8.4.txt",
3812 "data/verify_certificate_chain_unittest/pkits_errors/4.8.5.txt",
3813 "data/verify_certificate_chain_unittest/pkits_errors/4.8.6.txt",
3814 "data/verify_certificate_chain_unittest/pkits_errors/4.8.7.txt",
3815 "data/verify_certificate_chain_unittest/pkits_errors/4.8.8.txt",
3816 "data/verify_certificate_chain_unittest/pkits_errors/4.8.9.txt",
3817 "data/verify_certificate_chain_unittest/pkits_errors/4.9.3.txt",
3818 "data/verify_certificate_chain_unittest/pkits_errors/4.9.5.txt",
3819 "data/verify_certificate_chain_unittest/pkits_errors/4.9.7.txt",
3820 "data/verify_certificate_chain_unittest/pkits_errors/4.9.8.txt",
eromanc1a8b5d02017-05-03 21:52:103821 "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/chain.pem",
3822 "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/main.test",
3823 "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/ta-with-constraints.test",
eroman7333d9b2017-06-23 01:50:253824 "data/verify_certificate_chain_unittest/root-eku-clientauth/chain.pem",
3825 "data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth-ta-with-constraints.test",
3826 "data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth.test",
eromanc1a8b5d02017-05-03 21:52:103827 "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/chain.pem",
3828 "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/main.test",
3829 "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/ta-with-constraints.test",
eroman266bda9e2017-05-03 01:28:043830 "data/verify_certificate_chain_unittest/target-and-intermediate/chain.pem",
Matt Mueller905e4e3d2018-02-14 02:11:173831 "data/verify_certificate_chain_unittest/target-and-intermediate/distrusted-root-expired.test",
eromand1c9c9b2017-05-04 19:23:453832 "data/verify_certificate_chain_unittest/target-and-intermediate/distrusted-root.test",
eroman266bda9e2017-05-03 01:28:043833 "data/verify_certificate_chain_unittest/target-and-intermediate/main.test",
eromand1c9c9b2017-05-04 19:23:453834 "data/verify_certificate_chain_unittest/target-and-intermediate/unspecified-trust-root.test",
eroman7333d9b2017-06-23 01:50:253835 "data/verify_certificate_chain_unittest/target-eku-clientauth/any.test",
3836 "data/verify_certificate_chain_unittest/target-eku-clientauth/chain.pem",
3837 "data/verify_certificate_chain_unittest/target-eku-clientauth/clientauth.test",
3838 "data/verify_certificate_chain_unittest/target-eku-clientauth/serverauth.test",
3839 "data/verify_certificate_chain_unittest/target-eku-none/any.test",
3840 "data/verify_certificate_chain_unittest/target-eku-none/chain.pem",
3841 "data/verify_certificate_chain_unittest/target-eku-none/clientauth.test",
3842 "data/verify_certificate_chain_unittest/target-eku-none/serverauth.test",
Eric Roman5431d702017-07-26 01:58:183843 "data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/chain.pem",
3844 "data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/main.test",
eroman266bda9e2017-05-03 01:28:043845 "data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/chain.pem",
3846 "data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/main.test",
3847 "data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/chain.pem",
3848 "data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/main.test",
eroman266bda9e2017-05-03 01:28:043849 "data/verify_certificate_chain_unittest/target-not-end-entity/chain.pem",
3850 "data/verify_certificate_chain_unittest/target-not-end-entity/main.test",
eromane7899432017-05-04 16:40:483851 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.pem",
3852 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.test",
3853 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.pem",
3854 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.test",
3855 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.pem",
3856 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.test",
3857 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.pem",
3858 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.test",
3859 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.pem",
3860 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.test",
3861 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.pem",
3862 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.test",
3863 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.pem",
3864 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.test",
3865 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.pem",
3866 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.test",
eroman266bda9e2017-05-03 01:28:043867 "data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/chain.pem",
3868 "data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/main.test",
3869 "data/verify_certificate_chain_unittest/target-signed-using-ecdsa/chain.pem",
3870 "data/verify_certificate_chain_unittest/target-signed-using-ecdsa/main.test",
3871 "data/verify_certificate_chain_unittest/target-signed-with-md5/chain.pem",
3872 "data/verify_certificate_chain_unittest/target-signed-with-md5/main.test",
3873 "data/verify_certificate_chain_unittest/target-unknown-critical-extension/chain.pem",
3874 "data/verify_certificate_chain_unittest/target-unknown-critical-extension/main.test",
3875 "data/verify_certificate_chain_unittest/target-wrong-signature/chain.pem",
3876 "data/verify_certificate_chain_unittest/target-wrong-signature/main.test",
eroman178f2c62017-06-07 01:03:443877 "data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/chain.pem",
3878 "data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/main.test",
3879 "data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/chain.pem",
3880 "data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/main.test",
eroman266bda9e2017-05-03 01:28:043881 "data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/chain.pem",
3882 "data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/main.test",
eromanc1a8b5d02017-05-03 21:52:103883 "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/chain.pem",
3884 "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/main.test",
3885 "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/ta-with-constraints.test",
ckrasic73f7240b2017-01-24 00:06:453886 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-dupe_attr.pem",
3887 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_attr.pem",
3888 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_rdn.pem",
3889 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap.pem",
3890 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-dupe_attr.pem",
3891 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_attr.pem",
3892 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_rdn.pem",
3893 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace.pem",
3894 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-dupe_attr.pem",
3895 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_attr.pem",
3896 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_rdn.pem",
3897 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled.pem",
3898 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-dupe_attr.pem",
3899 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_attr.pem",
3900 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_rdn.pem",
3901 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap.pem",
3902 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-dupe_attr.pem",
3903 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_attr.pem",
3904 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_rdn.pem",
3905 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace.pem",
3906 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_1.pem",
3907 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_2.pem",
3908 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-dupe_attr.pem",
3909 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_attr.pem",
3910 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_rdn.pem",
3911 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled.pem",
3912 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-dupe_attr.pem",
3913 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_attr.pem",
3914 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_rdn.pem",
3915 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap.pem",
3916 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-dupe_attr.pem",
3917 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_attr.pem",
3918 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_rdn.pem",
3919 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace.pem",
3920 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-dupe_attr.pem",
3921 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_attr.pem",
3922 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_rdn.pem",
3923 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled.pem",
3924 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-dupe_attr.pem",
3925 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_attr.pem",
3926 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_rdn.pem",
3927 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap.pem",
3928 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-dupe_attr.pem",
3929 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_attr.pem",
3930 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_rdn.pem",
3931 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace.pem",
3932 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-dupe_attr.pem",
3933 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_attr.pem",
3934 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_rdn.pem",
3935 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled.pem",
3936 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-dupe_attr.pem",
3937 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_attr.pem",
3938 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_rdn.pem",
3939 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap.pem",
3940 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-dupe_attr.pem",
3941 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_attr.pem",
3942 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_rdn.pem",
3943 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace.pem",
3944 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-dupe_attr.pem",
3945 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_attr.pem",
3946 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_rdn.pem",
3947 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled.pem",
3948 "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_1.pem",
3949 "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_2.pem",
David Benjaminc4dd1052017-12-15 21:23:173950 "data/verify_name_match_unittest/names/custom-custom-normalized.pem",
ckrasic73f7240b2017-01-24 00:06:453951 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-badAttributeType.pem",
3952 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-empty.pem",
3953 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-extradata.pem",
3954 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-onlyOneElement.pem",
3955 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-setNotSequence.pem",
3956 "data/verify_name_match_unittest/names/invalid-Name-setInsteadOfSequence.pem",
3957 "data/verify_name_match_unittest/names/invalid-RDN-empty.pem",
3958 "data/verify_name_match_unittest/names/invalid-RDN-sequenceInsteadOfSet.pem",
3959 "data/verify_name_match_unittest/names/unicode-mixed-normalized.pem",
3960 "data/verify_name_match_unittest/names/unicode-mixed-unnormalized.pem",
3961 "data/verify_name_match_unittest/names/unicode_bmp-BMPSTRING-unmangled.pem",
3962 "data/verify_name_match_unittest/names/unicode_bmp-UNIVERSALSTRING-unmangled.pem",
3963 "data/verify_name_match_unittest/names/unicode_bmp-UTF8-unmangled.pem",
3964 "data/verify_name_match_unittest/names/unicode_supplementary-UNIVERSALSTRING-unmangled.pem",
3965 "data/verify_name_match_unittest/names/unicode_supplementary-UTF8-unmangled.pem",
3966 "data/verify_name_match_unittest/names/valid-Name-empty.pem",
3967 "data/verify_name_match_unittest/names/valid-minimal.pem",
3968 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-spki-params-null.pem",
3969 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-unused-bits-signature.pem",
3970 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecdh-key.pem",
3971 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecmqv-key.pem",
3972 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-rsa-algorithm.pem",
3973 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-wrong-signature-format.pem",
3974 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512.pem",
3975 "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256-corrupted-data.pem",
3976 "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256.pem",
3977 "data/verify_signed_data_unittest/ecdsa-using-rsa-key.pem",
3978 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-length.pem",
3979 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-null.pem",
3980 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-key-params-absent.pem",
3981 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-using-pss-key-no-params.pem",
3982 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-wrong-algorithm.pem",
3983 "data/verify_signed_data_unittest/rsa-pkcs1-sha1.pem",
3984 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-key-encoded-ber.pem",
3985 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-spki-non-null-params.pem",
3986 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-ecdsa-algorithm.pem",
3987 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-id-ea-rsa.pem",
3988 "data/verify_signed_data_unittest/rsa-pkcs1-sha256.pem",
3989 "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-no-params.pem",
3990 "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-with-null-params.pem",
3991 "data/verify_signed_data_unittest/rsa-pss-sha1-salt20.pem",
3992 "data/verify_signed_data_unittest/rsa-pss-sha1-wrong-salt.pem",
3993 "data/verify_signed_data_unittest/rsa-pss-sha256-mgf1-sha512-salt33.pem",
3994 "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-params.pem",
3995 "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-wrong-params.pem",
3996 "data/verify_signed_data_unittest/rsa-pss-sha256-salt10.pem",
3997 "data/verify_signed_data_unittest/rsa-using-ec-key.pem",
3998 "data/verify_signed_data_unittest/rsa2048-pkcs1-sha512.pem",
3999 "third_party/nist-pkits/certs/AllCertificatesNoPoliciesTest2EE.crt",
4000 "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest10EE.crt",
4001 "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest13EE.crt",
4002 "third_party/nist-pkits/certs/AllCertificatesanyPolicyTest11EE.crt",
4003 "third_party/nist-pkits/certs/AnyPolicyTest14EE.crt",
4004 "third_party/nist-pkits/certs/BadCRLIssuerNameCACert.crt",
4005 "third_party/nist-pkits/certs/BadCRLSignatureCACert.crt",
4006 "third_party/nist-pkits/certs/BadSignedCACert.crt",
4007 "third_party/nist-pkits/certs/BadnotAfterDateCACert.crt",
4008 "third_party/nist-pkits/certs/BadnotBeforeDateCACert.crt",
4009 "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCACert.crt",
4010 "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCRLCert.crt",
4011 "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyCACert.crt",
4012 "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyOldWithNewCACert.crt",
4013 "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyCACert.crt",
4014 "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyNewWithOldCACert.crt",
4015 "third_party/nist-pkits/certs/CPSPointerQualifierTest20EE.crt",
4016 "third_party/nist-pkits/certs/DSACACert.crt",
4017 "third_party/nist-pkits/certs/DSAParametersInheritedCACert.crt",
4018 "third_party/nist-pkits/certs/DifferentPoliciesTest12EE.crt",
4019 "third_party/nist-pkits/certs/DifferentPoliciesTest3EE.crt",
4020 "third_party/nist-pkits/certs/DifferentPoliciesTest4EE.crt",
4021 "third_party/nist-pkits/certs/DifferentPoliciesTest5EE.crt",
4022 "third_party/nist-pkits/certs/DifferentPoliciesTest7EE.crt",
4023 "third_party/nist-pkits/certs/DifferentPoliciesTest8EE.crt",
4024 "third_party/nist-pkits/certs/DifferentPoliciesTest9EE.crt",
4025 "third_party/nist-pkits/certs/GeneralizedTimeCRLnextUpdateCACert.crt",
4026 "third_party/nist-pkits/certs/GoodCACert.crt",
4027 "third_party/nist-pkits/certs/GoodsubCACert.crt",
4028 "third_party/nist-pkits/certs/GoodsubCAPanyPolicyMapping1to2CACert.crt",
4029 "third_party/nist-pkits/certs/InvalidBadCRLIssuerNameTest5EE.crt",
4030 "third_party/nist-pkits/certs/InvalidBadCRLSignatureTest4EE.crt",
4031 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest7EE.crt",
4032 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest8EE.crt",
4033 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedNewWithOldTest5EE.crt",
4034 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedOldWithNewTest2EE.crt",
4035 "third_party/nist-pkits/certs/InvalidCASignatureTest2EE.crt",
4036 "third_party/nist-pkits/certs/InvalidCAnotAfterDateTest5EE.crt",
4037 "third_party/nist-pkits/certs/InvalidCAnotBeforeDateTest1EE.crt",
4038 "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest31EE.crt",
4039 "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest33EE.crt",
4040 "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest38EE.crt",
4041 "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest28EE.crt",
4042 "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest29EE.crt",
4043 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest10EE.crt",
4044 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest12EE.crt",
4045 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest13EE.crt",
4046 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest15EE.crt",
4047 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest16EE.crt",
4048 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest17EE.crt",
4049 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest20EE.crt",
4050 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest2EE.crt",
4051 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest3EE.crt",
4052 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest7EE.crt",
4053 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest8EE.crt",
4054 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest9EE.crt",
4055 "third_party/nist-pkits/certs/InvalidDSASignatureTest6EE.crt",
4056 "third_party/nist-pkits/certs/InvalidEESignatureTest3EE.crt",
4057 "third_party/nist-pkits/certs/InvalidEEnotAfterDateTest6EE.crt",
4058 "third_party/nist-pkits/certs/InvalidEEnotBeforeDateTest2EE.crt",
4059 "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest23EE.crt",
4060 "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest26EE.crt",
4061 "third_party/nist-pkits/certs/InvalidLongSerialNumberTest18EE.crt",
4062 "third_party/nist-pkits/certs/InvalidMappingFromanyPolicyTest7EE.crt",
4063 "third_party/nist-pkits/certs/InvalidMappingToanyPolicyTest8EE.crt",
4064 "third_party/nist-pkits/certs/InvalidMissingCRLTest1EE.crt",
4065 "third_party/nist-pkits/certs/InvalidMissingbasicConstraintsTest1EE.crt",
4066 "third_party/nist-pkits/certs/InvalidNameChainingOrderTest2EE.crt",
4067 "third_party/nist-pkits/certs/InvalidNameChainingTest1EE.crt",
4068 "third_party/nist-pkits/certs/InvalidNegativeSerialNumberTest15EE.crt",
4069 "third_party/nist-pkits/certs/InvalidOldCRLnextUpdateTest11EE.crt",
4070 "third_party/nist-pkits/certs/InvalidPolicyMappingTest10EE.crt",
4071 "third_party/nist-pkits/certs/InvalidPolicyMappingTest2EE.crt",
4072 "third_party/nist-pkits/certs/InvalidPolicyMappingTest4EE.crt",
4073 "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest22EE.crt",
4074 "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest24EE.crt",
4075 "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest26EE.crt",
4076 "third_party/nist-pkits/certs/InvalidRevokedCATest2EE.crt",
4077 "third_party/nist-pkits/certs/InvalidRevokedEETest3EE.crt",
4078 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest10EE.crt",
4079 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest8EE.crt",
4080 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest10EE.crt",
4081 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest11EE.crt",
4082 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest8EE.crt",
4083 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest9EE.crt",
4084 "third_party/nist-pkits/certs/InvalidSelfIssuedpathLenConstraintTest16EE.crt",
4085 "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest7EE.crt",
4086 "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest8EE.crt",
4087 "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest20EE.crt",
4088 "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest21EE.crt",
4089 "third_party/nist-pkits/certs/InvalidURInameConstraintsTest35EE.crt",
4090 "third_party/nist-pkits/certs/InvalidURInameConstraintsTest37EE.crt",
4091 "third_party/nist-pkits/certs/InvalidUnknownCRLEntryExtensionTest8EE.crt",
4092 "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest10EE.crt",
4093 "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest9EE.crt",
4094 "third_party/nist-pkits/certs/InvalidUnknownCriticalCertificateExtensionTest2EE.crt",
4095 "third_party/nist-pkits/certs/InvalidWrongCRLTest6EE.crt",
4096 "third_party/nist-pkits/certs/InvalidcAFalseTest2EE.crt",
4097 "third_party/nist-pkits/certs/InvalidcAFalseTest3EE.crt",
4098 "third_party/nist-pkits/certs/InvalidcRLIssuerTest27EE.crt",
4099 "third_party/nist-pkits/certs/InvalidcRLIssuerTest31EE.crt",
4100 "third_party/nist-pkits/certs/InvalidcRLIssuerTest32EE.crt",
4101 "third_party/nist-pkits/certs/InvalidcRLIssuerTest34EE.crt",
4102 "third_party/nist-pkits/certs/InvalidcRLIssuerTest35EE.crt",
4103 "third_party/nist-pkits/certs/InvaliddeltaCRLIndicatorNoBaseTest1EE.crt",
4104 "third_party/nist-pkits/certs/InvaliddeltaCRLTest10EE.crt",
4105 "third_party/nist-pkits/certs/InvaliddeltaCRLTest3EE.crt",
4106 "third_party/nist-pkits/certs/InvaliddeltaCRLTest4EE.crt",
4107 "third_party/nist-pkits/certs/InvaliddeltaCRLTest6EE.crt",
4108 "third_party/nist-pkits/certs/InvaliddeltaCRLTest9EE.crt",
4109 "third_party/nist-pkits/certs/InvaliddistributionPointTest2EE.crt",
4110 "third_party/nist-pkits/certs/InvaliddistributionPointTest3EE.crt",
4111 "third_party/nist-pkits/certs/InvaliddistributionPointTest6EE.crt",
4112 "third_party/nist-pkits/certs/InvaliddistributionPointTest8EE.crt",
4113 "third_party/nist-pkits/certs/InvaliddistributionPointTest9EE.crt",
4114 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest1EE.crt",
4115 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest4EE.crt",
4116 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest5EE.crt",
4117 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest6EE.crt",
4118 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest1EE.crt",
4119 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest3EE.crt",
4120 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest5EE.crt",
4121 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest6EE.crt",
4122 "third_party/nist-pkits/certs/InvalidkeyUsageCriticalcRLSignFalseTest4EE.crt",
4123 "third_party/nist-pkits/certs/InvalidkeyUsageCriticalkeyCertSignFalseTest1EE.crt",
4124 "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalcRLSignFalseTest5EE.crt",
4125 "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalkeyCertSignFalseTest2EE.crt",
4126 "third_party/nist-pkits/certs/InvalidonlyContainsAttributeCertsTest14EE.crt",
4127 "third_party/nist-pkits/certs/InvalidonlyContainsCACertsTest12EE.crt",
4128 "third_party/nist-pkits/certs/InvalidonlyContainsUserCertsTest11EE.crt",
4129 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest15EE.crt",
4130 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest16EE.crt",
4131 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest17EE.crt",
4132 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest20EE.crt",
4133 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest21EE.crt",
4134 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest10EE.crt",
4135 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest11EE.crt",
4136 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest12EE.crt",
4137 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest5EE.crt",
4138 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest6EE.crt",
4139 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest9EE.crt",
4140 "third_party/nist-pkits/certs/Invalidpre2000CRLnextUpdateTest12EE.crt",
4141 "third_party/nist-pkits/certs/Invalidpre2000UTCEEnotAfterDateTest7EE.crt",
4142 "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest3EE.crt",
4143 "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest5EE.crt",
4144 "third_party/nist-pkits/certs/LongSerialNumberCACert.crt",
4145 "third_party/nist-pkits/certs/Mapping1to2CACert.crt",
4146 "third_party/nist-pkits/certs/MappingFromanyPolicyCACert.crt",
4147 "third_party/nist-pkits/certs/MappingToanyPolicyCACert.crt",
4148 "third_party/nist-pkits/certs/MissingbasicConstraintsCACert.crt",
4149 "third_party/nist-pkits/certs/NameOrderingCACert.crt",
4150 "third_party/nist-pkits/certs/NegativeSerialNumberCACert.crt",
4151 "third_party/nist-pkits/certs/NoCRLCACert.crt",
4152 "third_party/nist-pkits/certs/NoPoliciesCACert.crt",
4153 "third_party/nist-pkits/certs/NoissuingDistributionPointCACert.crt",
4154 "third_party/nist-pkits/certs/OldCRLnextUpdateCACert.crt",
4155 "third_party/nist-pkits/certs/OverlappingPoliciesTest6EE.crt",
4156 "third_party/nist-pkits/certs/P12Mapping1to3CACert.crt",
4157 "third_party/nist-pkits/certs/P12Mapping1to3subCACert.crt",
4158 "third_party/nist-pkits/certs/P12Mapping1to3subsubCACert.crt",
4159 "third_party/nist-pkits/certs/P1Mapping1to234CACert.crt",
4160 "third_party/nist-pkits/certs/P1Mapping1to234subCACert.crt",
4161 "third_party/nist-pkits/certs/P1anyPolicyMapping1to2CACert.crt",
4162 "third_party/nist-pkits/certs/PanyPolicyMapping1to2CACert.crt",
4163 "third_party/nist-pkits/certs/PoliciesP1234CACert.crt",
4164 "third_party/nist-pkits/certs/PoliciesP1234subCAP123Cert.crt",
4165 "third_party/nist-pkits/certs/PoliciesP1234subsubCAP123P12Cert.crt",
4166 "third_party/nist-pkits/certs/PoliciesP123CACert.crt",
4167 "third_party/nist-pkits/certs/PoliciesP123subCAP12Cert.crt",
4168 "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P1Cert.crt",
4169 "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P2Cert.crt",
4170 "third_party/nist-pkits/certs/PoliciesP123subsubsubCAP12P2P1Cert.crt",
4171 "third_party/nist-pkits/certs/PoliciesP12CACert.crt",
4172 "third_party/nist-pkits/certs/PoliciesP12subCAP1Cert.crt",
4173 "third_party/nist-pkits/certs/PoliciesP12subsubCAP1P2Cert.crt",
4174 "third_party/nist-pkits/certs/PoliciesP2subCA2Cert.crt",
4175 "third_party/nist-pkits/certs/PoliciesP2subCACert.crt",
4176 "third_party/nist-pkits/certs/PoliciesP3CACert.crt",
4177 "third_party/nist-pkits/certs/RFC3280MandatoryAttributeTypesCACert.crt",
4178 "third_party/nist-pkits/certs/RFC3280OptionalAttributeTypesCACert.crt",
4179 "third_party/nist-pkits/certs/RevokedsubCACert.crt",
4180 "third_party/nist-pkits/certs/RolloverfromPrintableStringtoUTF8StringCACert.crt",
4181 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CRLSigningCert.crt",
4182 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CertificateSigningCACert.crt",
4183 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCRLSigningCert.crt",
4184 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCertificateSigningCACert.crt",
4185 "third_party/nist-pkits/certs/TrustAnchorRootCertificate.crt",
4186 "third_party/nist-pkits/certs/TwoCRLsCACert.crt",
4187 "third_party/nist-pkits/certs/UIDCACert.crt",
4188 "third_party/nist-pkits/certs/UTF8StringCaseInsensitiveMatchCACert.crt",
4189 "third_party/nist-pkits/certs/UTF8StringEncodedNamesCACert.crt",
4190 "third_party/nist-pkits/certs/UnknownCRLEntryExtensionCACert.crt",
4191 "third_party/nist-pkits/certs/UnknownCRLExtensionCACert.crt",
4192 "third_party/nist-pkits/certs/UserNoticeQualifierTest15EE.crt",
4193 "third_party/nist-pkits/certs/UserNoticeQualifierTest16EE.crt",
4194 "third_party/nist-pkits/certs/UserNoticeQualifierTest17EE.crt",
4195 "third_party/nist-pkits/certs/UserNoticeQualifierTest18EE.crt",
4196 "third_party/nist-pkits/certs/UserNoticeQualifierTest19EE.crt",
4197 "third_party/nist-pkits/certs/ValidBasicSelfIssuedCRLSigningKeyTest6EE.crt",
4198 "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest3EE.crt",
4199 "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest4EE.crt",
4200 "third_party/nist-pkits/certs/ValidBasicSelfIssuedOldWithNewTest1EE.crt",
4201 "third_party/nist-pkits/certs/ValidCertificatePathTest1EE.crt",
4202 "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest30EE.crt",
4203 "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest32EE.crt",
4204 "third_party/nist-pkits/certs/ValidDNandRFC822nameConstraintsTest27EE.crt",
4205 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest11EE.crt",
4206 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest14EE.crt",
4207 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest18EE.crt",
4208 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest19EE.crt",
4209 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest1EE.crt",
4210 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest4EE.crt",
4211 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest5EE.crt",
4212 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest6EE.crt",
4213 "third_party/nist-pkits/certs/ValidDSAParameterInheritanceTest5EE.crt",
4214 "third_party/nist-pkits/certs/ValidDSASignaturesTest4EE.crt",
4215 "third_party/nist-pkits/certs/ValidGeneralizedTimeCRLnextUpdateTest13EE.crt",
4216 "third_party/nist-pkits/certs/ValidGeneralizedTimenotAfterDateTest8EE.crt",
4217 "third_party/nist-pkits/certs/ValidGeneralizedTimenotBeforeDateTest4EE.crt",
4218 "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest22EE.crt",
4219 "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest24EE.crt",
4220 "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest25EE.crt",
4221 "third_party/nist-pkits/certs/ValidLongSerialNumberTest16EE.crt",
4222 "third_party/nist-pkits/certs/ValidLongSerialNumberTest17EE.crt",
4223 "third_party/nist-pkits/certs/ValidNameChainingCapitalizationTest5EE.crt",
4224 "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest3EE.crt",
4225 "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest4EE.crt",
4226 "third_party/nist-pkits/certs/ValidNameUIDsTest6EE.crt",
4227 "third_party/nist-pkits/certs/ValidNegativeSerialNumberTest14EE.crt",
4228 "third_party/nist-pkits/certs/ValidNoissuingDistributionPointTest10EE.crt",
4229 "third_party/nist-pkits/certs/ValidPolicyMappingTest11EE.crt",
4230 "third_party/nist-pkits/certs/ValidPolicyMappingTest12EE.crt",
4231 "third_party/nist-pkits/certs/ValidPolicyMappingTest13EE.crt",
4232 "third_party/nist-pkits/certs/ValidPolicyMappingTest14EE.crt",
4233 "third_party/nist-pkits/certs/ValidPolicyMappingTest1EE.crt",
4234 "third_party/nist-pkits/certs/ValidPolicyMappingTest3EE.crt",
4235 "third_party/nist-pkits/certs/ValidPolicyMappingTest5EE.crt",
4236 "third_party/nist-pkits/certs/ValidPolicyMappingTest6EE.crt",
4237 "third_party/nist-pkits/certs/ValidPolicyMappingTest9EE.crt",
4238 "third_party/nist-pkits/certs/ValidRFC3280MandatoryAttributeTypesTest7EE.crt",
4239 "third_party/nist-pkits/certs/ValidRFC3280OptionalAttributeTypesTest8EE.crt",
4240 "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest21EE.crt",
4241 "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest23EE.crt",
4242 "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest25EE.crt",
4243 "third_party/nist-pkits/certs/ValidRolloverfromPrintableStringtoUTF8StringTest10EE.crt",
4244 "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest7EE.crt",
4245 "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest9EE.crt",
4246 "third_party/nist-pkits/certs/ValidSelfIssuedinhibitPolicyMappingTest7EE.crt",
4247 "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest15EE.crt",
4248 "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest17EE.crt",
4249 "third_party/nist-pkits/certs/ValidSelfIssuedrequireExplicitPolicyTest6EE.crt",
4250 "third_party/nist-pkits/certs/ValidSeparateCertificateandCRLKeysTest19EE.crt",
4251 "third_party/nist-pkits/certs/ValidTwoCRLsTest7EE.crt",
4252 "third_party/nist-pkits/certs/ValidURInameConstraintsTest34EE.crt",
4253 "third_party/nist-pkits/certs/ValidURInameConstraintsTest36EE.crt",
4254 "third_party/nist-pkits/certs/ValidUTF8StringCaseInsensitiveMatchTest11EE.crt",
4255 "third_party/nist-pkits/certs/ValidUTF8StringEncodedNamesTest9EE.crt",
4256 "third_party/nist-pkits/certs/ValidUnknownNotCriticalCertificateExtensionTest1EE.crt",
4257 "third_party/nist-pkits/certs/ValidbasicConstraintsNotCriticalTest4EE.crt",
4258 "third_party/nist-pkits/certs/ValidcRLIssuerTest28EE.crt",
4259 "third_party/nist-pkits/certs/ValidcRLIssuerTest29EE.crt",
4260 "third_party/nist-pkits/certs/ValidcRLIssuerTest30EE.crt",
4261 "third_party/nist-pkits/certs/ValidcRLIssuerTest33EE.crt",
4262 "third_party/nist-pkits/certs/ValiddeltaCRLTest2EE.crt",
4263 "third_party/nist-pkits/certs/ValiddeltaCRLTest5EE.crt",
4264 "third_party/nist-pkits/certs/ValiddeltaCRLTest7EE.crt",
4265 "third_party/nist-pkits/certs/ValiddeltaCRLTest8EE.crt",
4266 "third_party/nist-pkits/certs/ValiddistributionPointTest1EE.crt",
4267 "third_party/nist-pkits/certs/ValiddistributionPointTest4EE.crt",
4268 "third_party/nist-pkits/certs/ValiddistributionPointTest5EE.crt",
4269 "third_party/nist-pkits/certs/ValiddistributionPointTest7EE.crt",
4270 "third_party/nist-pkits/certs/ValidinhibitAnyPolicyTest2EE.crt",
4271 "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest2EE.crt",
4272 "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest4EE.crt",
4273 "third_party/nist-pkits/certs/ValidkeyUsageNotCriticalTest3EE.crt",
4274 "third_party/nist-pkits/certs/ValidonlyContainsCACertsTest13EE.crt",
4275 "third_party/nist-pkits/certs/ValidonlySomeReasonsTest18EE.crt",
4276 "third_party/nist-pkits/certs/ValidonlySomeReasonsTest19EE.crt",
4277 "third_party/nist-pkits/certs/ValidpathLenConstraintTest13EE.crt",
4278 "third_party/nist-pkits/certs/ValidpathLenConstraintTest14EE.crt",
4279 "third_party/nist-pkits/certs/ValidpathLenConstraintTest7EE.crt",
4280 "third_party/nist-pkits/certs/ValidpathLenConstraintTest8EE.crt",
4281 "third_party/nist-pkits/certs/Validpre2000UTCnotBeforeDateTest3EE.crt",
4282 "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest1EE.crt",
4283 "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest2EE.crt",
4284 "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest4EE.crt",
4285 "third_party/nist-pkits/certs/WrongCRLCACert.crt",
4286 "third_party/nist-pkits/certs/anyPolicyCACert.crt",
4287 "third_party/nist-pkits/certs/basicConstraintsCriticalcAFalseCACert.crt",
4288 "third_party/nist-pkits/certs/basicConstraintsNotCriticalCACert.crt",
4289 "third_party/nist-pkits/certs/basicConstraintsNotCriticalcAFalseCACert.crt",
4290 "third_party/nist-pkits/certs/deltaCRLCA1Cert.crt",
4291 "third_party/nist-pkits/certs/deltaCRLCA2Cert.crt",
4292 "third_party/nist-pkits/certs/deltaCRLCA3Cert.crt",
4293 "third_party/nist-pkits/certs/deltaCRLIndicatorNoBaseCACert.crt",
4294 "third_party/nist-pkits/certs/distributionPoint1CACert.crt",
4295 "third_party/nist-pkits/certs/distributionPoint2CACert.crt",
4296 "third_party/nist-pkits/certs/indirectCRLCA1Cert.crt",
4297 "third_party/nist-pkits/certs/indirectCRLCA2Cert.crt",
4298 "third_party/nist-pkits/certs/indirectCRLCA3Cert.crt",
4299 "third_party/nist-pkits/certs/indirectCRLCA3cRLIssuerCert.crt",
4300 "third_party/nist-pkits/certs/indirectCRLCA4Cert.crt",
4301 "third_party/nist-pkits/certs/indirectCRLCA4cRLIssuerCert.crt",
4302 "third_party/nist-pkits/certs/indirectCRLCA5Cert.crt",
4303 "third_party/nist-pkits/certs/indirectCRLCA6Cert.crt",
4304 "third_party/nist-pkits/certs/inhibitAnyPolicy0CACert.crt",
4305 "third_party/nist-pkits/certs/inhibitAnyPolicy1CACert.crt",
4306 "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedCACert.crt",
4307 "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedsubCA2Cert.crt",
4308 "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA1Cert.crt",
4309 "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA2Cert.crt",
4310 "third_party/nist-pkits/certs/inhibitAnyPolicy1subCAIAP5Cert.crt",
4311 "third_party/nist-pkits/certs/inhibitAnyPolicy1subsubCA2Cert.crt",
4312 "third_party/nist-pkits/certs/inhibitAnyPolicy5CACert.crt",
4313 "third_party/nist-pkits/certs/inhibitAnyPolicy5subCACert.crt",
4314 "third_party/nist-pkits/certs/inhibitAnyPolicy5subsubCACert.crt",
4315 "third_party/nist-pkits/certs/inhibitAnyPolicyTest3EE.crt",
4316 "third_party/nist-pkits/certs/inhibitPolicyMapping0CACert.crt",
4317 "third_party/nist-pkits/certs/inhibitPolicyMapping0subCACert.crt",
4318 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12CACert.crt",
4319 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCACert.crt",
4320 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCAIPM5Cert.crt",
4321 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCACert.crt",
4322 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCAIPM5Cert.crt",
4323 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1CACert.crt",
4324 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedCACert.crt",
4325 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedsubCACert.crt",
4326 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subCACert.crt",
4327 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subsubCACert.crt",
4328 "third_party/nist-pkits/certs/inhibitPolicyMapping5CACert.crt",
4329 "third_party/nist-pkits/certs/inhibitPolicyMapping5subCACert.crt",
4330 "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubCACert.crt",
4331 "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubsubCACert.crt",
4332 "third_party/nist-pkits/certs/keyUsageCriticalcRLSignFalseCACert.crt",
4333 "third_party/nist-pkits/certs/keyUsageCriticalkeyCertSignFalseCACert.crt",
4334 "third_party/nist-pkits/certs/keyUsageNotCriticalCACert.crt",
4335 "third_party/nist-pkits/certs/keyUsageNotCriticalcRLSignFalseCACert.crt",
4336 "third_party/nist-pkits/certs/keyUsageNotCriticalkeyCertSignFalseCACert.crt",
4337 "third_party/nist-pkits/certs/nameConstraintsDN1CACert.crt",
4338 "third_party/nist-pkits/certs/nameConstraintsDN1SelfIssuedCACert.crt",
4339 "third_party/nist-pkits/certs/nameConstraintsDN1subCA1Cert.crt",
4340 "third_party/nist-pkits/certs/nameConstraintsDN1subCA2Cert.crt",
4341 "third_party/nist-pkits/certs/nameConstraintsDN1subCA3Cert.crt",
4342 "third_party/nist-pkits/certs/nameConstraintsDN2CACert.crt",
4343 "third_party/nist-pkits/certs/nameConstraintsDN3CACert.crt",
4344 "third_party/nist-pkits/certs/nameConstraintsDN3subCA1Cert.crt",
4345 "third_party/nist-pkits/certs/nameConstraintsDN3subCA2Cert.crt",
4346 "third_party/nist-pkits/certs/nameConstraintsDN4CACert.crt",
4347 "third_party/nist-pkits/certs/nameConstraintsDN5CACert.crt",
4348 "third_party/nist-pkits/certs/nameConstraintsDNS1CACert.crt",
4349 "third_party/nist-pkits/certs/nameConstraintsDNS2CACert.crt",
4350 "third_party/nist-pkits/certs/nameConstraintsRFC822CA1Cert.crt",
4351 "third_party/nist-pkits/certs/nameConstraintsRFC822CA2Cert.crt",
4352 "third_party/nist-pkits/certs/nameConstraintsRFC822CA3Cert.crt",
4353 "third_party/nist-pkits/certs/nameConstraintsURI1CACert.crt",
4354 "third_party/nist-pkits/certs/nameConstraintsURI2CACert.crt",
4355 "third_party/nist-pkits/certs/onlyContainsAttributeCertsCACert.crt",
4356 "third_party/nist-pkits/certs/onlyContainsCACertsCACert.crt",
4357 "third_party/nist-pkits/certs/onlyContainsUserCertsCACert.crt",
4358 "third_party/nist-pkits/certs/onlySomeReasonsCA1Cert.crt",
4359 "third_party/nist-pkits/certs/onlySomeReasonsCA2Cert.crt",
4360 "third_party/nist-pkits/certs/onlySomeReasonsCA3Cert.crt",
4361 "third_party/nist-pkits/certs/onlySomeReasonsCA4Cert.crt",
4362 "third_party/nist-pkits/certs/pathLenConstraint0CACert.crt",
4363 "third_party/nist-pkits/certs/pathLenConstraint0SelfIssuedCACert.crt",
4364 "third_party/nist-pkits/certs/pathLenConstraint0subCA2Cert.crt",
4365 "third_party/nist-pkits/certs/pathLenConstraint0subCACert.crt",
4366 "third_party/nist-pkits/certs/pathLenConstraint1CACert.crt",
4367 "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedCACert.crt",
4368 "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedsubCACert.crt",
4369 "third_party/nist-pkits/certs/pathLenConstraint1subCACert.crt",
4370 "third_party/nist-pkits/certs/pathLenConstraint6CACert.crt",
4371 "third_party/nist-pkits/certs/pathLenConstraint6subCA0Cert.crt",
4372 "third_party/nist-pkits/certs/pathLenConstraint6subCA1Cert.crt",
4373 "third_party/nist-pkits/certs/pathLenConstraint6subCA4Cert.crt",
4374 "third_party/nist-pkits/certs/pathLenConstraint6subsubCA00Cert.crt",
4375 "third_party/nist-pkits/certs/pathLenConstraint6subsubCA11Cert.crt",
4376 "third_party/nist-pkits/certs/pathLenConstraint6subsubCA41Cert.crt",
4377 "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA11XCert.crt",
4378 "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA41XCert.crt",
4379 "third_party/nist-pkits/certs/pre2000CRLnextUpdateCACert.crt",
4380 "third_party/nist-pkits/certs/requireExplicitPolicy0CACert.crt",
4381 "third_party/nist-pkits/certs/requireExplicitPolicy0subCACert.crt",
4382 "third_party/nist-pkits/certs/requireExplicitPolicy0subsubCACert.crt",
4383 "third_party/nist-pkits/certs/requireExplicitPolicy0subsubsubCACert.crt",
4384 "third_party/nist-pkits/certs/requireExplicitPolicy10CACert.crt",
4385 "third_party/nist-pkits/certs/requireExplicitPolicy10subCACert.crt",
4386 "third_party/nist-pkits/certs/requireExplicitPolicy10subsubCACert.crt",
4387 "third_party/nist-pkits/certs/requireExplicitPolicy10subsubsubCACert.crt",
4388 "third_party/nist-pkits/certs/requireExplicitPolicy2CACert.crt",
4389 "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedCACert.crt",
4390 "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedsubCACert.crt",
4391 "third_party/nist-pkits/certs/requireExplicitPolicy2subCACert.crt",
4392 "third_party/nist-pkits/certs/requireExplicitPolicy4CACert.crt",
4393 "third_party/nist-pkits/certs/requireExplicitPolicy4subCACert.crt",
4394 "third_party/nist-pkits/certs/requireExplicitPolicy4subsubCACert.crt",
4395 "third_party/nist-pkits/certs/requireExplicitPolicy4subsubsubCACert.crt",
4396 "third_party/nist-pkits/certs/requireExplicitPolicy5CACert.crt",
4397 "third_party/nist-pkits/certs/requireExplicitPolicy5subCACert.crt",
4398 "third_party/nist-pkits/certs/requireExplicitPolicy5subsubCACert.crt",
4399 "third_party/nist-pkits/certs/requireExplicitPolicy5subsubsubCACert.crt",
4400 "third_party/nist-pkits/certs/requireExplicitPolicy7CACert.crt",
4401 "third_party/nist-pkits/certs/requireExplicitPolicy7subCARE2Cert.crt",
4402 "third_party/nist-pkits/certs/requireExplicitPolicy7subsubCARE2RE4Cert.crt",
4403 "third_party/nist-pkits/certs/requireExplicitPolicy7subsubsubCARE2RE4Cert.crt",
4404 "third_party/nist-pkits/crls/BadCRLIssuerNameCACRL.crl",
4405 "third_party/nist-pkits/crls/BadCRLSignatureCACRL.crl",
4406 "third_party/nist-pkits/crls/BadSignedCACRL.crl",
4407 "third_party/nist-pkits/crls/BadnotAfterDateCACRL.crl",
4408 "third_party/nist-pkits/crls/BadnotBeforeDateCACRL.crl",
4409 "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCACRL.crl",
4410 "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCRLCertCRL.crl",
4411 "third_party/nist-pkits/crls/BasicSelfIssuedNewKeyCACRL.crl",
4412 "third_party/nist-pkits/crls/BasicSelfIssuedOldKeyCACRL.crl",
4413 "third_party/nist-pkits/crls/BasicSelfIssuedOldKeySelfIssuedCertCRL.crl",
4414 "third_party/nist-pkits/crls/DSACACRL.crl",
4415 "third_party/nist-pkits/crls/DSAParametersInheritedCACRL.crl",
4416 "third_party/nist-pkits/crls/GeneralizedTimeCRLnextUpdateCACRL.crl",
4417 "third_party/nist-pkits/crls/GoodCACRL.crl",
4418 "third_party/nist-pkits/crls/GoodsubCACRL.crl",
4419 "third_party/nist-pkits/crls/GoodsubCAPanyPolicyMapping1to2CACRL.crl",
4420 "third_party/nist-pkits/crls/LongSerialNumberCACRL.crl",
4421 "third_party/nist-pkits/crls/Mapping1to2CACRL.crl",
4422 "third_party/nist-pkits/crls/MappingFromanyPolicyCACRL.crl",
4423 "third_party/nist-pkits/crls/MappingToanyPolicyCACRL.crl",
4424 "third_party/nist-pkits/crls/MissingbasicConstraintsCACRL.crl",
4425 "third_party/nist-pkits/crls/NameOrderCACRL.crl",
4426 "third_party/nist-pkits/crls/NegativeSerialNumberCACRL.crl",
4427 "third_party/nist-pkits/crls/NoPoliciesCACRL.crl",
4428 "third_party/nist-pkits/crls/NoissuingDistributionPointCACRL.crl",
4429 "third_party/nist-pkits/crls/OldCRLnextUpdateCACRL.crl",
4430 "third_party/nist-pkits/crls/P12Mapping1to3CACRL.crl",
4431 "third_party/nist-pkits/crls/P12Mapping1to3subCACRL.crl",
4432 "third_party/nist-pkits/crls/P12Mapping1to3subsubCACRL.crl",
4433 "third_party/nist-pkits/crls/P1Mapping1to234CACRL.crl",
4434 "third_party/nist-pkits/crls/P1Mapping1to234subCACRL.crl",
4435 "third_party/nist-pkits/crls/P1anyPolicyMapping1to2CACRL.crl",
4436 "third_party/nist-pkits/crls/PanyPolicyMapping1to2CACRL.crl",
4437 "third_party/nist-pkits/crls/PoliciesP1234CACRL.crl",
4438 "third_party/nist-pkits/crls/PoliciesP1234subCAP123CRL.crl",
4439 "third_party/nist-pkits/crls/PoliciesP1234subsubCAP123P12CRL.crl",
4440 "third_party/nist-pkits/crls/PoliciesP123CACRL.crl",
4441 "third_party/nist-pkits/crls/PoliciesP123subCAP12CRL.crl",
4442 "third_party/nist-pkits/crls/PoliciesP123subsubCAP12P1CRL.crl",
4443 "third_party/nist-pkits/crls/PoliciesP123subsubCAP2P2CRL.crl",
4444 "third_party/nist-pkits/crls/PoliciesP123subsubsubCAP12P2P1CRL.crl",
4445 "third_party/nist-pkits/crls/PoliciesP12CACRL.crl",
4446 "third_party/nist-pkits/crls/PoliciesP12subCAP1CRL.crl",
4447 "third_party/nist-pkits/crls/PoliciesP12subsubCAP1P2CRL.crl",
4448 "third_party/nist-pkits/crls/PoliciesP2subCA2CRL.crl",
4449 "third_party/nist-pkits/crls/PoliciesP2subCACRL.crl",
4450 "third_party/nist-pkits/crls/PoliciesP3CACRL.crl",
4451 "third_party/nist-pkits/crls/RFC3280MandatoryAttributeTypesCACRL.crl",
4452 "third_party/nist-pkits/crls/RFC3280OptionalAttributeTypesCACRL.crl",
4453 "third_party/nist-pkits/crls/RevokedsubCACRL.crl",
4454 "third_party/nist-pkits/crls/RolloverfromPrintableStringtoUTF8StringCACRL.crl",
4455 "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCA2CRL.crl",
4456 "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCRL.crl",
4457 "third_party/nist-pkits/crls/TrustAnchorRootCRL.crl",
4458 "third_party/nist-pkits/crls/TwoCRLsCABadCRL.crl",
4459 "third_party/nist-pkits/crls/TwoCRLsCAGoodCRL.crl",
4460 "third_party/nist-pkits/crls/UIDCACRL.crl",
4461 "third_party/nist-pkits/crls/UTF8StringCaseInsensitiveMatchCACRL.crl",
4462 "third_party/nist-pkits/crls/UTF8StringEncodedNamesCACRL.crl",
4463 "third_party/nist-pkits/crls/UnknownCRLEntryExtensionCACRL.crl",
4464 "third_party/nist-pkits/crls/UnknownCRLExtensionCACRL.crl",
4465 "third_party/nist-pkits/crls/WrongCRLCACRL.crl",
4466 "third_party/nist-pkits/crls/anyPolicyCACRL.crl",
4467 "third_party/nist-pkits/crls/basicConstraintsCriticalcAFalseCACRL.crl",
4468 "third_party/nist-pkits/crls/basicConstraintsNotCriticalCACRL.crl",
4469 "third_party/nist-pkits/crls/basicConstraintsNotCriticalcAFalseCACRL.crl",
4470 "third_party/nist-pkits/crls/deltaCRLCA1CRL.crl",
4471 "third_party/nist-pkits/crls/deltaCRLCA1deltaCRL.crl",
4472 "third_party/nist-pkits/crls/deltaCRLCA2CRL.crl",
4473 "third_party/nist-pkits/crls/deltaCRLCA2deltaCRL.crl",
4474 "third_party/nist-pkits/crls/deltaCRLCA3CRL.crl",
4475 "third_party/nist-pkits/crls/deltaCRLCA3deltaCRL.crl",
4476 "third_party/nist-pkits/crls/deltaCRLIndicatorNoBaseCACRL.crl",
4477 "third_party/nist-pkits/crls/distributionPoint1CACRL.crl",
4478 "third_party/nist-pkits/crls/distributionPoint2CACRL.crl",
4479 "third_party/nist-pkits/crls/indirectCRLCA1CRL.crl",
4480 "third_party/nist-pkits/crls/indirectCRLCA3CRL.crl",
4481 "third_party/nist-pkits/crls/indirectCRLCA3cRLIssuerCRL.crl",
4482 "third_party/nist-pkits/crls/indirectCRLCA4cRLIssuerCRL.crl",
4483 "third_party/nist-pkits/crls/indirectCRLCA5CRL.crl",
4484 "third_party/nist-pkits/crls/inhibitAnyPolicy0CACRL.crl",
4485 "third_party/nist-pkits/crls/inhibitAnyPolicy1CACRL.crl",
4486 "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA1CRL.crl",
4487 "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA2CRL.crl",
4488 "third_party/nist-pkits/crls/inhibitAnyPolicy1subCAIAP5CRL.crl",
4489 "third_party/nist-pkits/crls/inhibitAnyPolicy1subsubCA2CRL.crl",
4490 "third_party/nist-pkits/crls/inhibitAnyPolicy5CACRL.crl",
4491 "third_party/nist-pkits/crls/inhibitAnyPolicy5subCACRL.crl",
4492 "third_party/nist-pkits/crls/inhibitAnyPolicy5subsubCACRL.crl",
4493 "third_party/nist-pkits/crls/inhibitPolicyMapping0CACRL.crl",
4494 "third_party/nist-pkits/crls/inhibitPolicyMapping0subCACRL.crl",
4495 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12CACRL.crl",
4496 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCACRL.crl",
4497 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCAIPM5CRL.crl",
4498 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCACRL.crl",
4499 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCAIPM5CRL.crl",
4500 "third_party/nist-pkits/crls/inhibitPolicyMapping1P1CACRL.crl",
4501 "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subCACRL.crl",
4502 "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subsubCACRL.crl",
4503 "third_party/nist-pkits/crls/inhibitPolicyMapping5CACRL.crl",
4504 "third_party/nist-pkits/crls/inhibitPolicyMapping5subCACRL.crl",
4505 "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubCACRL.crl",
4506 "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubsubCACRL.crl",
4507 "third_party/nist-pkits/crls/keyUsageCriticalcRLSignFalseCACRL.crl",
4508 "third_party/nist-pkits/crls/keyUsageCriticalkeyCertSignFalseCACRL.crl",
4509 "third_party/nist-pkits/crls/keyUsageNotCriticalCACRL.crl",
4510 "third_party/nist-pkits/crls/keyUsageNotCriticalcRLSignFalseCACRL.crl",
4511 "third_party/nist-pkits/crls/keyUsageNotCriticalkeyCertSignFalseCACRL.crl",
4512 "third_party/nist-pkits/crls/nameConstraintsDN1CACRL.crl",
4513 "third_party/nist-pkits/crls/nameConstraintsDN1subCA1CRL.crl",
4514 "third_party/nist-pkits/crls/nameConstraintsDN1subCA2CRL.crl",
4515 "third_party/nist-pkits/crls/nameConstraintsDN1subCA3CRL.crl",
4516 "third_party/nist-pkits/crls/nameConstraintsDN2CACRL.crl",
4517 "third_party/nist-pkits/crls/nameConstraintsDN3CACRL.crl",
4518 "third_party/nist-pkits/crls/nameConstraintsDN3subCA1CRL.crl",
4519 "third_party/nist-pkits/crls/nameConstraintsDN3subCA2CRL.crl",
4520 "third_party/nist-pkits/crls/nameConstraintsDN4CACRL.crl",
4521 "third_party/nist-pkits/crls/nameConstraintsDN5CACRL.crl",
4522 "third_party/nist-pkits/crls/nameConstraintsDNS1CACRL.crl",
4523 "third_party/nist-pkits/crls/nameConstraintsDNS2CACRL.crl",
4524 "third_party/nist-pkits/crls/nameConstraintsRFC822CA1CRL.crl",
4525 "third_party/nist-pkits/crls/nameConstraintsRFC822CA2CRL.crl",
4526 "third_party/nist-pkits/crls/nameConstraintsRFC822CA3CRL.crl",
4527 "third_party/nist-pkits/crls/nameConstraintsURI1CACRL.crl",
4528 "third_party/nist-pkits/crls/nameConstraintsURI2CACRL.crl",
4529 "third_party/nist-pkits/crls/onlyContainsAttributeCertsCACRL.crl",
4530 "third_party/nist-pkits/crls/onlyContainsCACertsCACRL.crl",
4531 "third_party/nist-pkits/crls/onlyContainsUserCertsCACRL.crl",
4532 "third_party/nist-pkits/crls/onlySomeReasonsCA1compromiseCRL.crl",
4533 "third_party/nist-pkits/crls/onlySomeReasonsCA1otherreasonsCRL.crl",
4534 "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL1.crl",
4535 "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL2.crl",
4536 "third_party/nist-pkits/crls/onlySomeReasonsCA3compromiseCRL.crl",
4537 "third_party/nist-pkits/crls/onlySomeReasonsCA3otherreasonsCRL.crl",
4538 "third_party/nist-pkits/crls/onlySomeReasonsCA4compromiseCRL.crl",
4539 "third_party/nist-pkits/crls/onlySomeReasonsCA4otherreasonsCRL.crl",
4540 "third_party/nist-pkits/crls/pathLenConstraint0CACRL.crl",
4541 "third_party/nist-pkits/crls/pathLenConstraint0subCA2CRL.crl",
4542 "third_party/nist-pkits/crls/pathLenConstraint0subCACRL.crl",
4543 "third_party/nist-pkits/crls/pathLenConstraint1CACRL.crl",
4544 "third_party/nist-pkits/crls/pathLenConstraint1subCACRL.crl",
4545 "third_party/nist-pkits/crls/pathLenConstraint6CACRL.crl",
4546 "third_party/nist-pkits/crls/pathLenConstraint6subCA0CRL.crl",
4547 "third_party/nist-pkits/crls/pathLenConstraint6subCA1CRL.crl",
4548 "third_party/nist-pkits/crls/pathLenConstraint6subCA4CRL.crl",
4549 "third_party/nist-pkits/crls/pathLenConstraint6subsubCA00CRL.crl",
4550 "third_party/nist-pkits/crls/pathLenConstraint6subsubCA11CRL.crl",
4551 "third_party/nist-pkits/crls/pathLenConstraint6subsubCA41CRL.crl",
4552 "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA11XCRL.crl",
4553 "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA41XCRL.crl",
4554 "third_party/nist-pkits/crls/pre2000CRLnextUpdateCACRL.crl",
4555 "third_party/nist-pkits/crls/requireExplicitPolicy0CACRL.crl",
4556 "third_party/nist-pkits/crls/requireExplicitPolicy0subCACRL.crl",
4557 "third_party/nist-pkits/crls/requireExplicitPolicy0subsubCACRL.crl",
4558 "third_party/nist-pkits/crls/requireExplicitPolicy0subsubsubCACRL.crl",
4559 "third_party/nist-pkits/crls/requireExplicitPolicy10CACRL.crl",
4560 "third_party/nist-pkits/crls/requireExplicitPolicy10subCACRL.crl",
4561 "third_party/nist-pkits/crls/requireExplicitPolicy10subsubCACRL.crl",
4562 "third_party/nist-pkits/crls/requireExplicitPolicy10subsubsubCACRL.crl",
4563 "third_party/nist-pkits/crls/requireExplicitPolicy2CACRL.crl",
4564 "third_party/nist-pkits/crls/requireExplicitPolicy2subCACRL.crl",
4565 "third_party/nist-pkits/crls/requireExplicitPolicy4CACRL.crl",
4566 "third_party/nist-pkits/crls/requireExplicitPolicy4subCACRL.crl",
4567 "third_party/nist-pkits/crls/requireExplicitPolicy4subsubCACRL.crl",
4568 "third_party/nist-pkits/crls/requireExplicitPolicy4subsubsubCACRL.crl",
4569 "third_party/nist-pkits/crls/requireExplicitPolicy5CACRL.crl",
4570 "third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl",
4571 "third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl",
4572 "third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl",
4573 "third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl",
4574 "third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl",
4575 "third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl",
4576 "third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.crl",
4577 ]
sdefresneb0a31642016-03-18 11:04:454578 outputs = [
4579 "{{bundle_resources_dir}}/" +
4580 "{{source_root_relative_dir}}/{{source_file_part}}",
4581 ]
4582}
4583
dpranke64df2832015-07-31 22:33:364584test("net_unittests") {
ckrasic73f7240b2017-01-24 00:06:454585 sources = [
4586 "android/cellular_signal_strength_unittest.cc",
4587 "android/dummy_spnego_authenticator.cc",
4588 "android/dummy_spnego_authenticator.h",
4589 "android/http_auth_negotiate_android_unittest.cc",
4590 "android/network_change_notifier_android_unittest.cc",
4591 "android/network_library_unittest.cc",
4592 "android/traffic_stats_unittest.cc",
4593 "base/address_family_unittest.cc",
4594 "base/address_list_unittest.cc",
4595 "base/address_tracker_linux_unittest.cc",
4596 "base/arena_unittest.cc",
4597 "base/backoff_entry_serializer_unittest.cc",
4598 "base/backoff_entry_unittest.cc",
4599 "base/chunked_upload_data_stream_unittest.cc",
4600 "base/data_url_unittest.cc",
Charles 'Buck' Krasiced43ded2018-03-23 18:48:124601 "base/datagram_buffer_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454602 "base/directory_lister_unittest.cc",
4603 "base/directory_listing_unittest.cc",
4604 "base/elements_upload_data_stream_unittest.cc",
4605 "base/escape_unittest.cc",
4606 "base/expiring_cache_unittest.cc",
4607 "base/file_stream_unittest.cc",
4608 "base/filename_util_unittest.cc",
Bence Békyd5c16edf2017-08-04 17:32:304609 "base/hex_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:454610 "base/host_mapping_rules_unittest.cc",
4611 "base/host_port_pair_unittest.cc",
4612 "base/int128_unittest.cc",
fayangbaec8ff52017-01-28 03:26:124613 "base/interval_set_test.cc",
4614 "base/interval_test.cc",
ckrasic73f7240b2017-01-24 00:06:454615 "base/ip_address_unittest.cc",
4616 "base/ip_endpoint_unittest.cc",
4617 "base/ip_pattern_unittest.cc",
4618 "base/layered_network_delegate_unittest.cc",
4619 "base/lookup_string_in_fixed_set_unittest.cc",
4620 "base/mime_sniffer_unittest.cc",
4621 "base/mime_util_unittest.cc",
Zentaro Kavanagha02f1da2017-09-26 23:56:064622 "base/net_string_util_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454623 "base/network_activity_monitor_unittest.cc",
4624 "base/network_change_notifier_unittest.cc",
4625 "base/network_change_notifier_win_unittest.cc",
Sergey Ulanov5bb07d32017-07-12 04:14:544626 "base/network_interfaces_linux_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454627 "base/network_interfaces_unittest.cc",
Sergey Ulanov5bb07d32017-07-12 04:14:544628 "base/network_interfaces_win_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454629 "base/parse_number_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454630 "base/port_util_unittest.cc",
4631 "base/prioritized_dispatcher_unittest.cc",
Josh Karlindd9a5d142018-06-06 00:35:484632 "base/prioritized_task_runner_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454633 "base/priority_queue_unittest.cc",
4634 "base/registry_controlled_domains/registry_controlled_domain_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454635 "base/static_cookie_policy_unittest.cc",
4636 "base/test_completion_callback_unittest.cc",
4637 "base/test_proxy_delegate.cc",
4638 "base/test_proxy_delegate.h",
4639 "base/upload_bytes_element_reader_unittest.cc",
4640 "base/upload_file_element_reader_unittest.cc",
4641 "base/url_util_unittest.cc",
4642 "cert/caching_cert_verifier_unittest.cc",
4643 "cert/cert_verifier_unittest.cc",
estarkd91e0b22017-01-31 01:10:284644 "cert/cert_verify_proc_android_unittest.cc",
Eugene Butd4d01fd2018-04-14 02:38:294645 "cert/cert_verify_proc_ios_unittest.cc",
eromance65aff2017-02-04 00:05:324646 "cert/cert_verify_proc_mac_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454647 "cert/cert_verify_proc_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454648 "cert/crl_set_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454649 "cert/ct_log_response_parser_unittest.cc",
4650 "cert/ct_log_verifier_unittest.cc",
4651 "cert/ct_objects_extractor_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454652 "cert/ct_serialization_unittest.cc",
4653 "cert/ev_root_ca_metadata_unittest.cc",
4654 "cert/internal/cert_issuer_source_aia_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454655 "cert/internal/cert_issuer_source_static_unittest.cc",
4656 "cert/internal/cert_issuer_source_sync_unittest.h",
4657 "cert/internal/certificate_policies_unittest.cc",
4658 "cert/internal/extended_key_usage_unittest.cc",
Matt Mueller9e3ad3032017-09-14 19:29:314659 "cert/internal/general_names_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454660 "cert/internal/name_constraints_unittest.cc",
eromanc95383ac2017-05-26 19:37:304661 "cert/internal/nist_pkits_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454662 "cert/internal/nist_pkits_unittest.h",
Eric Romana2f6f55d2017-09-07 23:34:574663 "cert/internal/ocsp_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454664 "cert/internal/parse_certificate_unittest.cc",
4665 "cert/internal/parse_name_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454666 "cert/internal/parsed_certificate_unittest.cc",
4667 "cert/internal/path_builder_pkits_unittest.cc",
4668 "cert/internal/path_builder_unittest.cc",
4669 "cert/internal/path_builder_verify_certificate_chain_unittest.cc",
Eric Romancc56d16f2017-10-11 23:04:264670 "cert/internal/revocation_checker_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454671 "cert/internal/signature_algorithm_unittest.cc",
Eric Roman5431d702017-07-26 01:58:184672 "cert/internal/simple_path_builder_delegate_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454673 "cert/internal/test_helpers.cc",
4674 "cert/internal/test_helpers.h",
4675 "cert/internal/trust_store_collection_unittest.cc",
mattmea4ed8232017-02-28 23:13:234676 "cert/internal/trust_store_mac_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454677 "cert/internal/trust_store_nss_unittest.cc",
4678 "cert/internal/verify_certificate_chain_pkits_unittest.cc",
4679 "cert/internal/verify_certificate_chain_typed_unittest.h",
4680 "cert/internal/verify_certificate_chain_unittest.cc",
4681 "cert/internal/verify_name_match_unittest.cc",
4682 "cert/internal/verify_signed_data_unittest.cc",
4683 "cert/jwk_serializer_unittest.cc",
Ryan Sleevi19a7bde2017-11-22 06:51:394684 "cert/known_roots_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454685 "cert/merkle_audit_proof_unittest.cc",
4686 "cert/merkle_tree_leaf_unittest.cc",
4687 "cert/multi_log_ct_verifier_unittest.cc",
4688 "cert/multi_threaded_cert_verifier_unittest.cc",
4689 "cert/nss_cert_database_chromeos_unittest.cc",
4690 "cert/nss_cert_database_unittest.cc",
4691 "cert/nss_profile_filter_chromeos_unittest.cc",
4692 "cert/pem_tokenizer_unittest.cc",
4693 "cert/signed_certificate_timestamp_unittest.cc",
Emily Starkd29cdae2017-09-16 01:59:344694 "cert/symantec_certs_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454695 "cert/test_root_certs_unittest.cc",
4696 "cert/x509_cert_types_unittest.cc",
4697 "cert/x509_certificate_unittest.cc",
mattm1a07e632017-05-16 05:55:504698 "cert/x509_util_ios_and_mac_unittest.cc",
Matt Mueller10684c92017-08-09 07:24:094699 "cert/x509_util_nss_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454700 "cert/x509_util_unittest.cc",
4701 "cert_net/cert_net_fetcher_impl_unittest.cc",
4702 "cert_net/nss_ocsp_unittest.cc",
4703 "cookies/canonical_cookie_unittest.cc",
4704 "cookies/cookie_constants_unittest.cc",
Chris Mumfordd8ed9f82018-05-01 15:43:134705 "cookies/cookie_deletion_info_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454706 "cookies/cookie_monster_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454707 "cookies/cookie_util_unittest.cc",
4708 "cookies/parsed_cookie_unittest.cc",
4709 "der/encode_values_unittest.cc",
4710 "der/input_unittest.cc",
4711 "der/parse_values_unittest.cc",
4712 "der/parser_unittest.cc",
Maks Orlovich036fd1f2017-08-07 17:51:114713 "disk_cache/backend_cleanup_tracker_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454714 "disk_cache/backend_unittest.cc",
4715 "disk_cache/blockfile/addr_unittest.cc",
4716 "disk_cache/blockfile/bitmap_unittest.cc",
4717 "disk_cache/blockfile/block_files_unittest.cc",
4718 "disk_cache/blockfile/mapped_file_unittest.cc",
4719 "disk_cache/blockfile/stats_unittest.cc",
4720 "disk_cache/blockfile/storage_block_unittest.cc",
4721 "disk_cache/cache_util_unittest.cc",
4722 "disk_cache/entry_unittest.cc",
Maks Orlovichf378b3a2017-10-31 16:27:304723 "disk_cache/simple/simple_file_tracker_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454724 "disk_cache/simple/simple_index_file_unittest.cc",
4725 "disk_cache/simple/simple_index_unittest.cc",
4726 "disk_cache/simple/simple_test_util.cc",
4727 "disk_cache/simple/simple_test_util.h",
4728 "disk_cache/simple/simple_util_unittest.cc",
4729 "disk_cache/simple/simple_version_upgrade_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454730 "extras/sqlite/sqlite_channel_id_store_unittest.cc",
4731 "extras/sqlite/sqlite_persistent_cookie_store_unittest.cc",
4732 "filter/brotli_source_stream_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454733 "filter/filter_source_stream_unittest.cc",
4734 "filter/gzip_source_stream_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454735 "ftp/ftp_auth_cache_unittest.cc",
4736 "ftp/ftp_ctrl_response_buffer_unittest.cc",
4737 "ftp/ftp_directory_listing_parser_ls_unittest.cc",
4738 "ftp/ftp_directory_listing_parser_unittest.cc",
4739 "ftp/ftp_directory_listing_parser_unittest.h",
4740 "ftp/ftp_directory_listing_parser_vms_unittest.cc",
4741 "ftp/ftp_directory_listing_parser_windows_unittest.cc",
4742 "ftp/ftp_network_transaction_unittest.cc",
4743 "ftp/ftp_util_unittest.cc",
4744 "http/bidirectional_stream_unittest.cc",
wangyix64ccc57c2017-06-01 23:14:164745 "http/broken_alternative_services_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454746 "http/http_auth_cache_unittest.cc",
4747 "http/http_auth_challenge_tokenizer_unittest.cc",
4748 "http/http_auth_controller_unittest.cc",
4749 "http/http_auth_filter_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454750 "http/http_auth_handler_basic_unittest.cc",
4751 "http/http_auth_handler_digest_unittest.cc",
4752 "http/http_auth_handler_factory_unittest.cc",
4753 "http/http_auth_handler_mock.cc",
4754 "http/http_auth_handler_mock.h",
4755 "http/http_auth_handler_negotiate_unittest.cc",
zentarob89acda42017-07-14 01:28:574756 "http/http_auth_handler_ntlm_portable_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454757 "http/http_auth_handler_unittest.cc",
4758 "http/http_auth_multi_round_parse_unittest.cc",
4759 "http/http_auth_preferences_unittest.cc",
4760 "http/http_auth_sspi_win_unittest.cc",
4761 "http/http_auth_unittest.cc",
4762 "http/http_basic_state_unittest.cc",
4763 "http/http_byte_range_unittest.cc",
4764 "http/http_cache_lookup_manager_unittest.cc",
4765 "http/http_cache_unittest.cc",
shivanishac6582e12017-07-14 22:18:194766 "http/http_cache_writers_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454767 "http/http_chunked_decoder_unittest.cc",
4768 "http/http_content_disposition_unittest.cc",
4769 "http/http_log_util_unittest.cc",
4770 "http/http_network_layer_unittest.cc",
4771 "http/http_network_transaction_ssl_unittest.cc",
4772 "http/http_network_transaction_unittest.cc",
4773 "http/http_proxy_client_socket_pool_unittest.cc",
Paul Jensen0f49dec2017-12-12 23:39:584774 "http/http_proxy_client_socket_unittest.cc",
Yixin Wangd107e062017-11-10 21:57:464775 "http/http_proxy_client_socket_wrapper_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454776 "http/http_request_headers_unittest.cc",
4777 "http/http_response_body_drainer_unittest.cc",
4778 "http/http_response_headers_unittest.cc",
4779 "http/http_response_info_unittest.cc",
4780 "http/http_security_headers_unittest.cc",
4781 "http/http_server_properties_impl_unittest.cc",
4782 "http/http_server_properties_manager_unittest.cc",
4783 "http/http_status_code_unittest.cc",
Xida Chen9bfe0b62018-04-24 19:52:214784 "http/http_stream_factory_job_controller_unittest.cc",
4785 "http/http_stream_factory_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454786 "http/http_stream_parser_unittest.cc",
Bence Béky6b44abf2018-04-11 10:32:514787 "http/http_stream_request_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454788 "http/http_util_unittest.cc",
4789 "http/http_vary_data_unittest.cc",
4790 "http/mock_allow_http_auth_preferences.cc",
4791 "http/mock_allow_http_auth_preferences.h",
ckrasic73f7240b2017-01-24 00:06:454792 "http/mock_http_cache.cc",
4793 "http/mock_http_cache.h",
4794 "http/mock_sspi_library_win.cc",
4795 "http/mock_sspi_library_win.h",
4796 "http/transport_security_persister_unittest.cc",
4797 "http/transport_security_state_unittest.cc",
4798 "http/url_security_manager_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454799 "log/file_net_log_observer_unittest.cc",
4800 "log/net_log_capture_mode_unittest.cc",
4801 "log/net_log_unittest.cc",
4802 "log/net_log_util_unittest.cc",
4803 "log/trace_net_log_observer_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454804 "nqe/effective_connection_type_unittest.cc",
tbansalf38471f2017-03-04 01:07:044805 "nqe/event_creator_unittest.cc",
Tarun Bansalcdfa34b2017-11-23 05:11:174806 "nqe/network_id_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454807 "nqe/network_qualities_prefs_manager_unittest.cc",
tbansal35bdb0b2017-05-04 16:23:334808 "nqe/network_quality_estimator_params_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454809 "nqe/network_quality_estimator_unittest.cc",
tbansal82edab42017-06-19 05:55:254810 "nqe/network_quality_estimator_util_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454811 "nqe/network_quality_store_unittest.cc",
4812 "nqe/observation_buffer_unittest.cc",
tbansal180587c2017-02-16 15:13:234813 "nqe/socket_watcher_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454814 "nqe/throughput_analyzer_unittest.cc",
zentarob74795682017-07-14 00:58:224815 "ntlm/ntlm_buffer_reader_unittest.cc",
4816 "ntlm/ntlm_buffer_writer_unittest.cc",
Zentaro Kavanaghdd556612017-08-03 20:27:044817 "ntlm/ntlm_client_unittest.cc",
zentarob89acda42017-07-14 01:28:574818 "ntlm/ntlm_test_data.h",
4819 "ntlm/ntlm_unittest.cc",
Lily Houghton582d4622018-01-22 22:43:404820 "proxy_resolution/dhcp_pac_file_adapter_fetcher_win_unittest.cc",
4821 "proxy_resolution/dhcp_pac_file_fetcher_factory_unittest.cc",
4822 "proxy_resolution/dhcp_pac_file_fetcher_win_unittest.cc",
4823 "proxy_resolution/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc",
4824 "proxy_resolution/multi_threaded_proxy_resolver_unittest.cc",
4825 "proxy_resolution/network_delegate_error_observer_unittest.cc",
4826 "proxy_resolution/pac_file_decider_unittest.cc",
4827 "proxy_resolution/pac_file_fetcher_impl_unittest.cc",
4828 "proxy_resolution/proxy_bypass_rules_unittest.cc",
4829 "proxy_resolution/proxy_config_service_android_unittest.cc",
4830 "proxy_resolution/proxy_config_service_linux_unittest.cc",
4831 "proxy_resolution/proxy_config_service_win_unittest.cc",
4832 "proxy_resolution/proxy_config_unittest.cc",
4833 "proxy_resolution/proxy_info_unittest.cc",
4834 "proxy_resolution/proxy_list_unittest.cc",
Lily Houghtonffe89daa02018-03-09 18:30:034835 "proxy_resolution/proxy_resolution_service_unittest.cc",
Lily Houghton582d4622018-01-22 22:43:404836 "proxy_resolution/proxy_resolver_v8_tracing_unittest.cc",
4837 "proxy_resolution/proxy_resolver_v8_tracing_wrapper_unittest.cc",
4838 "proxy_resolution/proxy_resolver_v8_unittest.cc",
4839 "proxy_resolution/proxy_server_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454840 "quic/chromium/bidirectional_stream_quic_impl_unittest.cc",
4841 "quic/chromium/crypto/proof_test_chromium.cc",
4842 "quic/chromium/crypto/proof_verifier_chromium_test.cc",
ckrasic73f7240b2017-01-24 00:06:454843 "quic/chromium/mock_crypto_client_stream_factory.cc",
4844 "quic/chromium/mock_crypto_client_stream_factory.h",
ckrasic73f7240b2017-01-24 00:06:454845 "quic/chromium/mock_quic_data.cc",
4846 "quic/chromium/mock_quic_data.h",
4847 "quic/chromium/network_connection_unittest.cc",
4848 "quic/chromium/properties_based_quic_server_info_test.cc",
4849 "quic/chromium/quic_address_mismatch_test.cc",
4850 "quic/chromium/quic_chromium_alarm_factory_test.cc",
4851 "quic/chromium/quic_chromium_client_session_peer.cc",
4852 "quic/chromium/quic_chromium_client_session_peer.h",
4853 "quic/chromium/quic_chromium_client_session_test.cc",
4854 "quic/chromium/quic_chromium_client_stream_test.cc",
4855 "quic/chromium/quic_chromium_connection_helper_test.cc",
4856 "quic/chromium/quic_clock_skew_detector_test.cc",
Zhongyi Shi8fff75b2017-11-19 21:36:364857 "quic/chromium/quic_connectivity_probing_manager_test.cc",
ckrasic73f7240b2017-01-24 00:06:454858 "quic/chromium/quic_end_to_end_unittest.cc",
4859 "quic/chromium/quic_http_stream_test.cc",
4860 "quic/chromium/quic_http_utils_test.cc",
4861 "quic/chromium/quic_network_transaction_unittest.cc",
Yixin Wang0d2c6b7e12017-08-16 21:12:554862 "quic/chromium/quic_proxy_client_socket_unittest.cc",
rch99387f92017-04-03 21:12:044863 "quic/chromium/quic_stream_factory_peer.cc",
4864 "quic/chromium/quic_stream_factory_peer.h",
ckrasic73f7240b2017-01-24 00:06:454865 "quic/chromium/quic_stream_factory_test.cc",
4866 "quic/chromium/quic_test_packet_maker.cc",
4867 "quic/chromium/quic_test_packet_maker.h",
4868 "quic/chromium/quic_utils_chromium_test.cc",
rch1e369362017-04-03 19:44:514869 "quic/chromium/test_task_runner.cc",
4870 "quic/chromium/test_task_runner.h",
Ryan Hamiltondf987ecb2018-04-18 15:42:014871 "third_party/http2/decoder/decode_buffer_test.cc",
4872 "third_party/http2/decoder/decode_http2_structures_test.cc",
4873 "third_party/http2/decoder/frame_decoder_state_test_util.cc",
4874 "third_party/http2/decoder/frame_decoder_state_test_util.h",
4875 "third_party/http2/decoder/http2_frame_decoder_listener_test_util.cc",
4876 "third_party/http2/decoder/http2_frame_decoder_listener_test_util.h",
4877 "third_party/http2/decoder/http2_frame_decoder_test.cc",
4878 "third_party/http2/decoder/http2_structure_decoder_test.cc",
4879 "third_party/http2/decoder/http2_structure_decoder_test_util.cc",
4880 "third_party/http2/decoder/http2_structure_decoder_test_util.h",
4881 "third_party/http2/decoder/payload_decoders/altsvc_payload_decoder_test.cc",
4882 "third_party/http2/decoder/payload_decoders/continuation_payload_decoder_test.cc",
4883 "third_party/http2/decoder/payload_decoders/data_payload_decoder_test.cc",
4884 "third_party/http2/decoder/payload_decoders/goaway_payload_decoder_test.cc",
4885 "third_party/http2/decoder/payload_decoders/headers_payload_decoder_test.cc",
4886 "third_party/http2/decoder/payload_decoders/payload_decoder_base_test_util.cc",
4887 "third_party/http2/decoder/payload_decoders/payload_decoder_base_test_util.h",
4888 "third_party/http2/decoder/payload_decoders/ping_payload_decoder_test.cc",
4889 "third_party/http2/decoder/payload_decoders/priority_payload_decoder_test.cc",
4890 "third_party/http2/decoder/payload_decoders/push_promise_payload_decoder_test.cc",
4891 "third_party/http2/decoder/payload_decoders/rst_stream_payload_decoder_test.cc",
4892 "third_party/http2/decoder/payload_decoders/settings_payload_decoder_test.cc",
4893 "third_party/http2/decoder/payload_decoders/unknown_payload_decoder_test.cc",
4894 "third_party/http2/decoder/payload_decoders/window_update_payload_decoder_test.cc",
4895 "third_party/http2/hpack/decoder/hpack_block_collector.cc",
4896 "third_party/http2/hpack/decoder/hpack_block_collector.h",
4897 "third_party/http2/hpack/decoder/hpack_block_decoder_test.cc",
4898 "third_party/http2/hpack/decoder/hpack_decoder_state_test.cc",
4899 "third_party/http2/hpack/decoder/hpack_decoder_string_buffer_test.cc",
4900 "third_party/http2/hpack/decoder/hpack_decoder_tables_test.cc",
4901 "third_party/http2/hpack/decoder/hpack_decoder_test.cc",
4902 "third_party/http2/hpack/decoder/hpack_entry_collector.cc",
4903 "third_party/http2/hpack/decoder/hpack_entry_collector.h",
4904 "third_party/http2/hpack/decoder/hpack_entry_decoder_test.cc",
4905 "third_party/http2/hpack/decoder/hpack_entry_type_decoder_test.cc",
4906 "third_party/http2/hpack/decoder/hpack_string_collector.cc",
4907 "third_party/http2/hpack/decoder/hpack_string_collector.h",
4908 "third_party/http2/hpack/decoder/hpack_string_decoder_test.cc",
4909 "third_party/http2/hpack/decoder/hpack_varint_decoder_test.cc",
4910 "third_party/http2/hpack/decoder/hpack_whole_entry_buffer_test.cc",
4911 "third_party/http2/hpack/hpack_string_test.cc",
4912 "third_party/http2/hpack/http2_hpack_constants_test.cc",
4913 "third_party/http2/hpack/huffman/hpack_huffman_decoder_test.cc",
4914 "third_party/http2/hpack/tools/hpack_block_builder.cc",
4915 "third_party/http2/hpack/tools/hpack_block_builder.h",
4916 "third_party/http2/hpack/tools/hpack_block_builder_test.cc",
4917 "third_party/http2/hpack/tools/hpack_example.cc",
4918 "third_party/http2/hpack/tools/hpack_example.h",
4919 "third_party/http2/http2_constants_test.cc",
4920 "third_party/http2/http2_constants_test_util.cc",
4921 "third_party/http2/http2_constants_test_util.h",
4922 "third_party/http2/http2_structures_test.cc",
4923 "third_party/http2/http2_structures_test_util.cc",
4924 "third_party/http2/http2_structures_test_util.h",
4925 "third_party/http2/platform/api/http2_string_utils_test.cc",
4926 "third_party/http2/test_tools/frame_parts.cc",
4927 "third_party/http2/test_tools/frame_parts.h",
4928 "third_party/http2/test_tools/frame_parts_collector.cc",
4929 "third_party/http2/test_tools/frame_parts_collector.h",
4930 "third_party/http2/test_tools/frame_parts_collector_listener.cc",
4931 "third_party/http2/test_tools/frame_parts_collector_listener.h",
4932 "third_party/http2/tools/failure.cc",
4933 "third_party/http2/tools/failure.h",
4934 "third_party/http2/tools/http2_frame_builder.cc",
4935 "third_party/http2/tools/http2_frame_builder.h",
4936 "third_party/http2/tools/http2_random.cc",
4937 "third_party/http2/tools/http2_random.h",
4938 "third_party/http2/tools/random_decoder_test.cc",
4939 "third_party/http2/tools/random_decoder_test.h",
4940 "third_party/http2/tools/random_util.cc",
4941 "third_party/http2/tools/random_util.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:164942 "third_party/quic/core/congestion_control/bandwidth_sampler_test.cc",
4943 "third_party/quic/core/congestion_control/bbr_sender_test.cc",
4944 "third_party/quic/core/congestion_control/cubic_bytes_test.cc",
4945 "third_party/quic/core/congestion_control/general_loss_algorithm_test.cc",
4946 "third_party/quic/core/congestion_control/hybrid_slow_start_test.cc",
4947 "third_party/quic/core/congestion_control/pacing_sender_test.cc",
4948 "third_party/quic/core/congestion_control/prr_sender_test.cc",
4949 "third_party/quic/core/congestion_control/rtt_stats_test.cc",
4950 "third_party/quic/core/congestion_control/send_algorithm_test.cc",
4951 "third_party/quic/core/congestion_control/windowed_filter_test.cc",
4952 "third_party/quic/core/crypto/aes_128_gcm_12_decrypter_test.cc",
4953 "third_party/quic/core/crypto/aes_128_gcm_12_encrypter_test.cc",
4954 "third_party/quic/core/crypto/aes_128_gcm_decrypter_test.cc",
4955 "third_party/quic/core/crypto/aes_128_gcm_encrypter_test.cc",
4956 "third_party/quic/core/crypto/aes_256_gcm_decrypter_test.cc",
4957 "third_party/quic/core/crypto/aes_256_gcm_encrypter_test.cc",
4958 "third_party/quic/core/crypto/cert_compressor_test.cc",
4959 "third_party/quic/core/crypto/chacha20_poly1305_decrypter_test.cc",
4960 "third_party/quic/core/crypto/chacha20_poly1305_encrypter_test.cc",
4961 "third_party/quic/core/crypto/chacha20_poly1305_tls_decrypter_test.cc",
4962 "third_party/quic/core/crypto/chacha20_poly1305_tls_encrypter_test.cc",
4963 "third_party/quic/core/crypto/channel_id_test.cc",
4964 "third_party/quic/core/crypto/common_cert_set_test.cc",
4965 "third_party/quic/core/crypto/crypto_framer_test.cc",
4966 "third_party/quic/core/crypto/crypto_handshake_message_test.cc",
4967 "third_party/quic/core/crypto/crypto_secret_boxer_test.cc",
4968 "third_party/quic/core/crypto/crypto_server_test.cc",
4969 "third_party/quic/core/crypto/crypto_utils_test.cc",
4970 "third_party/quic/core/crypto/curve25519_key_exchange_test.cc",
4971 "third_party/quic/core/crypto/null_decrypter_test.cc",
4972 "third_party/quic/core/crypto/null_encrypter_test.cc",
4973 "third_party/quic/core/crypto/p256_key_exchange_test.cc",
4974 "third_party/quic/core/crypto/quic_compressed_certs_cache_test.cc",
4975 "third_party/quic/core/crypto/quic_crypto_client_config_test.cc",
4976 "third_party/quic/core/crypto/quic_crypto_server_config_test.cc",
4977 "third_party/quic/core/crypto/quic_random_test.cc",
4978 "third_party/quic/core/crypto/quic_tls_adapter_test.cc",
4979 "third_party/quic/core/crypto/transport_parameters_test.cc",
4980 "third_party/quic/core/frames/quic_frames_test.cc",
4981 "third_party/quic/core/packet_number_indexed_queue_test.cc",
4982 "third_party/quic/core/quic_alarm_test.cc",
4983 "third_party/quic/core/quic_arena_scoped_ptr_test.cc",
4984 "third_party/quic/core/quic_bandwidth_test.cc",
4985 "third_party/quic/core/quic_buffered_packet_store_test.cc",
4986 "third_party/quic/core/quic_client_promised_info_test.cc",
4987 "third_party/quic/core/quic_client_push_promise_index_test.cc",
4988 "third_party/quic/core/quic_config_test.cc",
4989 "third_party/quic/core/quic_connection_test.cc",
4990 "third_party/quic/core/quic_control_frame_manager_test.cc",
4991 "third_party/quic/core/quic_crypto_client_stream_test.cc",
4992 "third_party/quic/core/quic_crypto_server_stream_test.cc",
4993 "third_party/quic/core/quic_crypto_stream_test.cc",
4994 "third_party/quic/core/quic_data_writer_test.cc",
4995 "third_party/quic/core/quic_error_codes_test.cc",
4996 "third_party/quic/core/quic_flow_controller_test.cc",
4997 "third_party/quic/core/quic_framer_test.cc",
4998 "third_party/quic/core/quic_header_list_test.cc",
4999 "third_party/quic/core/quic_headers_stream_test.cc",
5000 "third_party/quic/core/quic_ietf_framer_test.cc",
5001 "third_party/quic/core/tls_handshaker_test.cc",
ckrasic73f7240b2017-01-24 00:06:455002
Ryan Hamilton56b10c5d2018-05-11 13:40:165003 # "third_party/quic/core/quic_multipath_received_packet_manager_test.cc",
5004 # "third_party/quic/core/quic_multipath_transmissions_map_test.cc",
ckrasic73f7240b2017-01-24 00:06:455005 "socket/client_socket_pool_base_unittest.cc",
5006 "socket/mock_client_socket_pool_manager.cc",
5007 "socket/mock_client_socket_pool_manager.h",
5008 "socket/sequenced_socket_data_unittest.cc",
5009 "socket/socket_bio_adapter_unittest.cc",
Paul Jensenec3c11122017-11-28 16:48:385010 "socket/socket_tag_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455011 "socket/socks5_client_socket_unittest.cc",
5012 "socket/socks_client_socket_pool_unittest.cc",
5013 "socket/socks_client_socket_unittest.cc",
5014 "socket/ssl_client_socket_pool_unittest.cc",
5015 "socket/ssl_client_socket_unittest.cc",
5016 "socket/ssl_server_socket_unittest.cc",
5017 "socket/tcp_client_socket_unittest.cc",
5018 "socket/tcp_server_socket_unittest.cc",
5019 "socket/tcp_socket_unittest.cc",
5020 "socket/transport_client_socket_pool_test_util.cc",
5021 "socket/transport_client_socket_pool_test_util.h",
5022 "socket/transport_client_socket_pool_unittest.cc",
5023 "socket/transport_client_socket_unittest.cc",
5024 "socket/udp_socket_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455025 "socket/websocket_endpoint_lock_manager_unittest.cc",
5026 "socket/websocket_transport_client_socket_pool_unittest.cc",
Bence Béky94658bf2018-05-11 19:22:585027 "spdy/bidirectional_stream_spdy_impl_unittest.cc",
5028 "spdy/buffered_spdy_framer_unittest.cc",
5029 "spdy/header_coalescer_test.cc",
5030 "spdy/http2_priority_dependencies_unittest.cc",
5031 "spdy/http2_push_promise_index_test.cc",
5032 "spdy/spdy_buffer_unittest.cc",
5033 "spdy/spdy_http_stream_unittest.cc",
5034 "spdy/spdy_http_utils_unittest.cc",
5035 "spdy/spdy_log_util_unittest.cc",
5036 "spdy/spdy_network_transaction_unittest.cc",
5037 "spdy/spdy_proxy_client_socket_unittest.cc",
5038 "spdy/spdy_read_queue_unittest.cc",
5039 "spdy/spdy_session_pool_unittest.cc",
5040 "spdy/spdy_session_test_util.cc",
5041 "spdy/spdy_session_test_util.h",
5042 "spdy/spdy_session_unittest.cc",
5043 "spdy/spdy_stream_test_util.cc",
5044 "spdy/spdy_stream_test_util.h",
5045 "spdy/spdy_stream_unittest.cc",
5046 "spdy/spdy_write_queue_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455047 "ssl/channel_id_service_unittest.cc",
mattm436ccfe2017-06-19 20:24:085048 "ssl/client_cert_identity_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455049 "ssl/client_cert_store_mac_unittest.cc",
5050 "ssl/client_cert_store_nss_unittest.cc",
5051 "ssl/client_cert_store_unittest-inl.h",
5052 "ssl/client_cert_store_win_unittest.cc",
5053 "ssl/default_channel_id_store_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455054 "ssl/ssl_cipher_suite_names_unittest.cc",
5055 "ssl/ssl_client_auth_cache_unittest.cc",
5056 "ssl/ssl_client_session_cache_unittest.cc",
5057 "ssl/ssl_config_service_unittest.cc",
5058 "ssl/ssl_config_unittest.cc",
5059 "ssl/ssl_connection_status_flags_unittest.cc",
5060 "ssl/ssl_platform_key_android_unittest.cc",
5061 "ssl/ssl_platform_key_mac_unittest.cc",
5062 "ssl/ssl_platform_key_nss_unittest.cc",
5063 "ssl/ssl_platform_key_util_unittest.cc",
davidbend6d1e4d2017-05-10 16:49:015064 "ssl/ssl_platform_key_win_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455065 "test/embedded_test_server/embedded_test_server_unittest.cc",
5066 "test/embedded_test_server/http_request_unittest.cc",
5067 "test/embedded_test_server/http_response_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455068 "test/run_all_unittests.cc",
Sergey Ulanov7de85802018-01-19 19:50:345069 "test/tcp_socket_proxy_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455070 "third_party/nist-pkits/pkits_testcases-inl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:165071 "third_party/quic/core/quic_one_block_arena_test.cc",
5072 "third_party/quic/core/quic_packet_creator_test.cc",
5073 "third_party/quic/core/quic_packet_generator_test.cc",
5074 "third_party/quic/core/quic_received_packet_manager_test.cc",
5075 "third_party/quic/core/quic_sent_packet_manager_test.cc",
5076 "third_party/quic/core/quic_server_id_test.cc",
5077 "third_party/quic/core/quic_server_session_base_test.cc",
5078 "third_party/quic/core/quic_session_test.cc",
5079 "third_party/quic/core/quic_simple_buffer_allocator_test.cc",
5080 "third_party/quic/core/quic_socket_address_coder_test.cc",
5081 "third_party/quic/core/quic_spdy_session_test.cc",
5082 "third_party/quic/core/quic_spdy_stream_test.cc",
5083 "third_party/quic/core/quic_stream_send_buffer_test.cc",
5084 "third_party/quic/core/quic_stream_sequencer_buffer_test.cc",
5085 "third_party/quic/core/quic_stream_sequencer_test.cc",
5086 "third_party/quic/core/quic_stream_test.cc",
5087 "third_party/quic/core/quic_sustained_bandwidth_recorder_test.cc",
5088 "third_party/quic/core/quic_tag_test.cc",
5089 "third_party/quic/core/quic_time_test.cc",
Ryan Hamiltonc3743d12018-07-02 23:27:075090 "third_party/quic/core/quic_time_wait_list_manager_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165091 "third_party/quic/core/quic_trace_visitor_test.cc",
5092 "third_party/quic/core/quic_unacked_packet_map_test.cc",
5093 "third_party/quic/core/quic_utils_test.cc",
5094 "third_party/quic/core/quic_version_manager_test.cc",
5095 "third_party/quic/core/quic_versions_test.cc",
5096 "third_party/quic/core/quic_write_blocked_list_test.cc",
5097 "third_party/quic/core/spdy_utils_test.cc",
5098 "third_party/quic/platform/api/quic_endian_test.cc",
5099 "third_party/quic/platform/api/quic_hostname_utils_test.cc",
5100 "third_party/quic/platform/api/quic_lru_cache_test.cc",
5101 "third_party/quic/platform/api/quic_mem_slice_span_test.cc",
5102 "third_party/quic/platform/api/quic_mem_slice_test.cc",
5103 "third_party/quic/platform/api/quic_reference_counted_test.cc",
5104 "third_party/quic/platform/api/quic_singleton_test.cc",
5105 "third_party/quic/platform/api/quic_str_cat_test.cc",
5106 "third_party/quic/platform/api/quic_test_random.h",
5107 "third_party/quic/platform/api/quic_text_utils_test.cc",
5108 "third_party/quic/platform/api/quic_url_test.cc",
5109 "third_party/quic/platform/impl/quic_chromium_clock_test.cc",
5110 "third_party/quic/platform/impl/quic_test_random_impl.cc",
5111 "third_party/quic/platform/impl/quic_test_random_impl.h",
5112 "third_party/quic/platform/impl/quic_url_utils_impl_test.cc",
5113 "third_party/quic/quartc/quartc_session_test.cc",
5114 "third_party/quic/quartc/quartc_stream_test.cc",
5115 "third_party/quic/test_tools/crypto_test_utils_test.cc",
Ryan Hamilton2e003eea2018-05-02 00:24:295116 "third_party/spdy/core/array_output_buffer.cc",
5117 "third_party/spdy/core/array_output_buffer.h",
5118 "third_party/spdy/core/array_output_buffer_test.cc",
5119 "third_party/spdy/core/fuzzing/hpack_fuzz_util_test.cc",
5120 "third_party/spdy/core/hpack/hpack_decoder_adapter_test.cc",
5121 "third_party/spdy/core/hpack/hpack_encoder_test.cc",
5122 "third_party/spdy/core/hpack/hpack_entry_test.cc",
5123 "third_party/spdy/core/hpack/hpack_header_table_test.cc",
5124 "third_party/spdy/core/hpack/hpack_huffman_table_test.cc",
5125 "third_party/spdy/core/hpack/hpack_output_stream_test.cc",
5126 "third_party/spdy/core/hpack/hpack_round_trip_test.cc",
5127 "third_party/spdy/core/hpack/hpack_static_table_test.cc",
5128 "third_party/spdy/core/mock_spdy_framer_visitor.cc",
5129 "third_party/spdy/core/mock_spdy_framer_visitor.h",
5130 "third_party/spdy/core/priority_write_scheduler_test.cc",
5131 "third_party/spdy/core/spdy_alt_svc_wire_format_test.cc",
5132 "third_party/spdy/core/spdy_deframer_visitor.cc",
5133 "third_party/spdy/core/spdy_deframer_visitor.h",
5134 "third_party/spdy/core/spdy_deframer_visitor_test.cc",
5135 "third_party/spdy/core/spdy_frame_builder_test.cc",
5136 "third_party/spdy/core/spdy_frame_reader_test.cc",
5137 "third_party/spdy/core/spdy_framer_test.cc",
5138 "third_party/spdy/core/spdy_header_block_test.cc",
5139 "third_party/spdy/core/spdy_no_op_visitor.cc",
5140 "third_party/spdy/core/spdy_no_op_visitor.h",
5141 "third_party/spdy/core/spdy_pinnable_buffer_piece_test.cc",
5142 "third_party/spdy/core/spdy_prefixed_buffer_reader_test.cc",
5143 "third_party/spdy/core/spdy_protocol_test.cc",
5144 "third_party/spdy/core/spdy_protocol_test_utils.cc",
5145 "third_party/spdy/core/spdy_protocol_test_utils.h",
5146 "third_party/spdy/core/spdy_test_utils.cc",
5147 "third_party/spdy/core/spdy_test_utils.h",
5148 "third_party/spdy/platform/api/spdy_mem_slice_test.cc",
5149 "third_party/spdy/platform/api/spdy_string_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:455150 "tools/content_decoder_tool/content_decoder_tool.cc",
5151 "tools/content_decoder_tool/content_decoder_tool.h",
5152 "tools/content_decoder_tool/content_decoder_tool_unittest.cc",
5153 "tools/quic/quic_simple_client_test.cc",
ckrasic73f7240b2017-01-24 00:06:455154 "tools/tld_cleanup/tld_cleanup_util_unittest.cc",
Tsuyoshi Horoec9880b2017-09-28 22:25:215155 "url_request/redirect_info_unittest.cc",
Tsuyoshi Horo9e2ec4df2017-10-16 15:15:555156 "url_request/redirect_util_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455157 "url_request/report_sender_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455158 "url_request/url_fetcher_impl_unittest.cc",
5159 "url_request/url_fetcher_response_writer_unittest.cc",
5160 "url_request/url_request_context_builder_unittest.cc",
5161 "url_request/url_request_context_unittest.cc",
5162 "url_request/url_request_data_job_unittest.cc",
5163 "url_request/url_request_file_dir_job_unittest.cc",
5164 "url_request/url_request_file_job_unittest.cc",
5165 "url_request/url_request_filter_unittest.cc",
5166 "url_request/url_request_ftp_job_unittest.cc",
5167 "url_request/url_request_http_job_unittest.cc",
5168 "url_request/url_request_job_factory_impl_unittest.cc",
5169 "url_request/url_request_job_unittest.cc",
5170 "url_request/url_request_quic_unittest.cc",
5171 "url_request/url_request_simple_job_unittest.cc",
5172 "url_request/url_request_throttler_simulation_unittest.cc",
5173 "url_request/url_request_throttler_test_support.cc",
5174 "url_request/url_request_throttler_test_support.h",
5175 "url_request/url_request_throttler_unittest.cc",
5176 "url_request/url_request_unittest.cc",
5177 "url_request/view_cache_helper_unittest.cc",
5178 ]
mattm1a07e632017-05-16 05:55:505179 net_unfiltered_sources = []
dpranke64df2832015-07-31 22:33:365180
Ryan Sleevic2fcac62017-12-21 16:37:045181 configs += [ "//build/config:precompiled_headers" ]
dpranke64df2832015-07-31 22:33:365182 defines = []
5183
5184 deps = [
dpranke64df2832015-07-31 22:33:365185 ":net",
xunjielicc6b1d02017-06-05 16:51:405186 ":quic_test_tools",
dpranke64df2832015-07-31 22:33:365187 ":simple_quic_tools",
5188 ":test_support",
5189 "//base",
dpranke64df2832015-07-31 22:33:365190 "//base/third_party/dynamic_annotations",
5191 "//crypto",
5192 "//crypto:platform",
5193 "//crypto:test_support",
dpranke64df2832015-07-31 22:33:365194 "//net/base/registry_controlled_domains",
Eric Orth24feb5b2018-05-25 19:42:465195 "//net/dns:tests",
martijnd369e6702017-03-21 18:36:455196 "//net/http:transport_security_state_unittest_data",
Martijn Croonenb1383da2017-10-11 11:56:355197 "//net/http:transport_security_state_unittest_data_default",
dpranke64df2832015-07-31 22:33:365198 "//testing/gmock",
5199 "//testing/gtest",
thomasanderson77bec4d2017-03-20 07:09:255200 "//third_party/protobuf:protobuf_lite",
dpranke64df2832015-07-31 22:33:365201 "//third_party/zlib",
5202 "//url",
kapishnikovabe280e2016-04-14 19:07:165203 "//url:url_features",
dpranke64df2832015-07-31 22:33:365204 ]
mmenkefd9d15c2017-06-29 13:45:545205
Helen Lic51db4c2018-06-14 22:05:045206 if (enable_websockets) {
5207 deps += [ "//net/server:tests" ]
5208 }
5209
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:585210 if (is_posix || is_fuchsia) {
Eric Orth24feb5b2018-05-25 19:42:465211 sources += [ "socket/udp_socket_posix_unittest.cc" ]
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:585212 }
5213
mmenkefd9d15c2017-06-29 13:45:545214 if (enable_reporting) {
5215 sources += [
Julia Tuttle194e6112017-12-19 19:04:495216 "network_error_logging/network_error_logging_end_to_end_test.cc",
Julia Tuttle6c949ae2017-11-17 16:36:275217 "network_error_logging/network_error_logging_service_unittest.cc",
mmenkefd9d15c2017-06-29 13:45:545218 "reporting/reporting_browsing_data_remover_unittest.cc",
5219 "reporting/reporting_cache_unittest.cc",
5220 "reporting/reporting_delivery_agent_unittest.cc",
5221 "reporting/reporting_endpoint_manager_unittest.cc",
5222 "reporting/reporting_garbage_collector_unittest.cc",
5223 "reporting/reporting_header_parser_unittest.cc",
5224 "reporting/reporting_network_change_observer_unittest.cc",
mmenkefd9d15c2017-06-29 13:45:545225 "reporting/reporting_service_unittest.cc",
mmenkefd9d15c2017-06-29 13:45:545226 "reporting/reporting_uploader_unittest.cc",
5227 ]
5228 }
5229
ckrasic73f7240b2017-01-24 00:06:455230 if (!is_proto_quic) {
5231 deps += [
5232 ":extras",
5233 "//base:i18n",
5234 "//sql",
5235 ]
5236 } else {
5237 sources -= [
5238 "extras/sqlite/sqlite_channel_id_store_unittest.cc",
5239 "extras/sqlite/sqlite_persistent_cookie_store_unittest.cc",
5240 ]
5241 }
dpranke64df2832015-07-31 22:33:365242
jbudorick944eb922016-06-20 15:38:305243 data = []
svaldez2135be52016-04-20 16:34:535244 data_deps = [
5245 "third_party/nist-pkits/",
5246 ]
dpranke64df2832015-07-31 22:33:365247
Scott Grahambe24b04f2017-09-21 23:27:525248 if (is_linux || is_mac || is_win || is_fuchsia) {
dpranke64df2832015-07-31 22:33:365249 deps += [
5250 "//third_party/pyftpdlib/",
5251 "//third_party/pywebsocket/",
5252 "//third_party/tlslite/",
5253 ]
mattm6586b432016-02-12 04:52:395254 data_deps += [
dpranke64df2832015-07-31 22:33:365255 "//third_party/pyftpdlib/",
5256 "//third_party/pywebsocket/",
5257 "//third_party/tlslite/",
5258 ]
5259 data += [
5260 "tools/testserver/",
5261 "//third_party/pyftpdlib/",
5262 "//third_party/pywebsocket/",
5263 "//third_party/tlslite/",
5264 "$root_out_dir/pyproto/google/",
dprankef497c7962015-07-31 19:46:235265 ]
5266 }
5267
dpranke64df2832015-07-31 22:33:365268 if (is_desktop_linux) {
5269 deps += [ ":epoll_quic_tools" ]
5270 }
5271 if (is_linux) {
ckrasic73f7240b2017-01-24 00:06:455272 sources += [
Ryan Hamilton56b10c5d2018-05-11 13:40:165273 "third_party/quic/core/chlo_extractor_test.cc",
5274 "third_party/quic/core/end_to_end_test.cc",
5275 "third_party/quic/core/quic_dispatcher_test.cc",
5276 "third_party/quic/core/quic_epoll_alarm_factory_test.cc",
5277 "third_party/quic/core/quic_epoll_connection_helper_test.cc",
5278 "third_party/quic/core/quic_spdy_client_session_test.cc",
5279 "third_party/quic/core/quic_spdy_client_stream_test.cc",
5280 "third_party/quic/core/quic_spdy_server_stream_base_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165281 "third_party/quic/core/stateless_rejector_test.cc",
5282 "third_party/quic/platform/impl/quic_epoll_clock_test.cc",
5283 "third_party/quic/platform/impl/quic_socket_utils_test.cc",
5284 "third_party/quic/tools/quic_client_test.cc",
Rajesh Mahindrae6c0da12018-05-17 21:02:545285 "third_party/quic/tools/quic_memory_cache_backend_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165286 "third_party/quic/tools/quic_server_test.cc",
5287 "third_party/quic/tools/quic_simple_server_session_test.cc",
5288 "third_party/quic/tools/quic_simple_server_stream_test.cc",
ckrasic73f7240b2017-01-24 00:06:455289 "tools/quic/quic_simple_server_session_helper_test.cc",
ckrasic73f7240b2017-01-24 00:06:455290 "tools/quic/quic_simple_server_test.cc",
ckrasic73f7240b2017-01-24 00:06:455291 ]
dpranke64df2832015-07-31 22:33:365292 deps += [
5293 ":epoll_quic_tools",
5294 ":epoll_server",
brettwbc8b2a22015-07-28 18:24:425295 ]
dpranke64df2832015-07-31 22:33:365296 }
[email protected]8a3f8242014-06-05 18:05:125297
dpranke64df2832015-07-31 22:33:365298 if (is_mac || is_ios) {
ckrasic73f7240b2017-01-24 00:06:455299 sources += [ "base/mac/url_conversions_unittest.mm" ]
dpranke64df2832015-07-31 22:33:365300 }
5301
mattmaf868e72016-09-23 23:25:205302 if (is_mac) {
5303 libs = [ "Security.framework" ]
5304 }
5305
dpranke64df2832015-07-31 22:33:365306 if (is_chromeos) {
Lily Houghton582d4622018-01-22 22:43:405307 sources -= [ "proxy_resolution/proxy_config_service_linux_unittest.cc" ]
dpranke64df2832015-07-31 22:33:365308 }
5309
ckrasic73f7240b2017-01-24 00:06:455310 if (!is_proto_quic && v8_use_external_startup_data) {
dpranke64df2832015-07-31 22:33:365311 deps += [ "//gin" ]
5312 }
5313
zentarob74795682017-07-14 00:58:225314 if (is_win) {
5315 sources -= [
zentarob89acda42017-07-14 01:28:575316 "http/http_auth_handler_ntlm_portable_unittest.cc",
zentarob74795682017-07-14 00:58:225317 "ntlm/ntlm_buffer_reader_unittest.cc",
5318 "ntlm/ntlm_buffer_writer_unittest.cc",
Zentaro Kavanaghdd556612017-08-03 20:27:045319 "ntlm/ntlm_client_unittest.cc",
zentarob89acda42017-07-14 01:28:575320 "ntlm/ntlm_test_data.h",
5321 "ntlm/ntlm_unittest.cc",
zentarob74795682017-07-14 00:58:225322 ]
5323 }
5324
Sergey Ulanovec1d3de2017-09-19 19:27:475325 if (enable_python_utils) {
5326 sources += [ "test/python_utils_unittest.cc" ]
5327 }
5328
Sergey Ulanov7c0bcaf2017-08-28 19:03:265329 if (is_fuchsia) {
5330 use_test_server = true
Kevin Marshall3e89fd72018-06-05 21:29:105331 deps += [
5332 "//third_party/fuchsia-sdk:fidl_cpp",
5333 "//third_party/fuchsia-sdk:netstack",
5334 ]
5335 sources += [ "base/network_change_notifier_fuchsia_unittest.cc" ]
Sergey Ulanov7c0bcaf2017-08-28 19:03:265336 }
5337
dpranke64df2832015-07-31 22:33:365338 if (!use_nss_certs) {
5339 sources -= [
mattm9c63d442016-09-03 00:45:515340 "cert/internal/trust_store_nss_unittest.cc",
dpranke64df2832015-07-31 22:33:365341 "cert/nss_cert_database_unittest.cc",
Matt Mueller10684c92017-08-09 07:24:095342 "cert/x509_util_nss_unittest.cc",
dpranke64df2832015-07-31 22:33:365343 "ssl/client_cert_store_nss_unittest.cc",
davidben983d610b2016-12-14 19:35:405344 "ssl/ssl_platform_key_nss_unittest.cc",
[email protected]8a3f8242014-06-05 18:05:125345 ]
dpranke64df2832015-07-31 22:33:365346 if (is_chromeos) { # Already removed for all non-ChromeOS builds.
davidben2bcbc6b2015-04-22 02:36:415347 sources -= [
dpranke64df2832015-07-31 22:33:365348 "cert/nss_cert_database_chromeos_unittest.cc",
5349 "cert/nss_profile_filter_chromeos_unittest.cc",
davidben2bcbc6b2015-04-22 02:36:415350 ]
brettw43ae0e12015-07-14 22:12:365351 }
[email protected]8a3f8242014-06-05 18:05:125352 }
dpranke64df2832015-07-31 22:33:365353
dpranke64df2832015-07-31 22:33:365354 if (use_kerberos) {
5355 defines += [ "USE_KERBEROS" ]
5356 }
5357
5358 # These are excluded on Android, because the actual Kerberos support, which
5359 # these test, is in a separate app on Android.
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:585360 if (use_kerberos && ((is_posix && !is_android) || is_fuchsia)) {
5361 sources += [
dpranke64df2832015-07-31 22:33:365362 "http/http_auth_gssapi_posix_unittest.cc",
5363 "http/mock_gssapi_library_posix.cc",
5364 "http/mock_gssapi_library_posix.h",
5365 ]
5366 }
5367 if (!use_kerberos) {
5368 sources -= [ "http/http_auth_handler_negotiate_unittest.cc" ]
5369 }
5370
svaldez2135be52016-04-20 16:34:535371 if (!use_nss_certs) {
svaldeza1714ab2016-03-18 20:47:535372 # Only include this test when using NSS for cert verification.
dpranke64df2832015-07-31 22:33:365373 sources -= [ "cert_net/nss_ocsp_unittest.cc" ]
5374 }
5375
jbudorick1273a842016-04-01 19:50:055376 if (enable_websockets) {
ckrasic73f7240b2017-01-24 00:06:455377 sources += [
Bence Béky7294fc22018-02-08 14:26:175378 "websockets/websocket_basic_stream_adapters_test.cc",
ckrasic73f7240b2017-01-24 00:06:455379 "websockets/websocket_basic_stream_test.cc",
5380 "websockets/websocket_channel_test.cc",
5381 "websockets/websocket_deflate_parameters_test.cc",
5382 "websockets/websocket_deflate_predictor_impl_test.cc",
5383 "websockets/websocket_deflate_stream_test.cc",
5384 "websockets/websocket_deflater_test.cc",
5385 "websockets/websocket_end_to_end_test.cc",
5386 "websockets/websocket_errors_test.cc",
5387 "websockets/websocket_extension_parser_test.cc",
5388 "websockets/websocket_extension_test.cc",
5389 "websockets/websocket_frame_parser_test.cc",
5390 "websockets/websocket_frame_test.cc",
5391 "websockets/websocket_handshake_challenge_test.cc",
5392 "websockets/websocket_handshake_stream_create_helper_test.cc",
5393 "websockets/websocket_inflater_test.cc",
5394 "websockets/websocket_stream_cookie_test.cc",
5395 "websockets/websocket_stream_create_test_base.cc",
5396 "websockets/websocket_stream_create_test_base.h",
5397 "websockets/websocket_stream_test.cc",
5398 "websockets/websocket_test_util.cc",
5399 "websockets/websocket_test_util.h",
5400 ]
dpranke64df2832015-07-31 22:33:365401 }
5402
5403 if (disable_file_support) {
5404 sources -= [
5405 "base/directory_lister_unittest.cc",
Thiago Farinad673bb122016-01-06 23:18:165406 "base/directory_listing_unittest.cc",
shahriar.rostamia8c06daf2016-02-12 00:07:045407 "url_request/url_request_file_dir_job_unittest.cc",
dpranke64df2832015-07-31 22:33:365408 "url_request/url_request_file_job_unittest.cc",
5409 ]
5410 }
5411
5412 if (disable_ftp_support) {
5413 sources -= [
5414 "ftp/ftp_auth_cache_unittest.cc",
5415 "ftp/ftp_ctrl_response_buffer_unittest.cc",
5416 "ftp/ftp_directory_listing_parser_ls_unittest.cc",
dpranke64df2832015-07-31 22:33:365417 "ftp/ftp_directory_listing_parser_unittest.cc",
5418 "ftp/ftp_directory_listing_parser_unittest.h",
5419 "ftp/ftp_directory_listing_parser_vms_unittest.cc",
5420 "ftp/ftp_directory_listing_parser_windows_unittest.cc",
5421 "ftp/ftp_network_transaction_unittest.cc",
5422 "ftp/ftp_util_unittest.cc",
5423 "url_request/url_request_ftp_job_unittest.cc",
5424 ]
5425 }
5426
Brad Lasseyd44bd422018-05-31 22:45:235427 if (enable_built_in_dns) {
5428 sources += [ "url_request/http_with_dns_over_https_unittest.cc" ]
5429 }
5430
xunjieli905496a2015-08-31 15:51:175431 if (use_v8_in_net) {
mmenkee2ad9922017-06-08 20:27:365432 deps += [ ":net_with_v8" ]
dpranke64df2832015-07-31 22:33:365433 } else {
5434 sources -= [
Lily Houghton582d4622018-01-22 22:43:405435 "proxy_resolution/proxy_resolver_v8_tracing_unittest.cc",
5436 "proxy_resolution/proxy_resolver_v8_tracing_wrapper_unittest.cc",
5437 "proxy_resolution/proxy_resolver_v8_unittest.cc",
dpranke64df2832015-07-31 22:33:365438 ]
5439 }
5440
mmenke93be9ca2017-05-23 16:29:135441 if (enable_net_mojo) {
dpranke64df2832015-07-31 22:33:365442 deps += [
Ken Rockotec287c82018-03-15 23:05:495443 "//mojo/edk",
Eric Orth24feb5b2018-05-25 19:42:465444 "//net/dns:mojo_client",
5445 "//net/dns:mojo_service",
dpranke64df2832015-07-31 22:33:365446 ]
5447 } else {
5448 sources -= [
Lily Houghton582d4622018-01-22 22:43:405449 "proxy_resolution/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc",
dpranke64df2832015-07-31 22:33:365450 ]
5451 }
5452
dpranke64df2832015-07-31 22:33:365453 if (is_ios) {
dpranke64df2832015-07-31 22:33:365454 sources -= [
5455 # TODO(droger): The following tests are disabled because the
5456 # implementation is missing or incomplete.
dpranke64df2832015-07-31 22:33:365457 "disk_cache/backend_unittest.cc",
5458 "disk_cache/blockfile/block_files_unittest.cc",
5459
5460 # Need to read input data files.
dpranke64df2832015-07-31 22:33:365461 "socket/ssl_server_socket_unittest.cc",
Ryan Hamilton2e003eea2018-05-02 00:24:295462 "third_party/spdy/core/fuzzing/hpack_fuzz_util_test.cc",
dpranke64df2832015-07-31 22:33:365463
5464 # Need TestServer.
5465 "cert_net/cert_net_fetcher_impl_unittest.cc",
Lily Houghton582d4622018-01-22 22:43:405466 "proxy_resolution/pac_file_fetcher_impl_unittest.cc",
dpranke64df2832015-07-31 22:33:365467 "socket/ssl_client_socket_unittest.cc",
5468 "url_request/url_fetcher_impl_unittest.cc",
5469 "url_request/url_request_context_builder_unittest.cc",
dpranke64df2832015-07-31 22:33:365470 ]
mattm1a07e632017-05-16 05:55:505471 net_unfiltered_sources += [ "cert/x509_util_ios_and_mac_unittest.cc" ]
rsesek7d4ab4bc2016-07-22 17:35:135472
5473 bundle_deps = [ ":net_unittests_bundle_data" ]
dpranke64df2832015-07-31 22:33:365474 }
5475
Sergey Ulanov21dea152017-09-13 00:50:505476 if (enable_unix_sockets) {
5477 sources += [
5478 "socket/unix_domain_client_socket_posix_unittest.cc",
5479 "socket/unix_domain_server_socket_posix_unittest.cc",
5480 ]
5481 }
5482
Fabrice de Gans-Riberi9fba3aff2018-04-12 19:00:485483 # Use getifaddrs() on POSIX platforms, except Linux and Android.
5484 if (is_posix && !is_linux && !is_android) {
5485 sources += [ "base/network_interfaces_getifaddrs_unittest.cc" ]
Sergey Ulanov5c33235ae2017-07-06 23:55:075486 }
5487
kapishnikovabe280e2016-04-14 19:07:165488 # Unit tests that aren't supported by the current ICU alternatives on Android.
5489 if (is_android && use_platform_icu_alternatives) {
5490 sources -= [
5491 "base/filename_util_unittest.cc",
5492 "base/url_util_unittest.cc",
5493 "cert/x509_certificate_unittest.cc",
Lily Houghton582d4622018-01-22 22:43:405494 "proxy_resolution/proxy_resolver_v8_unittest.cc",
kapishnikovabe280e2016-04-14 19:07:165495 "url_request/url_request_job_unittest.cc",
5496 ]
Misha Efimov17221622018-01-30 23:36:025497 deps += [ "//url:url_java" ]
kapishnikovabe280e2016-04-14 19:07:165498 }
5499
5500 # Unit tests that are not supported by the current ICU alternatives on iOS.
5501 if (is_ios && use_platform_icu_alternatives) {
5502 sources -= [
5503 "base/filename_util_unittest.cc",
5504 "base/url_util_unittest.cc",
5505 "cert/x509_certificate_unittest.cc",
5506 "http/http_auth_handler_basic_unittest.cc",
5507 "http/http_auth_handler_digest_unittest.cc",
5508 "http/http_auth_handler_factory_unittest.cc",
5509 "http/http_auth_unittest.cc",
5510 "http/http_content_disposition_unittest.cc",
5511 "http/http_network_transaction_unittest.cc",
5512 "http/http_proxy_client_socket_pool_unittest.cc",
5513 "socket/ssl_client_socket_pool_unittest.cc",
Bence Béky94658bf2018-05-11 19:22:585514 "spdy/spdy_network_transaction_unittest.cc",
5515 "spdy/spdy_proxy_client_socket_unittest.cc",
kapishnikovabe280e2016-04-14 19:07:165516 "url_request/url_request_job_unittest.cc",
5517 "url_request/url_request_unittest.cc",
5518 ]
5519 }
5520
5521 # Exclude brotli test if the support for brotli is disabled.
xunjielif54f24a02016-11-04 15:51:545522 if (disable_brotli_filter) {
xunjieli084a9292016-09-23 18:15:045523 sources -= [ "filter/brotli_source_stream_unittest.cc" ]
kapishnikovabe280e2016-04-14 19:07:165524 }
5525
dpranke64df2832015-07-31 22:33:365526 if (is_android) {
agrieve732db3a2016-04-26 19:18:195527 data_deps += [ "//net/tools/testserver:testserver_py" ]
agrieve97176362015-12-01 16:36:195528 deps += [
5529 ":net_test_jni_headers",
agrievea5517aa2015-10-23 03:03:455530 "//base:base_java_unittest_support",
5531 "//net/android:net_java",
agrievea5517aa2015-10-23 03:03:455532 "//net/android:net_java_test_support",
Yipeng Wangff2db2d2017-06-16 13:54:525533 "//net/android:net_java_test_support_provider",
agrieve97176362015-12-01 16:36:195534 "//net/android:net_javatests",
agrievea5517aa2015-10-23 03:03:455535 "//net/android:net_unittests_apk_resources",
agrieve97176362015-12-01 16:36:195536
5537 # TODO(mmenke): This depends on test_support_base, which depends on
5538 # icu. Figure out a way to remove that dependency.
5539 "//testing/android/native_test:native_test_native_code",
pkotwicz8c7027d2015-11-11 06:30:075540 "//v8:v8_external_startup_data_assets",
agrievea5517aa2015-10-23 03:03:455541 ]
5542 android_manifest = "//net/android/unittest_support/AndroidManifest.xml"
dpranke64df2832015-07-31 22:33:365543 set_sources_assignment_filter([])
Sergey Ulanov5bb07d32017-07-12 04:14:545544 sources += [
5545 "base/address_tracker_linux_unittest.cc",
5546 "base/network_interfaces_linux_unittest.cc",
5547 ]
dpranke64df2832015-07-31 22:33:365548 set_sources_assignment_filter(sources_assignment_filter)
agrieve3ac557f02016-04-12 15:52:005549 shard_timeout = 300
dpranke64df2832015-07-31 22:33:365550 }
5551
dpranke64df2832015-07-31 22:33:365552 # Symbols for crashes when running tests on swarming.
5553 if (symbol_level > 0) {
5554 if (is_win) {
5555 data += [ "$root_out_dir/net_unittests.exe.pdb" ]
5556 } else if (is_mac) {
dprankede2945b82016-04-15 22:14:135557 # TODO(crbug.com/330301): make this conditional on mac_strip_release.
5558 # data += [ "$root_out_dir/net_unittests.dSYM/" ]
dpranke64df2832015-07-31 22:33:365559 }
5560 }
maksim.sisovc69619d2016-05-20 19:23:555561
5562 if (is_win) {
davidbend6d1e4d2017-05-10 16:49:015563 libs = [
5564 "iphlpapi.lib",
5565 "ncrypt.lib",
5566 ]
maksim.sisovc69619d2016-05-20 19:23:555567 }
davidben983d610b2016-12-14 19:35:405568
5569 if (is_chromecast && use_nss_certs) {
mattm436ccfe2017-06-19 20:24:085570 sources -= [
5571 "ssl/client_cert_store_nss_unittest.cc",
5572 "ssl/ssl_platform_key_nss_unittest.cc",
5573 ]
davidben983d610b2016-12-14 19:35:405574 }
martijnb9aca9d2017-03-31 19:56:155575
5576 # Include transport_security_state_generator tests.
5577 if (host_toolchain == current_toolchain) {
Mustafa Emre Acera7152b862018-06-14 20:57:475578 deps += [
5579 "//net/tools/huffman_trie:huffman_trie_generator_test_sources",
5580 "//net/tools/transport_security_state_generator:transport_security_state_generator_test_sources",
5581 ]
martijnb9aca9d2017-03-31 19:56:155582 }
mattm1a07e632017-05-16 05:55:505583
5584 # Add back some sources that were otherwise filtered out.
5585 set_sources_assignment_filter([])
5586 sources += net_unfiltered_sources
5587 set_sources_assignment_filter(sources_assignment_filter)
dpranke64df2832015-07-31 22:33:365588}
5589
5590# !is_android && !is_win && !is_mac
ckrasic73f7240b2017-01-24 00:06:455591if (!is_ios && !is_proto_quic) {
sdefresne3001f172016-03-16 10:30:035592 # TODO(crbug.com/594965): this should be converted to "app" template and
5593 # enabled on iOS too.
Stephan Stross92fe507e2018-05-12 01:47:335594 test("net_perftests") {
sdefresne3001f172016-03-16 10:30:035595 sources = [
5596 "base/mime_sniffer_perftest.cc",
5597 "cookies/cookie_monster_perftest.cc",
gavinpc28fe1122016-05-13 17:49:055598 "disk_cache/disk_cache_perftest.cc",
sdefresne3001f172016-03-16 10:30:035599 "extras/sqlite/sqlite_persistent_cookie_store_perftest.cc",
tfarina5dd13c22016-11-16 12:08:265600 "socket/udp_socket_perftest.cc",
xunjielicc6b1d02017-06-05 16:51:405601 "url_request/url_request_quic_perftest.cc",
sdefresne3001f172016-03-16 10:30:035602 ]
[email protected]8a3f8242014-06-05 18:05:125603
sdefresne3001f172016-03-16 10:30:035604 deps = [
5605 ":extras",
5606 ":net",
xunjielicc6b1d02017-06-05 16:51:405607 ":quic_test_tools",
5608 ":simple_quic_tools",
sdefresne3001f172016-03-16 10:30:035609 ":test_support",
5610 "//base",
5611 "//base:i18n",
5612 "//base/test:test_support_perf",
sdefresne3001f172016-03-16 10:30:035613 "//testing/gtest",
xunjielicc6b1d02017-06-05 16:51:405614 "//testing/perf",
sdefresne3001f172016-03-16 10:30:035615 "//url",
5616 ]
Emily Hanley87c264cc2018-04-13 17:58:455617 data_deps = [
xunjieli5a866842017-06-09 18:16:205618 # Needed for isolate script to execute.
Emily Hanley87c264cc2018-04-13 17:58:455619 "//testing:run_perf_test",
xunjieli5a866842017-06-09 18:16:205620 ]
sdefresne3001f172016-03-16 10:30:035621 if (enable_websockets) {
5622 sources += [ "websockets/websocket_frame_perftest.cc" ]
5623 }
Stephan Stross92fe507e2018-05-12 01:47:335624 if (is_win) {
5625 deps += [ "//build/win:default_exe_manifest" ]
5626 }
rockot9c67e5f2015-03-12 20:01:215627 }
rockot9c67e5f2015-03-12 20:01:215628}
mefff34b822016-01-11 15:28:085629
eromanfe8659e2016-03-02 23:47:025630# Fuzzers
5631
mmenke35a30012016-07-15 19:20:125632# This has a global (InitGlobals) that must always be linked in, so
5633# must be a source set instead of a static library.
5634source_set("net_fuzzer_test_support") {
eroman02b4fe562016-03-04 12:15:165635 testonly = true
5636
5637 sources = [
csharrison37ef9852016-08-23 19:00:195638 "base/fuzzer_test_support.cc",
xunjieli75837332016-10-31 16:51:265639 "filter/fuzzed_source_stream.cc",
5640 "filter/fuzzed_source_stream.h",
tfarina5dd13c22016-11-16 12:08:265641 "socket/fuzzed_datagram_client_socket.cc",
5642 "socket/fuzzed_datagram_client_socket.h",
morlovich5e6e19b2017-01-30 14:38:165643 "socket/fuzzed_server_socket.cc",
5644 "socket/fuzzed_server_socket.h",
mmenke99b57172016-04-14 20:44:335645 "socket/fuzzed_socket.cc",
5646 "socket/fuzzed_socket.h",
mmenkec951d412016-04-28 19:05:225647 "socket/fuzzed_socket_factory.cc",
5648 "socket/fuzzed_socket_factory.h",
eroman02b4fe562016-03-04 12:15:165649 ]
csharrisonf30fc95f2016-08-19 21:43:445650 public_deps = [
5651 "//base/test:test_support",
Eric Orth24feb5b2018-05-25 19:42:465652 "//net/dns:fuzzer_test_support",
csharrisonf30fc95f2016-08-19 21:43:445653 ]
eroman02b4fe562016-03-04 12:15:165654 deps = [
5655 "//base",
5656 "//base:i18n",
mmenke99b57172016-04-14 20:44:335657 "//net",
eroman02b4fe562016-03-04 12:15:165658 ]
Eric Orth24feb5b2018-05-25 19:42:465659 allow_circular_includes_from = [ "//net/dns:fuzzer_test_support" ]
eroman02b4fe562016-03-04 12:15:165660}
5661
csharrisonaa314dc2016-04-29 20:15:375662fuzzer_test("net_data_job_fuzzer") {
5663 sources = [
5664 "url_request/url_request_data_job_fuzzer.cc",
5665 ]
5666 deps = [
5667 ":net_fuzzer_test_support",
5668 ":test_support",
5669 "//base",
5670 "//net",
5671 ]
5672}
5673
mmenke5552a6a2016-03-28 23:11:595674fuzzer_test("net_mime_sniffer_fuzzer") {
5675 sources = [
5676 "base/mime_sniffer_fuzzer.cc",
5677 ]
5678 deps = [
5679 ":net_fuzzer_test_support",
5680 "//base",
5681 "//net",
5682 ]
mmoroz4a561d32016-07-07 17:45:125683 dict = "data/fuzzer_dictionaries/net_mime_sniffer_fuzzer.dict"
mmenke5552a6a2016-03-28 23:11:595684}
5685
mmoroz565e8df22016-03-04 18:17:205686fuzzer_test("net_parse_proxy_list_pac_fuzzer") {
eromane6264fd2016-03-02 22:46:305687 sources = [
Lily Houghton582d4622018-01-22 22:43:405688 "proxy_resolution/parse_proxy_list_pac_fuzzer.cc",
eromane6264fd2016-03-02 22:46:305689 ]
5690 deps = [
eroman02b4fe562016-03-04 12:15:165691 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305692 "//net",
5693 ]
5694}
5695
mmoroz565e8df22016-03-04 18:17:205696fuzzer_test("net_parse_proxy_list_fuzzer") {
eromane6264fd2016-03-02 22:46:305697 sources = [
Lily Houghton582d4622018-01-22 22:43:405698 "proxy_resolution/parse_proxy_list_fuzzer.cc",
eromane6264fd2016-03-02 22:46:305699 ]
5700 deps = [
eroman02b4fe562016-03-04 12:15:165701 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305702 "//net",
5703 ]
5704}
5705
mmoroz565e8df22016-03-04 18:17:205706fuzzer_test("net_parse_proxy_bypass_rules_fuzzer") {
eromane6264fd2016-03-02 22:46:305707 sources = [
Lily Houghton582d4622018-01-22 22:43:405708 "proxy_resolution/parse_proxy_bypass_rules_fuzzer.cc",
eromane6264fd2016-03-02 22:46:305709 ]
Eric Romanb8522d62018-03-01 02:53:585710
5711 libfuzzer_options = [
5712 # The proxy bypass rules aren't very complicated, so this is more than
5713 # enough to explore the grammar. Allowing the length to become too large
5714 # can result in test timeouts (https://crbug.com/813619).
5715 "max_len=512",
5716 ]
5717
eromane6264fd2016-03-02 22:46:305718 deps = [
eroman02b4fe562016-03-04 12:15:165719 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305720 "//net",
5721 ]
5722}
5723
mmoroz565e8df22016-03-04 18:17:205724fuzzer_test("net_parse_proxy_rules_fuzzer") {
eromane6264fd2016-03-02 22:46:305725 sources = [
Lily Houghton582d4622018-01-22 22:43:405726 "proxy_resolution/parse_proxy_rules_fuzzer.cc",
eromane6264fd2016-03-02 22:46:305727 ]
5728 deps = [
eroman02b4fe562016-03-04 12:15:165729 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305730 "//net",
5731 ]
metzman31db75e2016-08-03 22:33:275732 dict = "data/fuzzer_dictionaries/net_parse_proxy_bypass_rules_fuzzer.dict"
eromane6264fd2016-03-02 22:46:305733}
5734
mmoroz565e8df22016-03-04 18:17:205735fuzzer_test("net_parse_data_url_fuzzer") {
eromane6264fd2016-03-02 22:46:305736 sources = [
5737 "base/parse_data_url_fuzzer.cc",
5738 ]
5739 deps = [
eroman02b4fe562016-03-04 12:15:165740 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305741 "//base",
5742 "//net",
5743 ]
mmoroz4a561d32016-07-07 17:45:125744 dict = "data/fuzzer_dictionaries/net_parse_data_url_fuzzer.dict"
eromane6264fd2016-03-02 22:46:305745}
5746
mmoroz565e8df22016-03-04 18:17:205747fuzzer_test("net_parse_ip_pattern_fuzzer") {
eromane6264fd2016-03-02 22:46:305748 sources = [
5749 "base/parse_ip_pattern_fuzzer.cc",
5750 ]
5751 deps = [
eroman02b4fe562016-03-04 12:15:165752 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305753 "//net",
5754 ]
5755}
5756
mmoroz565e8df22016-03-04 18:17:205757fuzzer_test("net_get_domain_and_registry_fuzzer") {
eromane6264fd2016-03-02 22:46:305758 sources = [
5759 "base/registry_controlled_domains/get_domain_and_registry_fuzzer.cc",
5760 ]
5761 deps = [
eroman02b4fe562016-03-04 12:15:165762 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305763 "//base",
eromane6264fd2016-03-02 22:46:305764 "//net",
5765 ]
mmoroz4a561d32016-07-07 17:45:125766 dict = "data/fuzzer_dictionaries/net_get_domain_and_registry_fuzzer.dict"
eromane6264fd2016-03-02 22:46:305767}
5768
mattmafe43b82016-04-28 20:40:545769fuzzer_test("net_cert_verify_name_match_fuzzer") {
5770 sources = [
5771 "cert/internal/verify_name_match_fuzzer.cc",
5772 ]
5773 deps = [
5774 ":net_fuzzer_test_support",
5775 "//base",
5776 "//net",
5777 ]
5778}
5779
mattm2c637da42016-04-28 02:55:595780fuzzer_test("net_cert_normalize_name_fuzzer") {
5781 sources = [
5782 "cert/internal/verify_name_match_normalizename_fuzzer.cc",
5783 ]
5784 deps = [
5785 "//base",
5786 "//net",
5787 ]
5788}
5789
mattmafe43b82016-04-28 20:40:545790fuzzer_test("net_cert_verify_name_in_subtree_fuzzer") {
5791 sources = [
5792 "cert/internal/verify_name_match_verifynameinsubtree_fuzzer.cc",
5793 ]
5794 deps = [
5795 ":net_fuzzer_test_support",
5796 "//base",
5797 "//net",
5798 ]
5799}
5800
nharper85d3b6f2016-04-28 20:58:195801fuzzer_test("net_cert_parse_certificate_fuzzer") {
5802 sources = [
5803 "cert/internal/parse_certificate_fuzzer.cc",
5804 ]
5805 deps = [
5806 "//base",
5807 "//net",
5808 ]
5809}
5810
mmoroz565e8df22016-03-04 18:17:205811fuzzer_test("net_parse_cookie_line_fuzzer") {
eromane6264fd2016-03-02 22:46:305812 sources = [
5813 "cookies/parse_cookie_line_fuzzer.cc",
5814 ]
5815 deps = [
eroman02b4fe562016-03-04 12:15:165816 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305817 "//net",
5818 ]
5819}
5820
mmenke44e8e9c2016-03-29 18:38:575821fuzzer_test("net_http_stream_parser_fuzzer") {
5822 sources = [
5823 "http/http_stream_parser_fuzzer.cc",
5824 ]
5825 deps = [
5826 ":net_fuzzer_test_support",
5827 ":test_support",
5828 "//base",
5829 "//net",
5830 ]
mmoroz4a561d32016-07-07 17:45:125831 dict = "data/fuzzer_dictionaries/net_http_stream_parser_fuzzer.dict"
mmenke44e8e9c2016-03-29 18:38:575832}
5833
Zentaro Kavanaghdd556612017-08-03 20:27:045834fuzzer_test("net_ntlm_ntlm_client_fuzzer") {
5835 sources = [
5836 "ntlm/ntlm_client_fuzzer.cc",
5837 ]
5838 deps = [
5839 ":net_fuzzer_test_support",
5840 ":test_support",
5841 "//base",
5842 "//net",
5843 "//net:net_unittests",
5844 ]
5845 dict = "data/fuzzer_dictionaries/net_ntlm_ntlm_client_fuzzer.dict"
5846 seed_corpus = "data/fuzzer_data/ntlm_client_fuzzer/"
5847}
5848
xunjielid5ffeaf2016-11-01 15:22:005849if (!disable_brotli_filter) {
5850 fuzzer_test("net_brotli_source_stream_fuzzer") {
5851 sources = [
5852 "filter/brotli_source_stream_fuzzer.cc",
5853 ]
5854 deps = [
5855 ":net_fuzzer_test_support",
5856 ":test_support",
5857 "//base",
5858 "//net",
5859 ]
5860 }
5861}
5862
xunjieli75837332016-10-31 16:51:265863fuzzer_test("net_gzip_source_stream_fuzzer") {
5864 sources = [
5865 "filter/gzip_source_stream_fuzzer.cc",
5866 ]
5867 deps = [
5868 ":net_fuzzer_test_support",
5869 ":test_support",
5870 "//base",
5871 "//net",
5872 ]
5873}
5874
mmoroz565e8df22016-03-04 18:17:205875fuzzer_test("net_ftp_ctrl_response_fuzzer") {
eromanfe8659e2016-03-02 23:47:025876 sources = [
5877 "ftp/ftp_ctrl_response_fuzzer.cc",
5878 ]
5879 deps = [
eroman02b4fe562016-03-04 12:15:165880 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:025881 "//base",
5882 "//net",
5883 ]
5884}
5885
mmoroz565e8df22016-03-04 18:17:205886fuzzer_test("net_ftp_directory_listing_fuzzer") {
eromanfe8659e2016-03-02 23:47:025887 sources = [
5888 "ftp/ftp_directory_listing_fuzzer.cc",
5889 ]
5890 deps = [
eroman02b4fe562016-03-04 12:15:165891 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:025892 "//base",
eromanfe8659e2016-03-02 23:47:025893 "//net",
5894 ]
5895}
5896
mmoroz565e8df22016-03-04 18:17:205897fuzzer_test("net_unescape_url_component_fuzzer") {
eromanfe8659e2016-03-02 23:47:025898 sources = [
5899 "base/unescape_url_component_fuzzer.cc",
5900 ]
5901 deps = [
eroman02b4fe562016-03-04 12:15:165902 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:025903 "//base",
5904 "//net",
5905 ]
mmoroz34eb0082016-03-11 14:32:015906 dict = "base/unescape_url_component_fuzzer.dict"
mmoroz062a4a62016-04-12 09:02:335907 libfuzzer_options = [ "max_len = 2048" ]
eromanfe8659e2016-03-02 23:47:025908}
5909
ricea7b870e72016-09-01 04:41:045910fuzzer_test("net_websocket_deflate_stream_fuzzer") {
5911 sources = [
5912 "websockets/websocket_deflate_stream_fuzzer.cc",
5913 ]
5914 deps = [
5915 ":net_fuzzer_test_support",
5916 "//net",
5917 ]
5918 dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict"
5919 libfuzzer_options = [ "max_len=512" ]
5920}
5921
riceaf9dcc092016-09-13 12:42:005922fuzzer_test("net_websocket_extension_parser_fuzzer") {
5923 sources = [
5924 "websockets/websocket_extension_parser_fuzzer.cc",
5925 ]
5926 deps = [
5927 ":net_fuzzer_test_support",
5928 "//net",
5929 ]
5930 dict = "data/fuzzer_dictionaries/net_websocket_extension_parser_fuzzer.dict"
5931 libfuzzer_options = [ "max_len = 256" ]
5932}
5933
mmoroz565e8df22016-03-04 18:17:205934fuzzer_test("net_websocket_frame_parser_fuzzer") {
eromanfe8659e2016-03-02 23:47:025935 sources = [
5936 "websockets/websocket_frame_parser_fuzzer.cc",
5937 ]
5938 deps = [
eroman02b4fe562016-03-04 12:15:165939 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:025940 "//net",
5941 ]
mmoroz4a561d32016-07-07 17:45:125942 dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict"
ricea105ae612016-09-08 08:00:075943 libfuzzer_options = [ "max_len=256" ]
eromanfe8659e2016-03-02 23:47:025944}
5945
mmoroz565e8df22016-03-04 18:17:205946fuzzer_test("net_http_chunked_decoder_fuzzer") {
eromanfe8659e2016-03-02 23:47:025947 sources = [
5948 "http/http_chunked_decoder_fuzzer.cc",
5949 ]
5950 deps = [
eroman02b4fe562016-03-04 12:15:165951 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:025952 "//net",
5953 ]
5954}
5955
mmenke8e9314bc2016-04-15 21:45:025956fuzzer_test("net_http_proxy_client_socket_fuzzer") {
5957 sources = [
5958 "http/http_proxy_client_socket_fuzzer.cc",
5959 ]
5960 deps = [
5961 ":net_fuzzer_test_support",
5962 ":test_support",
5963 "//base",
5964 "//net",
5965 ]
mmoroz4a561d32016-07-07 17:45:125966 dict = "data/fuzzer_dictionaries/net_http_proxy_client_socket_fuzzer.dict"
mmenke8e9314bc2016-04-15 21:45:025967}
5968
mmoroz9299ef9b2016-09-01 17:37:095969fuzzer_test("net_parse_url_hostname_to_address_fuzzer") {
5970 sources = [
5971 "base/parse_url_hostname_to_address_fuzzer.cc",
5972 ]
5973 deps = [
5974 ":net_fuzzer_test_support",
5975 "//base",
5976 "//net",
5977 ]
5978 libfuzzer_options = [ "max_len=512" ]
5979 seed_corpus = "data/fuzzer_data/hostnames/"
5980}
5981
mmoroz565e8df22016-03-04 18:17:205982fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") {
eromanfe8659e2016-03-02 23:47:025983 sources = [
Ryan Hamilton56b10c5d2018-05-11 13:40:165984 "third_party/quic/core/quic_crypto_framer_parse_message_fuzzer.cc",
eromanfe8659e2016-03-02 23:47:025985 ]
5986 deps = [
eroman02b4fe562016-03-04 12:15:165987 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:025988 "//base",
5989 "//net",
5990 ]
5991}
mmenke99b57172016-04-14 20:44:335992
5993fuzzer_test("net_socks_client_socket_fuzzer") {
5994 sources = [
5995 "socket/socks_client_socket_fuzzer.cc",
5996 ]
5997 deps = [
5998 ":net_fuzzer_test_support",
5999 ":test_support",
6000 "//base",
6001 "//net",
6002 ]
6003}
6004
6005fuzzer_test("net_socks5_client_socket_fuzzer") {
6006 sources = [
6007 "socket/socks5_client_socket_fuzzer.cc",
6008 ]
6009 deps = [
6010 ":net_fuzzer_test_support",
6011 ":test_support",
6012 "//base",
6013 "//net",
6014 ]
6015}
mmenkec951d412016-04-28 19:05:226016
mmenkea7da0712016-11-21 21:12:316017fuzzer_test("net_url_request_ftp_fuzzer") {
6018 sources = [
6019 "url_request/url_request_ftp_fuzzer.cc",
6020 ]
6021 deps = [
6022 ":net_fuzzer_test_support",
6023 ":test_support",
6024 "//base",
6025 "//net",
6026 ]
6027 dict = "data/fuzzer_dictionaries/net_url_request_ftp_fuzzer.dict"
6028 seed_corpus = "data/fuzzer_data/net_url_request_ftp_fuzzer/"
6029}
6030
mmenkec951d412016-04-28 19:05:226031fuzzer_test("net_url_request_fuzzer") {
6032 sources = [
6033 "url_request/url_request_fuzzer.cc",
6034 ]
6035 deps = [
6036 ":net_fuzzer_test_support",
6037 ":test_support",
6038 "//base",
6039 "//net",
6040 ]
mmoroz4a561d32016-07-07 17:45:126041 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict"
Jonathan Metzman4cf98282018-03-09 02:36:566042
6043 # TODO(crbug.com/820089): Figure out why this fuzzer's corpus explodes to
6044 # 10 GB. For now, disable it on ClusterFuzz.
6045 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ]
mmenkec951d412016-04-28 19:05:226046}
csharrison88d2a612016-09-09 16:58:546047
6048fuzzer_test("net_auth_challenge_tokenizer_fuzzer") {
6049 sources = [
6050 "http/http_auth_challenge_tokenizer_fuzzer.cc",
6051 ]
6052 deps = [
6053 ":net_fuzzer_test_support",
6054 ":test_support",
6055 "//base",
6056 "//net",
6057 ]
6058}
martijndb9ad4f2016-10-26 18:34:096059
estarka57e8162017-04-21 18:01:056060fuzzer_test("net_http_security_headers_expect_ct_fuzzer") {
6061 sources = [
6062 "http/http_security_headers_expect_ct_fuzzer.cc",
6063 ]
6064 deps = [
6065 ":net_fuzzer_test_support",
6066 "//base",
6067 "//net",
6068 "//url",
6069 ]
6070 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
6071 seed_corpus = "data/fuzzer_data/http_security_headers/"
6072}
6073
martijndb9ad4f2016-10-26 18:34:096074fuzzer_test("net_http_security_headers_hsts_fuzzer") {
6075 sources = [
6076 "http/http_security_headers_hsts_fuzzer.cc",
6077 ]
6078 deps = [
6079 "//base",
6080 "//net",
6081 ]
6082 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
estarka57e8162017-04-21 18:01:056083 seed_corpus = "data/fuzzer_data/http_security_headers/"
martijndb9ad4f2016-10-26 18:34:096084}
6085
6086fuzzer_test("net_http_security_headers_hpkp_fuzzer") {
6087 sources = [
6088 "http/http_security_headers_hpkp_fuzzer.cc",
6089 ]
6090 deps = [
martijn15387afb2016-10-27 22:21:046091 ":net_fuzzer_test_support",
martijndb9ad4f2016-10-26 18:34:096092 "//base",
6093 "//net",
6094 "//url",
6095 ]
6096 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
estarka57e8162017-04-21 18:01:056097 seed_corpus = "data/fuzzer_data/http_security_headers/"
martijndb9ad4f2016-10-26 18:34:096098}
6099
6100fuzzer_test("net_http_security_headers_hpkp_report_only_fuzzer") {
6101 sources = [
6102 "http/http_security_headers_hpkp_report_only_fuzzer.cc",
6103 ]
6104 deps = [
martijn15387afb2016-10-27 22:21:046105 ":net_fuzzer_test_support",
martijndb9ad4f2016-10-26 18:34:096106 "//base",
6107 "//net",
6108 "//url",
6109 ]
6110 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
6111}
martijn40db4b762016-12-14 00:26:456112
martijnda940792016-12-29 01:36:516113fuzzer_test("net_http_transport_security_state_static_fuzzer") {
6114 sources = [
6115 "http/transport_security_state_static_fuzzer.cc",
6116 ]
6117 deps = [
6118 ":net_fuzzer_test_support",
6119 "//net",
6120 ]
6121 dict =
6122 "data/fuzzer_dictionaries/net_http_transport_security_state_fuzzer.dict"
6123}
6124
morlovich833190ec2017-02-10 16:53:046125fuzzer_test("net_spdy_session_fuzzer") {
6126 sources = [
Bence Béky94658bf2018-05-11 19:22:586127 "spdy/spdy_session_fuzzer.cc",
morlovich833190ec2017-02-10 16:53:046128 ]
6129 deps = [
6130 ":net_fuzzer_test_support",
6131 ":test_support",
6132 "//base",
6133 "//net",
Ryan Hamiltone3e592e2017-11-16 04:49:096134 "//net/data/ssl/certificates:generate_fuzzer_cert_includes",
morlovich833190ec2017-02-10 16:53:046135 ]
6136 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
6137 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
6138}
Patrick Meenan6a9701372017-10-03 21:33:416139
6140fuzzer_test("net_http2_frame_decoder_fuzzer") {
6141 sources = [
Ryan Hamiltondf987ecb2018-04-18 15:42:016142 "third_party/http2/decoder/http2_frame_decoder_fuzzer.cc",
Patrick Meenan6a9701372017-10-03 21:33:416143 ]
6144 deps = [
6145 ":net_fuzzer_test_support",
6146 ":test_support",
6147 "//base",
6148 "//net",
6149 ]
6150}
Patrick Meenan73b497a2017-10-05 22:40:446151
6152fuzzer_test("net_hpack_decoder_fuzzer") {
6153 sources = [
Ryan Hamiltondf987ecb2018-04-18 15:42:016154 "third_party/http2/hpack/decoder/hpack_decoder_fuzzer.cc",
Patrick Meenan73b497a2017-10-05 22:40:446155 ]
6156 deps = [
6157 ":net_fuzzer_test_support",
6158 ":test_support",
6159 "//base",
6160 "//net",
6161 ]
6162}
Max Moroz592f4c62017-11-01 01:10:326163
6164proto_library("reporting_policy_proto") {
6165 import_dirs = [ "//testing/libfuzzer/proto/" ]
6166 sources = [
6167 "reporting/reporting_policy.proto",
6168 ]
6169 deps = [
6170 "//testing/libfuzzer/proto:json_proto",
6171 ]
6172}
6173
6174fuzzer_test("net_reporting_header_parser_fuzzer") {
6175 sources = [
6176 "reporting/reporting_header_parser_fuzzer.cc",
Max Moroz592f4c62017-11-01 01:10:326177 ]
6178
6179 deps = [
6180 ":net_fuzzer_test_support",
6181 ":reporting_policy_proto",
6182 ":test_support",
6183 "//base",
6184 "//net",
6185 "//testing/libfuzzer/proto:json_proto",
6186 "//testing/libfuzzer/proto:json_proto_converter",
6187 "//third_party/libprotobuf-mutator",
6188 ]
6189}
Ned Williamson3d55bbb2017-11-07 22:58:136190
6191fuzzer_test("net_quic_stream_factory_fuzzer") {
6192 sources = [
6193 "quic/chromium/mock_crypto_client_stream_factory.cc",
6194 "quic/chromium/mock_crypto_client_stream_factory.h",
6195 "quic/chromium/quic_stream_factory_fuzzer.cc",
6196 "quic/chromium/test_task_runner.cc",
6197 "quic/chromium/test_task_runner.h",
6198 ]
6199
6200 deps = [
6201 ":net_fuzzer_test_support",
6202 ":quic_test_tools",
6203 ":test_support",
6204 "//net",
Ryan Hamiltone3e592e2017-11-16 04:49:096205 "//net/data/ssl/certificates:generate_fuzzer_cert_includes",
Ned Williamson3d55bbb2017-11-07 22:58:136206 ]
6207}