blob: 2675a1ff3cf297f0e223a4c90bbc43194132c13a [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
Daniel Bratelle0c17302018-09-27 08:52:4548# Python works only on Linux, MacOS and Windows so exclude the others,
49# chromecast, android, fuchsia, ios.
Sergey Volk3ee3537f2018-06-12 01:45:4850enable_python_utils =
51 !is_arm_cast_shell_build && !is_android && !is_fuchsia && !is_ios
52
Daniel Bratelle0c17302018-09-27 08:52:4553# Platforms that cannot use python_utils (like Android but see full
54# list above) will instead use a remote server, except for iOS which
55# won't get either.
56use_remote_test_server = !enable_python_utils && !is_ios
Sergey Volk3ee3537f2018-06-12 01:45:4857
58config("net_test_config") {
59 if (use_remote_test_server) {
60 defines = [ "USE_REMOTE_TEST_SERVER" ]
61 }
62}
Sergey Ulanovec1d3de2017-09-19 19:27:4763
Scott Violet0caaaf432018-03-24 00:43:5964buildflag_header("buildflags") {
65 header = "net_buildflags.h"
brettwa1228ebb2016-10-28 03:51:3466 flags = [
67 "POSIX_AVOID_MMAP=$posix_avoid_mmap",
68 "DISABLE_FILE_SUPPORT=$disable_file_support",
69 "DISABLE_FTP_SUPPORT=$disable_ftp_support",
brettw5224a182016-10-28 22:13:0270 "ENABLE_MDNS=$enable_mdns",
mmenkefd9d15c2017-06-29 13:45:5471 "ENABLE_REPORTING=$enable_reporting",
brettwa1228ebb2016-10-28 03:51:3472 "ENABLE_WEBSOCKETS=$enable_websockets",
xunjieli815ad5b2017-07-18 15:51:3573 "INCLUDE_TRANSPORT_SECURITY_STATE_PRELOAD_LIST=$include_transport_security_state_preload_list",
Nico Weber0699ffbd2018-07-09 16:57:0574 "USE_KERBEROS=$use_kerberos",
brettwa1228ebb2016-10-28 03:51:3475 ]
[email protected]4625ade2014-04-15 19:26:4476}
77
xunjieli905496a2015-08-31 15:51:1778config("net_internal_config") {
[email protected]8603c5de2014-04-16 20:34:3179 defines = [
[email protected]8603c5de2014-04-16 20:34:3180 "DLOPEN_KERBEROS",
scottmg34fb7e52014-12-03 23:27:2481 "NET_IMPLEMENTATION",
[email protected]8603c5de2014-04-16 20:34:3182 ]
dpranke43276212015-02-20 02:55:1983
Nico Weber0699ffbd2018-07-09 16:57:0584 if (use_kerberos && is_android) {
85 include_dirs = [ "/usr/include/kerberosV" ]
[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 = [
xunjieli0b7f5b62016-12-06 20:43:48106 "base/trace_constants.h",
107 ]
108 deps = [
109 "//base",
110 ]
111}
112
xunjieli905496a2015-08-31 15:51:17113component("net") {
ckrasic73f7240b2017-01-24 00:06:45114 sources = [
115 "base/address_family.cc",
116 "base/address_family.h",
117 "base/address_list.cc",
118 "base/address_list.h",
ckrasic73f7240b2017-01-24 00:06:45119 "base/auth.cc",
120 "base/auth.h",
121 "base/completion_callback.h",
Matt Menkedadd6c72018-01-30 23:07:25122 "base/completion_once_callback.h",
Bence Béky61f756c2018-04-25 14:17:53123 "base/completion_repeating_callback.h",
Charles 'Buck' Krasiced43ded2018-03-23 18:48:12124 "base/datagram_buffer.cc",
125 "base/datagram_buffer.h",
ckrasic73f7240b2017-01-24 00:06:45126 "base/escape.cc",
127 "base/escape.h",
Mythri Alle030e8f892018-10-09 14:58:17128 "base/features.cc",
129 "base/features.h",
ckrasic73f7240b2017-01-24 00:06:45130 "base/hash_value.cc",
131 "base/hash_value.h",
132 "base/host_port_pair.cc",
133 "base/host_port_pair.h",
fayangbaec8ff52017-01-28 03:26:12134 "base/interval.h",
135 "base/interval_set.h",
ckrasic73f7240b2017-01-24 00:06:45136 "base/io_buffer.cc",
137 "base/io_buffer.h",
138 "base/ip_address.cc",
139 "base/ip_address.h",
140 "base/ip_endpoint.cc",
141 "base/ip_endpoint.h",
ckrasic73f7240b2017-01-24 00:06:45142 "base/load_timing_info.cc",
143 "base/load_timing_info.h",
144 "base/lookup_string_in_fixed_set.cc",
145 "base/lookup_string_in_fixed_set.h",
146 "base/net_error_details.h",
147 "base/net_error_list.h",
148 "base/net_errors.cc",
149 "base/net_errors.h",
ckrasic73f7240b2017-01-24 00:06:45150 "base/net_export.h",
151 "base/net_module.cc",
152 "base/net_module.h",
153 "base/net_string_util.h",
154 "base/network_interfaces.cc",
155 "base/network_interfaces.h",
ckrasic73f7240b2017-01-24 00:06:45156 "base/parse_number.cc",
157 "base/parse_number.h",
158 "base/port_util.cc",
159 "base/port_util.h",
mmenke392ec462017-03-23 18:49:35160 "base/privacy_mode.h",
ckrasic73f7240b2017-01-24 00:06:45161 "base/rand_callback.h",
162 "base/registry_controlled_domains/registry_controlled_domain.cc",
163 "base/registry_controlled_domains/registry_controlled_domain.h",
164 "base/sockaddr_storage.cc",
165 "base/sockaddr_storage.h",
166 "base/sys_addrinfo.h",
167 "base/url_util.cc",
168 "base/url_util.h",
ckrasic73f7240b2017-01-24 00:06:45169 "cert/asn1_util.cc",
170 "cert/asn1_util.h",
171 "cert/cert_database.cc",
172 "cert/cert_database.h",
ckrasic73f7240b2017-01-24 00:06:45173 "cert/cert_status_flags.cc",
174 "cert/cert_status_flags.h",
mmenke392ec462017-03-23 18:49:35175 "cert/cert_status_flags_list.h",
ckrasic73f7240b2017-01-24 00:06:45176 "cert/cert_verifier.cc",
177 "cert/cert_verifier.h",
178 "cert/cert_verify_result.cc",
179 "cert/cert_verify_result.h",
180 "cert/client_cert_verifier.h",
181 "cert/crl_set.cc",
182 "cert/crl_set.h",
ckrasic73f7240b2017-01-24 00:06:45183 "cert/ct_policy_enforcer.cc",
184 "cert/ct_policy_enforcer.h",
185 "cert/ct_policy_status.h",
186 "cert/ct_verifier.h",
187 "cert/ct_verify_result.cc",
188 "cert/ct_verify_result.h",
189 "cert/do_nothing_ct_verifier.cc",
190 "cert/do_nothing_ct_verifier.h",
191 "cert/internal/cert_error_id.cc",
192 "cert/internal/cert_error_id.h",
193 "cert/internal/cert_error_params.cc",
194 "cert/internal/cert_error_params.h",
ckrasic73f7240b2017-01-24 00:06:45195 "cert/internal/cert_errors.cc",
196 "cert/internal/cert_errors.h",
197 "cert/internal/cert_issuer_source.h",
198 "cert/internal/cert_issuer_source_aia.cc",
199 "cert/internal/cert_issuer_source_aia.h",
200 "cert/internal/cert_issuer_source_static.cc",
201 "cert/internal/cert_issuer_source_static.h",
202 "cert/internal/certificate_policies.cc",
203 "cert/internal/certificate_policies.h",
Eric Romancaa0a602017-07-28 21:17:11204 "cert/internal/common_cert_errors.cc",
205 "cert/internal/common_cert_errors.h",
ckrasic73f7240b2017-01-24 00:06:45206 "cert/internal/extended_key_usage.cc",
207 "cert/internal/extended_key_usage.h",
Matt Mueller9e3ad3032017-09-14 19:29:31208 "cert/internal/general_names.cc",
209 "cert/internal/general_names.h",
ckrasic73f7240b2017-01-24 00:06:45210 "cert/internal/name_constraints.cc",
211 "cert/internal/name_constraints.h",
Eric Romana2f6f55d2017-09-07 23:34:57212 "cert/internal/ocsp.cc",
213 "cert/internal/ocsp.h",
ckrasic73f7240b2017-01-24 00:06:45214 "cert/internal/parse_certificate.cc",
215 "cert/internal/parse_certificate.h",
216 "cert/internal/parse_name.cc",
217 "cert/internal/parse_name.h",
ckrasic73f7240b2017-01-24 00:06:45218 "cert/internal/parsed_certificate.cc",
219 "cert/internal/parsed_certificate.h",
220 "cert/internal/path_builder.cc",
221 "cert/internal/path_builder.h",
Eric Romancc56d16f2017-10-11 23:04:26222 "cert/internal/revocation_checker.cc",
223 "cert/internal/revocation_checker.h",
ckrasic73f7240b2017-01-24 00:06:45224 "cert/internal/signature_algorithm.cc",
225 "cert/internal/signature_algorithm.h",
Eric Roman5431d702017-07-26 01:58:18226 "cert/internal/simple_path_builder_delegate.cc",
227 "cert/internal/simple_path_builder_delegate.h",
ckrasic73f7240b2017-01-24 00:06:45228 "cert/internal/trust_store.cc",
229 "cert/internal/trust_store.h",
230 "cert/internal/trust_store_collection.cc",
231 "cert/internal/trust_store_collection.h",
232 "cert/internal/trust_store_in_memory.cc",
233 "cert/internal/trust_store_in_memory.h",
234 "cert/internal/verify_certificate_chain.cc",
235 "cert/internal/verify_certificate_chain.h",
236 "cert/internal/verify_name_match.cc",
237 "cert/internal/verify_name_match.h",
238 "cert/internal/verify_signed_data.cc",
239 "cert/internal/verify_signed_data.h",
240 "cert/ocsp_revocation_status.h",
241 "cert/ocsp_verify_result.cc",
242 "cert/ocsp_verify_result.h",
243 "cert/pem_tokenizer.cc",
244 "cert/pem_tokenizer.h",
245 "cert/sct_status_flags.cc",
246 "cert/sct_status_flags.h",
247 "cert/signed_certificate_timestamp.cc",
248 "cert/signed_certificate_timestamp.h",
249 "cert/signed_certificate_timestamp_and_status.cc",
250 "cert/signed_certificate_timestamp_and_status.h",
251 "cert/signed_tree_head.cc",
252 "cert/signed_tree_head.h",
Emily Starkd29cdae2017-09-16 01:59:34253 "cert/symantec_certs.cc",
254 "cert/symantec_certs.h",
ckrasic73f7240b2017-01-24 00:06:45255 "cert/x509_cert_types.cc",
256 "cert/x509_cert_types.h",
257 "cert/x509_certificate.cc",
258 "cert/x509_certificate.h",
259 "cert/x509_certificate_net_log_param.cc",
260 "cert/x509_certificate_net_log_param.h",
ckrasic73f7240b2017-01-24 00:06:45261 "cert/x509_util.cc",
262 "cert/x509_util.h",
ckrasic73f7240b2017-01-24 00:06:45263 "der/encode_values.cc",
264 "der/encode_values.h",
265 "der/input.cc",
266 "der/input.h",
267 "der/parse_values.cc",
268 "der/parse_values.h",
269 "der/parser.cc",
270 "der/parser.h",
271 "der/tag.cc",
272 "der/tag.h",
ckrasic73f7240b2017-01-24 00:06:45273 "http/http_auth_challenge_tokenizer.cc",
274 "http/http_auth_challenge_tokenizer.h",
275 "http/http_auth_scheme.cc",
276 "http/http_auth_scheme.h",
277 "http/http_byte_range.cc",
278 "http/http_byte_range.h",
279 "http/http_log_util.cc",
280 "http/http_log_util.h",
Andrey Kosyakov83a6eee2017-08-14 19:20:04281 "http/http_raw_request_headers.cc",
282 "http/http_raw_request_headers.h",
ckrasic73f7240b2017-01-24 00:06:45283 "http/http_request_headers.cc",
284 "http/http_request_headers.h",
285 "http/http_response_headers.cc",
286 "http/http_response_headers.h",
287 "http/http_response_info.cc",
288 "http/http_response_info.h",
289 "http/http_security_headers.cc",
290 "http/http_security_headers.h",
Daniel Bratella6f7191d2017-11-23 09:20:37291 "http/http_status_code_list.h",
ckrasic73f7240b2017-01-24 00:06:45292 "http/http_util.cc",
293 "http/http_util.h",
294 "http/http_vary_data.cc",
295 "http/http_vary_data.h",
296 "http/transport_security_state.cc",
297 "http/transport_security_state.h",
xunjieli815ad5b2017-07-18 15:51:35298 "http/transport_security_state_source.cc",
martijn9b806ab22017-03-18 16:13:21299 "http/transport_security_state_source.h",
ckrasic73f7240b2017-01-24 00:06:45300 "log/net_log.cc",
301 "log/net_log.h",
302 "log/net_log_capture_mode.cc",
303 "log/net_log_capture_mode.h",
304 "log/net_log_entry.cc",
305 "log/net_log_entry.h",
mmenke392ec462017-03-23 18:49:35306 "log/net_log_event_type.h",
ckrasic73f7240b2017-01-24 00:06:45307 "log/net_log_event_type_list.h",
mmenke392ec462017-03-23 18:49:35308 "log/net_log_parameters_callback.h",
ckrasic73f7240b2017-01-24 00:06:45309 "log/net_log_source.cc",
310 "log/net_log_source.h",
mmenke392ec462017-03-23 18:49:35311 "log/net_log_source_type.h",
ckrasic73f7240b2017-01-24 00:06:45312 "log/net_log_source_type_list.h",
313 "log/net_log_with_source.cc",
314 "log/net_log_with_source.h",
315 "socket/client_socket_handle.cc",
316 "socket/client_socket_handle.h",
Matt Menke977e61b2019-01-10 19:36:02317 "socket/connect_job.cc",
318 "socket/connect_job.h",
ckrasic73f7240b2017-01-24 00:06:45319 "socket/connection_attempts.h",
320 "socket/next_proto.cc",
321 "socket/next_proto.h",
xunjieli321a96f32017-03-07 19:42:17322 "socket/socket.cc",
ckrasic73f7240b2017-01-24 00:06:45323 "socket/socket.h",
324 "socket/socket_bio_adapter.cc",
325 "socket/socket_bio_adapter.h",
326 "socket/socket_performance_watcher.h",
327 "socket/socket_performance_watcher_factory.h",
328 "socket/ssl_client_socket.cc",
329 "socket/ssl_client_socket.h",
330 "socket/ssl_client_socket_impl.cc",
331 "socket/ssl_client_socket_impl.h",
332 "socket/ssl_socket.h",
Bence Békydae8af5f2018-04-13 08:53:17333 "socket/stream_socket.cc",
334 "socket/stream_socket.h",
ckrasic73f7240b2017-01-24 00:06:45335 "ssl/channel_id_service.cc",
336 "ssl/channel_id_service.h",
337 "ssl/channel_id_store.cc",
338 "ssl/channel_id_store.h",
mattm436ccfe2017-06-19 20:24:08339 "ssl/client_cert_identity.cc",
340 "ssl/client_cert_identity.h",
341 "ssl/client_cert_identity_mac.cc",
342 "ssl/client_cert_identity_mac.h",
ckrasic73f7240b2017-01-24 00:06:45343 "ssl/default_channel_id_store.cc",
344 "ssl/default_channel_id_store.h",
ckrasic73f7240b2017-01-24 00:06:45345 "ssl/openssl_ssl_util.cc",
346 "ssl/openssl_ssl_util.h",
347 "ssl/ssl_cert_request_info.cc",
348 "ssl/ssl_cert_request_info.h",
349 "ssl/ssl_cipher_suite_names.cc",
350 "ssl/ssl_cipher_suite_names.h",
351 "ssl/ssl_client_auth_cache.cc",
352 "ssl/ssl_client_auth_cache.h",
353 "ssl/ssl_client_cert_type.h",
354 "ssl/ssl_client_session_cache.cc",
355 "ssl/ssl_client_session_cache.h",
356 "ssl/ssl_config.cc",
357 "ssl/ssl_config.h",
358 "ssl/ssl_config_service.cc",
359 "ssl/ssl_config_service.h",
360 "ssl/ssl_connection_status_flags.h",
361 "ssl/ssl_info.cc",
362 "ssl/ssl_info.h",
David Benjaminbd37c172018-07-11 17:24:57363 "ssl/ssl_key_logger.h",
David Benjaminb9bafbe2017-11-07 21:41:38364 "ssl/ssl_private_key.cc",
ckrasic73f7240b2017-01-24 00:06:45365 "ssl/ssl_private_key.h",
366 "ssl/ssl_server_config.cc",
367 "ssl/ssl_server_config.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",
dalyk6b82a0252018-08-22 15:22:38370 "third_party/uri_template/uri_template.cc",
371 "third_party/uri_template/uri_template.h",
ckrasic73f7240b2017-01-24 00:06:45372 ]
kapishnikovabe280e2016-04-14 19:07:16373 net_unfiltered_sources = []
374
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:58375 if (is_posix || is_fuchsia) {
376 sources += [ "base/net_errors_posix.cc" ]
377 }
378
Adam Langley93cbfad12018-07-06 22:07:16379 defines = []
380 if (disable_brotli_filter || is_nacl) {
381 defines += [ "NET_DISABLE_BROTLI" ]
382 }
383
kapishnikovabe280e2016-04-14 19:07:16384 deps = [
Eric Orth24feb5b2018-05-25 19:42:46385 ":net_deps",
kapishnikovabe280e2016-04-14 19:07:16386 ]
387
388 public_deps = [
Eric Orth24feb5b2018-05-25 19:42:46389 ":net_public_deps",
390 "//net/dns",
391 "//net/dns:dns_client",
Eric Orth168a7e52018-08-27 19:11:32392 "//net/dns:host_resolver",
Eric Orth24feb5b2018-05-25 19:42:46393 "//net/dns:host_resolver_impl",
394 "//net/dns:mdns_client",
Eric Orth8afaf152018-11-07 21:01:26395 "//net/dns/public",
Eric Orth24feb5b2018-05-25 19:42:46396 ]
397
398 allow_circular_includes_from = [
399 "//net/dns",
400 "//net/dns:dns_client",
Eric Orth168a7e52018-08-27 19:11:32401 "//net/dns:host_resolver",
Eric Orth24feb5b2018-05-25 19:42:46402 "//net/dns:host_resolver_impl",
403 "//net/dns:mdns_client",
Eric Orth8afaf152018-11-07 21:01:26404 "//net/dns/public",
kapishnikovabe280e2016-04-14 19:07:16405 ]
406
407 if (!is_nacl) {
ckrasic73f7240b2017-01-24 00:06:45408 sources += [
Ryan Sleevi24fe2682018-08-16 21:33:46409 "android/android_http_util.cc",
ckrasic73f7240b2017-01-24 00:06:45410 "android/cellular_signal_strength.cc",
411 "android/cellular_signal_strength.h",
412 "android/cert_verify_result_android.cc",
413 "android/cert_verify_result_android.h",
414 "android/gurl_utils.cc",
ckrasic73f7240b2017-01-24 00:06:45415 "android/http_auth_negotiate_android.cc",
416 "android/http_auth_negotiate_android.h",
417 "android/keystore.cc",
418 "android/keystore.h",
419 "android/legacy_openssl.h",
ckrasic73f7240b2017-01-24 00:06:45420 "android/network_change_notifier_android.cc",
421 "android/network_change_notifier_android.h",
422 "android/network_change_notifier_delegate_android.cc",
423 "android/network_change_notifier_delegate_android.h",
424 "android/network_change_notifier_factory_android.cc",
425 "android/network_change_notifier_factory_android.h",
426 "android/network_library.cc",
427 "android/network_library.h",
428 "android/traffic_stats.cc",
429 "android/traffic_stats.h",
430 "base/address_tracker_linux.cc",
431 "base/address_tracker_linux.h",
bnc4fab8022017-03-24 16:35:03432 "base/arena.cc",
433 "base/arena.h",
ckrasic73f7240b2017-01-24 00:06:45434 "base/backoff_entry.cc",
435 "base/backoff_entry.h",
436 "base/backoff_entry_serializer.cc",
437 "base/backoff_entry_serializer.h",
438 "base/cache_type.h",
439 "base/chunked_upload_data_stream.cc",
440 "base/chunked_upload_data_stream.h",
ckrasic73f7240b2017-01-24 00:06:45441 "base/data_url.cc",
442 "base/data_url.h",
443 "base/elements_upload_data_stream.cc",
444 "base/elements_upload_data_stream.h",
445 "base/expiring_cache.h",
446 "base/file_stream.cc",
447 "base/file_stream.h",
448 "base/file_stream_context.cc",
449 "base/file_stream_context.h",
ckrasic73f7240b2017-01-24 00:06:45450 "base/file_stream_context_win.cc",
451 "base/filename_util.cc",
452 "base/filename_util.h",
453 "base/filename_util_internal.cc",
454 "base/filename_util_internal.h",
Bence Békyd5c16edf2017-08-04 17:32:30455 "base/hex_utils.cc",
456 "base/hex_utils.h",
ckrasic73f7240b2017-01-24 00:06:45457 "base/host_mapping_rules.cc",
458 "base/host_mapping_rules.h",
ckrasic73f7240b2017-01-24 00:06:45459 "base/ip_pattern.cc",
460 "base/ip_pattern.h",
461 "base/layered_network_delegate.cc",
462 "base/layered_network_delegate.h",
bnc4fab8022017-03-24 16:35:03463 "base/linked_hash_map.h",
ckrasic73f7240b2017-01-24 00:06:45464 "base/load_flags.h",
465 "base/load_flags_list.h",
466 "base/load_states.h",
467 "base/load_states_list.h",
468 "base/logging_network_change_observer.cc",
469 "base/logging_network_change_observer.h",
ckrasic73f7240b2017-01-24 00:06:45470 "base/mime_sniffer.cc",
471 "base/mime_sniffer.h",
472 "base/mime_util.cc",
473 "base/mime_util.h",
474 "base/net_errors_win.cc",
475 "base/net_info_source_list.h",
476 "base/network_activity_monitor.cc",
477 "base/network_activity_monitor.h",
478 "base/network_change_notifier.cc",
479 "base/network_change_notifier.h",
Robbie McElrath995a2bf2018-11-19 23:21:59480 "base/network_change_notifier_chromeos.cc",
481 "base/network_change_notifier_chromeos.h",
ckrasic73f7240b2017-01-24 00:06:45482 "base/network_change_notifier_factory.h",
483 "base/network_change_notifier_linux.cc",
484 "base/network_change_notifier_linux.h",
485 "base/network_change_notifier_mac.cc",
486 "base/network_change_notifier_mac.h",
487 "base/network_change_notifier_win.cc",
488 "base/network_change_notifier_win.h",
489 "base/network_config_watcher_mac.cc",
490 "base/network_config_watcher_mac.h",
491 "base/network_delegate.cc",
492 "base/network_delegate.h",
493 "base/network_delegate_impl.cc",
494 "base/network_delegate_impl.h",
495 "base/network_interfaces_linux.cc",
wychen36575ffb2017-04-01 05:50:47496 "base/network_interfaces_linux.h",
Sergey Ulanov5c33235ae2017-07-06 23:55:07497 "base/network_interfaces_nacl.cc",
ckrasic73f7240b2017-01-24 00:06:45498 "base/network_interfaces_win.cc",
thakisb8590c92017-03-23 18:14:53499 "base/network_interfaces_win.h",
ckrasic73f7240b2017-01-24 00:06:45500 "base/platform_mime_util.h",
501 "base/platform_mime_util_linux.cc",
502 "base/platform_mime_util_mac.mm",
503 "base/platform_mime_util_win.cc",
504 "base/prioritized_dispatcher.cc",
505 "base/prioritized_dispatcher.h",
Josh Karlindd9a5d142018-06-06 00:35:48506 "base/prioritized_task_runner.cc",
507 "base/prioritized_task_runner.h",
ckrasic73f7240b2017-01-24 00:06:45508 "base/priority_queue.h",
509 "base/proxy_delegate.h",
Lily Houghton582d4622018-01-22 22:43:40510 "base/proxy_server.cc",
511 "base/proxy_server.h",
512 "base/proxy_server_mac.cc",
ckrasic73f7240b2017-01-24 00:06:45513 "base/request_priority.cc",
514 "base/request_priority.h",
ckrasic73f7240b2017-01-24 00:06:45515 "base/static_cookie_policy.cc",
516 "base/static_cookie_policy.h",
517 "base/test_data_stream.cc",
518 "base/test_data_stream.h",
519 "base/upload_bytes_element_reader.cc",
520 "base/upload_bytes_element_reader.h",
521 "base/upload_data_stream.cc",
522 "base/upload_data_stream.h",
523 "base/upload_element_reader.cc",
524 "base/upload_element_reader.h",
525 "base/upload_file_element_reader.cc",
526 "base/upload_file_element_reader.h",
527 "base/upload_progress.h",
528 "base/winsock_init.cc",
529 "base/winsock_init.h",
530 "base/winsock_util.cc",
531 "base/winsock_util.h",
532 "cert/caching_cert_verifier.cc",
533 "cert/caching_cert_verifier.h",
ckrasic73f7240b2017-01-24 00:06:45534 "cert/cert_database_mac.cc",
Eric Roman227a7f32017-10-09 22:46:45535 "cert/cert_net_fetcher.cc",
ckrasic73f7240b2017-01-24 00:06:45536 "cert/cert_net_fetcher.h",
537 "cert/cert_verify_proc.cc",
538 "cert/cert_verify_proc.h",
539 "cert/cert_verify_proc_android.cc",
540 "cert/cert_verify_proc_android.h",
eroman8ccd62d2017-03-16 23:54:26541 "cert/cert_verify_proc_builtin.cc",
542 "cert/cert_verify_proc_builtin.h",
ckrasic73f7240b2017-01-24 00:06:45543 "cert/cert_verify_proc_ios.cc",
544 "cert/cert_verify_proc_ios.h",
545 "cert/cert_verify_proc_mac.cc",
546 "cert/cert_verify_proc_mac.h",
547 "cert/cert_verify_proc_nss.cc",
548 "cert/cert_verify_proc_nss.h",
ckrasic73f7240b2017-01-24 00:06:45549 "cert/cert_verify_proc_win.cc",
550 "cert/cert_verify_proc_win.h",
ckrasic73f7240b2017-01-24 00:06:45551 "cert/ct_log_response_parser.cc",
552 "cert/ct_log_response_parser.h",
553 "cert/ct_log_verifier.cc",
554 "cert/ct_log_verifier.h",
555 "cert/ct_log_verifier_util.cc",
556 "cert/ct_log_verifier_util.h",
557 "cert/ct_objects_extractor.cc",
558 "cert/ct_objects_extractor.h",
559 "cert/ct_sct_to_string.cc",
560 "cert/ct_sct_to_string.h",
561 "cert/ct_serialization.cc",
562 "cert/ct_serialization.h",
563 "cert/ct_signed_certificate_timestamp_log_param.cc",
564 "cert/ct_signed_certificate_timestamp_log_param.h",
565 "cert/ev_root_ca_metadata.cc",
566 "cert/ev_root_ca_metadata.h",
eromanf628d6b2017-04-19 22:47:27567 "cert/internal/system_trust_store.cc",
568 "cert/internal/system_trust_store.h",
mattmea4ed8232017-02-28 23:13:23569 "cert/internal/trust_store_mac.cc",
570 "cert/internal/trust_store_mac.h",
ckrasic73f7240b2017-01-24 00:06:45571 "cert/internal/trust_store_nss.cc",
572 "cert/internal/trust_store_nss.h",
573 "cert/jwk_serializer.cc",
574 "cert/jwk_serializer.h",
Ryan Sleevi19a7bde2017-11-22 06:51:39575 "cert/known_roots.cc",
576 "cert/known_roots.h",
eromanf2971fd2017-04-20 20:10:45577 "cert/known_roots_mac.cc",
578 "cert/known_roots_mac.h",
579 "cert/known_roots_nss.cc",
580 "cert/known_roots_nss.h",
581 "cert/known_roots_win.cc",
582 "cert/known_roots_win.h",
ckrasic73f7240b2017-01-24 00:06:45583 "cert/merkle_audit_proof.cc",
584 "cert/merkle_audit_proof.h",
585 "cert/merkle_consistency_proof.cc",
586 "cert/merkle_consistency_proof.h",
587 "cert/merkle_tree_leaf.cc",
588 "cert/merkle_tree_leaf.h",
589 "cert/multi_log_ct_verifier.cc",
590 "cert/multi_log_ct_verifier.h",
591 "cert/multi_threaded_cert_verifier.cc",
592 "cert/multi_threaded_cert_verifier.h",
593 "cert/nss_cert_database.cc",
594 "cert/nss_cert_database.h",
595 "cert/nss_cert_database_chromeos.cc",
596 "cert/nss_cert_database_chromeos.h",
597 "cert/nss_profile_filter_chromeos.cc",
598 "cert/nss_profile_filter_chromeos.h",
Ryan Sleevi19a7bde2017-11-22 06:51:39599 "cert/root_cert_list_generated.h",
ckrasic73f7240b2017-01-24 00:06:45600 "cert/test_keychain_search_list_mac.cc",
601 "cert/test_keychain_search_list_mac.h",
602 "cert/test_root_certs.cc",
603 "cert/test_root_certs.h",
604 "cert/test_root_certs_android.cc",
605 "cert/test_root_certs_mac.cc",
606 "cert/test_root_certs_nss.cc",
ckrasic73f7240b2017-01-24 00:06:45607 "cert/test_root_certs_win.cc",
ckrasic73f7240b2017-01-24 00:06:45608 "cert/x509_util_android.cc",
mattm4cede8d2017-04-11 02:55:01609 "cert/x509_util_ios.cc",
610 "cert/x509_util_ios.h",
mattm1a07e632017-05-16 05:55:50611 "cert/x509_util_ios_and_mac.cc",
612 "cert/x509_util_ios_and_mac.h",
ckrasic73f7240b2017-01-24 00:06:45613 "cert/x509_util_mac.cc",
614 "cert/x509_util_mac.h",
615 "cert/x509_util_nss.cc",
616 "cert/x509_util_nss.h",
mattm2fe429a2017-06-20 01:53:44617 "cert/x509_util_win.cc",
618 "cert/x509_util_win.h",
ckrasic73f7240b2017-01-24 00:06:45619 "cert_net/cert_net_fetcher_impl.cc",
620 "cert_net/cert_net_fetcher_impl.h",
621 "cert_net/nss_ocsp.cc",
622 "cert_net/nss_ocsp.h",
623 "cookies/canonical_cookie.cc",
624 "cookies/canonical_cookie.h",
Victor Costan14f47c12018-03-01 08:02:24625 "cookies/cookie_change_dispatcher.cc",
626 "cookies/cookie_change_dispatcher.h",
ckrasic73f7240b2017-01-24 00:06:45627 "cookies/cookie_constants.cc",
628 "cookies/cookie_constants.h",
Chris Mumfordd8ed9f82018-05-01 15:43:13629 "cookies/cookie_deletion_info.cc",
630 "cookies/cookie_deletion_info.h",
ckrasic73f7240b2017-01-24 00:06:45631 "cookies/cookie_monster.cc",
632 "cookies/cookie_monster.h",
Victor Costan14f47c12018-03-01 08:02:24633 "cookies/cookie_monster_change_dispatcher.cc",
634 "cookies/cookie_monster_change_dispatcher.h",
Helen Licd0fab862018-08-13 16:07:53635 "cookies/cookie_monster_netlog_params.cc",
636 "cookies/cookie_monster_netlog_params.h",
ckrasic73f7240b2017-01-24 00:06:45637 "cookies/cookie_options.cc",
638 "cookies/cookie_options.h",
639 "cookies/cookie_store.cc",
640 "cookies/cookie_store.h",
641 "cookies/cookie_util.cc",
642 "cookies/cookie_util.h",
643 "cookies/parsed_cookie.cc",
644 "cookies/parsed_cookie.h",
Maks Orlovich036fd1f2017-08-07 17:51:11645 "disk_cache/backend_cleanup_tracker.cc",
646 "disk_cache/backend_cleanup_tracker.h",
ckrasic73f7240b2017-01-24 00:06:45647 "disk_cache/blockfile/addr.cc",
648 "disk_cache/blockfile/addr.h",
649 "disk_cache/blockfile/backend_impl.cc",
650 "disk_cache/blockfile/backend_impl.h",
651 "disk_cache/blockfile/bitmap.cc",
652 "disk_cache/blockfile/bitmap.h",
653 "disk_cache/blockfile/block_files.cc",
654 "disk_cache/blockfile/block_files.h",
655 "disk_cache/blockfile/disk_format.cc",
656 "disk_cache/blockfile/disk_format.h",
657 "disk_cache/blockfile/disk_format_base.h",
658 "disk_cache/blockfile/entry_impl.cc",
659 "disk_cache/blockfile/entry_impl.h",
660 "disk_cache/blockfile/errors.h",
661 "disk_cache/blockfile/eviction.cc",
662 "disk_cache/blockfile/eviction.h",
663 "disk_cache/blockfile/experiments.h",
664 "disk_cache/blockfile/file.cc",
665 "disk_cache/blockfile/file.h",
666 "disk_cache/blockfile/file_block.h",
667 "disk_cache/blockfile/file_ios.cc",
668 "disk_cache/blockfile/file_lock.cc",
669 "disk_cache/blockfile/file_lock.h",
ckrasic73f7240b2017-01-24 00:06:45670 "disk_cache/blockfile/file_win.cc",
671 "disk_cache/blockfile/histogram_macros.h",
672 "disk_cache/blockfile/in_flight_backend_io.cc",
673 "disk_cache/blockfile/in_flight_backend_io.h",
674 "disk_cache/blockfile/in_flight_io.cc",
675 "disk_cache/blockfile/in_flight_io.h",
676 "disk_cache/blockfile/mapped_file.cc",
677 "disk_cache/blockfile/mapped_file.h",
ckrasic73f7240b2017-01-24 00:06:45678 "disk_cache/blockfile/mapped_file_win.cc",
679 "disk_cache/blockfile/rankings.cc",
680 "disk_cache/blockfile/rankings.h",
681 "disk_cache/blockfile/sparse_control.cc",
682 "disk_cache/blockfile/sparse_control.h",
683 "disk_cache/blockfile/stats.cc",
684 "disk_cache/blockfile/stats.h",
685 "disk_cache/blockfile/storage_block-inl.h",
686 "disk_cache/blockfile/storage_block.h",
687 "disk_cache/blockfile/stress_support.h",
688 "disk_cache/blockfile/trace.cc",
689 "disk_cache/blockfile/trace.h",
690 "disk_cache/blockfile/webfonts_histogram.cc",
691 "disk_cache/blockfile/webfonts_histogram.h",
692 "disk_cache/cache_util.cc",
693 "disk_cache/cache_util.h",
ckrasic73f7240b2017-01-24 00:06:45694 "disk_cache/cache_util_win.cc",
695 "disk_cache/disk_cache.cc",
696 "disk_cache/disk_cache.h",
697 "disk_cache/memory/mem_backend_impl.cc",
698 "disk_cache/memory/mem_backend_impl.h",
699 "disk_cache/memory/mem_entry_impl.cc",
700 "disk_cache/memory/mem_entry_impl.h",
701 "disk_cache/net_log_parameters.cc",
702 "disk_cache/net_log_parameters.h",
703 "disk_cache/simple/simple_backend_impl.cc",
704 "disk_cache/simple/simple_backend_impl.h",
705 "disk_cache/simple/simple_backend_version.h",
706 "disk_cache/simple/simple_entry_format.cc",
707 "disk_cache/simple/simple_entry_format.h",
708 "disk_cache/simple/simple_entry_format_history.h",
709 "disk_cache/simple/simple_entry_impl.cc",
710 "disk_cache/simple/simple_entry_impl.h",
711 "disk_cache/simple/simple_entry_operation.cc",
712 "disk_cache/simple/simple_entry_operation.h",
Maks Orlovichf378b3a2017-10-31 16:27:30713 "disk_cache/simple/simple_file_tracker.cc",
714 "disk_cache/simple/simple_file_tracker.h",
ckrasic73f7240b2017-01-24 00:06:45715 "disk_cache/simple/simple_histogram_macros.h",
716 "disk_cache/simple/simple_index.cc",
717 "disk_cache/simple/simple_index.h",
718 "disk_cache/simple/simple_index_delegate.h",
719 "disk_cache/simple/simple_index_file.cc",
720 "disk_cache/simple/simple_index_file.h",
ckrasic73f7240b2017-01-24 00:06:45721 "disk_cache/simple/simple_index_file_win.cc",
722 "disk_cache/simple/simple_net_log_parameters.cc",
723 "disk_cache/simple/simple_net_log_parameters.h",
724 "disk_cache/simple/simple_synchronous_entry.cc",
725 "disk_cache/simple/simple_synchronous_entry.h",
726 "disk_cache/simple/simple_util.cc",
727 "disk_cache/simple/simple_util.h",
ckrasic73f7240b2017-01-24 00:06:45728 "disk_cache/simple/simple_util_win.cc",
729 "disk_cache/simple/simple_version_upgrade.cc",
730 "disk_cache/simple/simple_version_upgrade.h",
ckrasic73f7240b2017-01-24 00:06:45731 "filter/filter_source_stream.cc",
732 "filter/filter_source_stream.h",
733 "filter/gzip_header.cc",
734 "filter/gzip_header.h",
735 "filter/gzip_source_stream.cc",
736 "filter/gzip_source_stream.h",
ckrasic73f7240b2017-01-24 00:06:45737 "filter/source_stream.cc",
738 "filter/source_stream.h",
739 "filter/source_stream_type_list.h",
740 "http/bidirectional_stream.cc",
741 "http/bidirectional_stream.h",
742 "http/bidirectional_stream_impl.cc",
743 "http/bidirectional_stream_impl.h",
744 "http/bidirectional_stream_request_info.cc",
745 "http/bidirectional_stream_request_info.h",
wangyix64ccc57c2017-06-01 23:14:16746 "http/broken_alternative_services.cc",
747 "http/broken_alternative_services.h",
ckrasic73f7240b2017-01-24 00:06:45748 "http/failing_http_transaction_factory.cc",
749 "http/failing_http_transaction_factory.h",
750 "http/http_auth.cc",
751 "http/http_auth.h",
752 "http/http_auth_cache.cc",
753 "http/http_auth_cache.h",
754 "http/http_auth_controller.cc",
755 "http/http_auth_controller.h",
756 "http/http_auth_filter.cc",
757 "http/http_auth_filter.h",
ckrasic73f7240b2017-01-24 00:06:45758 "http/http_auth_handler.cc",
759 "http/http_auth_handler.h",
760 "http/http_auth_handler_basic.cc",
761 "http/http_auth_handler_basic.h",
762 "http/http_auth_handler_digest.cc",
763 "http/http_auth_handler_digest.h",
764 "http/http_auth_handler_factory.cc",
765 "http/http_auth_handler_factory.h",
766 "http/http_auth_handler_negotiate.cc",
767 "http/http_auth_handler_negotiate.h",
768 "http/http_auth_handler_ntlm.cc",
769 "http/http_auth_handler_ntlm.h",
770 "http/http_auth_handler_ntlm_portable.cc",
771 "http/http_auth_handler_ntlm_win.cc",
772 "http/http_auth_multi_round_parse.cc",
773 "http/http_auth_multi_round_parse.h",
774 "http/http_auth_preferences.cc",
775 "http/http_auth_preferences.h",
776 "http/http_auth_sspi_win.cc",
777 "http/http_auth_sspi_win.h",
778 "http/http_basic_state.cc",
779 "http/http_basic_state.h",
780 "http/http_basic_stream.cc",
781 "http/http_basic_stream.h",
782 "http/http_cache.cc",
783 "http/http_cache.h",
784 "http/http_cache_lookup_manager.cc",
785 "http/http_cache_lookup_manager.h",
786 "http/http_cache_transaction.cc",
787 "http/http_cache_transaction.h",
shivanishac6582e12017-07-14 22:18:19788 "http/http_cache_writers.cc",
789 "http/http_cache_writers.h",
ckrasic73f7240b2017-01-24 00:06:45790 "http/http_chunked_decoder.cc",
791 "http/http_chunked_decoder.h",
792 "http/http_content_disposition.cc",
793 "http/http_content_disposition.h",
794 "http/http_network_layer.cc",
795 "http/http_network_layer.h",
796 "http/http_network_session.cc",
797 "http/http_network_session.h",
798 "http/http_network_session_peer.cc",
799 "http/http_network_session_peer.h",
800 "http/http_network_transaction.cc",
801 "http/http_network_transaction.h",
802 "http/http_proxy_client_socket.cc",
803 "http/http_proxy_client_socket.h",
804 "http/http_proxy_client_socket_pool.cc",
805 "http/http_proxy_client_socket_pool.h",
806 "http/http_proxy_client_socket_wrapper.cc",
807 "http/http_proxy_client_socket_wrapper.h",
808 "http/http_request_info.cc",
809 "http/http_request_info.h",
810 "http/http_response_body_drainer.cc",
811 "http/http_response_body_drainer.h",
812 "http/http_server_properties.cc",
813 "http/http_server_properties.h",
814 "http/http_server_properties_impl.cc",
815 "http/http_server_properties_impl.h",
816 "http/http_server_properties_manager.cc",
817 "http/http_server_properties_manager.h",
818 "http/http_status_code.cc",
819 "http/http_status_code.h",
820 "http/http_stream.h",
821 "http/http_stream_factory.cc",
822 "http/http_stream_factory.h",
Xida Chen9bfe0b62018-04-24 19:52:21823 "http/http_stream_factory_job.cc",
824 "http/http_stream_factory_job.h",
825 "http/http_stream_factory_job_controller.cc",
826 "http/http_stream_factory_job_controller.h",
ckrasic73f7240b2017-01-24 00:06:45827 "http/http_stream_parser.cc",
828 "http/http_stream_parser.h",
Bence Béky6b44abf2018-04-11 10:32:51829 "http/http_stream_request.cc",
830 "http/http_stream_request.h",
ckrasic73f7240b2017-01-24 00:06:45831 "http/http_transaction.h",
832 "http/http_transaction_factory.h",
833 "http/http_version.h",
ckrasic73f7240b2017-01-24 00:06:45834 "http/partial_data.cc",
835 "http/partial_data.h",
836 "http/proxy_client_socket.cc",
837 "http/proxy_client_socket.h",
838 "http/proxy_connect_redirect_http_stream.cc",
839 "http/proxy_connect_redirect_http_stream.h",
Eric Roman6f8003352018-03-01 22:49:14840 "http/proxy_fallback.cc",
841 "http/proxy_fallback.h",
ckrasic73f7240b2017-01-24 00:06:45842 "http/transport_security_persister.cc",
843 "http/transport_security_persister.h",
ckrasic73f7240b2017-01-24 00:06:45844 "http/url_security_manager.cc",
845 "http/url_security_manager.h",
ckrasic73f7240b2017-01-24 00:06:45846 "http/url_security_manager_win.cc",
Victor Vasiliev92c06acc2018-12-08 10:16:27847 "http2/platform/impl/http2_arraysize_impl.h",
848 "http2/platform/impl/http2_bug_tracker_impl.h",
849 "http2/platform/impl/http2_containers_impl.h",
850 "http2/platform/impl/http2_estimate_memory_usage_impl.h",
851 "http2/platform/impl/http2_export_impl.h",
852 "http2/platform/impl/http2_flag_utils_impl.h",
853 "http2/platform/impl/http2_flags_impl.cc",
854 "http2/platform/impl/http2_flags_impl.h",
855 "http2/platform/impl/http2_macros_impl.h",
856 "http2/platform/impl/http2_optional_impl.h",
857 "http2/platform/impl/http2_ptr_util_impl.h",
858 "http2/platform/impl/http2_reconstruct_object_impl.h",
859 "http2/platform/impl/http2_string_impl.h",
860 "http2/platform/impl/http2_string_piece_impl.h",
861 "http2/platform/impl/http2_string_utils_impl.h",
ckrasic73f7240b2017-01-24 00:06:45862 "log/file_net_log_observer.cc",
863 "log/file_net_log_observer.h",
864 "log/net_log_util.cc",
865 "log/net_log_util.h",
866 "log/trace_net_log_observer.cc",
867 "log/trace_net_log_observer.h",
ckrasic73f7240b2017-01-24 00:06:45868 "nqe/cached_network_quality.cc",
869 "nqe/cached_network_quality.h",
870 "nqe/effective_connection_type.cc",
871 "nqe/effective_connection_type.h",
tbansal1bd4a952017-06-06 23:01:46872 "nqe/effective_connection_type_observer.h",
ckrasic73f7240b2017-01-24 00:06:45873 "nqe/event_creator.cc",
874 "nqe/event_creator.h",
Tarun Bansal9414bae2017-11-21 01:37:23875 "nqe/network_id.cc",
ckrasic73f7240b2017-01-24 00:06:45876 "nqe/network_id.h",
877 "nqe/network_qualities_prefs_manager.cc",
878 "nqe/network_qualities_prefs_manager.h",
879 "nqe/network_quality.cc",
880 "nqe/network_quality.h",
881 "nqe/network_quality_estimator.cc",
882 "nqe/network_quality_estimator.h",
883 "nqe/network_quality_estimator_params.cc",
884 "nqe/network_quality_estimator_params.h",
tbansal82edab42017-06-19 05:55:25885 "nqe/network_quality_estimator_util.cc",
886 "nqe/network_quality_estimator_util.h",
Devdeep Ray35f50662017-08-11 02:41:30887 "nqe/network_quality_observation.cc",
ckrasic73f7240b2017-01-24 00:06:45888 "nqe/network_quality_observation.h",
Tarun Bansald2677a12017-08-31 01:26:38889 "nqe/network_quality_observation_source.cc",
ckrasic73f7240b2017-01-24 00:06:45890 "nqe/network_quality_observation_source.h",
891 "nqe/network_quality_store.cc",
892 "nqe/network_quality_store.h",
Devdeep Ray35f50662017-08-11 02:41:30893 "nqe/observation_buffer.cc",
ckrasic73f7240b2017-01-24 00:06:45894 "nqe/observation_buffer.h",
tbansal1bd4a952017-06-06 23:01:46895 "nqe/rtt_throughput_estimates_observer.h",
ckrasic73f7240b2017-01-24 00:06:45896 "nqe/socket_watcher.cc",
897 "nqe/socket_watcher.h",
898 "nqe/socket_watcher_factory.cc",
899 "nqe/socket_watcher_factory.h",
900 "nqe/throughput_analyzer.cc",
901 "nqe/throughput_analyzer.h",
902 "nqe/weighted_observation.h",
zentarob89acda42017-07-14 01:28:57903 "ntlm/ntlm.cc",
904 "ntlm/ntlm.h",
zentarob74795682017-07-14 00:58:22905 "ntlm/ntlm_buffer_reader.cc",
906 "ntlm/ntlm_buffer_reader.h",
907 "ntlm/ntlm_buffer_writer.cc",
908 "ntlm/ntlm_buffer_writer.h",
Zentaro Kavanaghdd556612017-08-03 20:27:04909 "ntlm/ntlm_client.cc",
910 "ntlm/ntlm_client.h",
Ryan Sleevi34ac4b2f2018-05-15 01:46:46911 "ntlm/ntlm_constants.cc",
zentarob74795682017-07-14 00:58:22912 "ntlm/ntlm_constants.h",
Lily Houghton582d4622018-01-22 22:43:40913 "proxy_resolution/dhcp_pac_file_adapter_fetcher_win.cc",
914 "proxy_resolution/dhcp_pac_file_adapter_fetcher_win.h",
915 "proxy_resolution/dhcp_pac_file_fetcher.cc",
916 "proxy_resolution/dhcp_pac_file_fetcher.h",
917 "proxy_resolution/dhcp_pac_file_fetcher_factory.cc",
918 "proxy_resolution/dhcp_pac_file_fetcher_factory.h",
919 "proxy_resolution/dhcp_pac_file_fetcher_win.cc",
920 "proxy_resolution/dhcp_pac_file_fetcher_win.h",
921 "proxy_resolution/dhcpcsvc_init_win.cc",
922 "proxy_resolution/dhcpcsvc_init_win.h",
923 "proxy_resolution/multi_threaded_proxy_resolver.cc",
924 "proxy_resolution/multi_threaded_proxy_resolver.h",
925 "proxy_resolution/network_delegate_error_observer.cc",
926 "proxy_resolution/network_delegate_error_observer.h",
927 "proxy_resolution/pac_file_data.cc",
928 "proxy_resolution/pac_file_data.h",
929 "proxy_resolution/pac_file_decider.cc",
930 "proxy_resolution/pac_file_decider.h",
931 "proxy_resolution/pac_file_fetcher.h",
932 "proxy_resolution/pac_file_fetcher_impl.cc",
933 "proxy_resolution/pac_file_fetcher_impl.h",
934 "proxy_resolution/pac_js_library.h",
Eric Roman7193c9f2018-11-22 01:39:58935 "proxy_resolution/pac_library.cc",
936 "proxy_resolution/pac_library.h",
Lily Houghton582d4622018-01-22 22:43:40937 "proxy_resolution/polling_proxy_config_service.cc",
938 "proxy_resolution/polling_proxy_config_service.h",
939 "proxy_resolution/proxy_bypass_rules.cc",
940 "proxy_resolution/proxy_bypass_rules.h",
941 "proxy_resolution/proxy_config.cc",
942 "proxy_resolution/proxy_config.h",
943 "proxy_resolution/proxy_config_service.h",
944 "proxy_resolution/proxy_config_service_android.cc",
945 "proxy_resolution/proxy_config_service_android.h",
946 "proxy_resolution/proxy_config_service_fixed.cc",
947 "proxy_resolution/proxy_config_service_fixed.h",
948 "proxy_resolution/proxy_config_service_ios.cc",
949 "proxy_resolution/proxy_config_service_ios.h",
950 "proxy_resolution/proxy_config_service_linux.cc",
951 "proxy_resolution/proxy_config_service_linux.h",
952 "proxy_resolution/proxy_config_service_mac.cc",
953 "proxy_resolution/proxy_config_service_mac.h",
954 "proxy_resolution/proxy_config_service_win.cc",
955 "proxy_resolution/proxy_config_service_win.h",
Ramin Halavatica8d5252018-03-12 05:33:49956 "proxy_resolution/proxy_config_with_annotation.cc",
957 "proxy_resolution/proxy_config_with_annotation.h",
Lily Houghton582d4622018-01-22 22:43:40958 "proxy_resolution/proxy_info.cc",
959 "proxy_resolution/proxy_info.h",
960 "proxy_resolution/proxy_list.cc",
961 "proxy_resolution/proxy_list.h",
Lily Houghtonffe89daa02018-03-09 18:30:03962 "proxy_resolution/proxy_resolution_service.cc",
963 "proxy_resolution/proxy_resolution_service.h",
Lily Houghton582d4622018-01-22 22:43:40964 "proxy_resolution/proxy_resolver.h",
965 "proxy_resolution/proxy_resolver_error_observer.h",
966 "proxy_resolution/proxy_resolver_factory.cc",
967 "proxy_resolution/proxy_resolver_factory.h",
968 "proxy_resolution/proxy_resolver_mac.cc",
969 "proxy_resolution/proxy_resolver_mac.h",
970 "proxy_resolution/proxy_resolver_winhttp.cc",
971 "proxy_resolution/proxy_resolver_winhttp.h",
972 "proxy_resolution/proxy_retry_info.h",
Ryan Hamiltona3ee93a72018-08-01 22:03:08973 "quic/bidirectional_stream_quic_impl.cc",
974 "quic/bidirectional_stream_quic_impl.h",
Ryan Hamiltona3ee93a72018-08-01 22:03:08975 "quic/crypto/proof_source_chromium.cc",
976 "quic/crypto/proof_source_chromium.h",
977 "quic/crypto/proof_verifier_chromium.cc",
978 "quic/crypto/proof_verifier_chromium.h",
979 "quic/network_connection.cc",
980 "quic/network_connection.h",
981 "quic/properties_based_quic_server_info.cc",
982 "quic/properties_based_quic_server_info.h",
983 "quic/quic_address_mismatch.cc",
984 "quic/quic_address_mismatch.h",
985 "quic/quic_chromium_alarm_factory.cc",
986 "quic/quic_chromium_alarm_factory.h",
987 "quic/quic_chromium_client_session.cc",
988 "quic/quic_chromium_client_session.h",
989 "quic/quic_chromium_client_stream.cc",
990 "quic/quic_chromium_client_stream.h",
991 "quic/quic_chromium_connection_helper.cc",
992 "quic/quic_chromium_connection_helper.h",
993 "quic/quic_chromium_packet_reader.cc",
994 "quic/quic_chromium_packet_reader.h",
995 "quic/quic_chromium_packet_writer.cc",
996 "quic/quic_chromium_packet_writer.h",
997 "quic/quic_clock_skew_detector.cc",
998 "quic/quic_clock_skew_detector.h",
999 "quic/quic_connection_logger.cc",
1000 "quic/quic_connection_logger.h",
1001 "quic/quic_connectivity_probing_manager.cc",
1002 "quic/quic_connectivity_probing_manager.h",
1003 "quic/quic_crypto_client_stream_factory.cc",
1004 "quic/quic_crypto_client_stream_factory.h",
Ryan Hamilton7582d2652018-08-01 22:35:321005 "quic/quic_flags_list.h",
Ryan Hamiltona3ee93a72018-08-01 22:03:081006 "quic/quic_http_stream.cc",
1007 "quic/quic_http_stream.h",
1008 "quic/quic_http_utils.cc",
1009 "quic/quic_http_utils.h",
1010 "quic/quic_proxy_client_socket.cc",
1011 "quic/quic_proxy_client_socket.h",
1012 "quic/quic_server_info.cc",
1013 "quic/quic_server_info.h",
1014 "quic/quic_session_key.cc",
1015 "quic/quic_session_key.h",
1016 "quic/quic_stream_factory.cc",
1017 "quic/quic_stream_factory.h",
1018 "quic/quic_utils_chromium.cc",
1019 "quic/quic_utils_chromium.h",
ckrasic73f7240b2017-01-24 00:06:451020 "socket/client_socket_factory.cc",
1021 "socket/client_socket_factory.h",
1022 "socket/client_socket_pool.cc",
1023 "socket/client_socket_pool.h",
1024 "socket/client_socket_pool_base.cc",
1025 "socket/client_socket_pool_base.h",
1026 "socket/client_socket_pool_manager.cc",
1027 "socket/client_socket_pool_manager.h",
1028 "socket/client_socket_pool_manager_impl.cc",
1029 "socket/client_socket_pool_manager_impl.h",
1030 "socket/datagram_client_socket.h",
1031 "socket/datagram_server_socket.h",
1032 "socket/datagram_socket.h",
1033 "socket/diff_serv_code_point.h",
1034 "socket/server_socket.cc",
1035 "socket/server_socket.h",
1036 "socket/socket_descriptor.cc",
1037 "socket/socket_descriptor.h",
1038 "socket/socket_net_log_params.cc",
1039 "socket/socket_net_log_params.h",
tfarina8a407062017-04-06 13:14:171040 "socket/socket_options.cc",
1041 "socket/socket_options.h",
Paul Jensenec3c11122017-11-28 16:48:381042 "socket/socket_tag.cc",
1043 "socket/socket_tag.h",
ckrasic73f7240b2017-01-24 00:06:451044 "socket/socks5_client_socket.cc",
1045 "socket/socks5_client_socket.h",
1046 "socket/socks_client_socket.cc",
1047 "socket/socks_client_socket.h",
1048 "socket/socks_client_socket_pool.cc",
1049 "socket/socks_client_socket_pool.h",
1050 "socket/ssl_client_socket_pool.cc",
1051 "socket/ssl_client_socket_pool.h",
1052 "socket/ssl_server_socket.h",
1053 "socket/ssl_server_socket_impl.cc",
1054 "socket/ssl_server_socket_impl.h",
ckrasic73f7240b2017-01-24 00:06:451055 "socket/tcp_client_socket.cc",
1056 "socket/tcp_client_socket.h",
1057 "socket/tcp_server_socket.cc",
1058 "socket/tcp_server_socket.h",
ckrasic73f7240b2017-01-24 00:06:451059 "socket/tcp_socket.h",
ckrasic73f7240b2017-01-24 00:06:451060 "socket/tcp_socket_win.cc",
1061 "socket/tcp_socket_win.h",
Helen Li48f117e2018-05-29 20:38:401062 "socket/transport_client_socket.cc",
Helen Lid5bb9222018-04-12 15:33:091063 "socket/transport_client_socket.h",
ckrasic73f7240b2017-01-24 00:06:451064 "socket/transport_client_socket_pool.cc",
1065 "socket/transport_client_socket_pool.h",
1066 "socket/udp_client_socket.cc",
1067 "socket/udp_client_socket.h",
1068 "socket/udp_net_log_parameters.cc",
1069 "socket/udp_net_log_parameters.h",
1070 "socket/udp_server_socket.cc",
1071 "socket/udp_server_socket.h",
1072 "socket/udp_socket.h",
ckrasic73f7240b2017-01-24 00:06:451073 "socket/udp_socket_win.cc",
1074 "socket/udp_socket_win.h",
ckrasic73f7240b2017-01-24 00:06:451075 "socket/websocket_endpoint_lock_manager.cc",
1076 "socket/websocket_endpoint_lock_manager.h",
1077 "socket/websocket_transport_client_socket_pool.cc",
1078 "socket/websocket_transport_client_socket_pool.h",
1079 "socket/websocket_transport_connect_sub_job.cc",
1080 "socket/websocket_transport_connect_sub_job.h",
Bence Béky94658bf2018-05-11 19:22:581081 "spdy/bidirectional_stream_spdy_impl.cc",
1082 "spdy/bidirectional_stream_spdy_impl.h",
1083 "spdy/buffered_spdy_framer.cc",
1084 "spdy/buffered_spdy_framer.h",
1085 "spdy/header_coalescer.cc",
1086 "spdy/header_coalescer.h",
1087 "spdy/http2_priority_dependencies.cc",
1088 "spdy/http2_priority_dependencies.h",
1089 "spdy/http2_push_promise_index.cc",
1090 "spdy/http2_push_promise_index.h",
1091 "spdy/multiplexed_http_stream.cc",
1092 "spdy/multiplexed_http_stream.h",
1093 "spdy/multiplexed_session.cc",
1094 "spdy/multiplexed_session.h",
1095 "spdy/server_push_delegate.h",
1096 "spdy/spdy_buffer.cc",
1097 "spdy/spdy_buffer.h",
1098 "spdy/spdy_buffer_producer.cc",
1099 "spdy/spdy_buffer_producer.h",
1100 "spdy/spdy_http_stream.cc",
1101 "spdy/spdy_http_stream.h",
1102 "spdy/spdy_http_utils.cc",
1103 "spdy/spdy_http_utils.h",
1104 "spdy/spdy_log_util.cc",
1105 "spdy/spdy_log_util.h",
1106 "spdy/spdy_proxy_client_socket.cc",
1107 "spdy/spdy_proxy_client_socket.h",
1108 "spdy/spdy_read_queue.cc",
1109 "spdy/spdy_read_queue.h",
1110 "spdy/spdy_session.cc",
1111 "spdy/spdy_session.h",
1112 "spdy/spdy_session_key.cc",
1113 "spdy/spdy_session_key.h",
1114 "spdy/spdy_session_pool.cc",
1115 "spdy/spdy_session_pool.h",
1116 "spdy/spdy_stream.cc",
1117 "spdy/spdy_stream.h",
1118 "spdy/spdy_write_queue.cc",
1119 "spdy/spdy_write_queue.h",
ckrasic73f7240b2017-01-24 00:06:451120 "ssl/client_cert_store.h",
1121 "ssl/client_cert_store_mac.cc",
1122 "ssl/client_cert_store_mac.h",
1123 "ssl/client_cert_store_nss.cc",
1124 "ssl/client_cert_store_nss.h",
1125 "ssl/client_cert_store_win.cc",
1126 "ssl/client_cert_store_win.h",
1127 "ssl/ssl_config_service_defaults.cc",
1128 "ssl/ssl_config_service_defaults.h",
David Benjaminbd37c172018-07-11 17:24:571129 "ssl/ssl_key_logger_impl.cc",
1130 "ssl/ssl_key_logger_impl.h",
ckrasic73f7240b2017-01-24 00:06:451131 "ssl/ssl_platform_key_android.cc",
thakisb8590c92017-03-23 18:14:531132 "ssl/ssl_platform_key_android.h",
ckrasic73f7240b2017-01-24 00:06:451133 "ssl/ssl_platform_key_mac.cc",
thakisb8590c92017-03-23 18:14:531134 "ssl/ssl_platform_key_mac.h",
ckrasic73f7240b2017-01-24 00:06:451135 "ssl/ssl_platform_key_nss.cc",
mattm436ccfe2017-06-19 20:24:081136 "ssl/ssl_platform_key_nss.h",
ckrasic73f7240b2017-01-24 00:06:451137 "ssl/ssl_platform_key_util.cc",
1138 "ssl/ssl_platform_key_util.h",
1139 "ssl/ssl_platform_key_win.cc",
1140 "ssl/test_ssl_private_key.cc",
1141 "ssl/test_ssl_private_key.h",
1142 "ssl/threaded_ssl_private_key.cc",
1143 "ssl/threaded_ssl_private_key.h",
1144 "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
1145 "third_party/mozilla_security_manager/nsNSSCertificateDB.h",
1146 "third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
1147 "third_party/mozilla_security_manager/nsPKCS12Blob.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161148 "third_party/quic/core/congestion_control/bandwidth_sampler.cc",
1149 "third_party/quic/core/congestion_control/bandwidth_sampler.h",
1150 "third_party/quic/core/congestion_control/bbr_sender.cc",
1151 "third_party/quic/core/congestion_control/bbr_sender.h",
1152 "third_party/quic/core/congestion_control/cubic_bytes.cc",
1153 "third_party/quic/core/congestion_control/cubic_bytes.h",
1154 "third_party/quic/core/congestion_control/general_loss_algorithm.cc",
1155 "third_party/quic/core/congestion_control/general_loss_algorithm.h",
1156 "third_party/quic/core/congestion_control/hybrid_slow_start.cc",
1157 "third_party/quic/core/congestion_control/hybrid_slow_start.h",
1158 "third_party/quic/core/congestion_control/loss_detection_interface.h",
1159 "third_party/quic/core/congestion_control/pacing_sender.cc",
1160 "third_party/quic/core/congestion_control/pacing_sender.h",
1161 "third_party/quic/core/congestion_control/prr_sender.cc",
1162 "third_party/quic/core/congestion_control/prr_sender.h",
1163 "third_party/quic/core/congestion_control/rtt_stats.cc",
1164 "third_party/quic/core/congestion_control/rtt_stats.h",
1165 "third_party/quic/core/congestion_control/send_algorithm_interface.cc",
1166 "third_party/quic/core/congestion_control/send_algorithm_interface.h",
1167 "third_party/quic/core/congestion_control/tcp_cubic_sender_bytes.cc",
1168 "third_party/quic/core/congestion_control/tcp_cubic_sender_bytes.h",
1169 "third_party/quic/core/congestion_control/windowed_filter.h",
1170 "third_party/quic/core/crypto/aead_base_decrypter.cc",
1171 "third_party/quic/core/crypto/aead_base_decrypter.h",
1172 "third_party/quic/core/crypto/aead_base_encrypter.cc",
1173 "third_party/quic/core/crypto/aead_base_encrypter.h",
1174 "third_party/quic/core/crypto/aes_128_gcm_12_decrypter.cc",
1175 "third_party/quic/core/crypto/aes_128_gcm_12_decrypter.h",
1176 "third_party/quic/core/crypto/aes_128_gcm_12_encrypter.cc",
1177 "third_party/quic/core/crypto/aes_128_gcm_12_encrypter.h",
1178 "third_party/quic/core/crypto/aes_128_gcm_decrypter.cc",
1179 "third_party/quic/core/crypto/aes_128_gcm_decrypter.h",
1180 "third_party/quic/core/crypto/aes_128_gcm_encrypter.cc",
1181 "third_party/quic/core/crypto/aes_128_gcm_encrypter.h",
1182 "third_party/quic/core/crypto/aes_256_gcm_decrypter.cc",
1183 "third_party/quic/core/crypto/aes_256_gcm_decrypter.h",
1184 "third_party/quic/core/crypto/aes_256_gcm_encrypter.cc",
1185 "third_party/quic/core/crypto/aes_256_gcm_encrypter.h",
1186 "third_party/quic/core/crypto/cert_compressor.cc",
1187 "third_party/quic/core/crypto/cert_compressor.h",
1188 "third_party/quic/core/crypto/chacha20_poly1305_decrypter.cc",
1189 "third_party/quic/core/crypto/chacha20_poly1305_decrypter.h",
1190 "third_party/quic/core/crypto/chacha20_poly1305_encrypter.cc",
1191 "third_party/quic/core/crypto/chacha20_poly1305_encrypter.h",
1192 "third_party/quic/core/crypto/chacha20_poly1305_tls_decrypter.cc",
1193 "third_party/quic/core/crypto/chacha20_poly1305_tls_decrypter.h",
1194 "third_party/quic/core/crypto/chacha20_poly1305_tls_encrypter.cc",
1195 "third_party/quic/core/crypto/chacha20_poly1305_tls_encrypter.h",
1196 "third_party/quic/core/crypto/channel_id.cc",
1197 "third_party/quic/core/crypto/channel_id.h",
1198 "third_party/quic/core/crypto/common_cert_set.cc",
1199 "third_party/quic/core/crypto/common_cert_set.h",
1200 "third_party/quic/core/crypto/crypto_framer.cc",
1201 "third_party/quic/core/crypto/crypto_framer.h",
1202 "third_party/quic/core/crypto/crypto_handshake.cc",
1203 "third_party/quic/core/crypto/crypto_handshake.h",
1204 "third_party/quic/core/crypto/crypto_handshake_message.cc",
1205 "third_party/quic/core/crypto/crypto_handshake_message.h",
1206 "third_party/quic/core/crypto/crypto_message_parser.h",
1207 "third_party/quic/core/crypto/crypto_protocol.h",
1208 "third_party/quic/core/crypto/crypto_secret_boxer.cc",
1209 "third_party/quic/core/crypto/crypto_secret_boxer.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161210 "third_party/quic/core/crypto/crypto_utils.cc",
1211 "third_party/quic/core/crypto/crypto_utils.h",
1212 "third_party/quic/core/crypto/curve25519_key_exchange.cc",
1213 "third_party/quic/core/crypto/curve25519_key_exchange.h",
1214 "third_party/quic/core/crypto/ephemeral_key_source.h",
1215 "third_party/quic/core/crypto/key_exchange.h",
1216 "third_party/quic/core/crypto/null_decrypter.cc",
1217 "third_party/quic/core/crypto/null_decrypter.h",
1218 "third_party/quic/core/crypto/null_encrypter.cc",
1219 "third_party/quic/core/crypto/null_encrypter.h",
1220 "third_party/quic/core/crypto/p256_key_exchange.cc",
1221 "third_party/quic/core/crypto/p256_key_exchange.h",
1222 "third_party/quic/core/crypto/proof_source.cc",
1223 "third_party/quic/core/crypto/proof_source.h",
1224 "third_party/quic/core/crypto/proof_verifier.h",
1225 "third_party/quic/core/crypto/quic_compressed_certs_cache.cc",
1226 "third_party/quic/core/crypto/quic_compressed_certs_cache.h",
Frank Kastenholz929883afb2018-09-07 20:56:371227 "third_party/quic/core/crypto/quic_crypter.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161228 "third_party/quic/core/crypto/quic_crypto_client_config.cc",
1229 "third_party/quic/core/crypto/quic_crypto_client_config.h",
1230 "third_party/quic/core/crypto/quic_crypto_proof.cc",
1231 "third_party/quic/core/crypto/quic_crypto_proof.h",
1232 "third_party/quic/core/crypto/quic_crypto_server_config.cc",
1233 "third_party/quic/core/crypto/quic_crypto_server_config.h",
1234 "third_party/quic/core/crypto/quic_decrypter.cc",
1235 "third_party/quic/core/crypto/quic_decrypter.h",
1236 "third_party/quic/core/crypto/quic_encrypter.cc",
1237 "third_party/quic/core/crypto/quic_encrypter.h",
Victor Vasiliev955f6e32018-07-10 18:03:291238 "third_party/quic/core/crypto/quic_hkdf.cc",
1239 "third_party/quic/core/crypto/quic_hkdf.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161240 "third_party/quic/core/crypto/quic_random.cc",
1241 "third_party/quic/core/crypto/quic_random.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161242 "third_party/quic/core/crypto/transport_parameters.cc",
1243 "third_party/quic/core/crypto/transport_parameters.h",
1244 "third_party/quic/core/frames/quic_ack_frame.cc",
1245 "third_party/quic/core/frames/quic_ack_frame.h",
1246 "third_party/quic/core/frames/quic_application_close_frame.cc",
1247 "third_party/quic/core/frames/quic_application_close_frame.h",
1248 "third_party/quic/core/frames/quic_blocked_frame.cc",
1249 "third_party/quic/core/frames/quic_blocked_frame.h",
1250 "third_party/quic/core/frames/quic_connection_close_frame.cc",
1251 "third_party/quic/core/frames/quic_connection_close_frame.h",
Bin Wu5b0d90f72018-09-20 18:08:131252 "third_party/quic/core/frames/quic_crypto_frame.cc",
1253 "third_party/quic/core/frames/quic_crypto_frame.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161254 "third_party/quic/core/frames/quic_frame.cc",
1255 "third_party/quic/core/frames/quic_frame.h",
1256 "third_party/quic/core/frames/quic_goaway_frame.cc",
1257 "third_party/quic/core/frames/quic_goaway_frame.h",
Victor Vasiliev828a57a62018-10-03 01:46:231258 "third_party/quic/core/frames/quic_inlined_frame.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161259 "third_party/quic/core/frames/quic_max_stream_id_frame.cc",
1260 "third_party/quic/core/frames/quic_max_stream_id_frame.h",
Fan Yange9fa6b952018-09-12 13:52:011261 "third_party/quic/core/frames/quic_message_frame.cc",
1262 "third_party/quic/core/frames/quic_message_frame.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161263 "third_party/quic/core/frames/quic_mtu_discovery_frame.h",
1264 "third_party/quic/core/frames/quic_new_connection_id_frame.cc",
1265 "third_party/quic/core/frames/quic_new_connection_id_frame.h",
Victor Vasiliev828a57a62018-10-03 01:46:231266 "third_party/quic/core/frames/quic_new_token_frame.cc",
1267 "third_party/quic/core/frames/quic_new_token_frame.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161268 "third_party/quic/core/frames/quic_padding_frame.cc",
1269 "third_party/quic/core/frames/quic_padding_frame.h",
1270 "third_party/quic/core/frames/quic_path_challenge_frame.cc",
1271 "third_party/quic/core/frames/quic_path_challenge_frame.h",
1272 "third_party/quic/core/frames/quic_path_response_frame.cc",
1273 "third_party/quic/core/frames/quic_path_response_frame.h",
1274 "third_party/quic/core/frames/quic_ping_frame.cc",
1275 "third_party/quic/core/frames/quic_ping_frame.h",
Renjiea12146cc2018-10-23 19:05:141276 "third_party/quic/core/frames/quic_retire_connection_id_frame.cc",
1277 "third_party/quic/core/frames/quic_retire_connection_id_frame.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161278 "third_party/quic/core/frames/quic_rst_stream_frame.cc",
1279 "third_party/quic/core/frames/quic_rst_stream_frame.h",
1280 "third_party/quic/core/frames/quic_stop_sending_frame.cc",
1281 "third_party/quic/core/frames/quic_stop_sending_frame.h",
1282 "third_party/quic/core/frames/quic_stop_waiting_frame.cc",
1283 "third_party/quic/core/frames/quic_stop_waiting_frame.h",
1284 "third_party/quic/core/frames/quic_stream_frame.cc",
1285 "third_party/quic/core/frames/quic_stream_frame.h",
1286 "third_party/quic/core/frames/quic_stream_id_blocked_frame.cc",
1287 "third_party/quic/core/frames/quic_stream_id_blocked_frame.h",
1288 "third_party/quic/core/frames/quic_window_update_frame.cc",
1289 "third_party/quic/core/frames/quic_window_update_frame.h",
Ryan Hamilton47cf9d12018-10-17 04:33:091290 "third_party/quic/core/http/http_decoder.cc",
1291 "third_party/quic/core/http/http_decoder.h",
Ryan Hamilton14d6a892018-10-18 19:03:421292 "third_party/quic/core/http/http_encoder.cc",
1293 "third_party/quic/core/http/http_encoder.h",
Ryan Hamilton47cf9d12018-10-17 04:33:091294 "third_party/quic/core/http/http_frames.h",
Victor Vasilievc5b409c22018-07-24 12:23:461295 "third_party/quic/core/http/quic_client_promised_info.cc",
1296 "third_party/quic/core/http/quic_client_promised_info.h",
1297 "third_party/quic/core/http/quic_client_push_promise_index.cc",
1298 "third_party/quic/core/http/quic_client_push_promise_index.h",
1299 "third_party/quic/core/http/quic_header_list.cc",
1300 "third_party/quic/core/http/quic_header_list.h",
1301 "third_party/quic/core/http/quic_headers_stream.cc",
1302 "third_party/quic/core/http/quic_headers_stream.h",
1303 "third_party/quic/core/http/quic_server_session_base.cc",
1304 "third_party/quic/core/http/quic_server_session_base.h",
1305 "third_party/quic/core/http/quic_spdy_client_session_base.cc",
1306 "third_party/quic/core/http/quic_spdy_client_session_base.h",
1307 "third_party/quic/core/http/quic_spdy_session.cc",
1308 "third_party/quic/core/http/quic_spdy_session.h",
1309 "third_party/quic/core/http/quic_spdy_stream.cc",
1310 "third_party/quic/core/http/quic_spdy_stream.h",
1311 "third_party/quic/core/http/spdy_utils.cc",
1312 "third_party/quic/core/http/spdy_utils.h",
Frank Kastenholzc9b9bea2018-12-03 20:13:471313 "third_party/quic/core/legacy_quic_stream_id_manager.cc",
1314 "third_party/quic/core/legacy_quic_stream_id_manager.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161315 "third_party/quic/core/packet_number_indexed_queue.h",
Frank Kastenholz1dac18b62018-11-29 18:50:361316 "third_party/quic/core/qpack/qpack_constants.cc",
Dan Zhangcd7dc432018-09-19 16:31:421317 "third_party/quic/core/qpack/qpack_constants.h",
1318 "third_party/quic/core/qpack/qpack_decoder.cc",
1319 "third_party/quic/core/qpack/qpack_decoder.h",
Michael Warres3bbd3f62019-01-04 00:13:241320 "third_party/quic/core/qpack/qpack_decoder_stream_receiver.cc",
1321 "third_party/quic/core/qpack/qpack_decoder_stream_receiver.h",
Michael Warresdbb8f5c12019-01-03 21:50:531322 "third_party/quic/core/qpack/qpack_decoder_stream_sender.cc",
1323 "third_party/quic/core/qpack/qpack_decoder_stream_sender.h",
Dan Zhangcd7dc432018-09-19 16:31:421324 "third_party/quic/core/qpack/qpack_encoder.cc",
1325 "third_party/quic/core/qpack/qpack_encoder.h",
Victor Vasiliev828a57a62018-10-03 01:46:231326 "third_party/quic/core/qpack/qpack_encoder_stream_receiver.cc",
1327 "third_party/quic/core/qpack/qpack_encoder_stream_receiver.h",
1328 "third_party/quic/core/qpack/qpack_encoder_stream_sender.cc",
1329 "third_party/quic/core/qpack/qpack_encoder_stream_sender.h",
Dan Zhangcd7dc432018-09-19 16:31:421330 "third_party/quic/core/qpack/qpack_header_table.cc",
1331 "third_party/quic/core/qpack/qpack_header_table.h",
Frank Kastenholz1dac18b62018-11-29 18:50:361332 "third_party/quic/core/qpack/qpack_instruction_decoder.cc",
1333 "third_party/quic/core/qpack/qpack_instruction_decoder.h",
Frank Kastenholzc9b9bea2018-12-03 20:13:471334 "third_party/quic/core/qpack/qpack_instruction_encoder.cc",
1335 "third_party/quic/core/qpack/qpack_instruction_encoder.h",
Zhongyi Shi2be051202019-01-07 22:57:191336 "third_party/quic/core/qpack/qpack_progressive_decoder.cc",
1337 "third_party/quic/core/qpack/qpack_progressive_decoder.h",
1338 "third_party/quic/core/qpack/qpack_progressive_encoder.cc",
1339 "third_party/quic/core/qpack/qpack_progressive_encoder.h",
Ryan Hamilton14d6a892018-10-18 19:03:421340 "third_party/quic/core/qpack/qpack_static_table.cc",
1341 "third_party/quic/core/qpack/qpack_static_table.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161342 "third_party/quic/core/quic_ack_listener_interface.cc",
1343 "third_party/quic/core/quic_ack_listener_interface.h",
1344 "third_party/quic/core/quic_alarm.cc",
1345 "third_party/quic/core/quic_alarm.h",
1346 "third_party/quic/core/quic_alarm_factory.h",
1347 "third_party/quic/core/quic_arena_scoped_ptr.h",
1348 "third_party/quic/core/quic_bandwidth.cc",
1349 "third_party/quic/core/quic_bandwidth.h",
1350 "third_party/quic/core/quic_blocked_writer_interface.h",
1351 "third_party/quic/core/quic_buffer_allocator.cc",
1352 "third_party/quic/core/quic_buffer_allocator.h",
1353 "third_party/quic/core/quic_buffered_packet_store.cc",
1354 "third_party/quic/core/quic_buffered_packet_store.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161355 "third_party/quic/core/quic_config.cc",
1356 "third_party/quic/core/quic_config.h",
1357 "third_party/quic/core/quic_connection.cc",
1358 "third_party/quic/core/quic_connection.h",
1359 "third_party/quic/core/quic_connection_close_delegate_interface.h",
Fan Yang32c5a112018-12-10 20:06:331360 "third_party/quic/core/quic_connection_id.cc",
1361 "third_party/quic/core/quic_connection_id.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161362 "third_party/quic/core/quic_connection_stats.cc",
1363 "third_party/quic/core/quic_connection_stats.h",
1364 "third_party/quic/core/quic_constants.cc",
1365 "third_party/quic/core/quic_constants.h",
1366 "third_party/quic/core/quic_control_frame_manager.cc",
1367 "third_party/quic/core/quic_control_frame_manager.h",
1368 "third_party/quic/core/quic_crypto_client_handshaker.cc",
1369 "third_party/quic/core/quic_crypto_client_handshaker.h",
1370 "third_party/quic/core/quic_crypto_client_stream.cc",
1371 "third_party/quic/core/quic_crypto_client_stream.h",
1372 "third_party/quic/core/quic_crypto_handshaker.cc",
1373 "third_party/quic/core/quic_crypto_handshaker.h",
1374 "third_party/quic/core/quic_crypto_server_handshaker.cc",
1375 "third_party/quic/core/quic_crypto_server_handshaker.h",
1376 "third_party/quic/core/quic_crypto_server_stream.cc",
1377 "third_party/quic/core/quic_crypto_server_stream.h",
1378 "third_party/quic/core/quic_crypto_stream.cc",
1379 "third_party/quic/core/quic_crypto_stream.h",
1380 "third_party/quic/core/quic_data_reader.cc",
1381 "third_party/quic/core/quic_data_reader.h",
1382 "third_party/quic/core/quic_data_writer.cc",
1383 "third_party/quic/core/quic_data_writer.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161384 "third_party/quic/core/quic_flow_controller.cc",
1385 "third_party/quic/core/quic_flow_controller.h",
1386 "third_party/quic/core/quic_framer.cc",
1387 "third_party/quic/core/quic_framer.h",
Frank Kastenholz929883afb2018-09-07 20:56:371388 "third_party/quic/core/quic_lru_cache.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161389 "third_party/quic/core/quic_one_block_arena.h",
1390 "third_party/quic/core/quic_packet_creator.cc",
1391 "third_party/quic/core/quic_packet_creator.h",
1392 "third_party/quic/core/quic_packet_generator.cc",
1393 "third_party/quic/core/quic_packet_generator.h",
1394 "third_party/quic/core/quic_packet_writer.h",
1395 "third_party/quic/core/quic_packets.cc",
1396 "third_party/quic/core/quic_packets.h",
1397 "third_party/quic/core/quic_pending_retransmission.h",
1398 "third_party/quic/core/quic_received_packet_manager.cc",
1399 "third_party/quic/core/quic_received_packet_manager.h",
1400 "third_party/quic/core/quic_sent_packet_manager.cc",
1401 "third_party/quic/core/quic_sent_packet_manager.h",
1402 "third_party/quic/core/quic_server_id.cc",
1403 "third_party/quic/core/quic_server_id.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161404 "third_party/quic/core/quic_session.cc",
1405 "third_party/quic/core/quic_session.h",
1406 "third_party/quic/core/quic_simple_buffer_allocator.cc",
1407 "third_party/quic/core/quic_simple_buffer_allocator.h",
1408 "third_party/quic/core/quic_socket_address_coder.cc",
1409 "third_party/quic/core/quic_socket_address_coder.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161410 "third_party/quic/core/quic_stream.cc",
1411 "third_party/quic/core/quic_stream.h",
1412 "third_party/quic/core/quic_stream_frame_data_producer.h",
Frank Kastenholz878763bf2018-11-28 19:14:481413 "third_party/quic/core/quic_stream_id_manager.cc",
1414 "third_party/quic/core/quic_stream_id_manager.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161415 "third_party/quic/core/quic_stream_send_buffer.cc",
1416 "third_party/quic/core/quic_stream_send_buffer.h",
1417 "third_party/quic/core/quic_stream_sequencer.cc",
1418 "third_party/quic/core/quic_stream_sequencer.h",
1419 "third_party/quic/core/quic_stream_sequencer_buffer.cc",
1420 "third_party/quic/core/quic_stream_sequencer_buffer.h",
1421 "third_party/quic/core/quic_sustained_bandwidth_recorder.cc",
1422 "third_party/quic/core/quic_sustained_bandwidth_recorder.h",
1423 "third_party/quic/core/quic_tag.cc",
1424 "third_party/quic/core/quic_tag.h",
1425 "third_party/quic/core/quic_time.cc",
1426 "third_party/quic/core/quic_time.h",
1427 "third_party/quic/core/quic_transmission_info.cc",
1428 "third_party/quic/core/quic_transmission_info.h",
1429 "third_party/quic/core/quic_types.cc",
1430 "third_party/quic/core/quic_types.h",
1431 "third_party/quic/core/quic_unacked_packet_map.cc",
1432 "third_party/quic/core/quic_unacked_packet_map.h",
1433 "third_party/quic/core/quic_utils.cc",
1434 "third_party/quic/core/quic_utils.h",
1435 "third_party/quic/core/quic_version_manager.cc",
1436 "third_party/quic/core/quic_version_manager.h",
1437 "third_party/quic/core/quic_versions.cc",
1438 "third_party/quic/core/quic_versions.h",
1439 "third_party/quic/core/quic_write_blocked_list.cc",
1440 "third_party/quic/core/quic_write_blocked_list.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161441 "third_party/quic/core/tls_client_handshaker.cc",
1442 "third_party/quic/core/tls_client_handshaker.h",
1443 "third_party/quic/core/tls_handshaker.cc",
1444 "third_party/quic/core/tls_handshaker.h",
1445 "third_party/quic/core/tls_server_handshaker.cc",
1446 "third_party/quic/core/tls_server_handshaker.h",
Fan Yang32c5a112018-12-10 20:06:331447 "third_party/quic/core/uber_quic_stream_id_manager.cc",
1448 "third_party/quic/core/uber_quic_stream_id_manager.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161449 "third_party/quic/platform/api/quic_aligned.h",
1450 "third_party/quic/platform/api/quic_arraysize.h",
1451 "third_party/quic/platform/api/quic_bug_tracker.h",
Dan Zhang9c0b5d12018-11-28 20:40:051452 "third_party/quic/platform/api/quic_client_stats.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161453 "third_party/quic/platform/api/quic_clock.cc",
1454 "third_party/quic/platform/api/quic_clock.h",
1455 "third_party/quic/platform/api/quic_containers.h",
1456 "third_party/quic/platform/api/quic_endian.h",
1457 "third_party/quic/platform/api/quic_estimate_memory_usage.h",
1458 "third_party/quic/platform/api/quic_export.h",
Bin Wu831935e2018-06-08 22:06:351459 "third_party/quic/platform/api/quic_exported_stats.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161460 "third_party/quic/platform/api/quic_fallthrough.h",
Zhongyi Shi2be051202019-01-07 22:57:191461 "third_party/quic/platform/api/quic_file_utils.cc",
Ryan Hamiltond3bf5a12018-05-30 06:23:421462 "third_party/quic/platform/api/quic_file_utils.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161463 "third_party/quic/platform/api/quic_flag_utils.h",
1464 "third_party/quic/platform/api/quic_flags.h",
Ryan Hamilton47cf9d12018-10-17 04:33:091465 "third_party/quic/platform/api/quic_goog_cc_sender.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161466 "third_party/quic/platform/api/quic_hostname_utils.cc",
1467 "third_party/quic/platform/api/quic_hostname_utils.h",
Ryan Hamilton0ce63302018-06-26 23:26:211468 "third_party/quic/platform/api/quic_interval.h",
Victor Vasilieved98673c2018-10-10 19:14:531469 "third_party/quic/platform/api/quic_iovec.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161470 "third_party/quic/platform/api/quic_ip_address.cc",
1471 "third_party/quic/platform/api/quic_ip_address.h",
1472 "third_party/quic/platform/api/quic_ip_address_family.h",
1473 "third_party/quic/platform/api/quic_logging.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161474 "third_party/quic/platform/api/quic_map_util.h",
1475 "third_party/quic/platform/api/quic_mem_slice.h",
1476 "third_party/quic/platform/api/quic_mem_slice_span.h",
Renjieb5888d392018-11-13 22:40:121477 "third_party/quic/platform/api/quic_mem_slice_storage.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161478 "third_party/quic/platform/api/quic_mutex.cc",
1479 "third_party/quic/platform/api/quic_mutex.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161480 "third_party/quic/platform/api/quic_pcc_sender.h",
1481 "third_party/quic/platform/api/quic_prefetch.h",
1482 "third_party/quic/platform/api/quic_ptr_util.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161483 "third_party/quic/platform/api/quic_reference_counted.h",
Dan Zhang9c0b5d12018-11-28 20:40:051484 "third_party/quic/platform/api/quic_server_stats.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161485 "third_party/quic/platform/api/quic_singleton.h",
1486 "third_party/quic/platform/api/quic_sleep.h",
1487 "third_party/quic/platform/api/quic_socket_address.cc",
1488 "third_party/quic/platform/api/quic_socket_address.h",
1489 "third_party/quic/platform/api/quic_stack_trace.h",
1490 "third_party/quic/platform/api/quic_str_cat.h",
1491 "third_party/quic/platform/api/quic_string.h",
1492 "third_party/quic/platform/api/quic_string_piece.h",
1493 "third_party/quic/platform/api/quic_text_utils.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161494 "third_party/quic/platform/impl/quic_aligned_impl.h",
1495 "third_party/quic/platform/impl/quic_arraysize_impl.h",
1496 "third_party/quic/platform/impl/quic_bug_tracker_impl.h",
1497 "third_party/quic/platform/impl/quic_chromium_clock.cc",
1498 "third_party/quic/platform/impl/quic_chromium_clock.h",
Dan Zhang9c0b5d12018-11-28 20:40:051499 "third_party/quic/platform/impl/quic_client_stats_impl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161500 "third_party/quic/platform/impl/quic_containers_impl.h",
1501 "third_party/quic/platform/impl/quic_endian_impl.h",
1502 "third_party/quic/platform/impl/quic_estimate_memory_usage_impl.h",
1503 "third_party/quic/platform/impl/quic_export_impl.h",
1504 "third_party/quic/platform/impl/quic_fallthrough_impl.h",
Ryan Hamiltond3bf5a12018-05-30 06:23:421505 "third_party/quic/platform/impl/quic_file_utils_impl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161506 "third_party/quic/platform/impl/quic_flag_utils_impl.h",
1507 "third_party/quic/platform/impl/quic_flags_impl.cc",
1508 "third_party/quic/platform/impl/quic_flags_impl.h",
Ryan Hamilton47cf9d12018-10-17 04:33:091509 "third_party/quic/platform/impl/quic_goog_cc_sender_impl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161510 "third_party/quic/platform/impl/quic_hostname_utils_impl.cc",
1511 "third_party/quic/platform/impl/quic_hostname_utils_impl.h",
Ryan Hamilton0ce63302018-06-26 23:26:211512 "third_party/quic/platform/impl/quic_interval_impl.h",
Victor Vasilieved98673c2018-10-10 19:14:531513 "third_party/quic/platform/impl/quic_iovec_impl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161514 "third_party/quic/platform/impl/quic_ip_address_impl.cc",
1515 "third_party/quic/platform/impl/quic_ip_address_impl.h",
1516 "third_party/quic/platform/impl/quic_logging_impl.h",
1517 "third_party/quic/platform/impl/quic_lru_cache_impl.h",
1518 "third_party/quic/platform/impl/quic_map_util_impl.h",
1519 "third_party/quic/platform/impl/quic_mem_slice_impl.cc",
1520 "third_party/quic/platform/impl/quic_mem_slice_impl.h",
1521 "third_party/quic/platform/impl/quic_mem_slice_span_impl.cc",
1522 "third_party/quic/platform/impl/quic_mem_slice_span_impl.h",
Renjieb5888d392018-11-13 22:40:121523 "third_party/quic/platform/impl/quic_mem_slice_storage_impl.cc",
1524 "third_party/quic/platform/impl/quic_mem_slice_storage_impl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161525 "third_party/quic/platform/impl/quic_mutex_impl.cc",
1526 "third_party/quic/platform/impl/quic_mutex_impl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161527 "third_party/quic/platform/impl/quic_pcc_sender_impl.h",
1528 "third_party/quic/platform/impl/quic_prefetch_impl.h",
1529 "third_party/quic/platform/impl/quic_ptr_util_impl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161530 "third_party/quic/platform/impl/quic_reference_counted_impl.h",
Dan Zhang9c0b5d12018-11-28 20:40:051531 "third_party/quic/platform/impl/quic_server_stats_impl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161532 "third_party/quic/platform/impl/quic_singleton_impl.h",
1533 "third_party/quic/platform/impl/quic_sleep_impl.h",
1534 "third_party/quic/platform/impl/quic_socket_address_impl.cc",
1535 "third_party/quic/platform/impl/quic_socket_address_impl.h",
1536 "third_party/quic/platform/impl/quic_stack_trace_impl.h",
1537 "third_party/quic/platform/impl/quic_str_cat_impl.h",
1538 "third_party/quic/platform/impl/quic_string_impl.h",
1539 "third_party/quic/platform/impl/quic_string_piece_impl.h",
1540 "third_party/quic/platform/impl/quic_text_utils_impl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161541 "third_party/quic/quartc/quartc_factory.cc",
1542 "third_party/quic/quartc/quartc_factory.h",
Fan Yang32c5a112018-12-10 20:06:331543 "third_party/quic/quartc/quartc_interval_counter.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161544 "third_party/quic/quartc/quartc_packet_writer.cc",
1545 "third_party/quic/quartc/quartc_packet_writer.h",
1546 "third_party/quic/quartc/quartc_session.cc",
1547 "third_party/quic/quartc/quartc_session.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:161548 "third_party/quic/quartc/quartc_stream.cc",
1549 "third_party/quic/quartc/quartc_stream.h",
Victor Vasiliev92c06acc2018-12-08 10:16:271550 "third_party/quiche/src/http2/decoder/decode_buffer.cc",
1551 "third_party/quiche/src/http2/decoder/decode_buffer.h",
1552 "third_party/quiche/src/http2/decoder/decode_http2_structures.cc",
1553 "third_party/quiche/src/http2/decoder/decode_http2_structures.h",
1554 "third_party/quiche/src/http2/decoder/decode_status.cc",
1555 "third_party/quiche/src/http2/decoder/decode_status.h",
1556 "third_party/quiche/src/http2/decoder/frame_decoder_state.cc",
1557 "third_party/quiche/src/http2/decoder/frame_decoder_state.h",
1558 "third_party/quiche/src/http2/decoder/http2_frame_decoder.cc",
1559 "third_party/quiche/src/http2/decoder/http2_frame_decoder.h",
1560 "third_party/quiche/src/http2/decoder/http2_frame_decoder_listener.cc",
1561 "third_party/quiche/src/http2/decoder/http2_frame_decoder_listener.h",
1562 "third_party/quiche/src/http2/decoder/http2_structure_decoder.cc",
1563 "third_party/quiche/src/http2/decoder/http2_structure_decoder.h",
1564 "third_party/quiche/src/http2/decoder/payload_decoders/altsvc_payload_decoder.cc",
1565 "third_party/quiche/src/http2/decoder/payload_decoders/altsvc_payload_decoder.h",
1566 "third_party/quiche/src/http2/decoder/payload_decoders/continuation_payload_decoder.cc",
1567 "third_party/quiche/src/http2/decoder/payload_decoders/continuation_payload_decoder.h",
1568 "third_party/quiche/src/http2/decoder/payload_decoders/data_payload_decoder.cc",
1569 "third_party/quiche/src/http2/decoder/payload_decoders/data_payload_decoder.h",
1570 "third_party/quiche/src/http2/decoder/payload_decoders/goaway_payload_decoder.cc",
1571 "third_party/quiche/src/http2/decoder/payload_decoders/goaway_payload_decoder.h",
1572 "third_party/quiche/src/http2/decoder/payload_decoders/headers_payload_decoder.cc",
1573 "third_party/quiche/src/http2/decoder/payload_decoders/headers_payload_decoder.h",
1574 "third_party/quiche/src/http2/decoder/payload_decoders/ping_payload_decoder.cc",
1575 "third_party/quiche/src/http2/decoder/payload_decoders/ping_payload_decoder.h",
1576 "third_party/quiche/src/http2/decoder/payload_decoders/priority_payload_decoder.cc",
1577 "third_party/quiche/src/http2/decoder/payload_decoders/priority_payload_decoder.h",
1578 "third_party/quiche/src/http2/decoder/payload_decoders/push_promise_payload_decoder.cc",
1579 "third_party/quiche/src/http2/decoder/payload_decoders/push_promise_payload_decoder.h",
1580 "third_party/quiche/src/http2/decoder/payload_decoders/rst_stream_payload_decoder.cc",
1581 "third_party/quiche/src/http2/decoder/payload_decoders/rst_stream_payload_decoder.h",
1582 "third_party/quiche/src/http2/decoder/payload_decoders/settings_payload_decoder.cc",
1583 "third_party/quiche/src/http2/decoder/payload_decoders/settings_payload_decoder.h",
1584 "third_party/quiche/src/http2/decoder/payload_decoders/unknown_payload_decoder.cc",
1585 "third_party/quiche/src/http2/decoder/payload_decoders/unknown_payload_decoder.h",
1586 "third_party/quiche/src/http2/decoder/payload_decoders/window_update_payload_decoder.cc",
1587 "third_party/quiche/src/http2/decoder/payload_decoders/window_update_payload_decoder.h",
1588 "third_party/quiche/src/http2/hpack/decoder/hpack_block_decoder.cc",
1589 "third_party/quiche/src/http2/hpack/decoder/hpack_block_decoder.h",
1590 "third_party/quiche/src/http2/hpack/decoder/hpack_decoder.cc",
1591 "third_party/quiche/src/http2/hpack/decoder/hpack_decoder.h",
1592 "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_listener.cc",
1593 "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_listener.h",
1594 "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_state.cc",
1595 "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_state.h",
1596 "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_string_buffer.cc",
1597 "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_string_buffer.h",
1598 "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_tables.cc",
1599 "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_tables.h",
1600 "third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder.cc",
1601 "third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder.h",
1602 "third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder_listener.cc",
1603 "third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder_listener.h",
1604 "third_party/quiche/src/http2/hpack/decoder/hpack_entry_type_decoder.cc",
1605 "third_party/quiche/src/http2/hpack/decoder/hpack_entry_type_decoder.h",
1606 "third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder.cc",
1607 "third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder.h",
1608 "third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder_listener.cc",
1609 "third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder_listener.h",
1610 "third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_buffer.cc",
1611 "third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_buffer.h",
1612 "third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_listener.cc",
1613 "third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_listener.h",
1614 "third_party/quiche/src/http2/hpack/hpack_static_table_entries.inc",
1615 "third_party/quiche/src/http2/hpack/hpack_string.cc",
1616 "third_party/quiche/src/http2/hpack/hpack_string.h",
1617 "third_party/quiche/src/http2/hpack/http2_hpack_constants.cc",
1618 "third_party/quiche/src/http2/hpack/http2_hpack_constants.h",
1619 "third_party/quiche/src/http2/hpack/huffman/hpack_huffman_decoder.cc",
1620 "third_party/quiche/src/http2/hpack/huffman/hpack_huffman_decoder.h",
1621 "third_party/quiche/src/http2/hpack/huffman/hpack_huffman_encoder.cc",
1622 "third_party/quiche/src/http2/hpack/huffman/hpack_huffman_encoder.h",
1623 "third_party/quiche/src/http2/hpack/huffman/huffman_spec_tables.cc",
1624 "third_party/quiche/src/http2/hpack/huffman/huffman_spec_tables.h",
1625 "third_party/quiche/src/http2/hpack/varint/hpack_varint_decoder.cc",
1626 "third_party/quiche/src/http2/hpack/varint/hpack_varint_decoder.h",
1627 "third_party/quiche/src/http2/hpack/varint/hpack_varint_encoder.cc",
1628 "third_party/quiche/src/http2/hpack/varint/hpack_varint_encoder.h",
1629 "third_party/quiche/src/http2/http2_constants.cc",
1630 "third_party/quiche/src/http2/http2_constants.h",
1631 "third_party/quiche/src/http2/http2_structures.cc",
1632 "third_party/quiche/src/http2/http2_structures.h",
1633 "third_party/quiche/src/http2/platform/api/http2_arraysize.h",
1634 "third_party/quiche/src/http2/platform/api/http2_bug_tracker.h",
1635 "third_party/quiche/src/http2/platform/api/http2_export.h",
1636 "third_party/quiche/src/http2/platform/api/http2_flag_utils.h",
1637 "third_party/quiche/src/http2/platform/api/http2_flags.h",
1638 "third_party/quiche/src/http2/platform/api/http2_optional.h",
1639 "third_party/quiche/src/http2/platform/api/http2_ptr_util.h",
1640 "third_party/quiche/src/http2/platform/api/http2_reconstruct_object.h",
1641 "third_party/quiche/src/http2/platform/api/http2_string.h",
1642 "third_party/quiche/src/http2/platform/api/http2_string_piece.h",
1643 "third_party/quiche/src/http2/platform/api/http2_string_utils.h",
Ryan Hamilton2e003eea2018-05-02 00:24:291644 "third_party/spdy/core/hpack/hpack_constants.cc",
1645 "third_party/spdy/core/hpack/hpack_constants.h",
1646 "third_party/spdy/core/hpack/hpack_decoder_adapter.cc",
1647 "third_party/spdy/core/hpack/hpack_decoder_adapter.h",
1648 "third_party/spdy/core/hpack/hpack_encoder.cc",
1649 "third_party/spdy/core/hpack/hpack_encoder.h",
1650 "third_party/spdy/core/hpack/hpack_entry.cc",
1651 "third_party/spdy/core/hpack/hpack_entry.h",
1652 "third_party/spdy/core/hpack/hpack_header_table.cc",
1653 "third_party/spdy/core/hpack/hpack_header_table.h",
1654 "third_party/spdy/core/hpack/hpack_huffman_table.cc",
1655 "third_party/spdy/core/hpack/hpack_huffman_table.h",
1656 "third_party/spdy/core/hpack/hpack_output_stream.cc",
1657 "third_party/spdy/core/hpack/hpack_output_stream.h",
1658 "third_party/spdy/core/hpack/hpack_static_table.cc",
1659 "third_party/spdy/core/hpack/hpack_static_table.h",
1660 "third_party/spdy/core/http2_frame_decoder_adapter.cc",
1661 "third_party/spdy/core/http2_frame_decoder_adapter.h",
1662 "third_party/spdy/core/priority_write_scheduler.h",
1663 "third_party/spdy/core/spdy_alt_svc_wire_format.cc",
1664 "third_party/spdy/core/spdy_alt_svc_wire_format.h",
1665 "third_party/spdy/core/spdy_bitmasks.h",
1666 "third_party/spdy/core/spdy_bug_tracker.h",
1667 "third_party/spdy/core/spdy_frame_builder.cc",
1668 "third_party/spdy/core/spdy_frame_builder.h",
1669 "third_party/spdy/core/spdy_frame_reader.cc",
1670 "third_party/spdy/core/spdy_frame_reader.h",
1671 "third_party/spdy/core/spdy_framer.cc",
1672 "third_party/spdy/core/spdy_framer.h",
1673 "third_party/spdy/core/spdy_header_block.cc",
1674 "third_party/spdy/core/spdy_header_block.h",
1675 "third_party/spdy/core/spdy_headers_handler_interface.h",
1676 "third_party/spdy/core/spdy_pinnable_buffer_piece.cc",
1677 "third_party/spdy/core/spdy_pinnable_buffer_piece.h",
1678 "third_party/spdy/core/spdy_prefixed_buffer_reader.cc",
1679 "third_party/spdy/core/spdy_prefixed_buffer_reader.h",
1680 "third_party/spdy/core/spdy_protocol.cc",
1681 "third_party/spdy/core/spdy_protocol.h",
1682 "third_party/spdy/core/write_scheduler.h",
1683 "third_party/spdy/core/zero_copy_output_buffer.h",
Victor Vasiliev9f54e0e22018-10-18 21:36:041684 "third_party/spdy/platform/api/spdy_arraysize.h",
Biren Roye7225fb2019-01-04 14:50:531685 "third_party/spdy/platform/api/spdy_containers.h",
Yang Song6873900b2019-01-08 03:48:221686 "third_party/spdy/platform/api/spdy_endianness_util.h",
Ryan Hamilton2e003eea2018-05-02 00:24:291687 "third_party/spdy/platform/api/spdy_estimate_memory_usage.h",
1688 "third_party/spdy/platform/api/spdy_export.h",
1689 "third_party/spdy/platform/api/spdy_flags.h",
1690 "third_party/spdy/platform/api/spdy_mem_slice.h",
1691 "third_party/spdy/platform/api/spdy_ptr_util.h",
1692 "third_party/spdy/platform/api/spdy_string.h",
1693 "third_party/spdy/platform/api/spdy_string_piece.h",
1694 "third_party/spdy/platform/api/spdy_string_utils.h",
Victor Vasiliev9f54e0e22018-10-18 21:36:041695 "third_party/spdy/platform/impl/spdy_arraysize_impl.h",
Biren Roye7225fb2019-01-04 14:50:531696 "third_party/spdy/platform/impl/spdy_containers_impl.h",
Yang Song6873900b2019-01-08 03:48:221697 "third_party/spdy/platform/impl/spdy_endianness_util_impl.h",
Ryan Hamilton2e003eea2018-05-02 00:24:291698 "third_party/spdy/platform/impl/spdy_estimate_memory_usage_impl.h",
1699 "third_party/spdy/platform/impl/spdy_export_impl.h",
1700 "third_party/spdy/platform/impl/spdy_flags_impl.cc",
1701 "third_party/spdy/platform/impl/spdy_flags_impl.h",
1702 "third_party/spdy/platform/impl/spdy_mem_slice_impl.cc",
1703 "third_party/spdy/platform/impl/spdy_mem_slice_impl.h",
1704 "third_party/spdy/platform/impl/spdy_ptr_util_impl.h",
1705 "third_party/spdy/platform/impl/spdy_string_impl.h",
1706 "third_party/spdy/platform/impl/spdy_string_piece_impl.h",
1707 "third_party/spdy/platform/impl/spdy_string_utils_impl.cc",
1708 "third_party/spdy/platform/impl/spdy_string_utils_impl.h",
ckrasic73f7240b2017-01-24 00:06:451709 "url_request/data_protocol_handler.cc",
1710 "url_request/data_protocol_handler.h",
1711 "url_request/http_user_agent_settings.h",
1712 "url_request/redirect_info.cc",
1713 "url_request/redirect_info.h",
Tsuyoshi Horo9e2ec4df2017-10-16 15:15:551714 "url_request/redirect_util.cc",
1715 "url_request/redirect_util.h",
ckrasic73f7240b2017-01-24 00:06:451716 "url_request/report_sender.cc",
1717 "url_request/report_sender.h",
ckrasic73f7240b2017-01-24 00:06:451718 "url_request/static_http_user_agent_settings.cc",
1719 "url_request/static_http_user_agent_settings.h",
1720 "url_request/url_fetcher.cc",
1721 "url_request/url_fetcher.h",
1722 "url_request/url_fetcher_core.cc",
1723 "url_request/url_fetcher_core.h",
1724 "url_request/url_fetcher_delegate.cc",
1725 "url_request/url_fetcher_delegate.h",
1726 "url_request/url_fetcher_factory.h",
1727 "url_request/url_fetcher_impl.cc",
1728 "url_request/url_fetcher_impl.h",
1729 "url_request/url_fetcher_response_writer.cc",
1730 "url_request/url_fetcher_response_writer.h",
1731 "url_request/url_range_request_job.cc",
1732 "url_request/url_range_request_job.h",
1733 "url_request/url_request.cc",
1734 "url_request/url_request.h",
1735 "url_request/url_request_context.cc",
1736 "url_request/url_request_context.h",
1737 "url_request/url_request_context_builder.cc",
1738 "url_request/url_request_context_builder.h",
1739 "url_request/url_request_context_getter.cc",
1740 "url_request/url_request_context_getter.h",
1741 "url_request/url_request_context_getter_observer.h",
1742 "url_request/url_request_context_storage.cc",
1743 "url_request/url_request_context_storage.h",
1744 "url_request/url_request_data_job.cc",
1745 "url_request/url_request_data_job.h",
1746 "url_request/url_request_error_job.cc",
1747 "url_request/url_request_error_job.h",
1748 "url_request/url_request_filter.cc",
1749 "url_request/url_request_filter.h",
1750 "url_request/url_request_http_job.cc",
1751 "url_request/url_request_http_job.h",
Thiemo Nagel0793b9c532018-04-18 16:57:581752 "url_request/url_request_http_job_histogram.h",
ckrasic73f7240b2017-01-24 00:06:451753 "url_request/url_request_intercepting_job_factory.cc",
1754 "url_request/url_request_intercepting_job_factory.h",
1755 "url_request/url_request_interceptor.cc",
1756 "url_request/url_request_interceptor.h",
1757 "url_request/url_request_job.cc",
1758 "url_request/url_request_job.h",
1759 "url_request/url_request_job_factory.cc",
1760 "url_request/url_request_job_factory.h",
1761 "url_request/url_request_job_factory_impl.cc",
1762 "url_request/url_request_job_factory_impl.h",
1763 "url_request/url_request_job_manager.cc",
1764 "url_request/url_request_job_manager.h",
1765 "url_request/url_request_netlog_params.cc",
1766 "url_request/url_request_netlog_params.h",
1767 "url_request/url_request_redirect_job.cc",
1768 "url_request/url_request_redirect_job.h",
1769 "url_request/url_request_simple_job.cc",
1770 "url_request/url_request_simple_job.h",
1771 "url_request/url_request_status.cc",
1772 "url_request/url_request_status.h",
1773 "url_request/url_request_test_job.cc",
1774 "url_request/url_request_test_job.h",
1775 "url_request/url_request_throttler_entry.cc",
1776 "url_request/url_request_throttler_entry.h",
1777 "url_request/url_request_throttler_entry_interface.h",
1778 "url_request/url_request_throttler_manager.cc",
1779 "url_request/url_request_throttler_manager.h",
1780 "url_request/view_cache_helper.cc",
1781 "url_request/view_cache_helper.h",
1782 "url_request/websocket_handshake_userdata_key.cc",
1783 "url_request/websocket_handshake_userdata_key.h",
ckrasic73f7240b2017-01-24 00:06:451784 ]
kapishnikovabe280e2016-04-14 19:07:161785
mmenkefd9d15c2017-06-29 13:45:541786 if (enable_reporting) {
1787 sources += [
Julia Tuttle472098d2018-02-28 21:43:581788 "network_error_logging/network_error_logging_delegate.cc",
1789 "network_error_logging/network_error_logging_delegate.h",
Julia Tuttle6c949ae2017-11-17 16:36:271790 "network_error_logging/network_error_logging_service.cc",
1791 "network_error_logging/network_error_logging_service.h",
mmenkefd9d15c2017-06-29 13:45:541792 "reporting/reporting_browsing_data_remover.cc",
1793 "reporting/reporting_browsing_data_remover.h",
1794 "reporting/reporting_cache.cc",
1795 "reporting/reporting_cache.h",
Lily Chend39678172018-12-07 20:16:321796 "reporting/reporting_cache_observer.cc",
1797 "reporting/reporting_cache_observer.h",
mmenkefd9d15c2017-06-29 13:45:541798 "reporting/reporting_client.cc",
1799 "reporting/reporting_client.h",
1800 "reporting/reporting_context.cc",
1801 "reporting/reporting_context.h",
1802 "reporting/reporting_delegate.cc",
1803 "reporting/reporting_delegate.h",
1804 "reporting/reporting_delivery_agent.cc",
1805 "reporting/reporting_delivery_agent.h",
1806 "reporting/reporting_endpoint_manager.cc",
1807 "reporting/reporting_endpoint_manager.h",
mmenkefd9d15c2017-06-29 13:45:541808 "reporting/reporting_garbage_collector.cc",
1809 "reporting/reporting_garbage_collector.h",
1810 "reporting/reporting_header_parser.cc",
1811 "reporting/reporting_header_parser.h",
1812 "reporting/reporting_network_change_observer.cc",
1813 "reporting/reporting_network_change_observer.h",
mmenkefd9d15c2017-06-29 13:45:541814 "reporting/reporting_policy.cc",
1815 "reporting/reporting_policy.h",
1816 "reporting/reporting_report.cc",
1817 "reporting/reporting_report.h",
1818 "reporting/reporting_service.cc",
1819 "reporting/reporting_service.h",
1820 "reporting/reporting_uploader.cc",
1821 "reporting/reporting_uploader.h",
1822 ]
1823 }
1824
kapishnikovabe280e2016-04-14 19:07:161825 if (!use_kerberos) {
1826 sources -= [
1827 "http/http_auth_handler_negotiate.cc",
1828 "http/http_auth_handler_negotiate.h",
1829 ]
1830 }
1831
Fabrice de Gans-Riberi9fba3aff2018-04-12 19:00:481832 if (is_posix || is_fuchsia) {
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:581833 sources += [
1834 "base/file_stream_context_posix.cc",
1835 "base/network_interfaces_posix.cc",
1836 "base/network_interfaces_posix.h",
1837 "disk_cache/blockfile/file_posix.cc",
1838 "disk_cache/cache_util_posix.cc",
1839 "disk_cache/simple/simple_index_file_posix.cc",
1840 "disk_cache/simple/simple_util_posix.cc",
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:581841 "http/url_security_manager_posix.cc",
1842 "socket/socket_posix.cc",
1843 "socket/socket_posix.h",
1844 "socket/tcp_socket_posix.cc",
1845 "socket/tcp_socket_posix.h",
1846 "socket/udp_socket_posix.cc",
1847 "socket/udp_socket_posix.h",
1848 ]
kapishnikovabe280e2016-04-14 19:07:161849 if (posix_avoid_mmap) {
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:581850 sources += [ "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc" ]
kapishnikovabe280e2016-04-14 19:07:161851 } else {
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:581852 sources += [ "disk_cache/blockfile/mapped_file_posix.cc" ]
kapishnikovabe280e2016-04-14 19:07:161853 }
1854 }
1855
zentarob74795682017-07-14 00:58:221856 if (is_win) {
1857 sources -= [
zentarob89acda42017-07-14 01:28:571858 "ntlm/ntlm.cc",
1859 "ntlm/ntlm.h",
zentarob74795682017-07-14 00:58:221860 "ntlm/ntlm_buffer_reader.cc",
1861 "ntlm/ntlm_buffer_reader.h",
1862 "ntlm/ntlm_buffer_writer.cc",
1863 "ntlm/ntlm_buffer_writer.h",
Zentaro Kavanaghdd556612017-08-03 20:27:041864 "ntlm/ntlm_client.cc",
1865 "ntlm/ntlm_client.h",
zentarob74795682017-07-14 00:58:221866 "ntlm/ntlm_constants.h",
1867 ]
1868 }
1869
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:581870 if (use_kerberos && ((is_posix && !is_android) || is_fuchsia)) {
1871 sources += [
kapishnikovabe280e2016-04-14 19:07:161872 "http/http_auth_gssapi_posix.cc",
1873 "http/http_auth_gssapi_posix.h",
1874 ]
1875 }
1876
Sergey Ulanov5c33235ae2017-07-06 23:55:071877 if (!is_nacl) {
David Benjamin739c2c82018-05-10 19:31:061878 sources -= [ "base/network_interfaces_nacl.cc" ]
Sergey Ulanov5c33235ae2017-07-06 23:55:071879 }
1880
1881 # Use getifaddrs() on POSIX platforms, except Linux and Android.
Fabrice de Gans-Riberi9fba3aff2018-04-12 19:00:481882 if (is_posix && !is_linux && !is_android) {
1883 sources += [
Sergey Ulanov5c33235ae2017-07-06 23:55:071884 "base/network_interfaces_getifaddrs.cc",
1885 "base/network_interfaces_getifaddrs.h",
1886 ]
1887 }
1888
kapishnikovabe280e2016-04-14 19:07:161889 if (!use_nss_certs) {
1890 sources -= [
mattm9c63d442016-09-03 00:45:511891 "cert/internal/trust_store_nss.cc",
1892 "cert/internal/trust_store_nss.h",
eromanf2971fd2017-04-20 20:10:451893 "cert/known_roots_nss.cc",
1894 "cert/known_roots_nss.h",
kapishnikovabe280e2016-04-14 19:07:161895 "cert/nss_cert_database.cc",
1896 "cert/nss_cert_database.h",
kapishnikovabe280e2016-04-14 19:07:161897 "ssl/client_cert_store_nss.cc",
1898 "ssl/client_cert_store_nss.h",
kapishnikovabe280e2016-04-14 19:07:161899 "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
1900 "third_party/mozilla_security_manager/nsNSSCertificateDB.h",
1901 "third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
1902 "third_party/mozilla_security_manager/nsPKCS12Blob.h",
1903 ]
1904 if (is_chromeos) {
1905 # These were already removed on non-ChromeOS.
1906 sources -= [
1907 "cert/nss_cert_database_chromeos.cc",
1908 "cert/nss_cert_database_chromeos.h",
1909 "cert/nss_profile_filter_chromeos.cc",
1910 "cert/nss_profile_filter_chromeos.h",
1911 ]
1912 }
mattmbbf7fc02017-06-19 23:38:191913 sources -= [ "ssl/ssl_platform_key_nss.cc" ]
svaldez2135be52016-04-20 16:34:531914 } else {
davidben8d569f52016-07-29 16:03:181915 sources += [
1916 "third_party/nss/ssl/cmpcert.cc",
1917 "third_party/nss/ssl/cmpcert.h",
1918 ]
kapishnikovabe280e2016-04-14 19:07:161919 }
1920
svaldez2135be52016-04-20 16:34:531921 if (!use_nss_certs) {
kapishnikovabe280e2016-04-14 19:07:161922 # These files are part of the partial implementation of NSS for
1923 # cert verification, so keep them in that case.
1924 sources -= [
1925 "cert/cert_verify_proc_nss.cc",
1926 "cert/cert_verify_proc_nss.h",
1927 "cert/test_root_certs_nss.cc",
svaldez2135be52016-04-20 16:34:531928 "cert/x509_util_nss.cc",
kapishnikovabe280e2016-04-14 19:07:161929 "cert_net/nss_ocsp.cc",
1930 "cert_net/nss_ocsp.h",
1931 ]
1932 }
1933
kapishnikovabe280e2016-04-14 19:07:161934 if (is_chromecast && use_nss_certs) {
mattm436ccfe2017-06-19 20:24:081935 sources -= [
1936 "ssl/client_cert_store_nss.cc",
1937 "ssl/client_cert_store_nss.h",
1938 "ssl/ssl_platform_key_nss.cc",
1939 ]
kapishnikovabe280e2016-04-14 19:07:161940 }
1941
kapishnikovabe280e2016-04-14 19:07:161942 if (is_win) {
1943 sources -= [ "http/http_auth_handler_ntlm_portable.cc" ]
1944 } else { # !is_win
1945 sources -= [
1946 "base/winsock_init.cc",
1947 "base/winsock_init.h",
1948 "base/winsock_util.cc",
1949 "base/winsock_util.h",
Lily Houghton582d4622018-01-22 22:43:401950 "proxy_resolution/proxy_resolver_winhttp.cc",
1951 "proxy_resolution/proxy_resolver_winhttp.h",
kapishnikovabe280e2016-04-14 19:07:161952 ]
1953 }
1954
1955 if (is_ios) {
1956 # Add back some sources that were otherwise filtered out.
1957 # iOS needs some Mac files.
1958 net_unfiltered_sources += [
1959 "base/mac/url_conversions.h",
1960 "base/mac/url_conversions.mm",
1961 "base/network_change_notifier_mac.cc",
wychenebb66ffb2017-04-05 07:19:371962 "base/network_change_notifier_mac.h",
kapishnikovabe280e2016-04-14 19:07:161963 "base/network_config_watcher_mac.cc",
wychenebb66ffb2017-04-05 07:19:371964 "base/network_config_watcher_mac.h",
kapishnikovabe280e2016-04-14 19:07:161965 "base/platform_mime_util_mac.mm",
Lily Houghton582d4622018-01-22 22:43:401966 "base/proxy_server_mac.cc",
svaldez2135be52016-04-20 16:34:531967 "cert/test_root_certs_mac.cc",
mattm1a07e632017-05-16 05:55:501968 "cert/x509_util_ios_and_mac.cc",
1969 "cert/x509_util_ios_and_mac.h",
Lily Houghton582d4622018-01-22 22:43:401970 "proxy_resolution/proxy_resolver_mac.cc",
1971 "proxy_resolution/proxy_resolver_mac.h",
kapishnikovabe280e2016-04-14 19:07:161972 ]
1973
1974 sources -= [ "disk_cache/blockfile/file_posix.cc" ]
1975 }
1976
kapishnikovabe280e2016-04-14 19:07:161977 if (is_ios || is_mac) {
ckrasic73f7240b2017-01-24 00:06:451978 sources += [
1979 "base/mac/url_conversions.h",
1980 "base/mac/url_conversions.mm",
1981 ]
kapishnikovabe280e2016-04-14 19:07:161982 }
1983
1984 if (is_android) {
kapishnikovabe280e2016-04-14 19:07:161985 # Add some Linux sources that were excluded by the filter, but which
1986 # are needed.
1987 net_unfiltered_sources += [
1988 "base/address_tracker_linux.cc",
1989 "base/address_tracker_linux.h",
1990 "base/network_interfaces_linux.cc",
1991 "base/network_interfaces_linux.h",
1992 "base/platform_mime_util_linux.cc",
1993 ]
1994 }
Sergey Ulanov49085572017-07-10 23:25:461995
1996 if (is_fuchsia) {
1997 sources += [
Kevin Marshall3e89fd72018-06-05 21:29:101998 "base/network_change_notifier_fuchsia.cc",
1999 "base/network_change_notifier_fuchsia.h",
Sergey Ulanov2beef3d2017-10-19 21:53:532000 "base/network_interfaces_fuchsia.cc",
Sergey Ulanov49085572017-07-10 23:25:462001 "base/platform_mime_util_fuchsia.cc",
Sergey Ulanov49085572017-07-10 23:25:462002 "cert/test_root_certs_fuchsia.cc",
2003 ]
2004 }
kapishnikovabe280e2016-04-14 19:07:162005 }
xunjieli905496a2015-08-31 15:51:172006
Sergey Ulanov21dea152017-09-13 00:50:502007 if (enable_unix_sockets) {
2008 sources += [
2009 "socket/unix_domain_client_socket_posix.cc",
2010 "socket/unix_domain_client_socket_posix.h",
2011 "socket/unix_domain_server_socket_posix.cc",
2012 "socket/unix_domain_server_socket_posix.h",
2013 ]
2014 }
2015
xunjieli905496a2015-08-31 15:51:172016 # Add back some sources that were otherwise filtered out.
2017 set_sources_assignment_filter([])
kapishnikovabe280e2016-04-14 19:07:162018 sources += net_unfiltered_sources
xunjieli905496a2015-08-31 15:51:172019 set_sources_assignment_filter(sources_assignment_filter)
2020
2021 cflags = []
[email protected]4625ade2014-04-15 19:26:442022
2023 if (is_mac) {
[email protected]4625ade2014-04-15 19:26:442024 libs = [
rsesek02aa51c2016-05-11 02:13:572025 "CFNetwork.framework",
2026 "CoreServices.framework",
[email protected]ab9ce6e2014-04-17 20:33:192027 "Foundation.framework",
2028 "Security.framework",
2029 "SystemConfiguration.framework",
2030 "resolv",
[email protected]4625ade2014-04-15 19:26:442031 ]
2032 }
2033
2034 if (is_ios) {
[email protected]4625ade2014-04-15 19:26:442035 libs = [
[email protected]ab9ce6e2014-04-17 20:33:192036 "CFNetwork.framework",
2037 "MobileCoreServices.framework",
2038 "Security.framework",
2039 "SystemConfiguration.framework",
2040 "resolv",
[email protected]4625ade2014-04-15 19:26:442041 ]
xunjieli06d93982015-08-27 17:13:022042 }
xunjieli4c8c6922015-08-27 16:02:402043
jam5332a632016-04-01 22:36:052044 if (is_win) {
2045 libs = [
2046 "crypt32.lib",
2047 "dhcpcsvc.lib",
2048 "iphlpapi.lib",
davidben62399192016-09-13 01:54:222049 "ncrypt.lib",
jam5332a632016-04-01 22:36:052050 "rpcrt4.lib",
2051 "secur32.lib",
2052 "urlmon.lib",
2053 "winhttp.lib",
2054 ]
2055 }
2056
sergeyu99d83f92015-09-14 23:03:332057 if (!is_nacl) {
2058 if (!disable_file_support) {
ckrasic73f7240b2017-01-24 00:06:452059 sources += [
2060 "base/directory_lister.cc",
2061 "base/directory_lister.h",
2062 "base/directory_listing.cc",
2063 "base/directory_listing.h",
2064 "url_request/file_protocol_handler.cc",
2065 "url_request/file_protocol_handler.h",
2066 "url_request/url_request_file_dir_job.cc",
2067 "url_request/url_request_file_dir_job.h",
2068 "url_request/url_request_file_job.cc",
2069 "url_request/url_request_file_job.h",
2070 ]
sergeyu99d83f92015-09-14 23:03:332071 }
xunjieli06d93982015-08-27 17:13:022072
sergeyu99d83f92015-09-14 23:03:332073 if (!disable_ftp_support) {
ckrasic73f7240b2017-01-24 00:06:452074 sources += [
2075 "ftp/ftp_auth_cache.cc",
2076 "ftp/ftp_auth_cache.h",
2077 "ftp/ftp_ctrl_response_buffer.cc",
2078 "ftp/ftp_ctrl_response_buffer.h",
2079 "ftp/ftp_directory_listing_parser.cc",
2080 "ftp/ftp_directory_listing_parser.h",
2081 "ftp/ftp_directory_listing_parser_ls.cc",
2082 "ftp/ftp_directory_listing_parser_ls.h",
2083 "ftp/ftp_directory_listing_parser_vms.cc",
2084 "ftp/ftp_directory_listing_parser_vms.h",
2085 "ftp/ftp_directory_listing_parser_windows.cc",
2086 "ftp/ftp_directory_listing_parser_windows.h",
2087 "ftp/ftp_network_layer.cc",
2088 "ftp/ftp_network_layer.h",
2089 "ftp/ftp_network_session.cc",
2090 "ftp/ftp_network_session.h",
2091 "ftp/ftp_network_transaction.cc",
2092 "ftp/ftp_network_transaction.h",
2093 "ftp/ftp_request_info.h",
2094 "ftp/ftp_response_info.cc",
2095 "ftp/ftp_response_info.h",
2096 "ftp/ftp_server_type_histograms.cc",
2097 "ftp/ftp_server_type_histograms.h",
2098 "ftp/ftp_transaction.h",
2099 "ftp/ftp_transaction_factory.h",
2100 "ftp/ftp_util.cc",
2101 "ftp/ftp_util.h",
2102 "url_request/ftp_protocol_handler.cc",
2103 "url_request/ftp_protocol_handler.h",
2104 "url_request/url_request_ftp_job.cc",
2105 "url_request/url_request_ftp_job.h",
2106 ]
sergeyu99d83f92015-09-14 23:03:332107 }
xunjieli905496a2015-08-31 15:51:172108
sergeyu99d83f92015-09-14 23:03:332109 if (enable_websockets) {
ckrasic73f7240b2017-01-24 00:06:452110 sources += [
2111 "websockets/websocket_basic_handshake_stream.cc",
2112 "websockets/websocket_basic_handshake_stream.h",
2113 "websockets/websocket_basic_stream.cc",
2114 "websockets/websocket_basic_stream.h",
Bence Béky7294fc22018-02-08 14:26:172115 "websockets/websocket_basic_stream_adapters.cc",
2116 "websockets/websocket_basic_stream_adapters.h",
ckrasic73f7240b2017-01-24 00:06:452117 "websockets/websocket_channel.cc",
2118 "websockets/websocket_channel.h",
2119 "websockets/websocket_deflate_parameters.cc",
2120 "websockets/websocket_deflate_parameters.h",
2121 "websockets/websocket_deflate_predictor.h",
2122 "websockets/websocket_deflate_predictor_impl.cc",
2123 "websockets/websocket_deflate_predictor_impl.h",
2124 "websockets/websocket_deflate_stream.cc",
2125 "websockets/websocket_deflate_stream.h",
2126 "websockets/websocket_deflater.cc",
2127 "websockets/websocket_deflater.h",
2128 "websockets/websocket_errors.cc",
2129 "websockets/websocket_errors.h",
mmenke392ec462017-03-23 18:49:352130 "websockets/websocket_event_interface.h",
ckrasic73f7240b2017-01-24 00:06:452131 "websockets/websocket_extension.cc",
2132 "websockets/websocket_extension.h",
2133 "websockets/websocket_extension_parser.cc",
2134 "websockets/websocket_extension_parser.h",
2135 "websockets/websocket_frame.cc",
2136 "websockets/websocket_frame.h",
2137 "websockets/websocket_frame_parser.cc",
2138 "websockets/websocket_frame_parser.h",
2139 "websockets/websocket_handshake_challenge.cc",
2140 "websockets/websocket_handshake_challenge.h",
2141 "websockets/websocket_handshake_constants.cc",
2142 "websockets/websocket_handshake_constants.h",
2143 "websockets/websocket_handshake_request_info.cc",
2144 "websockets/websocket_handshake_request_info.h",
2145 "websockets/websocket_handshake_response_info.cc",
2146 "websockets/websocket_handshake_response_info.h",
Bence Békycc7249a2018-03-06 16:23:272147 "websockets/websocket_handshake_stream_base.cc",
ckrasic73f7240b2017-01-24 00:06:452148 "websockets/websocket_handshake_stream_base.h",
2149 "websockets/websocket_handshake_stream_create_helper.cc",
2150 "websockets/websocket_handshake_stream_create_helper.h",
Bence Béky46bfbc12018-02-22 19:28:202151 "websockets/websocket_http2_handshake_stream.cc",
2152 "websockets/websocket_http2_handshake_stream.h",
ckrasic73f7240b2017-01-24 00:06:452153 "websockets/websocket_inflater.cc",
2154 "websockets/websocket_inflater.h",
2155 "websockets/websocket_stream.cc",
2156 "websockets/websocket_stream.h",
2157 ]
sergeyu99d83f92015-09-14 23:03:332158 }
xunjieli905496a2015-08-31 15:51:172159
sergeyu99d83f92015-09-14 23:03:332160 # ICU support.
kapishnikovabe280e2016-04-14 19:07:162161 if (use_platform_icu_alternatives) {
2162 if (is_android) {
2163 # Use ICU alternative on Android.
torned8b7d9252016-08-04 19:41:452164 sources += [ "base/net_string_util_icu_alternatives_android.cc" ]
kapishnikovabe280e2016-04-14 19:07:162165 } else if (is_ios) {
2166 # Use ICU alternative on iOS.
2167 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ]
2168 } else {
2169 assert(false,
2170 "ICU alternative is not implemented for platform: " + target_os)
2171 }
2172 } else {
2173 # Use ICU.
kapishnikovabe280e2016-04-14 19:07:162174 sources += [
2175 "base/filename_util_icu.cc",
2176 "base/net_string_util_icu.cc",
2177 ]
2178 }
eustasfbec9132015-12-30 14:56:512179
2180 # Brotli support.
kapishnikovabe280e2016-04-14 19:07:162181 if (!disable_brotli_filter) {
thakisb8590c92017-03-23 18:14:532182 sources += [
2183 "filter/brotli_source_stream.cc",
2184 "filter/brotli_source_stream.h",
2185 ]
kapishnikovabe280e2016-04-14 19:07:162186 } else {
xunjieli084a9292016-09-23 18:15:042187 sources += [ "filter/brotli_source_stream_disabled.cc" ]
kapishnikovabe280e2016-04-14 19:07:162188 }
[email protected]85191ed2014-05-15 00:41:492189 }
[email protected]4625ade2014-04-15 19:26:442190}
2191
Eric Orth24feb5b2018-05-25 19:42:462192# Private dependencies for the //net component and for any build targets (e.g.
2193# source sets with circular dependencies with //net) that need to share the same
2194# dependencies.
2195source_set("net_deps") {
2196 visibility = [
2197 ":net",
2198 "//net/dns",
2199 "//net/dns:dns_client",
Eric Orth168a7e52018-08-27 19:11:322200 "//net/dns:host_resolver",
Eric Orth24feb5b2018-05-25 19:42:462201 "//net/dns:host_resolver_impl",
2202 "//net/dns:mdns_client",
Eric Orth8afaf152018-11-07 21:01:262203 "//net/dns/public",
Eric Orth24feb5b2018-05-25 19:42:462204 ]
2205
2206 public_deps = [
2207 ":constants",
2208 ":net_resources",
git-meacer.google.com9e93f9822018-07-03 00:33:052209 ":preload_decoder",
Eric Orth24feb5b2018-05-25 19:42:462210 "//base",
2211 "//net/base/registry_controlled_domains",
2212 "//third_party/protobuf:protobuf_lite",
Scott Violetfd6ee112019-01-10 19:05:322213 "//url:buildflags",
Eric Orth24feb5b2018-05-25 19:42:462214 ]
2215
2216 public_configs = net_configs
2217
2218 if (include_transport_security_state_preload_list) {
2219 public_deps += [ "//net/http:generate_transport_security_state" ]
2220 }
2221
2222 if (!is_nacl) {
2223 public_deps += [
2224 "//base/third_party/dynamic_annotations",
2225 "//third_party/zlib",
2226 ]
2227
2228 if (use_gio) {
2229 public_configs += [ "//build/linux:gio_config" ]
2230 }
2231
2232 if (is_android) {
2233 public_deps += [ ":net_jni_headers" ]
2234 }
2235
2236 if (is_fuchsia) {
chromium-autorollfb42c7052018-10-26 21:34:452237 public_deps += [
Sergey Ulanove2a34e4b2018-12-28 23:40:162238 "//third_party/fuchsia-sdk/sdk:hardware_ethernet",
chromium-autorollfb42c7052018-10-26 21:34:452239 "//third_party/fuchsia-sdk/sdk:netstack",
2240 ]
Eric Orth24feb5b2018-05-25 19:42:462241 }
2242
2243 if (use_platform_icu_alternatives) {
2244 if (is_android) {
2245 public_deps += [ ":net_jni_headers" ]
2246 }
2247 } else {
2248 public_deps += [
2249 "//base:i18n",
2250 "//third_party/icu",
2251 ]
2252 }
2253
2254 if (!disable_brotli_filter) {
2255 public_deps += [ "//third_party/brotli:dec" ]
2256 }
2257 }
2258}
2259
2260# Public dependencies for the //net component and for any build targets (e.g.
2261# source sets with circular dependencies with //net) that need to share the same
2262# dependencies.
2263source_set("net_public_deps") {
2264 visibility = [
2265 ":net",
2266 "//net/dns",
2267 "//net/dns:dns_client",
Eric Orth168a7e52018-08-27 19:11:322268 "//net/dns:host_resolver",
Eric Orth24feb5b2018-05-25 19:42:462269 "//net/dns:host_resolver_impl",
2270 "//net/dns:mdns_client",
Eric Orth8afaf152018-11-07 21:01:262271 "//net/dns/public",
Eric Orth24feb5b2018-05-25 19:42:462272 ]
2273
2274 public_deps = [
2275 ":buildflags",
2276 ":net_nqe_proto",
2277 ":net_quic_proto",
Eric Orth24feb5b2018-05-25 19:42:462278 "//crypto",
2279 "//crypto:platform",
Veranika Liaukevich8a686442018-05-29 18:55:122280 "//net/traffic_annotation",
Eric Orth24feb5b2018-05-25 19:42:462281 "//third_party/boringssl",
2282 "//url",
2283 ]
2284
2285 if (is_nacl) {
2286 public_deps += [ "//native_client_sdk/src/libraries/nacl_io" ]
2287 }
2288}
2289
[email protected]4625ade2014-04-15 19:26:442290grit("net_resources") {
2291 source = "base/net_resources.grd"
[email protected]b89c53842014-07-23 16:32:322292 outputs = [
2293 "grit/net_resources.h",
2294 "net_resources.pak",
[email protected]b89c53842014-07-23 16:32:322295 ]
[email protected]4625ade2014-04-15 19:26:442296}
2297
Tarun Bansalcdfa34b2017-11-23 05:11:172298proto_library("net_nqe_proto") {
Eric Orth24feb5b2018-05-25 19:42:462299 visibility = [ ":net_public_deps" ]
Tarun Bansalcdfa34b2017-11-23 05:11:172300
2301 sources = [
2302 "nqe/proto/network_id_proto.proto",
2303 ]
2304 cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:"
2305 cc_include = "net/base/net_export.h"
2306 component_build_force_source_set = true
2307
2308 defines = [ "NET_IMPLEMENTATION" ]
2309
2310 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
2311}
2312
rtennetib6f1c0d2015-04-03 17:52:062313proto_library("net_quic_proto") {
Eric Orth24feb5b2018-05-25 19:42:462314 visibility = [ ":net_public_deps" ]
brettw2e7db0a2015-04-24 22:59:172315
rtennetib6f1c0d2015-04-03 17:52:062316 sources = [
Ryan Hamilton56b10c5d2018-05-11 13:40:162317 "third_party/quic/core/proto/cached_network_parameters.proto",
Victor Vasiliev56cbeee2018-11-02 19:48:322318 "third_party/quic/core/proto/crypto_server_config.proto",
Ryan Hamilton56b10c5d2018-05-11 13:40:162319 "third_party/quic/core/proto/source_address_token.proto",
rtennetib6f1c0d2015-04-03 17:52:062320 ]
2321 cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:"
2322 cc_include = "net/base/net_export.h"
brettw7ef80452016-06-30 00:43:182323 component_build_force_source_set = true
rtennetib6f1c0d2015-04-03 17:52:062324
2325 defines = [ "NET_IMPLEMENTATION" ]
2326
2327 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
2328}
2329
ckrasic73f7240b2017-01-24 00:06:452330if (!is_proto_quic) {
Francois Doray45bdc4c32018-09-17 19:35:002331 component("extras") {
ckrasic73f7240b2017-01-24 00:06:452332 sources = [
2333 "extras/sqlite/cookie_crypto_delegate.h",
2334 "extras/sqlite/sqlite_channel_id_store.cc",
2335 "extras/sqlite/sqlite_channel_id_store.h",
2336 "extras/sqlite/sqlite_persistent_cookie_store.cc",
2337 "extras/sqlite/sqlite_persistent_cookie_store.h",
2338 ]
Francois Doray45bdc4c32018-09-17 19:35:002339 defines = [ "IS_NET_EXTRAS_IMPL" ]
ckrasic73f7240b2017-01-24 00:06:452340 configs += [ "//build/config/compiler:wexit_time_destructors" ]
2341 deps = [
2342 ":net",
2343 "//base",
2344 "//sql:sql",
2345 ]
2346 }
mef327a8e42014-08-29 17:10:032347}
2348
git-meacer.google.com9e93f9822018-07-03 00:33:052349static_library("preload_decoder") {
2350 sources = [
2351 "extras/preload_data/decoder.cc",
2352 "extras/preload_data/decoder.h",
2353 ]
2354 deps = [
2355 "//base",
2356 ]
2357}
2358
sdefresne3001f172016-03-16 10:30:032359if (!is_ios) {
2360 executable("dump_cache") {
2361 testonly = true
2362 sources = [
2363 "tools/dump_cache/dump_cache.cc",
2364 "tools/dump_cache/dump_files.cc",
2365 "tools/dump_cache/dump_files.h",
2366 ]
[email protected]4625ade2014-04-15 19:26:442367
sdefresne3001f172016-03-16 10:30:032368 deps = [
2369 ":net",
2370 ":test_support",
2371 "//base",
brucedawsonf9f7d6292016-04-27 19:11:072372 "//build/win:default_exe_manifest",
sdefresne3001f172016-03-16 10:30:032373 ]
2374 }
[email protected]8603c5de2014-04-16 20:34:312375}
2376
eroman12951312017-05-05 22:55:512377# This section can be updated from globbing rules using:
2378# python ./tools/update_ios_bundle_data.py
sdefresneb0a31642016-03-18 11:04:452379bundle_data("test_support_bundle_data") {
sdefresne04f91142016-04-21 08:41:592380 visibility = [ ":test_support" ]
sdefresneb0a31642016-03-18 11:04:452381 testonly = true
ckrasic73f7240b2017-01-24 00:06:452382 sources = [
zhongyid7dd2db12017-04-14 17:01:252383 "data/quic_http_response_cache_data_with_push/test.example.com/favicon.ico",
2384 "data/quic_http_response_cache_data_with_push/test.example.com/index.html",
2385 "data/quic_http_response_cache_data_with_push/test.example.com/index2.html",
2386 "data/quic_http_response_cache_data_with_push/test.example.com/kitten-1.jpg",
ckrasic73f7240b2017-01-24 00:06:452387 "data/ssl/certificates/1024-rsa-ee-by-1024-rsa-intermediate.pem",
2388 "data/ssl/certificates/1024-rsa-ee-by-2048-rsa-intermediate.pem",
2389 "data/ssl/certificates/1024-rsa-ee-by-768-rsa-intermediate.pem",
2390 "data/ssl/certificates/1024-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2391 "data/ssl/certificates/1024-rsa-intermediate.pem",
2392 "data/ssl/certificates/10_year_validity.pem",
2393 "data/ssl/certificates/11_year_validity.pem",
2394 "data/ssl/certificates/2029_globalsign_com_cert.pem",
2395 "data/ssl/certificates/2048-rsa-ee-by-1024-rsa-intermediate.pem",
2396 "data/ssl/certificates/2048-rsa-ee-by-2048-rsa-intermediate.pem",
2397 "data/ssl/certificates/2048-rsa-ee-by-768-rsa-intermediate.pem",
2398 "data/ssl/certificates/2048-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2399 "data/ssl/certificates/2048-rsa-intermediate.pem",
2400 "data/ssl/certificates/2048-rsa-root.pem",
2401 "data/ssl/certificates/39_months_after_2015_04.pem",
Ryan Sleevifb6f86642018-04-07 03:55:382402 "data/ssl/certificates/39_months_based_on_last_day.pem",
ckrasic73f7240b2017-01-24 00:06:452403 "data/ssl/certificates/40_months_after_2015_04.pem",
2404 "data/ssl/certificates/60_months_after_2012_07.pem",
2405 "data/ssl/certificates/61_months_after_2012_07.pem",
2406 "data/ssl/certificates/768-rsa-ee-by-1024-rsa-intermediate.pem",
2407 "data/ssl/certificates/768-rsa-ee-by-2048-rsa-intermediate.pem",
2408 "data/ssl/certificates/768-rsa-ee-by-768-rsa-intermediate.pem",
2409 "data/ssl/certificates/768-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2410 "data/ssl/certificates/768-rsa-intermediate.pem",
Ryan Sleevi1f9eb9f2018-01-23 21:25:142411 "data/ssl/certificates/825_days_1_second_after_2018_03_01.pem",
2412 "data/ssl/certificates/825_days_after_2018_03_01.pem",
2413 "data/ssl/certificates/826_days_after_2018_03_01.pem",
Matt Muellerc391cdf2018-02-08 01:05:572414 "data/ssl/certificates/BUILD.gn",
eroman12951312017-05-05 22:55:512415 "data/ssl/certificates/README",
ckrasic73f7240b2017-01-24 00:06:452416 "data/ssl/certificates/aia-cert.pem",
2417 "data/ssl/certificates/aia-intermediate.der",
2418 "data/ssl/certificates/aia-root.pem",
2419 "data/ssl/certificates/bad_validity.pem",
Kunihiko Sakamoto97cfcf52018-06-26 03:08:222420 "data/ssl/certificates/can_sign_http_exchanges_draft_extension.pem",
David Benjamin933f39b2018-08-27 14:59:182421 "data/ssl/certificates/can_sign_http_exchanges_draft_extension_invalid.pem",
ckrasic73f7240b2017-01-24 00:06:452422 "data/ssl/certificates/client-empty-password.p12",
2423 "data/ssl/certificates/client-nokey.p12",
2424 "data/ssl/certificates/client-null-password.p12",
2425 "data/ssl/certificates/client.p12",
2426 "data/ssl/certificates/client_1.key",
2427 "data/ssl/certificates/client_1.pem",
2428 "data/ssl/certificates/client_1.pk8",
2429 "data/ssl/certificates/client_1_ca.pem",
2430 "data/ssl/certificates/client_2.key",
2431 "data/ssl/certificates/client_2.pem",
2432 "data/ssl/certificates/client_2.pk8",
2433 "data/ssl/certificates/client_2_ca.pem",
2434 "data/ssl/certificates/client_3.key",
2435 "data/ssl/certificates/client_3.pem",
2436 "data/ssl/certificates/client_3.pk8",
2437 "data/ssl/certificates/client_3_ca.pem",
2438 "data/ssl/certificates/client_4.key",
2439 "data/ssl/certificates/client_4.pem",
2440 "data/ssl/certificates/client_4.pk8",
2441 "data/ssl/certificates/client_4_ca.pem",
2442 "data/ssl/certificates/client_5.key",
2443 "data/ssl/certificates/client_5.pem",
2444 "data/ssl/certificates/client_5.pk8",
2445 "data/ssl/certificates/client_5_ca.pem",
2446 "data/ssl/certificates/client_6.key",
2447 "data/ssl/certificates/client_6.pem",
2448 "data/ssl/certificates/client_6.pk8",
2449 "data/ssl/certificates/client_6_ca.pem",
2450 "data/ssl/certificates/client_root_ca.pem",
Ryan Sleevic2fcac62017-12-21 16:37:042451 "data/ssl/certificates/common_name_only.pem",
Rob Percival5c442f82018-03-28 22:10:572452 "data/ssl/certificates/comodo-chain.pem",
ckrasic73f7240b2017-01-24 00:06:452453 "data/ssl/certificates/crit-codeSigning-chain.pem",
2454 "data/ssl/certificates/crlset_by_intermediate_serial.raw",
2455 "data/ssl/certificates/crlset_by_leaf_spki.raw",
Eric Roman3b13fe0a2018-01-10 22:54:432456 "data/ssl/certificates/crlset_by_leaf_subject_no_spki.raw",
ckrasic73f7240b2017-01-24 00:06:452457 "data/ssl/certificates/crlset_by_root_serial.raw",
Eric Roman3b13fe0a2018-01-10 22:54:432458 "data/ssl/certificates/crlset_by_root_subject.raw",
2459 "data/ssl/certificates/crlset_by_root_subject_no_spki.raw",
ckrasic73f7240b2017-01-24 00:06:452460 "data/ssl/certificates/cross-signed-leaf.pem",
2461 "data/ssl/certificates/cross-signed-root-md5.pem",
2462 "data/ssl/certificates/cross-signed-root-sha256.pem",
2463 "data/ssl/certificates/ct-test-embedded-cert.pem",
2464 "data/ssl/certificates/ct-test-embedded-with-intermediate-chain.pem",
2465 "data/ssl/certificates/ct-test-embedded-with-intermediate-preca-chain.pem",
2466 "data/ssl/certificates/ct-test-embedded-with-preca-chain.pem",
Ryan Sleevid6c6a402018-04-14 01:33:042467 "data/ssl/certificates/daltonridgeapts.com-chain.pem",
Ryan Sleevibd9ca3112017-12-23 05:22:192468 "data/ssl/certificates/dec_2017.pem",
ckrasic73f7240b2017-01-24 00:06:452469 "data/ssl/certificates/diginotar_cyber_ca.pem",
2470 "data/ssl/certificates/diginotar_pkioverheid.pem",
2471 "data/ssl/certificates/diginotar_pkioverheid_g2.pem",
2472 "data/ssl/certificates/diginotar_public_ca_2025.pem",
2473 "data/ssl/certificates/diginotar_root_ca.pem",
2474 "data/ssl/certificates/diginotar_services_1024_ca.pem",
ckrasic73f7240b2017-01-24 00:06:452475 "data/ssl/certificates/duplicate_cn_1.p12",
2476 "data/ssl/certificates/duplicate_cn_1.pem",
2477 "data/ssl/certificates/duplicate_cn_2.p12",
2478 "data/ssl/certificates/duplicate_cn_2.pem",
2479 "data/ssl/certificates/eku-test-root.pem",
2480 "data/ssl/certificates/empty_subject_cert.der",
2481 "data/ssl/certificates/expired_cert.pem",
2482 "data/ssl/certificates/explicit-policy-chain.pem",
2483 "data/ssl/certificates/foaf.me.chromium-test-cert.der",
Ryan Sleevic646e482018-01-27 18:08:562484 "data/ssl/certificates/gms.hongleong.com.my-verisign-chain.pem",
ckrasic73f7240b2017-01-24 00:06:452485 "data/ssl/certificates/google.binary.p7b",
2486 "data/ssl/certificates/google.chain.pem",
2487 "data/ssl/certificates/google.pem_cert.p7b",
2488 "data/ssl/certificates/google.pem_pkcs7.p7b",
2489 "data/ssl/certificates/google.single.der",
2490 "data/ssl/certificates/google.single.pem",
2491 "data/ssl/certificates/google_diginotar.pem",
2492 "data/ssl/certificates/googlenew.chain.pem",
2493 "data/ssl/certificates/intermediate_ca_cert.pem",
2494 "data/ssl/certificates/invalid_key_usage_cert.der",
David Benjamin03c28a42018-05-11 23:12:072495 "data/ssl/certificates/key_usage_p256_both.pem",
2496 "data/ssl/certificates/key_usage_p256_digitalsignature.pem",
2497 "data/ssl/certificates/key_usage_p256_keyagreement.pem",
2498 "data/ssl/certificates/key_usage_p256_no_extension.pem",
2499 "data/ssl/certificates/key_usage_rsa_both.pem",
2500 "data/ssl/certificates/key_usage_rsa_digitalsignature.pem",
2501 "data/ssl/certificates/key_usage_rsa_keyencipherment.pem",
2502 "data/ssl/certificates/key_usage_rsa_no_extension.pem",
ckrasic73f7240b2017-01-24 00:06:452503 "data/ssl/certificates/large_key.pem",
2504 "data/ssl/certificates/localhost_cert.pem",
Nick Harper4ea22142018-07-24 09:56:162505 "data/ssl/certificates/login.trustwave.com.pem",
ckrasic73f7240b2017-01-24 00:06:452506 "data/ssl/certificates/mit.davidben.der",
2507 "data/ssl/certificates/multi-root-A-by-B.pem",
2508 "data/ssl/certificates/multi-root-B-by-C.pem",
2509 "data/ssl/certificates/multi-root-B-by-F.pem",
2510 "data/ssl/certificates/multi-root-BFE.keychain",
2511 "data/ssl/certificates/multi-root-C-by-D.pem",
2512 "data/ssl/certificates/multi-root-C-by-E.pem",
2513 "data/ssl/certificates/multi-root-D-by-D.pem",
2514 "data/ssl/certificates/multi-root-E-by-E.pem",
2515 "data/ssl/certificates/multi-root-F-by-E.pem",
2516 "data/ssl/certificates/multi-root-chain1.pem",
2517 "data/ssl/certificates/multi-root-chain2.pem",
2518 "data/ssl/certificates/multi-root-crlset-C.raw",
2519 "data/ssl/certificates/multi-root-crlset-CD-and-FE.raw",
2520 "data/ssl/certificates/multi-root-crlset-D-and-E.raw",
2521 "data/ssl/certificates/multi-root-crlset-E.raw",
2522 "data/ssl/certificates/multi-root-crlset-unrelated.raw",
eroman12951312017-05-05 22:55:512523 "data/ssl/certificates/multi-root.keychain",
ckrasic73f7240b2017-01-24 00:06:452524 "data/ssl/certificates/multivalue_rdn.pem",
2525 "data/ssl/certificates/name_constraint_bad.pem",
2526 "data/ssl/certificates/name_constraint_good.pem",
2527 "data/ssl/certificates/ndn.ca.crt",
2528 "data/ssl/certificates/nist.der",
2529 "data/ssl/certificates/no_subject_common_name_cert.pem",
2530 "data/ssl/certificates/non-crit-codeSigning-chain.pem",
2531 "data/ssl/certificates/ocsp-test-root.pem",
2532 "data/ssl/certificates/ok_cert.pem",
2533 "data/ssl/certificates/ok_cert_by_intermediate.pem",
2534 "data/ssl/certificates/post_june_2016.pem",
2535 "data/ssl/certificates/pre_br_validity_bad_121.pem",
2536 "data/ssl/certificates/pre_br_validity_bad_2020.pem",
2537 "data/ssl/certificates/pre_br_validity_ok.pem",
2538 "data/ssl/certificates/pre_june_2016.pem",
2539 "data/ssl/certificates/prime256v1-ecdsa-ee-by-1024-rsa-intermediate.pem",
2540 "data/ssl/certificates/prime256v1-ecdsa-ee-by-2048-rsa-intermediate.pem",
2541 "data/ssl/certificates/prime256v1-ecdsa-ee-by-768-rsa-intermediate.pem",
2542 "data/ssl/certificates/prime256v1-ecdsa-ee-by-prime256v1-ecdsa-intermediate.pem",
2543 "data/ssl/certificates/prime256v1-ecdsa-intermediate.pem",
2544 "data/ssl/certificates/punycodetest.pem",
John Abd-El-Malek1c36bfd2017-12-19 19:21:362545 "data/ssl/certificates/quic-chain.pem",
John Abd-El-Malekec2f0822017-12-20 21:35:112546 "data/ssl/certificates/quic-leaf-cert.key",
2547 "data/ssl/certificates/quic-leaf-cert.key.pkcs8.pem",
2548 "data/ssl/certificates/quic-leaf-cert.key.sct",
John Abd-El-Malek1c36bfd2017-12-19 19:21:362549 "data/ssl/certificates/quic-root.pem",
ckrasic73f7240b2017-01-24 00:06:452550 "data/ssl/certificates/redundant-server-chain.pem",
2551 "data/ssl/certificates/redundant-validated-chain-root.pem",
2552 "data/ssl/certificates/redundant-validated-chain.pem",
2553 "data/ssl/certificates/reject_intranet_hosts.pem",
2554 "data/ssl/certificates/root_ca_cert.pem",
2555 "data/ssl/certificates/salesforce_com_test.pem",
2556 "data/ssl/certificates/self-signed-invalid-name.pem",
2557 "data/ssl/certificates/self-signed-invalid-sig.pem",
2558 "data/ssl/certificates/sha1_2016.pem",
Ryan Sleevic2fcac62017-12-21 16:37:042559 "data/ssl/certificates/sha1_leaf.pem",
ckrasic73f7240b2017-01-24 00:06:452560 "data/ssl/certificates/spdy_pooling.pem",
2561 "data/ssl/certificates/start_after_expiry.pem",
2562 "data/ssl/certificates/subjectAltName_sanity_check.pem",
elawrencec7484f52017-04-05 21:46:422563 "data/ssl/certificates/subjectAltName_www_example_com.pem",
ckrasic73f7240b2017-01-24 00:06:452564 "data/ssl/certificates/thawte.single.pem",
2565 "data/ssl/certificates/tls_feature_extension.pem",
ckrasic73f7240b2017-01-24 00:06:452566 "data/ssl/certificates/unescaped.pem",
2567 "data/ssl/certificates/unittest.key.bin",
2568 "data/ssl/certificates/unittest.originbound.der",
2569 "data/ssl/certificates/unittest.originbound.key.der",
2570 "data/ssl/certificates/unittest.selfsigned.der",
2571 "data/ssl/certificates/verisign_class3_g5_crosssigned-trusted.keychain",
2572 "data/ssl/certificates/verisign_class3_g5_crosssigned.pem",
2573 "data/ssl/certificates/verisign_intermediate_ca_2011.pem",
2574 "data/ssl/certificates/verisign_intermediate_ca_2016.pem",
2575 "data/ssl/certificates/weak_digest_md2_ee.pem",
2576 "data/ssl/certificates/weak_digest_md2_intermediate.pem",
2577 "data/ssl/certificates/weak_digest_md2_root.pem",
2578 "data/ssl/certificates/weak_digest_md4_ee.pem",
2579 "data/ssl/certificates/weak_digest_md4_intermediate.pem",
2580 "data/ssl/certificates/weak_digest_md4_root.pem",
2581 "data/ssl/certificates/weak_digest_md5_ee.pem",
2582 "data/ssl/certificates/weak_digest_md5_intermediate.pem",
2583 "data/ssl/certificates/weak_digest_md5_root.pem",
2584 "data/ssl/certificates/weak_digest_sha1_ee.pem",
2585 "data/ssl/certificates/weak_digest_sha1_intermediate.pem",
2586 "data/ssl/certificates/weak_digest_sha1_root.pem",
2587 "data/ssl/certificates/websocket_cacert.pem",
2588 "data/ssl/certificates/websocket_client_cert.p12",
2589 "data/ssl/certificates/wildcard.pem",
Ryan Sleevi24fe2682018-08-16 21:33:462590 "data/ssl/certificates/www.ahrn.com.pem",
ckrasic73f7240b2017-01-24 00:06:452591 "data/ssl/certificates/x509_verify_results.chain.pem",
2592 ]
sdefresneb0a31642016-03-18 11:04:452593 outputs = [
2594 "{{bundle_resources_dir}}/" +
2595 "{{source_root_relative_dir}}/{{source_file_part}}",
2596 ]
2597}
2598
brettw3871f522016-07-14 22:08:342599static_library("test_support") {
Brett Wilson8f80ad0b2014-09-08 19:50:242600 testonly = true
[email protected]8603c5de2014-04-16 20:34:312601 sources = [
[email protected]8603c5de2014-04-16 20:34:312602 "base/load_timing_info_test_util.cc",
2603 "base/load_timing_info_test_util.h",
2604 "base/mock_file_stream.cc",
2605 "base/mock_file_stream.h",
Helen Lif18af04d2017-10-19 17:26:072606 "base/mock_network_change_notifier.cc",
2607 "base/mock_network_change_notifier.h",
[email protected]8603c5de2014-04-16 20:34:312608 "base/test_completion_callback.cc",
2609 "base/test_completion_callback.h",
[email protected]8603c5de2014-04-16 20:34:312610 "cert/mock_cert_verifier.cc",
2611 "cert/mock_cert_verifier.h",
ryanchung987b2ff2016-02-19 00:17:122612 "cert/mock_client_cert_verifier.cc",
2613 "cert/mock_client_cert_verifier.h",
Victor Costan85874942018-02-28 04:11:442614 "cookies/canonical_cookie_test_helpers.h",
Victor Costan1dcd6752018-03-16 12:31:362615 "cookies/cookie_change_dispatcher_test_helpers.cc",
2616 "cookies/cookie_change_dispatcher_test_helpers.h",
[email protected]8603c5de2014-04-16 20:34:312617 "cookies/cookie_monster_store_test.cc",
2618 "cookies/cookie_monster_store_test.h",
Victor Costanf8cb27d2018-02-21 09:16:232619 "cookies/cookie_store_change_unittest.h",
[email protected]8603c5de2014-04-16 20:34:312620 "cookies/cookie_store_test_callbacks.cc",
2621 "cookies/cookie_store_test_callbacks.h",
2622 "cookies/cookie_store_test_helpers.cc",
2623 "cookies/cookie_store_test_helpers.h",
drogerfd8b2772015-12-04 14:34:562624 "cookies/cookie_store_unittest.h",
[email protected]8603c5de2014-04-16 20:34:312625 "disk_cache/disk_cache_test_base.cc",
2626 "disk_cache/disk_cache_test_base.h",
2627 "disk_cache/disk_cache_test_util.cc",
2628 "disk_cache/disk_cache_test_util.h",
Matt Menke1dd3f2f2017-08-09 17:10:062629 "filter/filter_source_stream_test_util.cc",
2630 "filter/filter_source_stream_test_util.h",
xunjieli6cc8b84b2016-11-08 15:23:392631 "filter/mock_source_stream.cc",
2632 "filter/mock_source_stream.h",
zhongyi3c412982016-06-18 00:34:302633 "http/http_stream_factory_test_util.cc",
2634 "http/http_stream_factory_test_util.h",
[email protected]8a3f8242014-06-05 18:05:122635 "http/http_transaction_test_util.cc",
2636 "http/http_transaction_test_util.h",
Steven Bingler674fb0822018-12-12 18:04:522637 "http/mock_http_cache.cc",
2638 "http/mock_http_cache.h",
Matt Mueller230996f12018-10-22 19:39:442639 "http/transport_security_state_test_util.cc",
2640 "http/transport_security_state_test_util.h",
vishal.b62985ca92015-04-17 08:45:512641 "log/test_net_log.cc",
2642 "log/test_net_log.h",
mmenke43758e62015-05-04 21:09:462643 "log/test_net_log_entry.cc",
2644 "log/test_net_log_entry.h",
mmenke0034c542015-05-05 22:34:592645 "log/test_net_log_util.cc",
mmenke43758e62015-05-04 21:09:462646 "log/test_net_log_util.h",
tbansal785a6ab2016-10-10 20:19:282647 "nqe/network_quality_estimator_test_util.cc",
2648 "nqe/network_quality_estimator_test_util.h",
Lily Houghton582d4622018-01-22 22:43:402649 "proxy_resolution/mock_pac_file_fetcher.cc",
2650 "proxy_resolution/mock_pac_file_fetcher.h",
2651 "proxy_resolution/mock_proxy_resolver.cc",
2652 "proxy_resolution/mock_proxy_resolver.h",
2653 "proxy_resolution/proxy_config_service_common_unittest.cc",
2654 "proxy_resolution/proxy_config_service_common_unittest.h",
[email protected]8603c5de2014-04-16 20:34:312655 "socket/socket_test_util.cc",
2656 "socket/socket_test_util.h",
Bence Béky94658bf2018-05-11 19:22:582657 "spdy/spdy_test_util_common.cc",
2658 "spdy/spdy_test_util_common.h",
mattm436ccfe2017-06-19 20:24:082659 "ssl/client_cert_identity_test_util.cc",
2660 "ssl/client_cert_identity_test_util.h",
2661 "ssl/ssl_private_key_test_util.cc",
2662 "ssl/ssl_private_key_test_util.h",
[email protected]8603c5de2014-04-16 20:34:312663 "test/cert_test_util.cc",
2664 "test/cert_test_util.h",
[email protected]83e1ae32014-07-18 10:57:072665 "test/cert_test_util_nss.cc",
nharper2e171cf2015-06-01 20:29:232666 "test/channel_id_test_util.cc",
2667 "test/channel_id_test_util.h",
[email protected]8603c5de2014-04-16 20:34:312668 "test/ct_test_util.cc",
2669 "test/ct_test_util.h",
John Abd-El-Malekf071beb2018-01-30 18:03:242670 "test/embedded_test_server/controllable_http_response.cc",
2671 "test/embedded_test_server/controllable_http_response.h",
svaldez7d25c562015-10-30 19:09:452672 "test/embedded_test_server/default_handlers.cc",
2673 "test/embedded_test_server/default_handlers.h",
[email protected]8603c5de2014-04-16 20:34:312674 "test/embedded_test_server/embedded_test_server.cc",
2675 "test/embedded_test_server/embedded_test_server.h",
mmenke392ec462017-03-23 18:49:352676 "test/embedded_test_server/embedded_test_server_connection_listener.h",
[email protected]8603c5de2014-04-16 20:34:312677 "test/embedded_test_server/http_connection.cc",
2678 "test/embedded_test_server/http_connection.h",
2679 "test/embedded_test_server/http_request.cc",
2680 "test/embedded_test_server/http_request.h",
2681 "test/embedded_test_server/http_response.cc",
2682 "test/embedded_test_server/http_response.h",
svaldez6e7e82a22015-10-28 19:39:532683 "test/embedded_test_server/request_handler_util.cc",
2684 "test/embedded_test_server/request_handler_util.h",
mmenke93be9ca2017-05-23 16:29:132685 "test/embedded_test_server/simple_connection_listener.cc",
2686 "test/embedded_test_server/simple_connection_listener.h",
sammc6ac3fe52015-02-25 06:00:282687 "test/event_waiter.h",
johnme36ae5802016-05-10 15:46:242688 "test/gtest_util.h",
mattmc1ec9d92017-05-25 01:40:302689 "test/keychain_test_util_mac.cc",
2690 "test/keychain_test_util_mac.h",
[email protected]8603c5de2014-04-16 20:34:312691 "test/net_test_suite.cc",
2692 "test/net_test_suite.h",
Misha Efimov2f3f8ed2018-03-06 13:27:282693 "test/quic_simple_test_server.cc",
2694 "test/quic_simple_test_server.h",
johnme36ae5802016-05-10 15:46:242695 "test/scoped_disable_exit_on_dfatal.cc",
2696 "test/scoped_disable_exit_on_dfatal.h",
Sergey Ulanov7de85802018-01-19 19:50:342697 "test/tcp_socket_proxy.cc",
2698 "test/tcp_socket_proxy.h",
brettw6315e032015-11-27 18:38:362699 "test/test_certificate_data.h",
rsleevia69c79a2016-06-22 03:28:432700 "test/test_data_directory.cc",
2701 "test/test_data_directory.h",
Bence Béky98447b12018-05-08 03:14:012702 "test/test_with_scoped_task_environment.h",
sherouk51b4b098b2015-08-10 09:00:432703 "test/url_request/ssl_certificate_error_job.cc",
2704 "test/url_request/ssl_certificate_error_job.h",
Brett Wilson32ce17a2014-11-10 17:45:302705 "test/url_request/url_request_failed_job.cc",
2706 "test/url_request/url_request_failed_job.h",
xunjieli5d1f9892016-05-18 20:44:342707 "test/url_request/url_request_hanging_read_job.cc",
2708 "test/url_request/url_request_hanging_read_job.h",
mef3e826cf2014-12-13 18:40:402709 "test/url_request/url_request_mock_data_job.cc",
2710 "test/url_request/url_request_mock_data_job.h",
jam8e45cd72015-01-20 16:33:442711 "test/url_request/url_request_slow_download_job.cc",
2712 "test/url_request/url_request_slow_download_job.h",
[email protected]8603c5de2014-04-16 20:34:312713 "url_request/test_url_fetcher_factory.cc",
2714 "url_request/test_url_fetcher_factory.h",
2715 "url_request/url_request_test_util.cc",
2716 "url_request/url_request_test_util.h",
2717 ]
2718
Ryan Sleevic2fcac62017-12-21 16:37:042719 configs += [ "//build/config:precompiled_headers" ]
[email protected]8603c5de2014-04-16 20:34:312720
Brett Wilsone53895272014-09-23 23:41:462721 public_deps = [
[email protected]8603c5de2014-04-16 20:34:312722 "//base",
2723 "//base/test:test_support",
[email protected]22fe91d2014-08-12 17:07:122724 "//crypto",
[email protected]59ff2d42014-04-22 22:25:232725 "//net",
Eric Orth24feb5b2018-05-25 19:42:462726 "//net/dns:test_support",
[email protected]8603c5de2014-04-16 20:34:312727 "//net/tools/tld_cleanup",
Veranika Liaukevich8a686442018-05-29 18:55:122728 "//net/traffic_annotation:test_support",
[email protected]8603c5de2014-04-16 20:34:312729 "//testing/gmock",
2730 "//testing/gtest",
2731 "//url",
2732 ]
2733
Matt Menke1dd3f2f2017-08-09 17:10:062734 deps = [
Misha Efimov2f3f8ed2018-03-06 13:27:282735 ":simple_quic_tools",
Matt Mueller230996f12018-10-22 19:39:442736 "//net/http:transport_security_state_unittest_data_default",
Matt Menke1dd3f2f2017-08-09 17:10:062737 "//third_party/zlib",
2738 ]
sdefresne04f91142016-04-21 08:41:592739
Eric Orth24feb5b2018-05-25 19:42:462740 allow_circular_includes_from = [ "//net/dns:test_support" ]
2741
jbudorick944eb922016-06-20 15:38:302742 data = [
2743 "data/",
2744 ]
2745
Daniel Bratellf4784d12018-10-09 17:54:082746 if (is_mac) {
2747 libs = [ "Security.framework" ]
2748 }
2749
rsesek7d4ab4bc2016-07-22 17:35:132750 if (is_ios) {
2751 deps += [ ":test_support_bundle_data" ]
2752 } else {
jamb533b7e2015-03-04 17:12:052753 public_deps += [ "//third_party/protobuf:py_proto" ]
2754 }
2755
svaldez2135be52016-04-20 16:34:532756 if (use_nss_certs) {
scottmg34fb7e52014-12-03 23:27:242757 public_deps += [ "//crypto:platform" ]
[email protected]8603c5de2014-04-16 20:34:312758 }
2759
Sergey Ulanovec1d3de2017-09-19 19:27:472760 if (!is_ios) {
sherouk3eee4a82015-09-01 10:42:332761 sources += [
Sergey Ulanovec1d3de2017-09-19 19:27:472762 "test/spawned_test_server/base_test_server.cc",
2763 "test/spawned_test_server/base_test_server.h",
2764 "test/spawned_test_server/spawned_test_server.h",
2765 ]
Sergey Ulanov7de85802018-01-19 19:50:342766 }
Sergey Ulanovec1d3de2017-09-19 19:27:472767
Sergey Volk3ee3537f2018-06-12 01:45:482768 public_configs = [ ":net_test_config" ]
2769
Sergey Ulanov7de85802018-01-19 19:50:342770 if (use_remote_test_server) {
2771 sources += [
2772 "test/spawned_test_server/remote_test_server.cc",
2773 "test/spawned_test_server/remote_test_server.h",
2774 "test/spawned_test_server/remote_test_server_config.cc",
2775 "test/spawned_test_server/remote_test_server_config.h",
2776 "test/spawned_test_server/remote_test_server_spawner_request.cc",
2777 "test/spawned_test_server/remote_test_server_spawner_request.h",
2778 ]
2779 } else if (!is_ios) {
2780 sources += [
2781 "test/spawned_test_server/local_test_server.cc",
2782 "test/spawned_test_server/local_test_server.h",
Sergey Ulanov7de85802018-01-19 19:50:342783 ]
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:582784 if (is_win) {
2785 sources += [ "test/spawned_test_server/local_test_server_win.cc" ]
2786 } else if (is_posix || is_fuchsia) {
2787 sources += [ "test/spawned_test_server/local_test_server_posix.cc" ]
2788 }
Sergey Ulanovec1d3de2017-09-19 19:27:472789 }
2790
2791 if (enable_python_utils) {
2792 sources += [
2793 "test/python_utils.cc",
2794 "test/python_utils.h",
[email protected]8603c5de2014-04-16 20:34:312795 ]
2796 }
2797
2798 if (use_v8_in_net) {
Brett Wilsone53895272014-09-23 23:41:462799 public_deps += [ ":net_with_v8" ]
[email protected]8603c5de2014-04-16 20:34:312800 }
2801
davidben15d69d482014-09-29 18:24:082802 if (!use_nss_certs) {
scottmg34fb7e52014-12-03 23:27:242803 sources -= [ "test/cert_test_util_nss.cc" ]
[email protected]83e1ae32014-07-18 10:57:072804 }
xunjielia6888202015-04-14 21:34:252805
2806 if (!disable_file_support) {
2807 sources += [
2808 "test/url_request/url_request_mock_http_job.cc",
2809 "test/url_request/url_request_mock_http_job.h",
2810 "url_request/test_url_request_interceptor.cc",
2811 "url_request/test_url_request_interceptor.h",
2812 ]
2813 }
Eric Orthb812a442018-05-04 20:26:482814
2815 if (enable_reporting) {
2816 sources += [
Douglas Creager3cb042052018-11-06 23:08:522817 "network_error_logging/network_error_logging_test_util.cc",
2818 "network_error_logging/network_error_logging_test_util.h",
Eric Orthb812a442018-05-04 20:26:482819 "reporting/reporting_test_util.cc",
2820 "reporting/reporting_test_util.h",
2821 ]
2822 }
[email protected]8603c5de2014-04-16 20:34:312823}
2824
2825if (use_v8_in_net) {
2826 component("net_with_v8") {
2827 sources = [
Lily Houghton582d4622018-01-22 22:43:402828 "proxy_resolution/proxy_resolver_v8.cc",
2829 "proxy_resolution/proxy_resolver_v8.h",
2830 "proxy_resolution/proxy_resolver_v8_tracing.cc",
2831 "proxy_resolution/proxy_resolver_v8_tracing.h",
2832 "proxy_resolution/proxy_resolver_v8_tracing_wrapper.cc",
2833 "proxy_resolution/proxy_resolver_v8_tracing_wrapper.h",
[email protected]8603c5de2014-04-16 20:34:312834 ]
2835
2836 defines = [ "NET_IMPLEMENTATION" ]
dprankea22b0732015-10-21 21:15:112837
[email protected]8603c5de2014-04-16 20:34:312838 configs += [
[email protected]8603c5de2014-04-16 20:34:312839 "//build/config/compiler:wexit_time_destructors",
dprankea22b0732015-10-21 21:15:112840 "//v8:external_startup_data",
[email protected]8603c5de2014-04-16 20:34:312841 ]
2842
Brett Wilsone53895272014-09-23 23:41:462843 public_deps = [
xunjieli0b7f5b62016-12-06 20:43:482844 ":constants",
[email protected]8603c5de2014-04-16 20:34:312845 ":net",
Brett Wilsone53895272014-09-23 23:41:462846 ]
2847 deps = [
[email protected]8603c5de2014-04-16 20:34:312848 "//base",
2849 "//gin",
2850 "//url",
2851 "//v8",
2852 ]
2853 }
2854}
2855
2856if (!is_ios && !is_android) {
mattm36d89682016-06-08 22:22:402857 executable("cert_verify_tool") {
2858 testonly = true
2859 sources = [
2860 "tools/cert_verify_tool/cert_verify_tool.cc",
2861 "tools/cert_verify_tool/cert_verify_tool_util.cc",
2862 "tools/cert_verify_tool/cert_verify_tool_util.h",
2863 "tools/cert_verify_tool/verify_using_cert_verify_proc.cc",
2864 "tools/cert_verify_tool/verify_using_cert_verify_proc.h",
mattm3c66edc2016-07-13 22:40:422865 "tools/cert_verify_tool/verify_using_path_builder.cc",
2866 "tools/cert_verify_tool/verify_using_path_builder.h",
mattm36d89682016-06-08 22:22:402867 ]
2868
mattm36d89682016-06-08 22:22:402869 deps = [
2870 ":net",
2871 ":test_support",
2872 "//base",
mattm36d89682016-06-08 22:22:402873 "//build/win:default_exe_manifest",
2874 ]
mattm49957fe2017-03-02 01:45:292875
2876 if (is_mac) {
2877 libs = [ "Security.framework" ]
2878 }
mattm36d89682016-06-08 22:22:402879 }
2880
[email protected]8603c5de2014-04-16 20:34:312881 executable("crash_cache") {
Brett Wilson8f80ad0b2014-09-08 19:50:242882 testonly = true
scottmg34fb7e52014-12-03 23:27:242883 sources = [
2884 "tools/crash_cache/crash_cache.cc",
2885 ]
dpranke43276212015-02-20 02:55:192886
[email protected]8603c5de2014-04-16 20:34:312887 deps = [
2888 ":net",
[email protected]b2b2bf52014-05-28 20:26:572889 ":test_support",
[email protected]8603c5de2014-04-16 20:34:312890 "//base",
brucedawsonf9f7d6292016-04-27 19:11:072891 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312892 ]
2893 }
2894
[email protected]8603c5de2014-04-16 20:34:312895 executable("dns_fuzz_stub") {
Brett Wilson8f80ad0b2014-09-08 19:50:242896 testonly = true
scottmg34fb7e52014-12-03 23:27:242897 sources = [
2898 "tools/dns_fuzz_stub/dns_fuzz_stub.cc",
2899 ]
dpranke43276212015-02-20 02:55:192900
[email protected]8603c5de2014-04-16 20:34:312901 deps = [
2902 ":net",
2903 "//base",
brucedawsonf9f7d6292016-04-27 19:11:072904 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312905 ]
2906 }
2907
rockot9c67e5f2015-03-12 20:01:212908 executable("hpack_example_generator") {
2909 testonly = true
2910 sources = [
Victor Vasiliev802b8d02018-10-19 17:48:172911 "spdy/fuzzing/hpack_example_generator.cc",
rockot9c67e5f2015-03-12 20:01:212912 ]
2913
rockot9c67e5f2015-03-12 20:01:212914 deps = [
rockot9c67e5f2015-03-12 20:01:212915 ":net",
Victor Vasiliev802b8d02018-10-19 17:48:172916 ":spdy_test_tools",
brettwba7a73d2015-08-31 22:17:392917 "//base",
brucedawsonf9f7d6292016-04-27 19:11:072918 "//build/win:default_exe_manifest",
rockot9c67e5f2015-03-12 20:01:212919 ]
2920 }
2921
[email protected]8603c5de2014-04-16 20:34:312922 if (use_v8_in_net) {
2923 executable("net_watcher") {
Brett Wilson8f80ad0b2014-09-08 19:50:242924 testonly = true
scottmg34fb7e52014-12-03 23:27:242925 sources = [
2926 "tools/net_watcher/net_watcher.cc",
2927 ]
[email protected]8603c5de2014-04-16 20:34:312928 deps = [
2929 ":net",
2930 ":net_with_v8",
2931 "//base",
brucedawsonf9f7d6292016-04-27 19:11:072932 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312933 ]
[email protected]8603c5de2014-04-16 20:34:312934 }
2935 }
2936
2937 executable("run_testserver") {
Brett Wilson8f80ad0b2014-09-08 19:50:242938 testonly = true
scottmg34fb7e52014-12-03 23:27:242939 sources = [
2940 "tools/testserver/run_testserver.cc",
2941 ]
[email protected]8603c5de2014-04-16 20:34:312942 deps = [
[email protected]b2b2bf52014-05-28 20:26:572943 ":test_support",
[email protected]8603c5de2014-04-16 20:34:312944 "//base",
2945 "//base/test:test_support",
brucedawsonf9f7d6292016-04-27 19:11:072946 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312947 "//testing/gtest",
2948 ]
2949 }
2950
2951 executable("stress_cache") {
Brett Wilson8f80ad0b2014-09-08 19:50:242952 testonly = true
scottmg34fb7e52014-12-03 23:27:242953 sources = [
rvargase23fcf652015-03-04 19:59:222954 "tools/stress_cache/stress_cache.cc",
scottmg34fb7e52014-12-03 23:27:242955 ]
dpranke43276212015-02-20 02:55:192956
[email protected]8603c5de2014-04-16 20:34:312957 deps = [
2958 ":net",
[email protected]b2b2bf52014-05-28 20:26:572959 ":test_support",
[email protected]8603c5de2014-04-16 20:34:312960 "//base",
brucedawsonf9f7d6292016-04-27 19:11:072961 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312962 ]
2963 }
2964
2965 executable("tld_cleanup") {
scottmg34fb7e52014-12-03 23:27:242966 sources = [
2967 "tools/tld_cleanup/tld_cleanup.cc",
2968 ]
dpranke43276212015-02-20 02:55:192969
[email protected]8603c5de2014-04-16 20:34:312970 deps = [
2971 "//base",
2972 "//base:i18n",
brucedawsonf9f7d6292016-04-27 19:11:072973 "//build/win:default_exe_manifest",
[email protected]8603c5de2014-04-16 20:34:312974 "//net/tools/tld_cleanup",
2975 ]
2976 }
2977}
2978
gabadie0774bee2016-05-12 14:02:582979if (is_linux || is_mac) {
gabadie64af64a2016-03-29 16:36:422980 executable("cachetool") {
2981 testonly = true
2982 sources = [
2983 "tools/cachetool/cachetool.cc",
2984 ]
2985 deps = [
2986 ":net",
2987 ":test_support",
2988 "//base",
2989 ]
2990 }
2991
2992 executable("content_decoder_tool") {
2993 testonly = true
2994 sources = [
gabadie64af64a2016-03-29 16:36:422995 "tools/content_decoder_tool/content_decoder_tool.cc",
xunjielibb2d9f202016-11-01 16:37:272996 "tools/content_decoder_tool/content_decoder_tool.h",
2997 "tools/content_decoder_tool/content_decoder_tool_bin.cc",
gabadie64af64a2016-03-29 16:36:422998 ]
2999 deps = [
3000 ":net",
3001 ":test_support",
3002 "//base",
3003 "//url",
3004 ]
3005 }
gabadie0774bee2016-05-12 14:02:583006}
gabadie64af64a2016-03-29 16:36:423007
gabadie0774bee2016-05-12 14:02:583008if (is_linux) {
[email protected]8a3f8242014-06-05 18:05:123009 static_library("epoll_server") {
[email protected]8603c5de2014-04-16 20:34:313010 sources = [
3011 "tools/epoll_server/epoll_server.cc",
3012 "tools/epoll_server/epoll_server.h",
3013 ]
3014 deps = [
3015 ":net",
3016 "//base",
3017 ]
3018 }
3019
rch216445c2015-03-27 00:23:283020 source_set("epoll_quic_tools") {
[email protected]8603c5de2014-04-16 20:34:313021 sources = [
Ryan Hamilton56b10c5d2018-05-11 13:40:163022 "third_party/quic/core/quic_default_packet_writer.cc",
3023 "third_party/quic/core/quic_default_packet_writer.h",
3024 "third_party/quic/core/quic_epoll_alarm_factory.cc",
3025 "third_party/quic/core/quic_epoll_alarm_factory.h",
3026 "third_party/quic/core/quic_epoll_connection_helper.cc",
3027 "third_party/quic/core/quic_epoll_connection_helper.h",
3028 "third_party/quic/core/quic_packet_reader.cc",
3029 "third_party/quic/core/quic_packet_reader.h",
Bin Wu346d1aac02018-11-09 17:45:123030 "third_party/quic/platform/impl/batch_writer/quic_batch_writer_base.cc",
3031 "third_party/quic/platform/impl/batch_writer/quic_batch_writer_base.h",
3032 "third_party/quic/platform/impl/batch_writer/quic_batch_writer_buffer.cc",
3033 "third_party/quic/platform/impl/batch_writer/quic_batch_writer_buffer.h",
3034 "third_party/quic/platform/impl/batch_writer/quic_gso_batch_writer.cc",
3035 "third_party/quic/platform/impl/batch_writer/quic_gso_batch_writer.h",
3036 "third_party/quic/platform/impl/batch_writer/quic_sendmmsg_batch_writer.cc",
3037 "third_party/quic/platform/impl/batch_writer/quic_sendmmsg_batch_writer.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163038 "third_party/quic/platform/impl/quic_epoll_clock.cc",
3039 "third_party/quic/platform/impl/quic_epoll_clock.h",
Bin Wu346d1aac02018-11-09 17:45:123040 "third_party/quic/platform/impl/quic_linux_socket_utils.cc",
3041 "third_party/quic/platform/impl/quic_linux_socket_utils.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163042 "third_party/quic/platform/impl/quic_socket_utils.cc",
3043 "third_party/quic/platform/impl/quic_socket_utils.h",
3044 "third_party/quic/tools/quic_client.cc",
3045 "third_party/quic/tools/quic_client.h",
3046 "third_party/quic/tools/quic_client_epoll_network_helper.cc",
3047 "third_party/quic/tools/quic_client_epoll_network_helper.h",
3048 "third_party/quic/tools/quic_server.cc",
3049 "third_party/quic/tools/quic_server.h",
[email protected]8603c5de2014-04-16 20:34:313050 ]
3051 deps = [
[email protected]8603c5de2014-04-16 20:34:313052 ":epoll_server",
3053 ":net",
tfarina8ac4d17f2015-12-16 02:11:113054 ":simple_quic_tools",
[email protected]8603c5de2014-04-16 20:34:313055 "//base",
3056 "//base/third_party/dynamic_annotations",
3057 "//crypto",
[email protected]edfd0f42014-07-22 18:20:373058 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:313059 "//url",
3060 ]
3061 }
3062
rch216445c2015-03-27 00:23:283063 executable("epoll_quic_client") {
scottmg34fb7e52014-12-03 23:27:243064 sources = [
Ryan Hamilton56b10c5d2018-05-11 13:40:163065 "third_party/quic/tools/quic_client_bin.cc",
scottmg34fb7e52014-12-03 23:27:243066 ]
[email protected]8603c5de2014-04-16 20:34:313067 deps = [
rch216445c2015-03-27 00:23:283068 ":epoll_quic_tools",
agrieved7a71c882015-11-20 19:53:283069 ":epoll_server",
rch216445c2015-03-27 00:23:283070 ":net",
3071 ":simple_quic_tools",
3072 "//base",
3073 "//third_party/boringssl",
3074 ]
3075 }
3076
3077 executable("epoll_quic_server") {
3078 sources = [
Ryan Hamilton56b10c5d2018-05-11 13:40:163079 "third_party/quic/tools/quic_server_bin.cc",
rch216445c2015-03-27 00:23:283080 ]
3081 deps = [
rch216445c2015-03-27 00:23:283082 ":epoll_quic_tools",
agrieved7a71c882015-11-20 19:53:283083 ":epoll_server",
[email protected]8603c5de2014-04-16 20:34:313084 ":net",
rchda78df5a2015-03-22 05:16:373085 ":simple_quic_tools",
[email protected]8603c5de2014-04-16 20:34:313086 "//base",
[email protected]edfd0f42014-07-22 18:20:373087 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:313088 ]
3089 }
[email protected]8603c5de2014-04-16 20:34:313090}
3091
[email protected]ef0eb442014-05-15 09:32:183092if (is_android) {
3093 generate_jni("net_jni_headers") {
3094 sources = [
tbansalc04b7aa2016-07-02 06:54:373095 "android/java/src/org/chromium/net/AndroidCellularSignalStrength.java",
[email protected]ef0eb442014-05-15 09:32:183096 "android/java/src/org/chromium/net/AndroidCertVerifyResult.java",
3097 "android/java/src/org/chromium/net/AndroidKeyStore.java",
3098 "android/java/src/org/chromium/net/AndroidNetworkLibrary.java",
tbansal59a1ddc2015-09-14 17:35:013099 "android/java/src/org/chromium/net/AndroidTrafficStats.java",
[email protected]ef0eb442014-05-15 09:32:183100 "android/java/src/org/chromium/net/GURLUtils.java",
aberentec894a52015-07-09 14:45:533101 "android/java/src/org/chromium/net/HttpNegotiateAuthenticator.java",
Peter E Connf7d277b2018-08-15 16:23:323102 "android/java/src/org/chromium/net/HttpUtil.java",
xunjieli905496a2015-08-31 15:51:173103 "android/java/src/org/chromium/net/NetStringUtil.java",
[email protected]ef0eb442014-05-15 09:32:183104 "android/java/src/org/chromium/net/NetworkChangeNotifier.java",
3105 "android/java/src/org/chromium/net/ProxyChangeListener.java",
3106 "android/java/src/org/chromium/net/X509Util.java",
3107 ]
3108 jni_package = "net"
3109 }
cjhopmandad5f4272014-09-05 01:00:553110 generate_jni("net_test_jni_headers") {
3111 sources = [
3112 "android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java",
mgershd21d6d142016-12-14 23:06:363113 "android/javatests/src/org/chromium/net/AndroidNetworkLibraryTestUtil.java",
pauljensen6815aef2017-05-05 03:00:063114 "android/javatests/src/org/chromium/net/AndroidProxyConfigServiceTestUtil.java",
aberentec894a52015-07-09 14:45:533115 "test/android/javatests/src/org/chromium/net/test/DummySpnegoAuthenticator.java",
jbudorickccffb982015-12-22 01:21:353116 "test/android/javatests/src/org/chromium/net/test/EmbeddedTestServerImpl.java",
cjhopmandad5f4272014-09-05 01:00:553117 ]
brettwcdccaf02015-07-27 16:27:093118 jni_package = "net/test"
cjhopmandad5f4272014-09-05 01:00:553119 }
[email protected]ef0eb442014-05-15 09:32:183120}
[email protected]8603c5de2014-04-16 20:34:313121
3122if (is_android || is_linux) {
3123 executable("disk_cache_memory_test") {
Brett Wilson8f80ad0b2014-09-08 19:50:243124 testonly = true
scottmg34fb7e52014-12-03 23:27:243125 sources = [
3126 "tools/disk_cache_memory_test/disk_cache_memory_test.cc",
3127 ]
[email protected]8603c5de2014-04-16 20:34:313128 deps = [
3129 ":net",
3130 "//base",
3131 ]
3132 }
3133}
[email protected]8a3f8242014-06-05 18:05:123134
Victor Vasiliev802b8d02018-10-19 17:48:173135source_set("spdy_test_tools") {
3136 testonly = true
3137 sources = [
3138 "spdy/fuzzing/hpack_fuzz_util.cc",
3139 "spdy/fuzzing/hpack_fuzz_util.h",
3140 ]
3141 deps = [
3142 ":net",
3143 "//base",
3144 ]
3145}
3146
xunjielicc6b1d02017-06-05 16:51:403147source_set("quic_test_tools") {
3148 testonly = true
3149 sources = [
Ryan Hamiltona3ee93a72018-08-01 22:03:083150 "quic/crypto_test_utils_chromium.cc",
Ryan Hamilton7582d2652018-08-01 22:35:323151 "quic/mock_crypto_client_stream.cc",
3152 "quic/mock_crypto_client_stream.h",
3153 "quic/mock_crypto_client_stream_factory.cc",
3154 "quic/mock_crypto_client_stream_factory.h",
3155 "quic/mock_decrypter.cc",
3156 "quic/mock_decrypter.h",
3157 "quic/mock_encrypter.cc",
3158 "quic/mock_encrypter.h",
3159 "quic/test_task_runner.cc",
3160 "quic/test_task_runner.h",
Zhongyi Shi2be051202019-01-07 22:57:193161 "third_party/quic/core/qpack/offline/qpack_offline_decoder.cc",
3162 "third_party/quic/core/qpack/offline/qpack_offline_decoder.h",
Bence Béky681131512018-12-17 13:29:163163 "third_party/quic/core/qpack/qpack_decoder_test_utils.cc",
3164 "third_party/quic/core/qpack/qpack_decoder_test_utils.h",
3165 "third_party/quic/core/qpack/qpack_encoder_test_utils.cc",
3166 "third_party/quic/core/qpack/qpack_encoder_test_utils.h",
3167 "third_party/quic/core/qpack/qpack_test_utils.cc",
3168 "third_party/quic/core/qpack/qpack_test_utils.h",
Victor Vasiliev3b5cf152018-07-02 18:47:413169 "third_party/quic/core/quic_trace_visitor.cc",
3170 "third_party/quic/core/quic_trace_visitor.h",
Michael Warresabba8b7d2018-07-20 22:50:273171 "third_party/quic/platform/api/quic_expect_bug.h",
Ryan Hamilton1ce45712018-06-27 20:26:263172 "third_party/quic/platform/api/quic_mock_log.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163173 "third_party/quic/platform/api/quic_test.h",
3174 "third_party/quic/platform/api/quic_test_loopback.cc",
3175 "third_party/quic/platform/api/quic_test_loopback.h",
3176 "third_party/quic/platform/api/quic_test_mem_slice_vector.h",
Victor Vasiliev0ac6bd832018-05-19 00:14:443177 "third_party/quic/platform/api/quic_test_output.h",
Michael Warresabba8b7d2018-07-20 22:50:273178 "third_party/quic/platform/impl/quic_expect_bug_impl.h",
Ryan Hamilton1ce45712018-06-27 20:26:263179 "third_party/quic/platform/impl/quic_mock_log_impl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163180 "third_party/quic/platform/impl/quic_test_impl.cc",
3181 "third_party/quic/platform/impl/quic_test_impl.h",
3182 "third_party/quic/platform/impl/quic_test_loopback_impl.cc",
3183 "third_party/quic/platform/impl/quic_test_loopback_impl.h",
3184 "third_party/quic/platform/impl/quic_test_mem_slice_vector_impl.cc",
3185 "third_party/quic/platform/impl/quic_test_mem_slice_vector_impl.h",
Victor Vasiliev0ac6bd832018-05-19 00:14:443186 "third_party/quic/platform/impl/quic_test_output_impl.cc",
3187 "third_party/quic/platform/impl/quic_test_output_impl.h",
Frank Kastenholz929883afb2018-09-07 20:56:373188 "third_party/quic/quartc/counting_packet_filter.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163189 "third_party/quic/test_tools/crypto_test_utils.cc",
3190 "third_party/quic/test_tools/crypto_test_utils.h",
3191 "third_party/quic/test_tools/failing_proof_source.cc",
3192 "third_party/quic/test_tools/failing_proof_source.h",
3193 "third_party/quic/test_tools/fake_proof_source.cc",
3194 "third_party/quic/test_tools/fake_proof_source.h",
3195 "third_party/quic/test_tools/mock_clock.cc",
3196 "third_party/quic/test_tools/mock_clock.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163197 "third_party/quic/test_tools/mock_quic_client_promised_info.cc",
3198 "third_party/quic/test_tools/mock_quic_client_promised_info.h",
3199 "third_party/quic/test_tools/mock_quic_dispatcher.cc",
3200 "third_party/quic/test_tools/mock_quic_dispatcher.h",
3201 "third_party/quic/test_tools/mock_quic_session_visitor.cc",
3202 "third_party/quic/test_tools/mock_quic_session_visitor.h",
3203 "third_party/quic/test_tools/mock_quic_spdy_client_stream.cc",
3204 "third_party/quic/test_tools/mock_quic_spdy_client_stream.h",
3205 "third_party/quic/test_tools/mock_random.cc",
3206 "third_party/quic/test_tools/mock_random.h",
3207 "third_party/quic/test_tools/quic_buffered_packet_store_peer.cc",
3208 "third_party/quic/test_tools/quic_buffered_packet_store_peer.h",
3209 "third_party/quic/test_tools/quic_client_promised_info_peer.cc",
3210 "third_party/quic/test_tools/quic_client_promised_info_peer.h",
3211 "third_party/quic/test_tools/quic_config_peer.cc",
3212 "third_party/quic/test_tools/quic_config_peer.h",
3213 "third_party/quic/test_tools/quic_connection_peer.cc",
3214 "third_party/quic/test_tools/quic_connection_peer.h",
3215 "third_party/quic/test_tools/quic_crypto_server_config_peer.cc",
3216 "third_party/quic/test_tools/quic_crypto_server_config_peer.h",
Ryan Hamilton17ad58772018-07-03 02:21:213217 "third_party/quic/test_tools/quic_dispatcher_peer.cc",
3218 "third_party/quic/test_tools/quic_dispatcher_peer.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163219 "third_party/quic/test_tools/quic_flow_controller_peer.cc",
3220 "third_party/quic/test_tools/quic_flow_controller_peer.h",
3221 "third_party/quic/test_tools/quic_framer_peer.cc",
3222 "third_party/quic/test_tools/quic_framer_peer.h",
3223 "third_party/quic/test_tools/quic_packet_creator_peer.cc",
3224 "third_party/quic/test_tools/quic_packet_creator_peer.h",
3225 "third_party/quic/test_tools/quic_packet_generator_peer.cc",
3226 "third_party/quic/test_tools/quic_packet_generator_peer.h",
3227 "third_party/quic/test_tools/quic_sent_packet_manager_peer.cc",
3228 "third_party/quic/test_tools/quic_sent_packet_manager_peer.h",
Ryan Hamiltonb3a34a32018-07-24 20:46:553229 "third_party/quic/test_tools/quic_server_session_base_peer.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163230 "third_party/quic/test_tools/quic_session_peer.cc",
3231 "third_party/quic/test_tools/quic_session_peer.h",
3232 "third_party/quic/test_tools/quic_spdy_session_peer.cc",
3233 "third_party/quic/test_tools/quic_spdy_session_peer.h",
Frank Kastenholz878763bf2018-11-28 19:14:483234 "third_party/quic/test_tools/quic_stream_id_manager_peer.cc",
3235 "third_party/quic/test_tools/quic_stream_id_manager_peer.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163236 "third_party/quic/test_tools/quic_stream_peer.cc",
3237 "third_party/quic/test_tools/quic_stream_peer.h",
3238 "third_party/quic/test_tools/quic_stream_send_buffer_peer.cc",
3239 "third_party/quic/test_tools/quic_stream_send_buffer_peer.h",
3240 "third_party/quic/test_tools/quic_stream_sequencer_buffer_peer.cc",
3241 "third_party/quic/test_tools/quic_stream_sequencer_buffer_peer.h",
3242 "third_party/quic/test_tools/quic_stream_sequencer_peer.cc",
3243 "third_party/quic/test_tools/quic_stream_sequencer_peer.h",
3244 "third_party/quic/test_tools/quic_sustained_bandwidth_recorder_peer.cc",
3245 "third_party/quic/test_tools/quic_sustained_bandwidth_recorder_peer.h",
3246 "third_party/quic/test_tools/quic_test_utils.cc",
3247 "third_party/quic/test_tools/quic_test_utils.h",
3248 "third_party/quic/test_tools/quic_time_wait_list_manager_peer.cc",
3249 "third_party/quic/test_tools/quic_time_wait_list_manager_peer.h",
3250 "third_party/quic/test_tools/rtt_stats_peer.cc",
3251 "third_party/quic/test_tools/rtt_stats_peer.h",
3252 "third_party/quic/test_tools/simple_data_producer.cc",
3253 "third_party/quic/test_tools/simple_data_producer.h",
3254 "third_party/quic/test_tools/simple_quic_framer.cc",
3255 "third_party/quic/test_tools/simple_quic_framer.h",
3256 "third_party/quic/test_tools/simple_session_notifier.cc",
3257 "third_party/quic/test_tools/simple_session_notifier.h",
3258 "third_party/quic/test_tools/simulator/actor.cc",
3259 "third_party/quic/test_tools/simulator/actor.h",
3260 "third_party/quic/test_tools/simulator/alarm_factory.cc",
3261 "third_party/quic/test_tools/simulator/alarm_factory.h",
3262 "third_party/quic/test_tools/simulator/link.cc",
3263 "third_party/quic/test_tools/simulator/link.h",
3264 "third_party/quic/test_tools/simulator/packet_filter.cc",
3265 "third_party/quic/test_tools/simulator/packet_filter.h",
3266 "third_party/quic/test_tools/simulator/port.cc",
3267 "third_party/quic/test_tools/simulator/port.h",
3268 "third_party/quic/test_tools/simulator/queue.cc",
3269 "third_party/quic/test_tools/simulator/queue.h",
3270 "third_party/quic/test_tools/simulator/quic_endpoint.cc",
3271 "third_party/quic/test_tools/simulator/quic_endpoint.h",
3272 "third_party/quic/test_tools/simulator/simulator.cc",
3273 "third_party/quic/test_tools/simulator/simulator.h",
3274 "third_party/quic/test_tools/simulator/switch.cc",
3275 "third_party/quic/test_tools/simulator/switch.h",
3276 "third_party/quic/test_tools/simulator/traffic_policer.cc",
3277 "third_party/quic/test_tools/simulator/traffic_policer.h",
Ian Swett0c234192018-08-06 18:59:523278 "third_party/quic/tools/quic_tcp_like_trace_converter.cc",
3279 "third_party/quic/tools/quic_tcp_like_trace_converter.h",
3280 "third_party/quic/tools/quic_tcp_like_trace_converter_test.cc",
xunjielicc6b1d02017-06-05 16:51:403281 ]
3282 deps = [
3283 ":net",
3284 ":simple_quic_tools",
3285 ":test_support",
3286 "//base",
3287 "//crypto:test_support",
3288 "//testing/gmock",
3289 "//testing/gtest",
3290 "//third_party/boringssl",
3291 "//third_party/protobuf:protobuf_lite",
Victor Vasiliev3b5cf152018-07-02 18:47:413292 "//third_party/quic_trace:quic_trace_proto",
xunjielicc6b1d02017-06-05 16:51:403293 ]
3294
3295 if (is_linux) {
3296 sources += [
Ryan Hamilton56b10c5d2018-05-11 13:40:163297 "third_party/quic/test_tools/bad_packet_writer.cc",
3298 "third_party/quic/test_tools/bad_packet_writer.h",
Ian Swett0c234192018-08-06 18:59:523299 "third_party/quic/test_tools/fake_epoll_server.cc",
3300 "third_party/quic/test_tools/fake_epoll_server.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163301 "third_party/quic/test_tools/limited_mtu_test_writer.cc",
3302 "third_party/quic/test_tools/limited_mtu_test_writer.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163303 "third_party/quic/test_tools/packet_dropping_test_writer.cc",
3304 "third_party/quic/test_tools/packet_dropping_test_writer.h",
3305 "third_party/quic/test_tools/packet_reordering_writer.cc",
3306 "third_party/quic/test_tools/packet_reordering_writer.h",
3307 "third_party/quic/test_tools/quic_client_peer.cc",
3308 "third_party/quic/test_tools/quic_client_peer.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163309 "third_party/quic/test_tools/quic_server_peer.cc",
3310 "third_party/quic/test_tools/quic_server_peer.h",
3311 "third_party/quic/test_tools/quic_test_client.cc",
3312 "third_party/quic/test_tools/quic_test_client.h",
3313 "third_party/quic/test_tools/quic_test_server.cc",
3314 "third_party/quic/test_tools/quic_test_server.h",
3315 "third_party/quic/test_tools/server_thread.cc",
3316 "third_party/quic/test_tools/server_thread.h",
xunjielicc6b1d02017-06-05 16:51:403317 ]
3318 deps += [
3319 ":epoll_quic_tools",
3320 ":epoll_server",
3321 ]
3322 }
3323}
3324
rch47ad01f2015-03-20 21:17:233325source_set("simple_quic_tools") {
rcha9d12ce12015-03-19 23:06:493326 sources = [
Ryan Hamilton56b10c5d2018-05-11 13:40:163327 "third_party/quic/core/chlo_extractor.cc",
3328 "third_party/quic/core/chlo_extractor.h",
Victor Vasilievc5b409c22018-07-24 12:23:463329 "third_party/quic/core/http/quic_spdy_client_session.cc",
3330 "third_party/quic/core/http/quic_spdy_client_session.h",
3331 "third_party/quic/core/http/quic_spdy_client_stream.cc",
3332 "third_party/quic/core/http/quic_spdy_client_stream.h",
3333 "third_party/quic/core/http/quic_spdy_server_stream_base.cc",
3334 "third_party/quic/core/http/quic_spdy_server_stream_base.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163335 "third_party/quic/core/quic_dispatcher.cc",
3336 "third_party/quic/core/quic_dispatcher.h",
Ryan Hamilton17ad58772018-07-03 02:21:213337 "third_party/quic/core/quic_packet_writer_wrapper.cc",
3338 "third_party/quic/core/quic_packet_writer_wrapper.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163339 "third_party/quic/core/quic_process_packet_interface.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163340 "third_party/quic/core/quic_time_wait_list_manager.cc",
3341 "third_party/quic/core/quic_time_wait_list_manager.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163342 "third_party/quic/core/stateless_rejector.cc",
3343 "third_party/quic/core/stateless_rejector.h",
Rajesh Mahindrae6c0da12018-05-17 21:02:543344 "third_party/quic/tools/quic_backend_response.cc",
3345 "third_party/quic/tools/quic_backend_response.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163346 "third_party/quic/tools/quic_client_base.cc",
3347 "third_party/quic/tools/quic_client_base.h",
Rajesh Mahindrae6c0da12018-05-17 21:02:543348 "third_party/quic/tools/quic_memory_cache_backend.cc",
3349 "third_party/quic/tools/quic_memory_cache_backend.h",
Victor Vasiliev71846d62018-05-17 18:06:193350 "third_party/quic/tools/quic_simple_client_session.cc",
3351 "third_party/quic/tools/quic_simple_client_session.h",
3352 "third_party/quic/tools/quic_simple_client_stream.cc",
3353 "third_party/quic/tools/quic_simple_client_stream.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:163354 "third_party/quic/tools/quic_simple_crypto_server_stream_helper.cc",
3355 "third_party/quic/tools/quic_simple_crypto_server_stream_helper.h",
3356 "third_party/quic/tools/quic_simple_dispatcher.cc",
3357 "third_party/quic/tools/quic_simple_dispatcher.h",
3358 "third_party/quic/tools/quic_simple_server_session.cc",
3359 "third_party/quic/tools/quic_simple_server_session.h",
3360 "third_party/quic/tools/quic_simple_server_stream.cc",
3361 "third_party/quic/tools/quic_simple_server_stream.h",
3362 "third_party/quic/tools/quic_spdy_client_base.cc",
3363 "third_party/quic/tools/quic_spdy_client_base.h",
Ian Swettb08ee8f2018-10-16 19:37:573364 "third_party/quic/tools/quic_url.cc",
3365 "third_party/quic/tools/quic_url.h",
Ryan Hamiltonc4402302017-08-10 01:55:463366 "tools/quic/quic_client_message_loop_network_helper.cc",
3367 "tools/quic/quic_client_message_loop_network_helper.h",
Rajesh Mahindra43802172018-07-24 20:00:143368 "tools/quic/quic_http_proxy_backend.cc",
3369 "tools/quic/quic_http_proxy_backend.h",
3370 "tools/quic/quic_http_proxy_backend_stream.cc",
3371 "tools/quic/quic_http_proxy_backend_stream.h",
rcha9d12ce12015-03-19 23:06:493372 "tools/quic/quic_simple_client.cc",
3373 "tools/quic/quic_simple_client.h",
rch216445c2015-03-27 00:23:283374 "tools/quic/quic_simple_per_connection_packet_writer.cc",
3375 "tools/quic/quic_simple_per_connection_packet_writer.h",
3376 "tools/quic/quic_simple_server.cc",
3377 "tools/quic/quic_simple_server.h",
3378 "tools/quic/quic_simple_server_packet_writer.cc",
3379 "tools/quic/quic_simple_server_packet_writer.h",
mpwb5c8da92016-06-05 20:07:313380 "tools/quic/quic_simple_server_session_helper.cc",
3381 "tools/quic/quic_simple_server_session_helper.h",
rchda78df5a2015-03-22 05:16:373382 "tools/quic/synchronous_host_resolver.cc",
3383 "tools/quic/synchronous_host_resolver.h",
rcha9d12ce12015-03-19 23:06:493384 ]
3385 deps = [
3386 ":net",
3387 "//base",
rch47ad01f2015-03-20 21:17:233388 "//base/third_party/dynamic_annotations",
Victor Vasiliev44700b6e2018-05-06 23:23:223389 "//third_party/protobuf:protobuf_lite",
rch47ad01f2015-03-20 21:17:233390 "//url",
3391 ]
3392}
3393
sherouk51b4b098b2015-08-10 09:00:433394if (!is_ios) {
3395 executable("quic_client") {
3396 sources = [
3397 "tools/quic/quic_simple_client_bin.cc",
3398 ]
3399 deps = [
3400 ":net",
3401 ":simple_quic_tools",
3402 "//base",
brucedawsonf9f7d6292016-04-27 19:11:073403 "//build/win:default_exe_manifest",
sherouk51b4b098b2015-08-10 09:00:433404 "//url",
3405 ]
3406 }
3407 executable("quic_server") {
3408 sources = [
3409 "tools/quic/quic_simple_server_bin.cc",
3410 ]
3411 deps = [
3412 ":net",
3413 ":simple_quic_tools",
3414 "//base",
brucedawsonf9f7d6292016-04-27 19:11:073415 "//build/win:default_exe_manifest",
sherouk51b4b098b2015-08-10 09:00:433416 "//third_party/boringssl",
3417 "//third_party/protobuf:protobuf_lite",
3418 ]
3419 }
rchf80f62d12016-05-11 00:47:313420 executable("quic_packet_printer") {
3421 sources = [
Ryan Hamilton56b10c5d2018-05-11 13:40:163422 "third_party/quic/tools/quic_packet_printer_bin.cc",
rchf80f62d12016-05-11 00:47:313423 ]
3424 deps = [
3425 ":net",
3426 ":simple_quic_tools",
3427 "//base",
rchf80f62d12016-05-11 00:47:313428 "//build/win:default_exe_manifest",
3429 "//third_party/boringssl",
3430 "//third_party/protobuf:protobuf_lite",
3431 ]
3432 }
mpwbbea85d2016-08-27 14:39:213433 executable("quic_reject_reason_decoder") {
3434 sources = [
Ryan Hamilton56b10c5d2018-05-11 13:40:163435 "third_party/quic/tools/quic_reject_reason_decoder_bin.cc",
mpwbbea85d2016-08-27 14:39:213436 ]
3437 deps = [
3438 ":net",
3439 ":simple_quic_tools",
3440 "//base",
mpwbbea85d2016-08-27 14:39:213441 "//build/win:default_exe_manifest",
3442 "//third_party/boringssl",
3443 "//third_party/protobuf:protobuf_lite",
3444 ]
3445 }
Zhongyi Shi2be051202019-01-07 22:57:193446
3447 executable("qpack_offline_decoder") {
3448 testonly = true
3449 sources = [
3450 "third_party/quic/core/qpack/offline/qpack_offline_decoder_bin.cc",
3451 ]
3452 deps = [
3453 ":net",
3454 ":quic_test_tools",
3455 ":simple_quic_tools",
3456 "//base",
3457 "//testing/gmock",
3458 ]
3459 }
3460
danzh1401f0a2016-05-19 13:41:103461 executable("crypto_message_printer") {
3462 sources = [
3463 "tools/quic/crypto_message_printer_bin.cc",
3464 ]
3465 deps = [
3466 ":net",
3467 "//base",
danzh1401f0a2016-05-19 13:41:103468 "//build/win:default_exe_manifest",
3469 ]
3470 }
rch216445c2015-03-27 00:23:283471}
3472
eromand5207a92017-05-05 17:49:363473# This section can be updated from globbing rules using:
3474# python ./tools/update_ios_bundle_data.py
sdefresneb0a31642016-03-18 11:04:453475bundle_data("net_unittests_bundle_data") {
3476 testonly = true
ckrasic73f7240b2017-01-24 00:06:453477 sources = [
3478 "data/cert_issuer_source_aia_unittest/i.pem",
3479 "data/cert_issuer_source_aia_unittest/i2.pem",
3480 "data/cert_issuer_source_aia_unittest/i3.pem",
eromand5207a92017-05-05 17:49:363481 "data/cert_issuer_source_aia_unittest/root.pem",
ckrasic73f7240b2017-01-24 00:06:453482 "data/cert_issuer_source_aia_unittest/target_file_aia.pem",
3483 "data/cert_issuer_source_aia_unittest/target_file_and_http_aia.pem",
3484 "data/cert_issuer_source_aia_unittest/target_invalid_and_http_aia.pem",
3485 "data/cert_issuer_source_aia_unittest/target_invalid_url_aia.pem",
3486 "data/cert_issuer_source_aia_unittest/target_no_aia.pem",
3487 "data/cert_issuer_source_aia_unittest/target_one_aia.pem",
3488 "data/cert_issuer_source_aia_unittest/target_six_aia.pem",
3489 "data/cert_issuer_source_aia_unittest/target_three_aia.pem",
3490 "data/cert_issuer_source_aia_unittest/target_two_aia.pem",
3491 "data/cert_issuer_source_static_unittest/c1.pem",
3492 "data/cert_issuer_source_static_unittest/c2.pem",
3493 "data/cert_issuer_source_static_unittest/d.pem",
3494 "data/cert_issuer_source_static_unittest/e1.pem",
3495 "data/cert_issuer_source_static_unittest/e2.pem",
3496 "data/cert_issuer_source_static_unittest/i1_1.pem",
3497 "data/cert_issuer_source_static_unittest/i1_2.pem",
3498 "data/cert_issuer_source_static_unittest/i2.pem",
3499 "data/cert_issuer_source_static_unittest/i3_1.pem",
3500 "data/cert_issuer_source_static_unittest/i3_2.pem",
3501 "data/cert_issuer_source_static_unittest/root.pem",
3502 "data/certificate_policies_unittest/anypolicy.pem",
3503 "data/certificate_policies_unittest/anypolicy_with_qualifier.pem",
3504 "data/certificate_policies_unittest/invalid-anypolicy_with_custom_qualifier.pem",
3505 "data/certificate_policies_unittest/invalid-empty.pem",
3506 "data/certificate_policies_unittest/invalid-policy_1_2_3_dupe.pem",
3507 "data/certificate_policies_unittest/invalid-policy_1_2_3_policyinformation_unconsumed_data.pem",
3508 "data/certificate_policies_unittest/invalid-policy_1_2_3_policyqualifierinfo_unconsumed_data.pem",
3509 "data/certificate_policies_unittest/invalid-policy_1_2_3_with_empty_qualifiers_sequence.pem",
3510 "data/certificate_policies_unittest/invalid-policy_identifier_not_oid.pem",
3511 "data/certificate_policies_unittest/policy_1_2_3.pem",
3512 "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4.pem",
3513 "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4_with_qualifiers.pem",
3514 "data/certificate_policies_unittest/policy_1_2_3_with_custom_qualifier.pem",
3515 "data/certificate_policies_unittest/policy_1_2_3_with_qualifier.pem",
jam29f1aed42017-06-06 21:37:433516 "data/embedded_test_server/mock-headers-without-crlf.html",
3517 "data/embedded_test_server/mock-headers-without-crlf.html.mock-http-headers",
ckrasic73f7240b2017-01-24 00:06:453518 "data/filter_unittests/google.br",
3519 "data/filter_unittests/google.txt",
3520 "data/name_constraints_unittest/directoryname-excludeall.pem",
3521 "data/name_constraints_unittest/directoryname-excluded.pem",
3522 "data/name_constraints_unittest/directoryname.pem",
3523 "data/name_constraints_unittest/directoryname_and_dnsname.pem",
3524 "data/name_constraints_unittest/directoryname_and_dnsname_and_ipaddress.pem",
3525 "data/name_constraints_unittest/dnsname-exclude_dot.pem",
3526 "data/name_constraints_unittest/dnsname-excludeall.pem",
3527 "data/name_constraints_unittest/dnsname-excluded.pem",
3528 "data/name_constraints_unittest/dnsname-excluded_with_leading_dot.pem",
3529 "data/name_constraints_unittest/dnsname-permitted_two_dot.pem",
3530 "data/name_constraints_unittest/dnsname-permitted_with_leading_dot.pem",
3531 "data/name_constraints_unittest/dnsname-with_max.pem",
3532 "data/name_constraints_unittest/dnsname-with_min_0.pem",
3533 "data/name_constraints_unittest/dnsname-with_min_0_and_max.pem",
3534 "data/name_constraints_unittest/dnsname-with_min_1.pem",
3535 "data/name_constraints_unittest/dnsname-with_min_1_and_max.pem",
3536 "data/name_constraints_unittest/dnsname.pem",
3537 "data/name_constraints_unittest/dnsname2.pem",
3538 "data/name_constraints_unittest/edipartyname-excluded.pem",
3539 "data/name_constraints_unittest/edipartyname-permitted.pem",
3540 "data/name_constraints_unittest/invalid-empty_excluded_subtree.pem",
3541 "data/name_constraints_unittest/invalid-empty_permitted_subtree.pem",
3542 "data/name_constraints_unittest/invalid-no_subtrees.pem",
3543 "data/name_constraints_unittest/ipaddress-excludeall.pem",
3544 "data/name_constraints_unittest/ipaddress-excluded.pem",
3545 "data/name_constraints_unittest/ipaddress-invalid_addr.pem",
3546 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_1.pem",
3547 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_2.pem",
3548 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_3.pem",
3549 "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_4.pem",
3550 "data/name_constraints_unittest/ipaddress-permit_all.pem",
3551 "data/name_constraints_unittest/ipaddress-permit_prefix1.pem",
3552 "data/name_constraints_unittest/ipaddress-permit_prefix31.pem",
3553 "data/name_constraints_unittest/ipaddress-permit_singlehost.pem",
3554 "data/name_constraints_unittest/ipaddress.pem",
3555 "data/name_constraints_unittest/name-ca.pem",
3556 "data/name_constraints_unittest/name-de.pem",
3557 "data/name_constraints_unittest/name-empty.pem",
3558 "data/name_constraints_unittest/name-jp-tokyo.pem",
3559 "data/name_constraints_unittest/name-jp.pem",
3560 "data/name_constraints_unittest/name-us-arizona-1.1.1.1.pem",
3561 "data/name_constraints_unittest/name-us-arizona-192.168.1.1.pem",
3562 "data/name_constraints_unittest/name-us-arizona-email.pem",
3563 "data/name_constraints_unittest/name-us-arizona-foo.com.pem",
3564 "data/name_constraints_unittest/name-us-arizona-ipv6.pem",
3565 "data/name_constraints_unittest/name-us-arizona-permitted.example.com.pem",
3566 "data/name_constraints_unittest/name-us-arizona.pem",
3567 "data/name_constraints_unittest/name-us-california-192.168.1.1.pem",
3568 "data/name_constraints_unittest/name-us-california-mountain_view.pem",
3569 "data/name_constraints_unittest/name-us-california-permitted.example.com.pem",
3570 "data/name_constraints_unittest/name-us-california.pem",
3571 "data/name_constraints_unittest/name-us.pem",
3572 "data/name_constraints_unittest/othername-excluded.pem",
3573 "data/name_constraints_unittest/othername-permitted.pem",
3574 "data/name_constraints_unittest/registeredid-excluded.pem",
3575 "data/name_constraints_unittest/registeredid-permitted.pem",
3576 "data/name_constraints_unittest/rfc822name-excluded.pem",
3577 "data/name_constraints_unittest/rfc822name-permitted.pem",
Matt Mueller766bedc92017-09-14 23:30:413578 "data/name_constraints_unittest/san-directoryname.pem",
3579 "data/name_constraints_unittest/san-dnsname.pem",
ckrasic73f7240b2017-01-24 00:06:453580 "data/name_constraints_unittest/san-edipartyname.pem",
3581 "data/name_constraints_unittest/san-excluded-directoryname.pem",
3582 "data/name_constraints_unittest/san-excluded-dnsname.pem",
3583 "data/name_constraints_unittest/san-excluded-ipaddress.pem",
3584 "data/name_constraints_unittest/san-invalid-empty.pem",
3585 "data/name_constraints_unittest/san-invalid-ipaddress.pem",
Matt Mueller766bedc92017-09-14 23:30:413586 "data/name_constraints_unittest/san-ipaddress4.pem",
3587 "data/name_constraints_unittest/san-ipaddress6.pem",
ckrasic73f7240b2017-01-24 00:06:453588 "data/name_constraints_unittest/san-othername.pem",
3589 "data/name_constraints_unittest/san-permitted.pem",
3590 "data/name_constraints_unittest/san-registeredid.pem",
3591 "data/name_constraints_unittest/san-rfc822name.pem",
3592 "data/name_constraints_unittest/san-uri.pem",
3593 "data/name_constraints_unittest/san-x400address.pem",
3594 "data/name_constraints_unittest/uri-excluded.pem",
3595 "data/name_constraints_unittest/uri-permitted.pem",
3596 "data/name_constraints_unittest/x400address-excluded.pem",
3597 "data/name_constraints_unittest/x400address-permitted.pem",
Eric Romana2f6f55d2017-09-07 23:34:573598 "data/ocsp_unittest/bad_ocsp_type.pem",
3599 "data/ocsp_unittest/bad_signature.pem",
3600 "data/ocsp_unittest/bad_status.pem",
3601 "data/ocsp_unittest/good_response.pem",
3602 "data/ocsp_unittest/good_response_next_update.pem",
Steven Valdez060eac42017-09-21 22:31:573603 "data/ocsp_unittest/good_response_sha256.pem",
Eric Romana2f6f55d2017-09-07 23:34:573604 "data/ocsp_unittest/has_extension.pem",
3605 "data/ocsp_unittest/has_single_extension.pem",
3606 "data/ocsp_unittest/has_version.pem",
Eric Romanff242622017-09-25 21:49:443607 "data/ocsp_unittest/malformed_request.pem",
Eric Romana2f6f55d2017-09-07 23:34:573608 "data/ocsp_unittest/missing_response.pem",
3609 "data/ocsp_unittest/multiple_response.pem",
3610 "data/ocsp_unittest/no_response.pem",
3611 "data/ocsp_unittest/ocsp_extra_certs.pem",
3612 "data/ocsp_unittest/ocsp_sign_bad_indirect.pem",
3613 "data/ocsp_unittest/ocsp_sign_direct.pem",
3614 "data/ocsp_unittest/ocsp_sign_indirect.pem",
3615 "data/ocsp_unittest/ocsp_sign_indirect_missing.pem",
3616 "data/ocsp_unittest/other_response.pem",
3617 "data/ocsp_unittest/responder_id.pem",
3618 "data/ocsp_unittest/responder_name.pem",
3619 "data/ocsp_unittest/revoke_response.pem",
3620 "data/ocsp_unittest/revoke_response_reason.pem",
3621 "data/ocsp_unittest/unknown_response.pem",
Ryan Sleevi3dabe0b2018-04-05 03:59:013622 "data/ov_name_constraints/int-bmp-o1.pem",
3623 "data/ov_name_constraints/int-cn.pem",
3624 "data/ov_name_constraints/int-o1-o2.pem",
3625 "data/ov_name_constraints/int-o1-plus-o2.pem",
3626 "data/ov_name_constraints/int-o2-o1.pem",
3627 "data/ov_name_constraints/int-o3.pem",
3628 "data/ov_name_constraints/leaf-no-o.pem",
3629 "data/ov_name_constraints/leaf-o1-o2.pem",
3630 "data/ov_name_constraints/leaf-o1.pem",
3631 "data/ov_name_constraints/nc-int-exclude-o1.pem",
3632 "data/ov_name_constraints/nc-int-permit-bmp-o1.pem",
3633 "data/ov_name_constraints/nc-int-permit-cn.pem",
3634 "data/ov_name_constraints/nc-int-permit-dns.pem",
3635 "data/ov_name_constraints/nc-int-permit-o1.pem",
3636 "data/ov_name_constraints/nc-int-permit-o2-o1-o3.pem",
3637 "data/ov_name_constraints/root.pem",
Eric Roman7b45a272017-08-02 03:21:443638 "data/parse_certificate_unittest/bad_key_usage.pem",
3639 "data/parse_certificate_unittest/bad_policy_qualifiers.pem",
3640 "data/parse_certificate_unittest/bad_signature_algorithm_oid.pem",
3641 "data/parse_certificate_unittest/bad_validity.pem",
ckrasic73f7240b2017-01-24 00:06:453642 "data/parse_certificate_unittest/basic_constraints_ca_false.pem",
3643 "data/parse_certificate_unittest/basic_constraints_ca_no_path.pem",
3644 "data/parse_certificate_unittest/basic_constraints_ca_path_9.pem",
3645 "data/parse_certificate_unittest/basic_constraints_negative_path.pem",
3646 "data/parse_certificate_unittest/basic_constraints_not_ca.pem",
3647 "data/parse_certificate_unittest/basic_constraints_path_too_large.pem",
3648 "data/parse_certificate_unittest/basic_constraints_pathlen_255.pem",
3649 "data/parse_certificate_unittest/basic_constraints_pathlen_256.pem",
3650 "data/parse_certificate_unittest/basic_constraints_pathlen_not_ca.pem",
3651 "data/parse_certificate_unittest/basic_constraints_unconsumed_data.pem",
3652 "data/parse_certificate_unittest/cert_algorithm_not_sequence.pem",
3653 "data/parse_certificate_unittest/cert_data_after_signature.pem",
3654 "data/parse_certificate_unittest/cert_empty_sequence.pem",
3655 "data/parse_certificate_unittest/cert_missing_signature.pem",
3656 "data/parse_certificate_unittest/cert_not_sequence.pem",
3657 "data/parse_certificate_unittest/cert_signature_not_bit_string.pem",
3658 "data/parse_certificate_unittest/cert_skeleton.pem",
3659 "data/parse_certificate_unittest/cert_version3.pem",
Eric Romandb460e92017-08-01 17:17:343660 "data/parse_certificate_unittest/crldp_1uri_noissuer.pem",
3661 "data/parse_certificate_unittest/crldp_3uri_noissuer.pem",
3662 "data/parse_certificate_unittest/crldp_full_name_as_dirname.pem",
3663 "data/parse_certificate_unittest/crldp_issuer_as_dirname.pem",
ckrasic73f7240b2017-01-24 00:06:453664 "data/parse_certificate_unittest/extended_key_usage.pem",
3665 "data/parse_certificate_unittest/extension_critical.pem",
3666 "data/parse_certificate_unittest/extension_critical_0.pem",
3667 "data/parse_certificate_unittest/extension_critical_3.pem",
3668 "data/parse_certificate_unittest/extension_not_critical.pem",
3669 "data/parse_certificate_unittest/extensions_data_after_sequence.pem",
3670 "data/parse_certificate_unittest/extensions_duplicate_key_usage.pem",
3671 "data/parse_certificate_unittest/extensions_empty_sequence.pem",
3672 "data/parse_certificate_unittest/extensions_not_sequence.pem",
3673 "data/parse_certificate_unittest/extensions_real.pem",
Eric Roman7b45a272017-08-02 03:21:443674 "data/parse_certificate_unittest/failed_signature_algorithm.pem",
eromand312c062017-05-19 03:06:293675 "data/parse_certificate_unittest/inhibit_any_policy.pem",
Eric Roman7b45a272017-08-02 03:21:443676 "data/parse_certificate_unittest/issuer_bad_printable_string.pem",
ckrasic73f7240b2017-01-24 00:06:453677 "data/parse_certificate_unittest/key_usage.pem",
Eric Roman7b45a272017-08-02 03:21:443678 "data/parse_certificate_unittest/name_constraints_bad_ip.pem",
ckrasic73f7240b2017-01-24 00:06:453679 "data/parse_certificate_unittest/policies.pem",
eroman25ead1bcf82017-05-13 06:44:583680 "data/parse_certificate_unittest/policy_constraints_empty.pem",
3681 "data/parse_certificate_unittest/policy_constraints_inhibit.pem",
3682 "data/parse_certificate_unittest/policy_constraints_inhibit_require.pem",
3683 "data/parse_certificate_unittest/policy_constraints_require.pem",
Eric Roman7b45a272017-08-02 03:21:443684 "data/parse_certificate_unittest/policy_qualifiers_empty_sequence.pem",
mattm312644de2017-05-16 08:13:183685 "data/parse_certificate_unittest/serial_37_bytes.pem",
3686 "data/parse_certificate_unittest/serial_negative.pem",
Eric Roman5d1934622017-08-03 03:57:093687 "data/parse_certificate_unittest/serial_not_minimal.pem",
3688 "data/parse_certificate_unittest/serial_not_number.pem",
3689 "data/parse_certificate_unittest/serial_zero.pem",
mattm312644de2017-05-16 08:13:183690 "data/parse_certificate_unittest/serial_zero_padded.pem",
3691 "data/parse_certificate_unittest/serial_zero_padded_21_bytes.pem",
mattm2fe429a2017-06-20 01:53:443692 "data/parse_certificate_unittest/signature_algorithm_null.pem",
ckrasic73f7240b2017-01-24 00:06:453693 "data/parse_certificate_unittest/subject_alt_name.pem",
Eric Roman7b45a272017-08-02 03:21:443694 "data/parse_certificate_unittest/subject_blank_subjectaltname_not_critical.pem",
3695 "data/parse_certificate_unittest/subject_not_ascii.pem",
3696 "data/parse_certificate_unittest/subject_not_printable_string.pem",
Matt Mueller6c8b07c62017-10-09 21:02:253697 "data/parse_certificate_unittest/subject_printable_string_containing_utf8_client_cert.pem",
mattm788812f2017-05-05 23:49:093698 "data/parse_certificate_unittest/subject_t61string.pem",
3699 "data/parse_certificate_unittest/subject_t61string_1-32.pem",
3700 "data/parse_certificate_unittest/subject_t61string_126-160.pem",
3701 "data/parse_certificate_unittest/subject_t61string_actual.pem",
Eric Roman7b45a272017-08-02 03:21:443702 "data/parse_certificate_unittest/subjectaltname_bad_ip.pem",
3703 "data/parse_certificate_unittest/subjectaltname_dns_not_ascii.pem",
3704 "data/parse_certificate_unittest/subjectaltname_general_names_empty_sequence.pem",
3705 "data/parse_certificate_unittest/subjectaltname_trailing_data.pem",
ckrasic73f7240b2017-01-24 00:06:453706 "data/parse_certificate_unittest/tbs_explicit_v1.pem",
ckrasic73f7240b2017-01-24 00:06:453707 "data/parse_certificate_unittest/tbs_v1.pem",
3708 "data/parse_certificate_unittest/tbs_v1_extensions.pem",
3709 "data/parse_certificate_unittest/tbs_v2_extensions.pem",
3710 "data/parse_certificate_unittest/tbs_v2_issuer_and_subject_unique_id.pem",
3711 "data/parse_certificate_unittest/tbs_v2_issuer_unique_id.pem",
3712 "data/parse_certificate_unittest/tbs_v2_no_optionals.pem",
3713 "data/parse_certificate_unittest/tbs_v3_all_optionals.pem",
3714 "data/parse_certificate_unittest/tbs_v3_data_after_extensions.pem",
3715 "data/parse_certificate_unittest/tbs_v3_extensions.pem",
3716 "data/parse_certificate_unittest/tbs_v3_extensions_not_sequence.pem",
3717 "data/parse_certificate_unittest/tbs_v3_no_optionals.pem",
3718 "data/parse_certificate_unittest/tbs_v3_real.pem",
3719 "data/parse_certificate_unittest/tbs_v4.pem",
3720 "data/parse_certificate_unittest/tbs_validity_both_generalized_time.pem",
3721 "data/parse_certificate_unittest/tbs_validity_both_utc_time.pem",
3722 "data/parse_certificate_unittest/tbs_validity_generalized_time_and_utc_time.pem",
3723 "data/parse_certificate_unittest/tbs_validity_relaxed.pem",
3724 "data/parse_certificate_unittest/tbs_validity_utc_time_and_generalized_time.pem",
Eric Roman7b45a272017-08-02 03:21:443725 "data/parse_certificate_unittest/v1_explicit_version.pem",
Matt Mueller6c8b07c62017-10-09 21:02:253726 "data/parse_certificate_unittest/v3_certificate_template.pk8",
ckrasic73f7240b2017-01-24 00:06:453727 "data/test.html",
3728 "data/url_request_unittest/308-without-location-header",
3729 "data/url_request_unittest/308-without-location-header.mock-http-headers",
3730 "data/url_request_unittest/BullRunSpeech.txt",
3731 "data/url_request_unittest/content-type-normalization.html",
3732 "data/url_request_unittest/content-type-normalization.html.mock-http-headers",
Emily Stark4cfecf072017-08-08 01:05:513733 "data/url_request_unittest/expect-ct-header-multiple.html",
3734 "data/url_request_unittest/expect-ct-header-multiple.html.mock-http-headers",
3735 "data/url_request_unittest/expect-ct-header-preload.html",
3736 "data/url_request_unittest/expect-ct-header-preload.html.mock-http-headers",
ckrasic73f7240b2017-01-24 00:06:453737 "data/url_request_unittest/expect-ct-header.html",
3738 "data/url_request_unittest/expect-ct-header.html.mock-http-headers",
3739 "data/url_request_unittest/filedir-sentinel",
3740 "data/url_request_unittest/gzip-encoded",
3741 "data/url_request_unittest/gzip-encoded.mock-http-headers",
ckrasic73f7240b2017-01-24 00:06:453742 "data/url_request_unittest/hsts-headers.html",
3743 "data/url_request_unittest/hsts-headers.html.mock-http-headers",
3744 "data/url_request_unittest/hsts-multiple-headers.html",
3745 "data/url_request_unittest/hsts-multiple-headers.html.mock-http-headers",
3746 "data/url_request_unittest/redirect-test.html",
3747 "data/url_request_unittest/redirect-test.html.mock-http-headers",
3748 "data/url_request_unittest/redirect-to-data.html",
3749 "data/url_request_unittest/redirect-to-data.html.mock-http-headers",
3750 "data/url_request_unittest/redirect-to-echoall",
3751 "data/url_request_unittest/redirect-to-echoall.mock-http-headers",
3752 "data/url_request_unittest/redirect-to-file.html",
3753 "data/url_request_unittest/redirect-to-file.html.mock-http-headers",
3754 "data/url_request_unittest/redirect-to-invalid-url.html",
3755 "data/url_request_unittest/redirect-to-invalid-url.html.mock-http-headers",
3756 "data/url_request_unittest/redirect301-to-echo",
3757 "data/url_request_unittest/redirect301-to-echo.mock-http-headers",
3758 "data/url_request_unittest/redirect301-to-https",
3759 "data/url_request_unittest/redirect301-to-https.mock-http-headers",
3760 "data/url_request_unittest/redirect302-to-echo",
3761 "data/url_request_unittest/redirect302-to-echo-cacheable",
3762 "data/url_request_unittest/redirect302-to-echo-cacheable.mock-http-headers",
3763 "data/url_request_unittest/redirect302-to-echo.mock-http-headers",
3764 "data/url_request_unittest/redirect302-to-https",
3765 "data/url_request_unittest/redirect302-to-https.mock-http-headers",
3766 "data/url_request_unittest/redirect303-to-echo",
3767 "data/url_request_unittest/redirect303-to-echo.mock-http-headers",
3768 "data/url_request_unittest/redirect303-to-https",
3769 "data/url_request_unittest/redirect303-to-https.mock-http-headers",
3770 "data/url_request_unittest/redirect307-to-echo",
3771 "data/url_request_unittest/redirect307-to-echo.mock-http-headers",
3772 "data/url_request_unittest/redirect307-to-https",
3773 "data/url_request_unittest/redirect307-to-https.mock-http-headers",
3774 "data/url_request_unittest/redirect308-to-echo",
3775 "data/url_request_unittest/redirect308-to-echo.mock-http-headers",
3776 "data/url_request_unittest/redirect308-to-https",
3777 "data/url_request_unittest/redirect308-to-https.mock-http-headers",
3778 "data/url_request_unittest/simple.html",
3779 "data/url_request_unittest/simple.html.mock-http-headers",
3780 "data/url_request_unittest/two-content-lengths.html",
3781 "data/url_request_unittest/two-content-lengths.html.mock-http-headers",
3782 "data/url_request_unittest/with-headers.html",
3783 "data/url_request_unittest/with-headers.html.mock-http-headers",
eroman266bda9e2017-05-03 01:28:043784 "data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/chain.pem",
3785 "data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/main.test",
eroman266bda9e2017-05-03 01:28:043786 "data/verify_certificate_chain_unittest/expired-intermediate/chain.pem",
eromane7af9002017-05-13 05:04:013787 "data/verify_certificate_chain_unittest/expired-intermediate/not-after.test",
3788 "data/verify_certificate_chain_unittest/expired-intermediate/not-before.test",
eromanc1a8b5d02017-05-03 21:52:103789 "data/verify_certificate_chain_unittest/expired-root/chain.pem",
eromane7af9002017-05-13 05:04:013790 "data/verify_certificate_chain_unittest/expired-root/not-after-ta-with-constraints.test",
3791 "data/verify_certificate_chain_unittest/expired-root/not-after.test",
3792 "data/verify_certificate_chain_unittest/expired-root/not-before.test",
eroman266bda9e2017-05-03 01:28:043793 "data/verify_certificate_chain_unittest/expired-target/chain.pem",
eromane7af9002017-05-13 05:04:013794 "data/verify_certificate_chain_unittest/expired-target/not-after.test",
3795 "data/verify_certificate_chain_unittest/expired-target/not-before.test",
eroman266bda9e2017-05-03 01:28:043796 "data/verify_certificate_chain_unittest/incorrect-trust-anchor/chain.pem",
3797 "data/verify_certificate_chain_unittest/incorrect-trust-anchor/main.test",
Matt Mueller905e4e3d2018-02-14 02:11:173798 "data/verify_certificate_chain_unittest/intermediate-and-target-wrong-signature/chain.pem",
3799 "data/verify_certificate_chain_unittest/intermediate-and-target-wrong-signature/main.test",
eroman266bda9e2017-05-03 01:28:043800 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/chain.pem",
3801 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/main.test",
3802 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/chain.pem",
3803 "data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/main.test",
eroman7333d9b2017-06-23 01:50:253804 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/any.test",
3805 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/chain.pem",
3806 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/clientauth.test",
3807 "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/serverauth.test",
3808 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/any.test",
3809 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/chain.pem",
3810 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/clientauth.test",
3811 "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/serverauth.test",
Eric Romanc8c2d6a2017-08-01 22:55:303812 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-chain.pem",
3813 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-any.test",
3814 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-clientAuth.test",
3815 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-serverAuth.test",
3816 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-chain.pem",
3817 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-any.test",
3818 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-clientAuth.test",
3819 "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-serverAuth.test",
eroman266bda9e2017-05-03 01:28:043820 "data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/chain.pem",
3821 "data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/main.test",
3822 "data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/chain.pem",
3823 "data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/main.test",
eroman266bda9e2017-05-03 01:28:043824 "data/verify_certificate_chain_unittest/intermediate-signed-with-md5/chain.pem",
3825 "data/verify_certificate_chain_unittest/intermediate-signed-with-md5/main.test",
3826 "data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/chain.pem",
3827 "data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/main.test",
3828 "data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/chain.pem",
3829 "data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/main.test",
3830 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.pem",
3831 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.test",
3832 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.pem",
3833 "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.test",
3834 "data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.pem",
3835 "data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.test",
3836 "data/verify_certificate_chain_unittest/key-rollover/newchain.pem",
3837 "data/verify_certificate_chain_unittest/key-rollover/newchain.test",
3838 "data/verify_certificate_chain_unittest/key-rollover/oldchain.pem",
3839 "data/verify_certificate_chain_unittest/key-rollover/oldchain.test",
3840 "data/verify_certificate_chain_unittest/key-rollover/rolloverchain.pem",
3841 "data/verify_certificate_chain_unittest/key-rollover/rolloverchain.test",
Matt Muellerc391cdf2018-02-08 01:05:573842 "data/verify_certificate_chain_unittest/many-names/ok-all-types.pem",
3843 "data/verify_certificate_chain_unittest/many-names/ok-all-types.test",
3844 "data/verify_certificate_chain_unittest/many-names/ok-different-types-dirnames.pem",
3845 "data/verify_certificate_chain_unittest/many-names/ok-different-types-dirnames.test",
3846 "data/verify_certificate_chain_unittest/many-names/ok-different-types-dns.pem",
3847 "data/verify_certificate_chain_unittest/many-names/ok-different-types-dns.test",
3848 "data/verify_certificate_chain_unittest/many-names/ok-different-types-ips.pem",
3849 "data/verify_certificate_chain_unittest/many-names/ok-different-types-ips.test",
3850 "data/verify_certificate_chain_unittest/many-names/toomany-all-types.pem",
3851 "data/verify_certificate_chain_unittest/many-names/toomany-all-types.test",
3852 "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-excluded.pem",
3853 "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-excluded.test",
3854 "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-permitted.pem",
3855 "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-permitted.test",
3856 "data/verify_certificate_chain_unittest/many-names/toomany-dns-excluded.pem",
3857 "data/verify_certificate_chain_unittest/many-names/toomany-dns-excluded.test",
3858 "data/verify_certificate_chain_unittest/many-names/toomany-dns-permitted.pem",
3859 "data/verify_certificate_chain_unittest/many-names/toomany-dns-permitted.test",
3860 "data/verify_certificate_chain_unittest/many-names/toomany-ips-excluded.pem",
3861 "data/verify_certificate_chain_unittest/many-names/toomany-ips-excluded.test",
3862 "data/verify_certificate_chain_unittest/many-names/toomany-ips-permitted.pem",
3863 "data/verify_certificate_chain_unittest/many-names/toomany-ips-permitted.test",
eroman266bda9e2017-05-03 01:28:043864 "data/verify_certificate_chain_unittest/non-self-signed-root/chain.pem",
3865 "data/verify_certificate_chain_unittest/non-self-signed-root/main.test",
eromanc1a8b5d02017-05-03 21:52:103866 "data/verify_certificate_chain_unittest/non-self-signed-root/ta-with-constraints.test",
eroman605a5cc2017-06-03 02:45:243867 "data/verify_certificate_chain_unittest/pkits_errors/4.1.2.txt",
3868 "data/verify_certificate_chain_unittest/pkits_errors/4.1.3.txt",
3869 "data/verify_certificate_chain_unittest/pkits_errors/4.1.4.txt",
3870 "data/verify_certificate_chain_unittest/pkits_errors/4.1.5.txt",
3871 "data/verify_certificate_chain_unittest/pkits_errors/4.1.6.txt",
3872 "data/verify_certificate_chain_unittest/pkits_errors/4.10.1.txt",
3873 "data/verify_certificate_chain_unittest/pkits_errors/4.10.10.txt",
3874 "data/verify_certificate_chain_unittest/pkits_errors/4.10.2.txt",
3875 "data/verify_certificate_chain_unittest/pkits_errors/4.10.3.txt",
3876 "data/verify_certificate_chain_unittest/pkits_errors/4.10.4.txt",
3877 "data/verify_certificate_chain_unittest/pkits_errors/4.10.5.txt",
3878 "data/verify_certificate_chain_unittest/pkits_errors/4.10.6.txt",
3879 "data/verify_certificate_chain_unittest/pkits_errors/4.10.7.txt",
3880 "data/verify_certificate_chain_unittest/pkits_errors/4.10.8.txt",
3881 "data/verify_certificate_chain_unittest/pkits_errors/4.11.1.txt",
3882 "data/verify_certificate_chain_unittest/pkits_errors/4.11.10.txt",
3883 "data/verify_certificate_chain_unittest/pkits_errors/4.11.11.txt",
3884 "data/verify_certificate_chain_unittest/pkits_errors/4.11.3.txt",
3885 "data/verify_certificate_chain_unittest/pkits_errors/4.11.5.txt",
3886 "data/verify_certificate_chain_unittest/pkits_errors/4.11.6.txt",
3887 "data/verify_certificate_chain_unittest/pkits_errors/4.11.8.txt",
3888 "data/verify_certificate_chain_unittest/pkits_errors/4.11.9.txt",
3889 "data/verify_certificate_chain_unittest/pkits_errors/4.12.1.txt",
3890 "data/verify_certificate_chain_unittest/pkits_errors/4.12.10.txt",
3891 "data/verify_certificate_chain_unittest/pkits_errors/4.12.3.txt",
3892 "data/verify_certificate_chain_unittest/pkits_errors/4.12.4.txt",
3893 "data/verify_certificate_chain_unittest/pkits_errors/4.12.5.txt",
3894 "data/verify_certificate_chain_unittest/pkits_errors/4.12.6.txt",
3895 "data/verify_certificate_chain_unittest/pkits_errors/4.12.8.txt",
3896 "data/verify_certificate_chain_unittest/pkits_errors/4.13.10.txt",
3897 "data/verify_certificate_chain_unittest/pkits_errors/4.13.12.txt",
3898 "data/verify_certificate_chain_unittest/pkits_errors/4.13.13.txt",
3899 "data/verify_certificate_chain_unittest/pkits_errors/4.13.15.txt",
3900 "data/verify_certificate_chain_unittest/pkits_errors/4.13.16.txt",
3901 "data/verify_certificate_chain_unittest/pkits_errors/4.13.17.txt",
3902 "data/verify_certificate_chain_unittest/pkits_errors/4.13.2.txt",
3903 "data/verify_certificate_chain_unittest/pkits_errors/4.13.20.txt",
3904 "data/verify_certificate_chain_unittest/pkits_errors/4.13.21.txt",
3905 "data/verify_certificate_chain_unittest/pkits_errors/4.13.22.txt",
3906 "data/verify_certificate_chain_unittest/pkits_errors/4.13.23.txt",
3907 "data/verify_certificate_chain_unittest/pkits_errors/4.13.24.txt",
3908 "data/verify_certificate_chain_unittest/pkits_errors/4.13.25.txt",
3909 "data/verify_certificate_chain_unittest/pkits_errors/4.13.26.txt",
3910 "data/verify_certificate_chain_unittest/pkits_errors/4.13.27.txt",
3911 "data/verify_certificate_chain_unittest/pkits_errors/4.13.28.txt",
3912 "data/verify_certificate_chain_unittest/pkits_errors/4.13.29.txt",
3913 "data/verify_certificate_chain_unittest/pkits_errors/4.13.3.txt",
3914 "data/verify_certificate_chain_unittest/pkits_errors/4.13.31.txt",
3915 "data/verify_certificate_chain_unittest/pkits_errors/4.13.33.txt",
3916 "data/verify_certificate_chain_unittest/pkits_errors/4.13.34.txt",
3917 "data/verify_certificate_chain_unittest/pkits_errors/4.13.35.txt",
3918 "data/verify_certificate_chain_unittest/pkits_errors/4.13.36.txt",
3919 "data/verify_certificate_chain_unittest/pkits_errors/4.13.37.txt",
3920 "data/verify_certificate_chain_unittest/pkits_errors/4.13.38.txt",
3921 "data/verify_certificate_chain_unittest/pkits_errors/4.13.7.txt",
3922 "data/verify_certificate_chain_unittest/pkits_errors/4.13.8.txt",
3923 "data/verify_certificate_chain_unittest/pkits_errors/4.13.9.txt",
3924 "data/verify_certificate_chain_unittest/pkits_errors/4.16.2.txt",
3925 "data/verify_certificate_chain_unittest/pkits_errors/4.2.1.txt",
3926 "data/verify_certificate_chain_unittest/pkits_errors/4.2.2.txt",
3927 "data/verify_certificate_chain_unittest/pkits_errors/4.2.5.txt",
3928 "data/verify_certificate_chain_unittest/pkits_errors/4.2.6.txt",
3929 "data/verify_certificate_chain_unittest/pkits_errors/4.2.7.txt",
3930 "data/verify_certificate_chain_unittest/pkits_errors/4.3.1.txt",
3931 "data/verify_certificate_chain_unittest/pkits_errors/4.3.2.txt",
3932 "data/verify_certificate_chain_unittest/pkits_errors/4.6.1.txt",
3933 "data/verify_certificate_chain_unittest/pkits_errors/4.6.10.txt",
3934 "data/verify_certificate_chain_unittest/pkits_errors/4.6.11.txt",
3935 "data/verify_certificate_chain_unittest/pkits_errors/4.6.12.txt",
3936 "data/verify_certificate_chain_unittest/pkits_errors/4.6.16.txt",
3937 "data/verify_certificate_chain_unittest/pkits_errors/4.6.2.txt",
3938 "data/verify_certificate_chain_unittest/pkits_errors/4.6.3.txt",
3939 "data/verify_certificate_chain_unittest/pkits_errors/4.6.5.txt",
3940 "data/verify_certificate_chain_unittest/pkits_errors/4.6.6.txt",
3941 "data/verify_certificate_chain_unittest/pkits_errors/4.6.9.txt",
3942 "data/verify_certificate_chain_unittest/pkits_errors/4.7.1.txt",
3943 "data/verify_certificate_chain_unittest/pkits_errors/4.7.2.txt",
3944 "data/verify_certificate_chain_unittest/pkits_errors/4.8.1.txt",
3945 "data/verify_certificate_chain_unittest/pkits_errors/4.8.12.txt",
3946 "data/verify_certificate_chain_unittest/pkits_errors/4.8.14.txt",
3947 "data/verify_certificate_chain_unittest/pkits_errors/4.8.2.txt",
3948 "data/verify_certificate_chain_unittest/pkits_errors/4.8.3.txt",
3949 "data/verify_certificate_chain_unittest/pkits_errors/4.8.4.txt",
3950 "data/verify_certificate_chain_unittest/pkits_errors/4.8.5.txt",
3951 "data/verify_certificate_chain_unittest/pkits_errors/4.8.6.txt",
3952 "data/verify_certificate_chain_unittest/pkits_errors/4.8.7.txt",
3953 "data/verify_certificate_chain_unittest/pkits_errors/4.8.8.txt",
3954 "data/verify_certificate_chain_unittest/pkits_errors/4.8.9.txt",
3955 "data/verify_certificate_chain_unittest/pkits_errors/4.9.3.txt",
3956 "data/verify_certificate_chain_unittest/pkits_errors/4.9.5.txt",
3957 "data/verify_certificate_chain_unittest/pkits_errors/4.9.7.txt",
3958 "data/verify_certificate_chain_unittest/pkits_errors/4.9.8.txt",
eromanc1a8b5d02017-05-03 21:52:103959 "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/chain.pem",
3960 "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/main.test",
3961 "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/ta-with-constraints.test",
eroman7333d9b2017-06-23 01:50:253962 "data/verify_certificate_chain_unittest/root-eku-clientauth/chain.pem",
3963 "data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth-ta-with-constraints.test",
3964 "data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth.test",
eromanc1a8b5d02017-05-03 21:52:103965 "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/chain.pem",
3966 "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/main.test",
3967 "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/ta-with-constraints.test",
eroman266bda9e2017-05-03 01:28:043968 "data/verify_certificate_chain_unittest/target-and-intermediate/chain.pem",
Matt Mueller905e4e3d2018-02-14 02:11:173969 "data/verify_certificate_chain_unittest/target-and-intermediate/distrusted-root-expired.test",
eromand1c9c9b2017-05-04 19:23:453970 "data/verify_certificate_chain_unittest/target-and-intermediate/distrusted-root.test",
eroman266bda9e2017-05-03 01:28:043971 "data/verify_certificate_chain_unittest/target-and-intermediate/main.test",
eromand1c9c9b2017-05-04 19:23:453972 "data/verify_certificate_chain_unittest/target-and-intermediate/unspecified-trust-root.test",
eroman7333d9b2017-06-23 01:50:253973 "data/verify_certificate_chain_unittest/target-eku-clientauth/any.test",
3974 "data/verify_certificate_chain_unittest/target-eku-clientauth/chain.pem",
3975 "data/verify_certificate_chain_unittest/target-eku-clientauth/clientauth.test",
3976 "data/verify_certificate_chain_unittest/target-eku-clientauth/serverauth.test",
3977 "data/verify_certificate_chain_unittest/target-eku-none/any.test",
3978 "data/verify_certificate_chain_unittest/target-eku-none/chain.pem",
3979 "data/verify_certificate_chain_unittest/target-eku-none/clientauth.test",
3980 "data/verify_certificate_chain_unittest/target-eku-none/serverauth.test",
Eric Roman5431d702017-07-26 01:58:183981 "data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/chain.pem",
3982 "data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/main.test",
eroman266bda9e2017-05-03 01:28:043983 "data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/chain.pem",
3984 "data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/main.test",
3985 "data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/chain.pem",
3986 "data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/main.test",
eroman266bda9e2017-05-03 01:28:043987 "data/verify_certificate_chain_unittest/target-not-end-entity/chain.pem",
3988 "data/verify_certificate_chain_unittest/target-not-end-entity/main.test",
eromane7899432017-05-04 16:40:483989 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.pem",
3990 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.test",
3991 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.pem",
3992 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.test",
3993 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.pem",
3994 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.test",
3995 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.pem",
3996 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.test",
3997 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.pem",
3998 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.test",
3999 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.pem",
4000 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.test",
4001 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.pem",
4002 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.test",
4003 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.pem",
4004 "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.test",
eroman266bda9e2017-05-03 01:28:044005 "data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/chain.pem",
4006 "data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/main.test",
4007 "data/verify_certificate_chain_unittest/target-signed-using-ecdsa/chain.pem",
4008 "data/verify_certificate_chain_unittest/target-signed-using-ecdsa/main.test",
4009 "data/verify_certificate_chain_unittest/target-signed-with-md5/chain.pem",
4010 "data/verify_certificate_chain_unittest/target-signed-with-md5/main.test",
4011 "data/verify_certificate_chain_unittest/target-unknown-critical-extension/chain.pem",
4012 "data/verify_certificate_chain_unittest/target-unknown-critical-extension/main.test",
4013 "data/verify_certificate_chain_unittest/target-wrong-signature/chain.pem",
4014 "data/verify_certificate_chain_unittest/target-wrong-signature/main.test",
eroman178f2c62017-06-07 01:03:444015 "data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/chain.pem",
4016 "data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/main.test",
4017 "data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/chain.pem",
4018 "data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/main.test",
eroman266bda9e2017-05-03 01:28:044019 "data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/chain.pem",
4020 "data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/main.test",
eromanc1a8b5d02017-05-03 21:52:104021 "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/chain.pem",
4022 "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/main.test",
4023 "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/ta-with-constraints.test",
ckrasic73f7240b2017-01-24 00:06:454024 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-dupe_attr.pem",
4025 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_attr.pem",
4026 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_rdn.pem",
4027 "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap.pem",
4028 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-dupe_attr.pem",
4029 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_attr.pem",
4030 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_rdn.pem",
4031 "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace.pem",
4032 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-dupe_attr.pem",
4033 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_attr.pem",
4034 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_rdn.pem",
4035 "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled.pem",
4036 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-dupe_attr.pem",
4037 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_attr.pem",
4038 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_rdn.pem",
4039 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap.pem",
4040 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-dupe_attr.pem",
4041 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_attr.pem",
4042 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_rdn.pem",
4043 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace.pem",
4044 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_1.pem",
4045 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_2.pem",
4046 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-dupe_attr.pem",
4047 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_attr.pem",
4048 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_rdn.pem",
4049 "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled.pem",
4050 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-dupe_attr.pem",
4051 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_attr.pem",
4052 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_rdn.pem",
4053 "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap.pem",
4054 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-dupe_attr.pem",
4055 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_attr.pem",
4056 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_rdn.pem",
4057 "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace.pem",
4058 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-dupe_attr.pem",
4059 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_attr.pem",
4060 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_rdn.pem",
4061 "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled.pem",
4062 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-dupe_attr.pem",
4063 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_attr.pem",
4064 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_rdn.pem",
4065 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap.pem",
4066 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-dupe_attr.pem",
4067 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_attr.pem",
4068 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_rdn.pem",
4069 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace.pem",
4070 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-dupe_attr.pem",
4071 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_attr.pem",
4072 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_rdn.pem",
4073 "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled.pem",
4074 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-dupe_attr.pem",
4075 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_attr.pem",
4076 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_rdn.pem",
4077 "data/verify_name_match_unittest/names/ascii-UTF8-case_swap.pem",
4078 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-dupe_attr.pem",
4079 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_attr.pem",
4080 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_rdn.pem",
4081 "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace.pem",
4082 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-dupe_attr.pem",
4083 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_attr.pem",
4084 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_rdn.pem",
4085 "data/verify_name_match_unittest/names/ascii-UTF8-unmangled.pem",
4086 "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_1.pem",
4087 "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_2.pem",
David Benjaminc4dd1052017-12-15 21:23:174088 "data/verify_name_match_unittest/names/custom-custom-normalized.pem",
ckrasic73f7240b2017-01-24 00:06:454089 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-badAttributeType.pem",
4090 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-empty.pem",
4091 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-extradata.pem",
4092 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-onlyOneElement.pem",
4093 "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-setNotSequence.pem",
4094 "data/verify_name_match_unittest/names/invalid-Name-setInsteadOfSequence.pem",
4095 "data/verify_name_match_unittest/names/invalid-RDN-empty.pem",
4096 "data/verify_name_match_unittest/names/invalid-RDN-sequenceInsteadOfSet.pem",
4097 "data/verify_name_match_unittest/names/unicode-mixed-normalized.pem",
4098 "data/verify_name_match_unittest/names/unicode-mixed-unnormalized.pem",
4099 "data/verify_name_match_unittest/names/unicode_bmp-BMPSTRING-unmangled.pem",
4100 "data/verify_name_match_unittest/names/unicode_bmp-UNIVERSALSTRING-unmangled.pem",
4101 "data/verify_name_match_unittest/names/unicode_bmp-UTF8-unmangled.pem",
4102 "data/verify_name_match_unittest/names/unicode_supplementary-UNIVERSALSTRING-unmangled.pem",
4103 "data/verify_name_match_unittest/names/unicode_supplementary-UTF8-unmangled.pem",
4104 "data/verify_name_match_unittest/names/valid-Name-empty.pem",
4105 "data/verify_name_match_unittest/names/valid-minimal.pem",
4106 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-spki-params-null.pem",
4107 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-unused-bits-signature.pem",
4108 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecdh-key.pem",
4109 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecmqv-key.pem",
4110 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-rsa-algorithm.pem",
4111 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-wrong-signature-format.pem",
4112 "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512.pem",
4113 "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256-corrupted-data.pem",
4114 "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256.pem",
4115 "data/verify_signed_data_unittest/ecdsa-using-rsa-key.pem",
4116 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-length.pem",
4117 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-null.pem",
4118 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-key-params-absent.pem",
4119 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-using-pss-key-no-params.pem",
4120 "data/verify_signed_data_unittest/rsa-pkcs1-sha1-wrong-algorithm.pem",
4121 "data/verify_signed_data_unittest/rsa-pkcs1-sha1.pem",
4122 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-key-encoded-ber.pem",
4123 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-spki-non-null-params.pem",
4124 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-ecdsa-algorithm.pem",
4125 "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-id-ea-rsa.pem",
4126 "data/verify_signed_data_unittest/rsa-pkcs1-sha256.pem",
4127 "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-no-params.pem",
4128 "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-with-null-params.pem",
4129 "data/verify_signed_data_unittest/rsa-pss-sha1-salt20.pem",
4130 "data/verify_signed_data_unittest/rsa-pss-sha1-wrong-salt.pem",
4131 "data/verify_signed_data_unittest/rsa-pss-sha256-mgf1-sha512-salt33.pem",
4132 "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-params.pem",
4133 "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-wrong-params.pem",
4134 "data/verify_signed_data_unittest/rsa-pss-sha256-salt10.pem",
4135 "data/verify_signed_data_unittest/rsa-using-ec-key.pem",
4136 "data/verify_signed_data_unittest/rsa2048-pkcs1-sha512.pem",
4137 "third_party/nist-pkits/certs/AllCertificatesNoPoliciesTest2EE.crt",
4138 "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest10EE.crt",
4139 "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest13EE.crt",
4140 "third_party/nist-pkits/certs/AllCertificatesanyPolicyTest11EE.crt",
4141 "third_party/nist-pkits/certs/AnyPolicyTest14EE.crt",
4142 "third_party/nist-pkits/certs/BadCRLIssuerNameCACert.crt",
4143 "third_party/nist-pkits/certs/BadCRLSignatureCACert.crt",
4144 "third_party/nist-pkits/certs/BadSignedCACert.crt",
4145 "third_party/nist-pkits/certs/BadnotAfterDateCACert.crt",
4146 "third_party/nist-pkits/certs/BadnotBeforeDateCACert.crt",
4147 "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCACert.crt",
4148 "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCRLCert.crt",
4149 "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyCACert.crt",
4150 "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyOldWithNewCACert.crt",
4151 "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyCACert.crt",
4152 "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyNewWithOldCACert.crt",
4153 "third_party/nist-pkits/certs/CPSPointerQualifierTest20EE.crt",
4154 "third_party/nist-pkits/certs/DSACACert.crt",
4155 "third_party/nist-pkits/certs/DSAParametersInheritedCACert.crt",
4156 "third_party/nist-pkits/certs/DifferentPoliciesTest12EE.crt",
4157 "third_party/nist-pkits/certs/DifferentPoliciesTest3EE.crt",
4158 "third_party/nist-pkits/certs/DifferentPoliciesTest4EE.crt",
4159 "third_party/nist-pkits/certs/DifferentPoliciesTest5EE.crt",
4160 "third_party/nist-pkits/certs/DifferentPoliciesTest7EE.crt",
4161 "third_party/nist-pkits/certs/DifferentPoliciesTest8EE.crt",
4162 "third_party/nist-pkits/certs/DifferentPoliciesTest9EE.crt",
4163 "third_party/nist-pkits/certs/GeneralizedTimeCRLnextUpdateCACert.crt",
4164 "third_party/nist-pkits/certs/GoodCACert.crt",
4165 "third_party/nist-pkits/certs/GoodsubCACert.crt",
4166 "third_party/nist-pkits/certs/GoodsubCAPanyPolicyMapping1to2CACert.crt",
4167 "third_party/nist-pkits/certs/InvalidBadCRLIssuerNameTest5EE.crt",
4168 "third_party/nist-pkits/certs/InvalidBadCRLSignatureTest4EE.crt",
4169 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest7EE.crt",
4170 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest8EE.crt",
4171 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedNewWithOldTest5EE.crt",
4172 "third_party/nist-pkits/certs/InvalidBasicSelfIssuedOldWithNewTest2EE.crt",
4173 "third_party/nist-pkits/certs/InvalidCASignatureTest2EE.crt",
4174 "third_party/nist-pkits/certs/InvalidCAnotAfterDateTest5EE.crt",
4175 "third_party/nist-pkits/certs/InvalidCAnotBeforeDateTest1EE.crt",
4176 "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest31EE.crt",
4177 "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest33EE.crt",
4178 "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest38EE.crt",
4179 "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest28EE.crt",
4180 "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest29EE.crt",
4181 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest10EE.crt",
4182 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest12EE.crt",
4183 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest13EE.crt",
4184 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest15EE.crt",
4185 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest16EE.crt",
4186 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest17EE.crt",
4187 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest20EE.crt",
4188 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest2EE.crt",
4189 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest3EE.crt",
4190 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest7EE.crt",
4191 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest8EE.crt",
4192 "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest9EE.crt",
4193 "third_party/nist-pkits/certs/InvalidDSASignatureTest6EE.crt",
4194 "third_party/nist-pkits/certs/InvalidEESignatureTest3EE.crt",
4195 "third_party/nist-pkits/certs/InvalidEEnotAfterDateTest6EE.crt",
4196 "third_party/nist-pkits/certs/InvalidEEnotBeforeDateTest2EE.crt",
4197 "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest23EE.crt",
4198 "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest26EE.crt",
4199 "third_party/nist-pkits/certs/InvalidLongSerialNumberTest18EE.crt",
4200 "third_party/nist-pkits/certs/InvalidMappingFromanyPolicyTest7EE.crt",
4201 "third_party/nist-pkits/certs/InvalidMappingToanyPolicyTest8EE.crt",
4202 "third_party/nist-pkits/certs/InvalidMissingCRLTest1EE.crt",
4203 "third_party/nist-pkits/certs/InvalidMissingbasicConstraintsTest1EE.crt",
4204 "third_party/nist-pkits/certs/InvalidNameChainingOrderTest2EE.crt",
4205 "third_party/nist-pkits/certs/InvalidNameChainingTest1EE.crt",
4206 "third_party/nist-pkits/certs/InvalidNegativeSerialNumberTest15EE.crt",
4207 "third_party/nist-pkits/certs/InvalidOldCRLnextUpdateTest11EE.crt",
4208 "third_party/nist-pkits/certs/InvalidPolicyMappingTest10EE.crt",
4209 "third_party/nist-pkits/certs/InvalidPolicyMappingTest2EE.crt",
4210 "third_party/nist-pkits/certs/InvalidPolicyMappingTest4EE.crt",
4211 "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest22EE.crt",
4212 "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest24EE.crt",
4213 "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest26EE.crt",
4214 "third_party/nist-pkits/certs/InvalidRevokedCATest2EE.crt",
4215 "third_party/nist-pkits/certs/InvalidRevokedEETest3EE.crt",
4216 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest10EE.crt",
4217 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest8EE.crt",
4218 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest10EE.crt",
4219 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest11EE.crt",
4220 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest8EE.crt",
4221 "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest9EE.crt",
4222 "third_party/nist-pkits/certs/InvalidSelfIssuedpathLenConstraintTest16EE.crt",
4223 "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest7EE.crt",
4224 "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest8EE.crt",
4225 "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest20EE.crt",
4226 "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest21EE.crt",
4227 "third_party/nist-pkits/certs/InvalidURInameConstraintsTest35EE.crt",
4228 "third_party/nist-pkits/certs/InvalidURInameConstraintsTest37EE.crt",
4229 "third_party/nist-pkits/certs/InvalidUnknownCRLEntryExtensionTest8EE.crt",
4230 "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest10EE.crt",
4231 "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest9EE.crt",
4232 "third_party/nist-pkits/certs/InvalidUnknownCriticalCertificateExtensionTest2EE.crt",
4233 "third_party/nist-pkits/certs/InvalidWrongCRLTest6EE.crt",
4234 "third_party/nist-pkits/certs/InvalidcAFalseTest2EE.crt",
4235 "third_party/nist-pkits/certs/InvalidcAFalseTest3EE.crt",
4236 "third_party/nist-pkits/certs/InvalidcRLIssuerTest27EE.crt",
4237 "third_party/nist-pkits/certs/InvalidcRLIssuerTest31EE.crt",
4238 "third_party/nist-pkits/certs/InvalidcRLIssuerTest32EE.crt",
4239 "third_party/nist-pkits/certs/InvalidcRLIssuerTest34EE.crt",
4240 "third_party/nist-pkits/certs/InvalidcRLIssuerTest35EE.crt",
4241 "third_party/nist-pkits/certs/InvaliddeltaCRLIndicatorNoBaseTest1EE.crt",
4242 "third_party/nist-pkits/certs/InvaliddeltaCRLTest10EE.crt",
4243 "third_party/nist-pkits/certs/InvaliddeltaCRLTest3EE.crt",
4244 "third_party/nist-pkits/certs/InvaliddeltaCRLTest4EE.crt",
4245 "third_party/nist-pkits/certs/InvaliddeltaCRLTest6EE.crt",
4246 "third_party/nist-pkits/certs/InvaliddeltaCRLTest9EE.crt",
4247 "third_party/nist-pkits/certs/InvaliddistributionPointTest2EE.crt",
4248 "third_party/nist-pkits/certs/InvaliddistributionPointTest3EE.crt",
4249 "third_party/nist-pkits/certs/InvaliddistributionPointTest6EE.crt",
4250 "third_party/nist-pkits/certs/InvaliddistributionPointTest8EE.crt",
4251 "third_party/nist-pkits/certs/InvaliddistributionPointTest9EE.crt",
4252 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest1EE.crt",
4253 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest4EE.crt",
4254 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest5EE.crt",
4255 "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest6EE.crt",
4256 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest1EE.crt",
4257 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest3EE.crt",
4258 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest5EE.crt",
4259 "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest6EE.crt",
4260 "third_party/nist-pkits/certs/InvalidkeyUsageCriticalcRLSignFalseTest4EE.crt",
4261 "third_party/nist-pkits/certs/InvalidkeyUsageCriticalkeyCertSignFalseTest1EE.crt",
4262 "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalcRLSignFalseTest5EE.crt",
4263 "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalkeyCertSignFalseTest2EE.crt",
4264 "third_party/nist-pkits/certs/InvalidonlyContainsAttributeCertsTest14EE.crt",
4265 "third_party/nist-pkits/certs/InvalidonlyContainsCACertsTest12EE.crt",
4266 "third_party/nist-pkits/certs/InvalidonlyContainsUserCertsTest11EE.crt",
4267 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest15EE.crt",
4268 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest16EE.crt",
4269 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest17EE.crt",
4270 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest20EE.crt",
4271 "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest21EE.crt",
4272 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest10EE.crt",
4273 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest11EE.crt",
4274 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest12EE.crt",
4275 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest5EE.crt",
4276 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest6EE.crt",
4277 "third_party/nist-pkits/certs/InvalidpathLenConstraintTest9EE.crt",
4278 "third_party/nist-pkits/certs/Invalidpre2000CRLnextUpdateTest12EE.crt",
4279 "third_party/nist-pkits/certs/Invalidpre2000UTCEEnotAfterDateTest7EE.crt",
4280 "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest3EE.crt",
4281 "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest5EE.crt",
4282 "third_party/nist-pkits/certs/LongSerialNumberCACert.crt",
4283 "third_party/nist-pkits/certs/Mapping1to2CACert.crt",
4284 "third_party/nist-pkits/certs/MappingFromanyPolicyCACert.crt",
4285 "third_party/nist-pkits/certs/MappingToanyPolicyCACert.crt",
4286 "third_party/nist-pkits/certs/MissingbasicConstraintsCACert.crt",
4287 "third_party/nist-pkits/certs/NameOrderingCACert.crt",
4288 "third_party/nist-pkits/certs/NegativeSerialNumberCACert.crt",
4289 "third_party/nist-pkits/certs/NoCRLCACert.crt",
4290 "third_party/nist-pkits/certs/NoPoliciesCACert.crt",
4291 "third_party/nist-pkits/certs/NoissuingDistributionPointCACert.crt",
4292 "third_party/nist-pkits/certs/OldCRLnextUpdateCACert.crt",
4293 "third_party/nist-pkits/certs/OverlappingPoliciesTest6EE.crt",
4294 "third_party/nist-pkits/certs/P12Mapping1to3CACert.crt",
4295 "third_party/nist-pkits/certs/P12Mapping1to3subCACert.crt",
4296 "third_party/nist-pkits/certs/P12Mapping1to3subsubCACert.crt",
4297 "third_party/nist-pkits/certs/P1Mapping1to234CACert.crt",
4298 "third_party/nist-pkits/certs/P1Mapping1to234subCACert.crt",
4299 "third_party/nist-pkits/certs/P1anyPolicyMapping1to2CACert.crt",
4300 "third_party/nist-pkits/certs/PanyPolicyMapping1to2CACert.crt",
4301 "third_party/nist-pkits/certs/PoliciesP1234CACert.crt",
4302 "third_party/nist-pkits/certs/PoliciesP1234subCAP123Cert.crt",
4303 "third_party/nist-pkits/certs/PoliciesP1234subsubCAP123P12Cert.crt",
4304 "third_party/nist-pkits/certs/PoliciesP123CACert.crt",
4305 "third_party/nist-pkits/certs/PoliciesP123subCAP12Cert.crt",
4306 "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P1Cert.crt",
4307 "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P2Cert.crt",
4308 "third_party/nist-pkits/certs/PoliciesP123subsubsubCAP12P2P1Cert.crt",
4309 "third_party/nist-pkits/certs/PoliciesP12CACert.crt",
4310 "third_party/nist-pkits/certs/PoliciesP12subCAP1Cert.crt",
4311 "third_party/nist-pkits/certs/PoliciesP12subsubCAP1P2Cert.crt",
4312 "third_party/nist-pkits/certs/PoliciesP2subCA2Cert.crt",
4313 "third_party/nist-pkits/certs/PoliciesP2subCACert.crt",
4314 "third_party/nist-pkits/certs/PoliciesP3CACert.crt",
4315 "third_party/nist-pkits/certs/RFC3280MandatoryAttributeTypesCACert.crt",
4316 "third_party/nist-pkits/certs/RFC3280OptionalAttributeTypesCACert.crt",
4317 "third_party/nist-pkits/certs/RevokedsubCACert.crt",
4318 "third_party/nist-pkits/certs/RolloverfromPrintableStringtoUTF8StringCACert.crt",
4319 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CRLSigningCert.crt",
4320 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CertificateSigningCACert.crt",
4321 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCRLSigningCert.crt",
4322 "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCertificateSigningCACert.crt",
4323 "third_party/nist-pkits/certs/TrustAnchorRootCertificate.crt",
4324 "third_party/nist-pkits/certs/TwoCRLsCACert.crt",
4325 "third_party/nist-pkits/certs/UIDCACert.crt",
4326 "third_party/nist-pkits/certs/UTF8StringCaseInsensitiveMatchCACert.crt",
4327 "third_party/nist-pkits/certs/UTF8StringEncodedNamesCACert.crt",
4328 "third_party/nist-pkits/certs/UnknownCRLEntryExtensionCACert.crt",
4329 "third_party/nist-pkits/certs/UnknownCRLExtensionCACert.crt",
4330 "third_party/nist-pkits/certs/UserNoticeQualifierTest15EE.crt",
4331 "third_party/nist-pkits/certs/UserNoticeQualifierTest16EE.crt",
4332 "third_party/nist-pkits/certs/UserNoticeQualifierTest17EE.crt",
4333 "third_party/nist-pkits/certs/UserNoticeQualifierTest18EE.crt",
4334 "third_party/nist-pkits/certs/UserNoticeQualifierTest19EE.crt",
4335 "third_party/nist-pkits/certs/ValidBasicSelfIssuedCRLSigningKeyTest6EE.crt",
4336 "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest3EE.crt",
4337 "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest4EE.crt",
4338 "third_party/nist-pkits/certs/ValidBasicSelfIssuedOldWithNewTest1EE.crt",
4339 "third_party/nist-pkits/certs/ValidCertificatePathTest1EE.crt",
4340 "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest30EE.crt",
4341 "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest32EE.crt",
4342 "third_party/nist-pkits/certs/ValidDNandRFC822nameConstraintsTest27EE.crt",
4343 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest11EE.crt",
4344 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest14EE.crt",
4345 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest18EE.crt",
4346 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest19EE.crt",
4347 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest1EE.crt",
4348 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest4EE.crt",
4349 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest5EE.crt",
4350 "third_party/nist-pkits/certs/ValidDNnameConstraintsTest6EE.crt",
4351 "third_party/nist-pkits/certs/ValidDSAParameterInheritanceTest5EE.crt",
4352 "third_party/nist-pkits/certs/ValidDSASignaturesTest4EE.crt",
4353 "third_party/nist-pkits/certs/ValidGeneralizedTimeCRLnextUpdateTest13EE.crt",
4354 "third_party/nist-pkits/certs/ValidGeneralizedTimenotAfterDateTest8EE.crt",
4355 "third_party/nist-pkits/certs/ValidGeneralizedTimenotBeforeDateTest4EE.crt",
4356 "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest22EE.crt",
4357 "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest24EE.crt",
4358 "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest25EE.crt",
4359 "third_party/nist-pkits/certs/ValidLongSerialNumberTest16EE.crt",
4360 "third_party/nist-pkits/certs/ValidLongSerialNumberTest17EE.crt",
4361 "third_party/nist-pkits/certs/ValidNameChainingCapitalizationTest5EE.crt",
4362 "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest3EE.crt",
4363 "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest4EE.crt",
4364 "third_party/nist-pkits/certs/ValidNameUIDsTest6EE.crt",
4365 "third_party/nist-pkits/certs/ValidNegativeSerialNumberTest14EE.crt",
4366 "third_party/nist-pkits/certs/ValidNoissuingDistributionPointTest10EE.crt",
4367 "third_party/nist-pkits/certs/ValidPolicyMappingTest11EE.crt",
4368 "third_party/nist-pkits/certs/ValidPolicyMappingTest12EE.crt",
4369 "third_party/nist-pkits/certs/ValidPolicyMappingTest13EE.crt",
4370 "third_party/nist-pkits/certs/ValidPolicyMappingTest14EE.crt",
4371 "third_party/nist-pkits/certs/ValidPolicyMappingTest1EE.crt",
4372 "third_party/nist-pkits/certs/ValidPolicyMappingTest3EE.crt",
4373 "third_party/nist-pkits/certs/ValidPolicyMappingTest5EE.crt",
4374 "third_party/nist-pkits/certs/ValidPolicyMappingTest6EE.crt",
4375 "third_party/nist-pkits/certs/ValidPolicyMappingTest9EE.crt",
4376 "third_party/nist-pkits/certs/ValidRFC3280MandatoryAttributeTypesTest7EE.crt",
4377 "third_party/nist-pkits/certs/ValidRFC3280OptionalAttributeTypesTest8EE.crt",
4378 "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest21EE.crt",
4379 "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest23EE.crt",
4380 "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest25EE.crt",
4381 "third_party/nist-pkits/certs/ValidRolloverfromPrintableStringtoUTF8StringTest10EE.crt",
4382 "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest7EE.crt",
4383 "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest9EE.crt",
4384 "third_party/nist-pkits/certs/ValidSelfIssuedinhibitPolicyMappingTest7EE.crt",
4385 "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest15EE.crt",
4386 "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest17EE.crt",
4387 "third_party/nist-pkits/certs/ValidSelfIssuedrequireExplicitPolicyTest6EE.crt",
4388 "third_party/nist-pkits/certs/ValidSeparateCertificateandCRLKeysTest19EE.crt",
4389 "third_party/nist-pkits/certs/ValidTwoCRLsTest7EE.crt",
4390 "third_party/nist-pkits/certs/ValidURInameConstraintsTest34EE.crt",
4391 "third_party/nist-pkits/certs/ValidURInameConstraintsTest36EE.crt",
4392 "third_party/nist-pkits/certs/ValidUTF8StringCaseInsensitiveMatchTest11EE.crt",
4393 "third_party/nist-pkits/certs/ValidUTF8StringEncodedNamesTest9EE.crt",
4394 "third_party/nist-pkits/certs/ValidUnknownNotCriticalCertificateExtensionTest1EE.crt",
4395 "third_party/nist-pkits/certs/ValidbasicConstraintsNotCriticalTest4EE.crt",
4396 "third_party/nist-pkits/certs/ValidcRLIssuerTest28EE.crt",
4397 "third_party/nist-pkits/certs/ValidcRLIssuerTest29EE.crt",
4398 "third_party/nist-pkits/certs/ValidcRLIssuerTest30EE.crt",
4399 "third_party/nist-pkits/certs/ValidcRLIssuerTest33EE.crt",
4400 "third_party/nist-pkits/certs/ValiddeltaCRLTest2EE.crt",
4401 "third_party/nist-pkits/certs/ValiddeltaCRLTest5EE.crt",
4402 "third_party/nist-pkits/certs/ValiddeltaCRLTest7EE.crt",
4403 "third_party/nist-pkits/certs/ValiddeltaCRLTest8EE.crt",
4404 "third_party/nist-pkits/certs/ValiddistributionPointTest1EE.crt",
4405 "third_party/nist-pkits/certs/ValiddistributionPointTest4EE.crt",
4406 "third_party/nist-pkits/certs/ValiddistributionPointTest5EE.crt",
4407 "third_party/nist-pkits/certs/ValiddistributionPointTest7EE.crt",
4408 "third_party/nist-pkits/certs/ValidinhibitAnyPolicyTest2EE.crt",
4409 "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest2EE.crt",
4410 "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest4EE.crt",
4411 "third_party/nist-pkits/certs/ValidkeyUsageNotCriticalTest3EE.crt",
4412 "third_party/nist-pkits/certs/ValidonlyContainsCACertsTest13EE.crt",
4413 "third_party/nist-pkits/certs/ValidonlySomeReasonsTest18EE.crt",
4414 "third_party/nist-pkits/certs/ValidonlySomeReasonsTest19EE.crt",
4415 "third_party/nist-pkits/certs/ValidpathLenConstraintTest13EE.crt",
4416 "third_party/nist-pkits/certs/ValidpathLenConstraintTest14EE.crt",
4417 "third_party/nist-pkits/certs/ValidpathLenConstraintTest7EE.crt",
4418 "third_party/nist-pkits/certs/ValidpathLenConstraintTest8EE.crt",
4419 "third_party/nist-pkits/certs/Validpre2000UTCnotBeforeDateTest3EE.crt",
4420 "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest1EE.crt",
4421 "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest2EE.crt",
4422 "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest4EE.crt",
4423 "third_party/nist-pkits/certs/WrongCRLCACert.crt",
4424 "third_party/nist-pkits/certs/anyPolicyCACert.crt",
4425 "third_party/nist-pkits/certs/basicConstraintsCriticalcAFalseCACert.crt",
4426 "third_party/nist-pkits/certs/basicConstraintsNotCriticalCACert.crt",
4427 "third_party/nist-pkits/certs/basicConstraintsNotCriticalcAFalseCACert.crt",
4428 "third_party/nist-pkits/certs/deltaCRLCA1Cert.crt",
4429 "third_party/nist-pkits/certs/deltaCRLCA2Cert.crt",
4430 "third_party/nist-pkits/certs/deltaCRLCA3Cert.crt",
4431 "third_party/nist-pkits/certs/deltaCRLIndicatorNoBaseCACert.crt",
4432 "third_party/nist-pkits/certs/distributionPoint1CACert.crt",
4433 "third_party/nist-pkits/certs/distributionPoint2CACert.crt",
4434 "third_party/nist-pkits/certs/indirectCRLCA1Cert.crt",
4435 "third_party/nist-pkits/certs/indirectCRLCA2Cert.crt",
4436 "third_party/nist-pkits/certs/indirectCRLCA3Cert.crt",
4437 "third_party/nist-pkits/certs/indirectCRLCA3cRLIssuerCert.crt",
4438 "third_party/nist-pkits/certs/indirectCRLCA4Cert.crt",
4439 "third_party/nist-pkits/certs/indirectCRLCA4cRLIssuerCert.crt",
4440 "third_party/nist-pkits/certs/indirectCRLCA5Cert.crt",
4441 "third_party/nist-pkits/certs/indirectCRLCA6Cert.crt",
4442 "third_party/nist-pkits/certs/inhibitAnyPolicy0CACert.crt",
4443 "third_party/nist-pkits/certs/inhibitAnyPolicy1CACert.crt",
4444 "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedCACert.crt",
4445 "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedsubCA2Cert.crt",
4446 "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA1Cert.crt",
4447 "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA2Cert.crt",
4448 "third_party/nist-pkits/certs/inhibitAnyPolicy1subCAIAP5Cert.crt",
4449 "third_party/nist-pkits/certs/inhibitAnyPolicy1subsubCA2Cert.crt",
4450 "third_party/nist-pkits/certs/inhibitAnyPolicy5CACert.crt",
4451 "third_party/nist-pkits/certs/inhibitAnyPolicy5subCACert.crt",
4452 "third_party/nist-pkits/certs/inhibitAnyPolicy5subsubCACert.crt",
4453 "third_party/nist-pkits/certs/inhibitAnyPolicyTest3EE.crt",
4454 "third_party/nist-pkits/certs/inhibitPolicyMapping0CACert.crt",
4455 "third_party/nist-pkits/certs/inhibitPolicyMapping0subCACert.crt",
4456 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12CACert.crt",
4457 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCACert.crt",
4458 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCAIPM5Cert.crt",
4459 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCACert.crt",
4460 "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCAIPM5Cert.crt",
4461 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1CACert.crt",
4462 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedCACert.crt",
4463 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedsubCACert.crt",
4464 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subCACert.crt",
4465 "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subsubCACert.crt",
4466 "third_party/nist-pkits/certs/inhibitPolicyMapping5CACert.crt",
4467 "third_party/nist-pkits/certs/inhibitPolicyMapping5subCACert.crt",
4468 "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubCACert.crt",
4469 "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubsubCACert.crt",
4470 "third_party/nist-pkits/certs/keyUsageCriticalcRLSignFalseCACert.crt",
4471 "third_party/nist-pkits/certs/keyUsageCriticalkeyCertSignFalseCACert.crt",
4472 "third_party/nist-pkits/certs/keyUsageNotCriticalCACert.crt",
4473 "third_party/nist-pkits/certs/keyUsageNotCriticalcRLSignFalseCACert.crt",
4474 "third_party/nist-pkits/certs/keyUsageNotCriticalkeyCertSignFalseCACert.crt",
4475 "third_party/nist-pkits/certs/nameConstraintsDN1CACert.crt",
4476 "third_party/nist-pkits/certs/nameConstraintsDN1SelfIssuedCACert.crt",
4477 "third_party/nist-pkits/certs/nameConstraintsDN1subCA1Cert.crt",
4478 "third_party/nist-pkits/certs/nameConstraintsDN1subCA2Cert.crt",
4479 "third_party/nist-pkits/certs/nameConstraintsDN1subCA3Cert.crt",
4480 "third_party/nist-pkits/certs/nameConstraintsDN2CACert.crt",
4481 "third_party/nist-pkits/certs/nameConstraintsDN3CACert.crt",
4482 "third_party/nist-pkits/certs/nameConstraintsDN3subCA1Cert.crt",
4483 "third_party/nist-pkits/certs/nameConstraintsDN3subCA2Cert.crt",
4484 "third_party/nist-pkits/certs/nameConstraintsDN4CACert.crt",
4485 "third_party/nist-pkits/certs/nameConstraintsDN5CACert.crt",
4486 "third_party/nist-pkits/certs/nameConstraintsDNS1CACert.crt",
4487 "third_party/nist-pkits/certs/nameConstraintsDNS2CACert.crt",
4488 "third_party/nist-pkits/certs/nameConstraintsRFC822CA1Cert.crt",
4489 "third_party/nist-pkits/certs/nameConstraintsRFC822CA2Cert.crt",
4490 "third_party/nist-pkits/certs/nameConstraintsRFC822CA3Cert.crt",
4491 "third_party/nist-pkits/certs/nameConstraintsURI1CACert.crt",
4492 "third_party/nist-pkits/certs/nameConstraintsURI2CACert.crt",
4493 "third_party/nist-pkits/certs/onlyContainsAttributeCertsCACert.crt",
4494 "third_party/nist-pkits/certs/onlyContainsCACertsCACert.crt",
4495 "third_party/nist-pkits/certs/onlyContainsUserCertsCACert.crt",
4496 "third_party/nist-pkits/certs/onlySomeReasonsCA1Cert.crt",
4497 "third_party/nist-pkits/certs/onlySomeReasonsCA2Cert.crt",
4498 "third_party/nist-pkits/certs/onlySomeReasonsCA3Cert.crt",
4499 "third_party/nist-pkits/certs/onlySomeReasonsCA4Cert.crt",
4500 "third_party/nist-pkits/certs/pathLenConstraint0CACert.crt",
4501 "third_party/nist-pkits/certs/pathLenConstraint0SelfIssuedCACert.crt",
4502 "third_party/nist-pkits/certs/pathLenConstraint0subCA2Cert.crt",
4503 "third_party/nist-pkits/certs/pathLenConstraint0subCACert.crt",
4504 "third_party/nist-pkits/certs/pathLenConstraint1CACert.crt",
4505 "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedCACert.crt",
4506 "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedsubCACert.crt",
4507 "third_party/nist-pkits/certs/pathLenConstraint1subCACert.crt",
4508 "third_party/nist-pkits/certs/pathLenConstraint6CACert.crt",
4509 "third_party/nist-pkits/certs/pathLenConstraint6subCA0Cert.crt",
4510 "third_party/nist-pkits/certs/pathLenConstraint6subCA1Cert.crt",
4511 "third_party/nist-pkits/certs/pathLenConstraint6subCA4Cert.crt",
4512 "third_party/nist-pkits/certs/pathLenConstraint6subsubCA00Cert.crt",
4513 "third_party/nist-pkits/certs/pathLenConstraint6subsubCA11Cert.crt",
4514 "third_party/nist-pkits/certs/pathLenConstraint6subsubCA41Cert.crt",
4515 "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA11XCert.crt",
4516 "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA41XCert.crt",
4517 "third_party/nist-pkits/certs/pre2000CRLnextUpdateCACert.crt",
4518 "third_party/nist-pkits/certs/requireExplicitPolicy0CACert.crt",
4519 "third_party/nist-pkits/certs/requireExplicitPolicy0subCACert.crt",
4520 "third_party/nist-pkits/certs/requireExplicitPolicy0subsubCACert.crt",
4521 "third_party/nist-pkits/certs/requireExplicitPolicy0subsubsubCACert.crt",
4522 "third_party/nist-pkits/certs/requireExplicitPolicy10CACert.crt",
4523 "third_party/nist-pkits/certs/requireExplicitPolicy10subCACert.crt",
4524 "third_party/nist-pkits/certs/requireExplicitPolicy10subsubCACert.crt",
4525 "third_party/nist-pkits/certs/requireExplicitPolicy10subsubsubCACert.crt",
4526 "third_party/nist-pkits/certs/requireExplicitPolicy2CACert.crt",
4527 "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedCACert.crt",
4528 "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedsubCACert.crt",
4529 "third_party/nist-pkits/certs/requireExplicitPolicy2subCACert.crt",
4530 "third_party/nist-pkits/certs/requireExplicitPolicy4CACert.crt",
4531 "third_party/nist-pkits/certs/requireExplicitPolicy4subCACert.crt",
4532 "third_party/nist-pkits/certs/requireExplicitPolicy4subsubCACert.crt",
4533 "third_party/nist-pkits/certs/requireExplicitPolicy4subsubsubCACert.crt",
4534 "third_party/nist-pkits/certs/requireExplicitPolicy5CACert.crt",
4535 "third_party/nist-pkits/certs/requireExplicitPolicy5subCACert.crt",
4536 "third_party/nist-pkits/certs/requireExplicitPolicy5subsubCACert.crt",
4537 "third_party/nist-pkits/certs/requireExplicitPolicy5subsubsubCACert.crt",
4538 "third_party/nist-pkits/certs/requireExplicitPolicy7CACert.crt",
4539 "third_party/nist-pkits/certs/requireExplicitPolicy7subCARE2Cert.crt",
4540 "third_party/nist-pkits/certs/requireExplicitPolicy7subsubCARE2RE4Cert.crt",
4541 "third_party/nist-pkits/certs/requireExplicitPolicy7subsubsubCARE2RE4Cert.crt",
4542 "third_party/nist-pkits/crls/BadCRLIssuerNameCACRL.crl",
4543 "third_party/nist-pkits/crls/BadCRLSignatureCACRL.crl",
4544 "third_party/nist-pkits/crls/BadSignedCACRL.crl",
4545 "third_party/nist-pkits/crls/BadnotAfterDateCACRL.crl",
4546 "third_party/nist-pkits/crls/BadnotBeforeDateCACRL.crl",
4547 "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCACRL.crl",
4548 "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCRLCertCRL.crl",
4549 "third_party/nist-pkits/crls/BasicSelfIssuedNewKeyCACRL.crl",
4550 "third_party/nist-pkits/crls/BasicSelfIssuedOldKeyCACRL.crl",
4551 "third_party/nist-pkits/crls/BasicSelfIssuedOldKeySelfIssuedCertCRL.crl",
4552 "third_party/nist-pkits/crls/DSACACRL.crl",
4553 "third_party/nist-pkits/crls/DSAParametersInheritedCACRL.crl",
4554 "third_party/nist-pkits/crls/GeneralizedTimeCRLnextUpdateCACRL.crl",
4555 "third_party/nist-pkits/crls/GoodCACRL.crl",
4556 "third_party/nist-pkits/crls/GoodsubCACRL.crl",
4557 "third_party/nist-pkits/crls/GoodsubCAPanyPolicyMapping1to2CACRL.crl",
4558 "third_party/nist-pkits/crls/LongSerialNumberCACRL.crl",
4559 "third_party/nist-pkits/crls/Mapping1to2CACRL.crl",
4560 "third_party/nist-pkits/crls/MappingFromanyPolicyCACRL.crl",
4561 "third_party/nist-pkits/crls/MappingToanyPolicyCACRL.crl",
4562 "third_party/nist-pkits/crls/MissingbasicConstraintsCACRL.crl",
4563 "third_party/nist-pkits/crls/NameOrderCACRL.crl",
4564 "third_party/nist-pkits/crls/NegativeSerialNumberCACRL.crl",
4565 "third_party/nist-pkits/crls/NoPoliciesCACRL.crl",
4566 "third_party/nist-pkits/crls/NoissuingDistributionPointCACRL.crl",
4567 "third_party/nist-pkits/crls/OldCRLnextUpdateCACRL.crl",
4568 "third_party/nist-pkits/crls/P12Mapping1to3CACRL.crl",
4569 "third_party/nist-pkits/crls/P12Mapping1to3subCACRL.crl",
4570 "third_party/nist-pkits/crls/P12Mapping1to3subsubCACRL.crl",
4571 "third_party/nist-pkits/crls/P1Mapping1to234CACRL.crl",
4572 "third_party/nist-pkits/crls/P1Mapping1to234subCACRL.crl",
4573 "third_party/nist-pkits/crls/P1anyPolicyMapping1to2CACRL.crl",
4574 "third_party/nist-pkits/crls/PanyPolicyMapping1to2CACRL.crl",
4575 "third_party/nist-pkits/crls/PoliciesP1234CACRL.crl",
4576 "third_party/nist-pkits/crls/PoliciesP1234subCAP123CRL.crl",
4577 "third_party/nist-pkits/crls/PoliciesP1234subsubCAP123P12CRL.crl",
4578 "third_party/nist-pkits/crls/PoliciesP123CACRL.crl",
4579 "third_party/nist-pkits/crls/PoliciesP123subCAP12CRL.crl",
4580 "third_party/nist-pkits/crls/PoliciesP123subsubCAP12P1CRL.crl",
4581 "third_party/nist-pkits/crls/PoliciesP123subsubCAP2P2CRL.crl",
4582 "third_party/nist-pkits/crls/PoliciesP123subsubsubCAP12P2P1CRL.crl",
4583 "third_party/nist-pkits/crls/PoliciesP12CACRL.crl",
4584 "third_party/nist-pkits/crls/PoliciesP12subCAP1CRL.crl",
4585 "third_party/nist-pkits/crls/PoliciesP12subsubCAP1P2CRL.crl",
4586 "third_party/nist-pkits/crls/PoliciesP2subCA2CRL.crl",
4587 "third_party/nist-pkits/crls/PoliciesP2subCACRL.crl",
4588 "third_party/nist-pkits/crls/PoliciesP3CACRL.crl",
4589 "third_party/nist-pkits/crls/RFC3280MandatoryAttributeTypesCACRL.crl",
4590 "third_party/nist-pkits/crls/RFC3280OptionalAttributeTypesCACRL.crl",
4591 "third_party/nist-pkits/crls/RevokedsubCACRL.crl",
4592 "third_party/nist-pkits/crls/RolloverfromPrintableStringtoUTF8StringCACRL.crl",
4593 "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCA2CRL.crl",
4594 "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCRL.crl",
4595 "third_party/nist-pkits/crls/TrustAnchorRootCRL.crl",
4596 "third_party/nist-pkits/crls/TwoCRLsCABadCRL.crl",
4597 "third_party/nist-pkits/crls/TwoCRLsCAGoodCRL.crl",
4598 "third_party/nist-pkits/crls/UIDCACRL.crl",
4599 "third_party/nist-pkits/crls/UTF8StringCaseInsensitiveMatchCACRL.crl",
4600 "third_party/nist-pkits/crls/UTF8StringEncodedNamesCACRL.crl",
4601 "third_party/nist-pkits/crls/UnknownCRLEntryExtensionCACRL.crl",
4602 "third_party/nist-pkits/crls/UnknownCRLExtensionCACRL.crl",
4603 "third_party/nist-pkits/crls/WrongCRLCACRL.crl",
4604 "third_party/nist-pkits/crls/anyPolicyCACRL.crl",
4605 "third_party/nist-pkits/crls/basicConstraintsCriticalcAFalseCACRL.crl",
4606 "third_party/nist-pkits/crls/basicConstraintsNotCriticalCACRL.crl",
4607 "third_party/nist-pkits/crls/basicConstraintsNotCriticalcAFalseCACRL.crl",
4608 "third_party/nist-pkits/crls/deltaCRLCA1CRL.crl",
4609 "third_party/nist-pkits/crls/deltaCRLCA1deltaCRL.crl",
4610 "third_party/nist-pkits/crls/deltaCRLCA2CRL.crl",
4611 "third_party/nist-pkits/crls/deltaCRLCA2deltaCRL.crl",
4612 "third_party/nist-pkits/crls/deltaCRLCA3CRL.crl",
4613 "third_party/nist-pkits/crls/deltaCRLCA3deltaCRL.crl",
4614 "third_party/nist-pkits/crls/deltaCRLIndicatorNoBaseCACRL.crl",
4615 "third_party/nist-pkits/crls/distributionPoint1CACRL.crl",
4616 "third_party/nist-pkits/crls/distributionPoint2CACRL.crl",
4617 "third_party/nist-pkits/crls/indirectCRLCA1CRL.crl",
4618 "third_party/nist-pkits/crls/indirectCRLCA3CRL.crl",
4619 "third_party/nist-pkits/crls/indirectCRLCA3cRLIssuerCRL.crl",
4620 "third_party/nist-pkits/crls/indirectCRLCA4cRLIssuerCRL.crl",
4621 "third_party/nist-pkits/crls/indirectCRLCA5CRL.crl",
4622 "third_party/nist-pkits/crls/inhibitAnyPolicy0CACRL.crl",
4623 "third_party/nist-pkits/crls/inhibitAnyPolicy1CACRL.crl",
4624 "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA1CRL.crl",
4625 "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA2CRL.crl",
4626 "third_party/nist-pkits/crls/inhibitAnyPolicy1subCAIAP5CRL.crl",
4627 "third_party/nist-pkits/crls/inhibitAnyPolicy1subsubCA2CRL.crl",
4628 "third_party/nist-pkits/crls/inhibitAnyPolicy5CACRL.crl",
4629 "third_party/nist-pkits/crls/inhibitAnyPolicy5subCACRL.crl",
4630 "third_party/nist-pkits/crls/inhibitAnyPolicy5subsubCACRL.crl",
4631 "third_party/nist-pkits/crls/inhibitPolicyMapping0CACRL.crl",
4632 "third_party/nist-pkits/crls/inhibitPolicyMapping0subCACRL.crl",
4633 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12CACRL.crl",
4634 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCACRL.crl",
4635 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCAIPM5CRL.crl",
4636 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCACRL.crl",
4637 "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCAIPM5CRL.crl",
4638 "third_party/nist-pkits/crls/inhibitPolicyMapping1P1CACRL.crl",
4639 "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subCACRL.crl",
4640 "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subsubCACRL.crl",
4641 "third_party/nist-pkits/crls/inhibitPolicyMapping5CACRL.crl",
4642 "third_party/nist-pkits/crls/inhibitPolicyMapping5subCACRL.crl",
4643 "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubCACRL.crl",
4644 "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubsubCACRL.crl",
4645 "third_party/nist-pkits/crls/keyUsageCriticalcRLSignFalseCACRL.crl",
4646 "third_party/nist-pkits/crls/keyUsageCriticalkeyCertSignFalseCACRL.crl",
4647 "third_party/nist-pkits/crls/keyUsageNotCriticalCACRL.crl",
4648 "third_party/nist-pkits/crls/keyUsageNotCriticalcRLSignFalseCACRL.crl",
4649 "third_party/nist-pkits/crls/keyUsageNotCriticalkeyCertSignFalseCACRL.crl",
4650 "third_party/nist-pkits/crls/nameConstraintsDN1CACRL.crl",
4651 "third_party/nist-pkits/crls/nameConstraintsDN1subCA1CRL.crl",
4652 "third_party/nist-pkits/crls/nameConstraintsDN1subCA2CRL.crl",
4653 "third_party/nist-pkits/crls/nameConstraintsDN1subCA3CRL.crl",
4654 "third_party/nist-pkits/crls/nameConstraintsDN2CACRL.crl",
4655 "third_party/nist-pkits/crls/nameConstraintsDN3CACRL.crl",
4656 "third_party/nist-pkits/crls/nameConstraintsDN3subCA1CRL.crl",
4657 "third_party/nist-pkits/crls/nameConstraintsDN3subCA2CRL.crl",
4658 "third_party/nist-pkits/crls/nameConstraintsDN4CACRL.crl",
4659 "third_party/nist-pkits/crls/nameConstraintsDN5CACRL.crl",
4660 "third_party/nist-pkits/crls/nameConstraintsDNS1CACRL.crl",
4661 "third_party/nist-pkits/crls/nameConstraintsDNS2CACRL.crl",
4662 "third_party/nist-pkits/crls/nameConstraintsRFC822CA1CRL.crl",
4663 "third_party/nist-pkits/crls/nameConstraintsRFC822CA2CRL.crl",
4664 "third_party/nist-pkits/crls/nameConstraintsRFC822CA3CRL.crl",
4665 "third_party/nist-pkits/crls/nameConstraintsURI1CACRL.crl",
4666 "third_party/nist-pkits/crls/nameConstraintsURI2CACRL.crl",
4667 "third_party/nist-pkits/crls/onlyContainsAttributeCertsCACRL.crl",
4668 "third_party/nist-pkits/crls/onlyContainsCACertsCACRL.crl",
4669 "third_party/nist-pkits/crls/onlyContainsUserCertsCACRL.crl",
4670 "third_party/nist-pkits/crls/onlySomeReasonsCA1compromiseCRL.crl",
4671 "third_party/nist-pkits/crls/onlySomeReasonsCA1otherreasonsCRL.crl",
4672 "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL1.crl",
4673 "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL2.crl",
4674 "third_party/nist-pkits/crls/onlySomeReasonsCA3compromiseCRL.crl",
4675 "third_party/nist-pkits/crls/onlySomeReasonsCA3otherreasonsCRL.crl",
4676 "third_party/nist-pkits/crls/onlySomeReasonsCA4compromiseCRL.crl",
4677 "third_party/nist-pkits/crls/onlySomeReasonsCA4otherreasonsCRL.crl",
4678 "third_party/nist-pkits/crls/pathLenConstraint0CACRL.crl",
4679 "third_party/nist-pkits/crls/pathLenConstraint0subCA2CRL.crl",
4680 "third_party/nist-pkits/crls/pathLenConstraint0subCACRL.crl",
4681 "third_party/nist-pkits/crls/pathLenConstraint1CACRL.crl",
4682 "third_party/nist-pkits/crls/pathLenConstraint1subCACRL.crl",
4683 "third_party/nist-pkits/crls/pathLenConstraint6CACRL.crl",
4684 "third_party/nist-pkits/crls/pathLenConstraint6subCA0CRL.crl",
4685 "third_party/nist-pkits/crls/pathLenConstraint6subCA1CRL.crl",
4686 "third_party/nist-pkits/crls/pathLenConstraint6subCA4CRL.crl",
4687 "third_party/nist-pkits/crls/pathLenConstraint6subsubCA00CRL.crl",
4688 "third_party/nist-pkits/crls/pathLenConstraint6subsubCA11CRL.crl",
4689 "third_party/nist-pkits/crls/pathLenConstraint6subsubCA41CRL.crl",
4690 "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA11XCRL.crl",
4691 "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA41XCRL.crl",
4692 "third_party/nist-pkits/crls/pre2000CRLnextUpdateCACRL.crl",
4693 "third_party/nist-pkits/crls/requireExplicitPolicy0CACRL.crl",
4694 "third_party/nist-pkits/crls/requireExplicitPolicy0subCACRL.crl",
4695 "third_party/nist-pkits/crls/requireExplicitPolicy0subsubCACRL.crl",
4696 "third_party/nist-pkits/crls/requireExplicitPolicy0subsubsubCACRL.crl",
4697 "third_party/nist-pkits/crls/requireExplicitPolicy10CACRL.crl",
4698 "third_party/nist-pkits/crls/requireExplicitPolicy10subCACRL.crl",
4699 "third_party/nist-pkits/crls/requireExplicitPolicy10subsubCACRL.crl",
4700 "third_party/nist-pkits/crls/requireExplicitPolicy10subsubsubCACRL.crl",
4701 "third_party/nist-pkits/crls/requireExplicitPolicy2CACRL.crl",
4702 "third_party/nist-pkits/crls/requireExplicitPolicy2subCACRL.crl",
4703 "third_party/nist-pkits/crls/requireExplicitPolicy4CACRL.crl",
4704 "third_party/nist-pkits/crls/requireExplicitPolicy4subCACRL.crl",
4705 "third_party/nist-pkits/crls/requireExplicitPolicy4subsubCACRL.crl",
4706 "third_party/nist-pkits/crls/requireExplicitPolicy4subsubsubCACRL.crl",
4707 "third_party/nist-pkits/crls/requireExplicitPolicy5CACRL.crl",
4708 "third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl",
4709 "third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl",
4710 "third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl",
4711 "third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl",
4712 "third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl",
4713 "third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl",
4714 "third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.crl",
4715 ]
sdefresneb0a31642016-03-18 11:04:454716 outputs = [
4717 "{{bundle_resources_dir}}/" +
4718 "{{source_root_relative_dir}}/{{source_file_part}}",
4719 ]
4720}
4721
dpranke64df2832015-07-31 22:33:364722test("net_unittests") {
ckrasic73f7240b2017-01-24 00:06:454723 sources = [
4724 "android/cellular_signal_strength_unittest.cc",
4725 "android/dummy_spnego_authenticator.cc",
4726 "android/dummy_spnego_authenticator.h",
4727 "android/http_auth_negotiate_android_unittest.cc",
4728 "android/network_change_notifier_android_unittest.cc",
4729 "android/network_library_unittest.cc",
4730 "android/traffic_stats_unittest.cc",
4731 "base/address_family_unittest.cc",
4732 "base/address_list_unittest.cc",
4733 "base/address_tracker_linux_unittest.cc",
4734 "base/arena_unittest.cc",
4735 "base/backoff_entry_serializer_unittest.cc",
4736 "base/backoff_entry_unittest.cc",
4737 "base/chunked_upload_data_stream_unittest.cc",
4738 "base/data_url_unittest.cc",
Charles 'Buck' Krasiced43ded2018-03-23 18:48:124739 "base/datagram_buffer_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454740 "base/directory_lister_unittest.cc",
4741 "base/directory_listing_unittest.cc",
4742 "base/elements_upload_data_stream_unittest.cc",
4743 "base/escape_unittest.cc",
4744 "base/expiring_cache_unittest.cc",
4745 "base/file_stream_unittest.cc",
4746 "base/filename_util_unittest.cc",
Bence Békyd5c16edf2017-08-04 17:32:304747 "base/hex_utils_test.cc",
ckrasic73f7240b2017-01-24 00:06:454748 "base/host_mapping_rules_unittest.cc",
4749 "base/host_port_pair_unittest.cc",
fayangbaec8ff52017-01-28 03:26:124750 "base/interval_set_test.cc",
4751 "base/interval_test.cc",
ckrasic73f7240b2017-01-24 00:06:454752 "base/ip_address_unittest.cc",
4753 "base/ip_endpoint_unittest.cc",
4754 "base/ip_pattern_unittest.cc",
4755 "base/layered_network_delegate_unittest.cc",
4756 "base/lookup_string_in_fixed_set_unittest.cc",
4757 "base/mime_sniffer_unittest.cc",
4758 "base/mime_util_unittest.cc",
Zentaro Kavanagha02f1da2017-09-26 23:56:064759 "base/net_string_util_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454760 "base/network_activity_monitor_unittest.cc",
Robbie McElrath995a2bf2018-11-19 23:21:594761 "base/network_change_notifier_chromeos_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454762 "base/network_change_notifier_unittest.cc",
4763 "base/network_change_notifier_win_unittest.cc",
Sergey Ulanov5bb07d32017-07-12 04:14:544764 "base/network_interfaces_linux_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454765 "base/network_interfaces_unittest.cc",
Sergey Ulanov5bb07d32017-07-12 04:14:544766 "base/network_interfaces_win_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454767 "base/parse_number_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454768 "base/port_util_unittest.cc",
4769 "base/prioritized_dispatcher_unittest.cc",
Josh Karlindd9a5d142018-06-06 00:35:484770 "base/prioritized_task_runner_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454771 "base/priority_queue_unittest.cc",
4772 "base/registry_controlled_domains/registry_controlled_domain_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454773 "base/static_cookie_policy_unittest.cc",
4774 "base/test_completion_callback_unittest.cc",
4775 "base/test_proxy_delegate.cc",
4776 "base/test_proxy_delegate.h",
4777 "base/upload_bytes_element_reader_unittest.cc",
4778 "base/upload_file_element_reader_unittest.cc",
4779 "base/url_util_unittest.cc",
4780 "cert/caching_cert_verifier_unittest.cc",
4781 "cert/cert_verifier_unittest.cc",
estarkd91e0b22017-01-31 01:10:284782 "cert/cert_verify_proc_android_unittest.cc",
Eugene Butd4d01fd2018-04-14 02:38:294783 "cert/cert_verify_proc_ios_unittest.cc",
eromance65aff2017-02-04 00:05:324784 "cert/cert_verify_proc_mac_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454785 "cert/cert_verify_proc_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454786 "cert/crl_set_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454787 "cert/ct_log_response_parser_unittest.cc",
4788 "cert/ct_log_verifier_unittest.cc",
4789 "cert/ct_objects_extractor_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454790 "cert/ct_serialization_unittest.cc",
4791 "cert/ev_root_ca_metadata_unittest.cc",
4792 "cert/internal/cert_issuer_source_aia_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454793 "cert/internal/cert_issuer_source_static_unittest.cc",
4794 "cert/internal/cert_issuer_source_sync_unittest.h",
4795 "cert/internal/certificate_policies_unittest.cc",
4796 "cert/internal/extended_key_usage_unittest.cc",
Matt Mueller9e3ad3032017-09-14 19:29:314797 "cert/internal/general_names_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454798 "cert/internal/name_constraints_unittest.cc",
eromanc95383ac2017-05-26 19:37:304799 "cert/internal/nist_pkits_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454800 "cert/internal/nist_pkits_unittest.h",
Eric Romana2f6f55d2017-09-07 23:34:574801 "cert/internal/ocsp_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454802 "cert/internal/parse_certificate_unittest.cc",
4803 "cert/internal/parse_name_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454804 "cert/internal/parsed_certificate_unittest.cc",
4805 "cert/internal/path_builder_pkits_unittest.cc",
4806 "cert/internal/path_builder_unittest.cc",
4807 "cert/internal/path_builder_verify_certificate_chain_unittest.cc",
Eric Romancc56d16f2017-10-11 23:04:264808 "cert/internal/revocation_checker_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454809 "cert/internal/signature_algorithm_unittest.cc",
Eric Roman5431d702017-07-26 01:58:184810 "cert/internal/simple_path_builder_delegate_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454811 "cert/internal/test_helpers.cc",
4812 "cert/internal/test_helpers.h",
4813 "cert/internal/trust_store_collection_unittest.cc",
mattmea4ed8232017-02-28 23:13:234814 "cert/internal/trust_store_mac_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454815 "cert/internal/trust_store_nss_unittest.cc",
4816 "cert/internal/verify_certificate_chain_pkits_unittest.cc",
4817 "cert/internal/verify_certificate_chain_typed_unittest.h",
4818 "cert/internal/verify_certificate_chain_unittest.cc",
4819 "cert/internal/verify_name_match_unittest.cc",
4820 "cert/internal/verify_signed_data_unittest.cc",
4821 "cert/jwk_serializer_unittest.cc",
Ryan Sleevi19a7bde2017-11-22 06:51:394822 "cert/known_roots_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454823 "cert/merkle_audit_proof_unittest.cc",
4824 "cert/merkle_tree_leaf_unittest.cc",
4825 "cert/multi_log_ct_verifier_unittest.cc",
4826 "cert/multi_threaded_cert_verifier_unittest.cc",
4827 "cert/nss_cert_database_chromeos_unittest.cc",
4828 "cert/nss_cert_database_unittest.cc",
4829 "cert/nss_profile_filter_chromeos_unittest.cc",
4830 "cert/pem_tokenizer_unittest.cc",
4831 "cert/signed_certificate_timestamp_unittest.cc",
Emily Starkd29cdae2017-09-16 01:59:344832 "cert/symantec_certs_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454833 "cert/test_root_certs_unittest.cc",
4834 "cert/x509_cert_types_unittest.cc",
4835 "cert/x509_certificate_unittest.cc",
mattm1a07e632017-05-16 05:55:504836 "cert/x509_util_ios_and_mac_unittest.cc",
Matt Mueller10684c92017-08-09 07:24:094837 "cert/x509_util_nss_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454838 "cert/x509_util_unittest.cc",
4839 "cert_net/cert_net_fetcher_impl_unittest.cc",
4840 "cert_net/nss_ocsp_unittest.cc",
4841 "cookies/canonical_cookie_unittest.cc",
4842 "cookies/cookie_constants_unittest.cc",
Chris Mumfordd8ed9f82018-05-01 15:43:134843 "cookies/cookie_deletion_info_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454844 "cookies/cookie_monster_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454845 "cookies/cookie_util_unittest.cc",
4846 "cookies/parsed_cookie_unittest.cc",
4847 "der/encode_values_unittest.cc",
4848 "der/input_unittest.cc",
4849 "der/parse_values_unittest.cc",
4850 "der/parser_unittest.cc",
Maks Orlovich036fd1f2017-08-07 17:51:114851 "disk_cache/backend_cleanup_tracker_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454852 "disk_cache/backend_unittest.cc",
4853 "disk_cache/blockfile/addr_unittest.cc",
4854 "disk_cache/blockfile/bitmap_unittest.cc",
4855 "disk_cache/blockfile/block_files_unittest.cc",
4856 "disk_cache/blockfile/mapped_file_unittest.cc",
4857 "disk_cache/blockfile/stats_unittest.cc",
4858 "disk_cache/blockfile/storage_block_unittest.cc",
4859 "disk_cache/cache_util_unittest.cc",
4860 "disk_cache/entry_unittest.cc",
Maks Orlovichf378b3a2017-10-31 16:27:304861 "disk_cache/simple/simple_file_tracker_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454862 "disk_cache/simple/simple_index_file_unittest.cc",
4863 "disk_cache/simple/simple_index_unittest.cc",
4864 "disk_cache/simple/simple_test_util.cc",
4865 "disk_cache/simple/simple_test_util.h",
4866 "disk_cache/simple/simple_util_unittest.cc",
4867 "disk_cache/simple/simple_version_upgrade_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454868 "extras/sqlite/sqlite_channel_id_store_unittest.cc",
4869 "extras/sqlite/sqlite_persistent_cookie_store_unittest.cc",
4870 "filter/brotli_source_stream_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454871 "filter/filter_source_stream_unittest.cc",
4872 "filter/gzip_source_stream_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454873 "ftp/ftp_auth_cache_unittest.cc",
4874 "ftp/ftp_ctrl_response_buffer_unittest.cc",
4875 "ftp/ftp_directory_listing_parser_ls_unittest.cc",
4876 "ftp/ftp_directory_listing_parser_unittest.cc",
4877 "ftp/ftp_directory_listing_parser_unittest.h",
4878 "ftp/ftp_directory_listing_parser_vms_unittest.cc",
4879 "ftp/ftp_directory_listing_parser_windows_unittest.cc",
4880 "ftp/ftp_network_transaction_unittest.cc",
4881 "ftp/ftp_util_unittest.cc",
4882 "http/bidirectional_stream_unittest.cc",
wangyix64ccc57c2017-06-01 23:14:164883 "http/broken_alternative_services_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454884 "http/http_auth_cache_unittest.cc",
4885 "http/http_auth_challenge_tokenizer_unittest.cc",
4886 "http/http_auth_controller_unittest.cc",
4887 "http/http_auth_filter_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454888 "http/http_auth_handler_basic_unittest.cc",
4889 "http/http_auth_handler_digest_unittest.cc",
4890 "http/http_auth_handler_factory_unittest.cc",
4891 "http/http_auth_handler_mock.cc",
4892 "http/http_auth_handler_mock.h",
4893 "http/http_auth_handler_negotiate_unittest.cc",
zentarob89acda42017-07-14 01:28:574894 "http/http_auth_handler_ntlm_portable_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454895 "http/http_auth_handler_unittest.cc",
4896 "http/http_auth_multi_round_parse_unittest.cc",
4897 "http/http_auth_preferences_unittest.cc",
4898 "http/http_auth_sspi_win_unittest.cc",
4899 "http/http_auth_unittest.cc",
4900 "http/http_basic_state_unittest.cc",
4901 "http/http_byte_range_unittest.cc",
4902 "http/http_cache_lookup_manager_unittest.cc",
4903 "http/http_cache_unittest.cc",
shivanishac6582e12017-07-14 22:18:194904 "http/http_cache_writers_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454905 "http/http_chunked_decoder_unittest.cc",
4906 "http/http_content_disposition_unittest.cc",
4907 "http/http_log_util_unittest.cc",
4908 "http/http_network_layer_unittest.cc",
4909 "http/http_network_transaction_ssl_unittest.cc",
4910 "http/http_network_transaction_unittest.cc",
4911 "http/http_proxy_client_socket_pool_unittest.cc",
Paul Jensen0f49dec2017-12-12 23:39:584912 "http/http_proxy_client_socket_unittest.cc",
Yixin Wangd107e062017-11-10 21:57:464913 "http/http_proxy_client_socket_wrapper_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454914 "http/http_request_headers_unittest.cc",
4915 "http/http_response_body_drainer_unittest.cc",
4916 "http/http_response_headers_unittest.cc",
4917 "http/http_response_info_unittest.cc",
4918 "http/http_security_headers_unittest.cc",
4919 "http/http_server_properties_impl_unittest.cc",
4920 "http/http_server_properties_manager_unittest.cc",
4921 "http/http_status_code_unittest.cc",
Xida Chen9bfe0b62018-04-24 19:52:214922 "http/http_stream_factory_job_controller_unittest.cc",
4923 "http/http_stream_factory_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454924 "http/http_stream_parser_unittest.cc",
Bence Béky6b44abf2018-04-11 10:32:514925 "http/http_stream_request_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454926 "http/http_util_unittest.cc",
4927 "http/http_vary_data_unittest.cc",
4928 "http/mock_allow_http_auth_preferences.cc",
4929 "http/mock_allow_http_auth_preferences.h",
ckrasic73f7240b2017-01-24 00:06:454930 "http/mock_sspi_library_win.cc",
4931 "http/mock_sspi_library_win.h",
4932 "http/transport_security_persister_unittest.cc",
4933 "http/transport_security_state_unittest.cc",
4934 "http/url_security_manager_unittest.cc",
Victor Vasiliev92c06acc2018-12-08 10:16:274935 "http2/platform/impl/http2_mock_log_impl.h",
4936 "http2/platform/impl/http2_test_helpers_impl.cc",
4937 "http2/platform/impl/http2_test_helpers_impl.h",
ckrasic73f7240b2017-01-24 00:06:454938 "log/file_net_log_observer_unittest.cc",
4939 "log/net_log_capture_mode_unittest.cc",
4940 "log/net_log_unittest.cc",
4941 "log/net_log_util_unittest.cc",
4942 "log/trace_net_log_observer_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454943 "nqe/effective_connection_type_unittest.cc",
tbansalf38471f2017-03-04 01:07:044944 "nqe/event_creator_unittest.cc",
Tarun Bansalcdfa34b2017-11-23 05:11:174945 "nqe/network_id_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454946 "nqe/network_qualities_prefs_manager_unittest.cc",
tbansal35bdb0b2017-05-04 16:23:334947 "nqe/network_quality_estimator_params_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454948 "nqe/network_quality_estimator_unittest.cc",
tbansal82edab42017-06-19 05:55:254949 "nqe/network_quality_estimator_util_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454950 "nqe/network_quality_store_unittest.cc",
4951 "nqe/observation_buffer_unittest.cc",
tbansal180587c2017-02-16 15:13:234952 "nqe/socket_watcher_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:454953 "nqe/throughput_analyzer_unittest.cc",
zentarob74795682017-07-14 00:58:224954 "ntlm/ntlm_buffer_reader_unittest.cc",
4955 "ntlm/ntlm_buffer_writer_unittest.cc",
Zentaro Kavanaghdd556612017-08-03 20:27:044956 "ntlm/ntlm_client_unittest.cc",
zentarob89acda42017-07-14 01:28:574957 "ntlm/ntlm_test_data.h",
4958 "ntlm/ntlm_unittest.cc",
Lily Houghton582d4622018-01-22 22:43:404959 "proxy_resolution/dhcp_pac_file_adapter_fetcher_win_unittest.cc",
4960 "proxy_resolution/dhcp_pac_file_fetcher_factory_unittest.cc",
4961 "proxy_resolution/dhcp_pac_file_fetcher_win_unittest.cc",
Lily Houghton582d4622018-01-22 22:43:404962 "proxy_resolution/multi_threaded_proxy_resolver_unittest.cc",
4963 "proxy_resolution/network_delegate_error_observer_unittest.cc",
4964 "proxy_resolution/pac_file_decider_unittest.cc",
4965 "proxy_resolution/pac_file_fetcher_impl_unittest.cc",
Eric Roman7193c9f2018-11-22 01:39:584966 "proxy_resolution/pac_library_unittest.cc",
Lily Houghton582d4622018-01-22 22:43:404967 "proxy_resolution/proxy_bypass_rules_unittest.cc",
4968 "proxy_resolution/proxy_config_service_android_unittest.cc",
4969 "proxy_resolution/proxy_config_service_linux_unittest.cc",
4970 "proxy_resolution/proxy_config_service_win_unittest.cc",
4971 "proxy_resolution/proxy_config_unittest.cc",
4972 "proxy_resolution/proxy_info_unittest.cc",
4973 "proxy_resolution/proxy_list_unittest.cc",
Lily Houghtonffe89daa02018-03-09 18:30:034974 "proxy_resolution/proxy_resolution_service_unittest.cc",
Lily Houghton582d4622018-01-22 22:43:404975 "proxy_resolution/proxy_resolver_v8_tracing_unittest.cc",
4976 "proxy_resolution/proxy_resolver_v8_tracing_wrapper_unittest.cc",
4977 "proxy_resolution/proxy_resolver_v8_unittest.cc",
4978 "proxy_resolution/proxy_server_unittest.cc",
Ryan Hamiltona3ee93a72018-08-01 22:03:084979 "quic/bidirectional_stream_quic_impl_unittest.cc",
4980 "quic/crypto/proof_test_chromium.cc",
4981 "quic/crypto/proof_verifier_chromium_test.cc",
Ryan Hamiltona3ee93a72018-08-01 22:03:084982 "quic/mock_quic_data.cc",
4983 "quic/mock_quic_data.h",
4984 "quic/network_connection_unittest.cc",
4985 "quic/properties_based_quic_server_info_test.cc",
4986 "quic/quic_address_mismatch_test.cc",
4987 "quic/quic_chromium_alarm_factory_test.cc",
4988 "quic/quic_chromium_client_session_peer.cc",
4989 "quic/quic_chromium_client_session_peer.h",
4990 "quic/quic_chromium_client_session_test.cc",
4991 "quic/quic_chromium_client_stream_test.cc",
4992 "quic/quic_chromium_connection_helper_test.cc",
4993 "quic/quic_clock_skew_detector_test.cc",
4994 "quic/quic_connectivity_probing_manager_test.cc",
4995 "quic/quic_end_to_end_unittest.cc",
4996 "quic/quic_http_stream_test.cc",
4997 "quic/quic_http_utils_test.cc",
4998 "quic/quic_network_transaction_unittest.cc",
4999 "quic/quic_proxy_client_socket_unittest.cc",
5000 "quic/quic_stream_factory_peer.cc",
5001 "quic/quic_stream_factory_peer.h",
5002 "quic/quic_stream_factory_test.cc",
5003 "quic/quic_test_packet_maker.cc",
5004 "quic/quic_test_packet_maker.h",
5005 "quic/quic_utils_chromium_test.cc",
Matt Menke146062f2018-12-04 05:12:065006 "socket/client_socket_pool_base_unittest.cc",
Matt Menke977e61b2019-01-10 19:36:025007 "socket/connect_job_unittest.cc",
Matt Menke146062f2018-12-04 05:12:065008 "socket/mock_client_socket_pool_manager.cc",
5009 "socket/mock_client_socket_pool_manager.h",
5010 "socket/sequenced_socket_data_unittest.cc",
5011 "socket/socket_bio_adapter_unittest.cc",
5012 "socket/socket_tag_unittest.cc",
5013 "socket/socks5_client_socket_unittest.cc",
5014 "socket/socks_client_socket_pool_unittest.cc",
5015 "socket/socks_client_socket_unittest.cc",
5016 "socket/ssl_client_socket_pool_unittest.cc",
5017 "socket/ssl_client_socket_unittest.cc",
5018 "socket/ssl_server_socket_unittest.cc",
5019 "socket/tcp_client_socket_unittest.cc",
5020 "socket/tcp_server_socket_unittest.cc",
5021 "socket/tcp_socket_unittest.cc",
5022 "socket/transport_client_socket_pool_test_util.cc",
5023 "socket/transport_client_socket_pool_test_util.h",
5024 "socket/transport_client_socket_pool_unittest.cc",
5025 "socket/transport_client_socket_unittest.cc",
5026 "socket/udp_socket_unittest.cc",
5027 "socket/websocket_endpoint_lock_manager_unittest.cc",
5028 "socket/websocket_transport_client_socket_pool_unittest.cc",
5029 "spdy/bidirectional_stream_spdy_impl_unittest.cc",
5030 "spdy/buffered_spdy_framer_unittest.cc",
5031 "spdy/fuzzing/hpack_fuzz_util_test.cc",
5032 "spdy/header_coalescer_test.cc",
5033 "spdy/http2_priority_dependencies_unittest.cc",
5034 "spdy/http2_push_promise_index_test.cc",
5035 "spdy/spdy_buffer_unittest.cc",
5036 "spdy/spdy_http_stream_unittest.cc",
5037 "spdy/spdy_http_utils_unittest.cc",
5038 "spdy/spdy_log_util_unittest.cc",
5039 "spdy/spdy_network_transaction_unittest.cc",
5040 "spdy/spdy_proxy_client_socket_unittest.cc",
5041 "spdy/spdy_read_queue_unittest.cc",
5042 "spdy/spdy_session_pool_unittest.cc",
5043 "spdy/spdy_session_test_util.cc",
5044 "spdy/spdy_session_test_util.h",
5045 "spdy/spdy_session_unittest.cc",
5046 "spdy/spdy_stream_test_util.cc",
5047 "spdy/spdy_stream_test_util.h",
5048 "spdy/spdy_stream_unittest.cc",
5049 "spdy/spdy_write_queue_unittest.cc",
5050 "ssl/channel_id_service_unittest.cc",
5051 "ssl/client_cert_identity_unittest.cc",
5052 "ssl/client_cert_store_mac_unittest.cc",
5053 "ssl/client_cert_store_nss_unittest.cc",
5054 "ssl/client_cert_store_unittest-inl.h",
5055 "ssl/client_cert_store_win_unittest.cc",
5056 "ssl/default_channel_id_store_unittest.cc",
5057 "ssl/ssl_cipher_suite_names_unittest.cc",
5058 "ssl/ssl_client_auth_cache_unittest.cc",
5059 "ssl/ssl_client_session_cache_unittest.cc",
5060 "ssl/ssl_config_service_unittest.cc",
5061 "ssl/ssl_config_unittest.cc",
5062 "ssl/ssl_connection_status_flags_unittest.cc",
5063 "ssl/ssl_platform_key_android_unittest.cc",
5064 "ssl/ssl_platform_key_mac_unittest.cc",
5065 "ssl/ssl_platform_key_nss_unittest.cc",
5066 "ssl/ssl_platform_key_util_unittest.cc",
5067 "ssl/ssl_platform_key_win_unittest.cc",
5068 "test/embedded_test_server/embedded_test_server_unittest.cc",
5069 "test/embedded_test_server/http_request_unittest.cc",
5070 "test/embedded_test_server/http_response_unittest.cc",
5071 "test/run_all_unittests.cc",
5072 "test/tcp_socket_proxy_unittest.cc",
Matt Menke146062f2018-12-04 05:12:065073 "third_party/nist-pkits/pkits_testcases-inl.h",
Ryan Hamilton56b10c5d2018-05-11 13:40:165074 "third_party/quic/core/congestion_control/bandwidth_sampler_test.cc",
5075 "third_party/quic/core/congestion_control/bbr_sender_test.cc",
5076 "third_party/quic/core/congestion_control/cubic_bytes_test.cc",
5077 "third_party/quic/core/congestion_control/general_loss_algorithm_test.cc",
5078 "third_party/quic/core/congestion_control/hybrid_slow_start_test.cc",
5079 "third_party/quic/core/congestion_control/pacing_sender_test.cc",
5080 "third_party/quic/core/congestion_control/prr_sender_test.cc",
5081 "third_party/quic/core/congestion_control/rtt_stats_test.cc",
5082 "third_party/quic/core/congestion_control/send_algorithm_test.cc",
5083 "third_party/quic/core/congestion_control/windowed_filter_test.cc",
5084 "third_party/quic/core/crypto/aes_128_gcm_12_decrypter_test.cc",
5085 "third_party/quic/core/crypto/aes_128_gcm_12_encrypter_test.cc",
5086 "third_party/quic/core/crypto/aes_128_gcm_decrypter_test.cc",
5087 "third_party/quic/core/crypto/aes_128_gcm_encrypter_test.cc",
5088 "third_party/quic/core/crypto/aes_256_gcm_decrypter_test.cc",
5089 "third_party/quic/core/crypto/aes_256_gcm_encrypter_test.cc",
5090 "third_party/quic/core/crypto/cert_compressor_test.cc",
5091 "third_party/quic/core/crypto/chacha20_poly1305_decrypter_test.cc",
5092 "third_party/quic/core/crypto/chacha20_poly1305_encrypter_test.cc",
5093 "third_party/quic/core/crypto/chacha20_poly1305_tls_decrypter_test.cc",
5094 "third_party/quic/core/crypto/chacha20_poly1305_tls_encrypter_test.cc",
5095 "third_party/quic/core/crypto/channel_id_test.cc",
5096 "third_party/quic/core/crypto/common_cert_set_test.cc",
5097 "third_party/quic/core/crypto/crypto_framer_test.cc",
5098 "third_party/quic/core/crypto/crypto_handshake_message_test.cc",
5099 "third_party/quic/core/crypto/crypto_secret_boxer_test.cc",
5100 "third_party/quic/core/crypto/crypto_server_test.cc",
5101 "third_party/quic/core/crypto/crypto_utils_test.cc",
5102 "third_party/quic/core/crypto/curve25519_key_exchange_test.cc",
5103 "third_party/quic/core/crypto/null_decrypter_test.cc",
5104 "third_party/quic/core/crypto/null_encrypter_test.cc",
5105 "third_party/quic/core/crypto/p256_key_exchange_test.cc",
5106 "third_party/quic/core/crypto/quic_compressed_certs_cache_test.cc",
5107 "third_party/quic/core/crypto/quic_crypto_client_config_test.cc",
5108 "third_party/quic/core/crypto/quic_crypto_server_config_test.cc",
Victor Vasiliev955f6e32018-07-10 18:03:295109 "third_party/quic/core/crypto/quic_hkdf_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165110 "third_party/quic/core/crypto/quic_random_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165111 "third_party/quic/core/crypto/transport_parameters_test.cc",
5112 "third_party/quic/core/frames/quic_frames_test.cc",
Ryan Hamilton47cf9d12018-10-17 04:33:095113 "third_party/quic/core/http/http_decoder_test.cc",
Ryan Hamilton14d6a892018-10-18 19:03:425114 "third_party/quic/core/http/http_encoder_test.cc",
Victor Vasilievc5b409c22018-07-24 12:23:465115 "third_party/quic/core/http/quic_client_promised_info_test.cc",
5116 "third_party/quic/core/http/quic_client_push_promise_index_test.cc",
5117 "third_party/quic/core/http/quic_header_list_test.cc",
5118 "third_party/quic/core/http/quic_headers_stream_test.cc",
Matt Menke146062f2018-12-04 05:12:065119 "third_party/quic/core/http/quic_server_session_base_test.cc",
5120 "third_party/quic/core/http/quic_spdy_session_test.cc",
5121 "third_party/quic/core/http/quic_spdy_stream_test.cc",
5122 "third_party/quic/core/http/spdy_utils_test.cc",
5123 "third_party/quic/core/legacy_quic_stream_id_manager_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165124 "third_party/quic/core/packet_number_indexed_queue_test.cc",
Michael Warres3bbd3f62019-01-04 00:13:245125 "third_party/quic/core/qpack/qpack_decoder_stream_receiver_test.cc",
Michael Warresdbb8f5c12019-01-03 21:50:535126 "third_party/quic/core/qpack/qpack_decoder_stream_sender_test.cc",
Dan Zhangcd7dc432018-09-19 16:31:425127 "third_party/quic/core/qpack/qpack_decoder_test.cc",
Victor Vasiliev828a57a62018-10-03 01:46:235128 "third_party/quic/core/qpack/qpack_encoder_stream_receiver_test.cc",
5129 "third_party/quic/core/qpack/qpack_encoder_stream_sender_test.cc",
Dan Zhangcd7dc432018-09-19 16:31:425130 "third_party/quic/core/qpack/qpack_encoder_test.cc",
Matt Menke146062f2018-12-04 05:12:065131 "third_party/quic/core/qpack/qpack_header_table_test.cc",
Frank Kastenholz1dac18b62018-11-29 18:50:365132 "third_party/quic/core/qpack/qpack_instruction_decoder_test.cc",
Frank Kastenholzc9b9bea2018-12-03 20:13:475133 "third_party/quic/core/qpack/qpack_instruction_encoder_test.cc",
Zhongyi Shi2be051202019-01-07 22:57:195134 "third_party/quic/core/qpack/qpack_progressive_decoder_test.cc",
Matt Menke146062f2018-12-04 05:12:065135 "third_party/quic/core/qpack/qpack_round_trip_test.cc",
Ryan Hamilton14d6a892018-10-18 19:03:425136 "third_party/quic/core/qpack/qpack_static_table_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165137 "third_party/quic/core/quic_alarm_test.cc",
5138 "third_party/quic/core/quic_arena_scoped_ptr_test.cc",
5139 "third_party/quic/core/quic_bandwidth_test.cc",
5140 "third_party/quic/core/quic_buffered_packet_store_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165141 "third_party/quic/core/quic_config_test.cc",
Fan Yang32c5a112018-12-10 20:06:335142 "third_party/quic/core/quic_connection_id_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165143 "third_party/quic/core/quic_connection_test.cc",
5144 "third_party/quic/core/quic_control_frame_manager_test.cc",
5145 "third_party/quic/core/quic_crypto_client_stream_test.cc",
5146 "third_party/quic/core/quic_crypto_server_stream_test.cc",
5147 "third_party/quic/core/quic_crypto_stream_test.cc",
5148 "third_party/quic/core/quic_data_writer_test.cc",
Matt Menke146062f2018-12-04 05:12:065149 "third_party/quic/core/quic_dispatcher_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165150 "third_party/quic/core/quic_error_codes_test.cc",
5151 "third_party/quic/core/quic_flow_controller_test.cc",
5152 "third_party/quic/core/quic_framer_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165153 "third_party/quic/core/quic_ietf_framer_test.cc",
Frank Kastenholz929883afb2018-09-07 20:56:375154 "third_party/quic/core/quic_lru_cache_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165155 "third_party/quic/core/quic_one_block_arena_test.cc",
5156 "third_party/quic/core/quic_packet_creator_test.cc",
5157 "third_party/quic/core/quic_packet_generator_test.cc",
5158 "third_party/quic/core/quic_received_packet_manager_test.cc",
5159 "third_party/quic/core/quic_sent_packet_manager_test.cc",
5160 "third_party/quic/core/quic_server_id_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165161 "third_party/quic/core/quic_session_test.cc",
5162 "third_party/quic/core/quic_simple_buffer_allocator_test.cc",
5163 "third_party/quic/core/quic_socket_address_coder_test.cc",
Frank Kastenholz878763bf2018-11-28 19:14:485164 "third_party/quic/core/quic_stream_id_manager_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165165 "third_party/quic/core/quic_stream_send_buffer_test.cc",
5166 "third_party/quic/core/quic_stream_sequencer_buffer_test.cc",
5167 "third_party/quic/core/quic_stream_sequencer_test.cc",
5168 "third_party/quic/core/quic_stream_test.cc",
5169 "third_party/quic/core/quic_sustained_bandwidth_recorder_test.cc",
5170 "third_party/quic/core/quic_tag_test.cc",
5171 "third_party/quic/core/quic_time_test.cc",
Ryan Hamiltonc3743d12018-07-02 23:27:075172 "third_party/quic/core/quic_time_wait_list_manager_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165173 "third_party/quic/core/quic_trace_visitor_test.cc",
5174 "third_party/quic/core/quic_unacked_packet_map_test.cc",
5175 "third_party/quic/core/quic_utils_test.cc",
5176 "third_party/quic/core/quic_version_manager_test.cc",
5177 "third_party/quic/core/quic_versions_test.cc",
5178 "third_party/quic/core/quic_write_blocked_list_test.cc",
Matt Menke146062f2018-12-04 05:12:065179 "third_party/quic/core/tls_handshaker_test.cc",
Fan Yang32c5a112018-12-10 20:06:335180 "third_party/quic/core/uber_quic_stream_id_manager_test.cc",
Bin Wu13fcb7a32018-09-09 01:04:495181 "third_party/quic/platform/api/quic_containers_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165182 "third_party/quic/platform/api/quic_endian_test.cc",
5183 "third_party/quic/platform/api/quic_hostname_utils_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165184 "third_party/quic/platform/api/quic_mem_slice_span_test.cc",
Renjieb5888d392018-11-13 22:40:125185 "third_party/quic/platform/api/quic_mem_slice_storage_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165186 "third_party/quic/platform/api/quic_mem_slice_test.cc",
5187 "third_party/quic/platform/api/quic_reference_counted_test.cc",
5188 "third_party/quic/platform/api/quic_singleton_test.cc",
5189 "third_party/quic/platform/api/quic_str_cat_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165190 "third_party/quic/platform/api/quic_text_utils_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165191 "third_party/quic/platform/impl/quic_chromium_clock_test.cc",
Victor Vasiliev82b25c42018-10-05 21:39:485192 "third_party/quic/platform/impl/quic_uint128_impl_unittest.cc",
Fan Yang32c5a112018-12-10 20:06:335193 "third_party/quic/quartc/quartc_interval_counter_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165194 "third_party/quic/quartc/quartc_session_test.cc",
5195 "third_party/quic/quartc/quartc_stream_test.cc",
Zhongyi Shi079f18b2018-08-23 20:08:355196 "third_party/quic/quartc/simulated_packet_transport.cc",
5197 "third_party/quic/quartc/simulated_packet_transport.h",
5198 "third_party/quic/quartc/simulated_packet_transport_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165199 "third_party/quic/test_tools/crypto_test_utils_test.cc",
Ryan Hamilton17ad58772018-07-03 02:21:215200 "third_party/quic/test_tools/mock_quic_time_wait_list_manager.cc",
5201 "third_party/quic/test_tools/mock_quic_time_wait_list_manager.h",
Matt Menke146062f2018-12-04 05:12:065202 "third_party/quic/test_tools/quic_test_utils_test.cc",
5203 "third_party/quic/test_tools/simple_session_notifier_test.cc",
5204 "third_party/quic/test_tools/simulator/quic_endpoint_test.cc",
5205 "third_party/quic/test_tools/simulator/simulator_test.cc",
Victor Vasiliev92c06acc2018-12-08 10:16:275206 "third_party/quiche/src/http2/decoder/decode_buffer_test.cc",
5207 "third_party/quiche/src/http2/decoder/decode_http2_structures_test.cc",
5208 "third_party/quiche/src/http2/decoder/frame_decoder_state_test_util.cc",
5209 "third_party/quiche/src/http2/decoder/frame_decoder_state_test_util.h",
5210 "third_party/quiche/src/http2/decoder/http2_frame_decoder_listener_test_util.cc",
5211 "third_party/quiche/src/http2/decoder/http2_frame_decoder_listener_test_util.h",
5212 "third_party/quiche/src/http2/decoder/http2_frame_decoder_test.cc",
5213 "third_party/quiche/src/http2/decoder/http2_structure_decoder_test.cc",
5214 "third_party/quiche/src/http2/decoder/http2_structure_decoder_test_util.cc",
5215 "third_party/quiche/src/http2/decoder/http2_structure_decoder_test_util.h",
5216 "third_party/quiche/src/http2/decoder/payload_decoders/altsvc_payload_decoder_test.cc",
5217 "third_party/quiche/src/http2/decoder/payload_decoders/continuation_payload_decoder_test.cc",
5218 "third_party/quiche/src/http2/decoder/payload_decoders/data_payload_decoder_test.cc",
5219 "third_party/quiche/src/http2/decoder/payload_decoders/goaway_payload_decoder_test.cc",
5220 "third_party/quiche/src/http2/decoder/payload_decoders/headers_payload_decoder_test.cc",
5221 "third_party/quiche/src/http2/decoder/payload_decoders/payload_decoder_base_test_util.cc",
5222 "third_party/quiche/src/http2/decoder/payload_decoders/payload_decoder_base_test_util.h",
5223 "third_party/quiche/src/http2/decoder/payload_decoders/ping_payload_decoder_test.cc",
5224 "third_party/quiche/src/http2/decoder/payload_decoders/priority_payload_decoder_test.cc",
5225 "third_party/quiche/src/http2/decoder/payload_decoders/push_promise_payload_decoder_test.cc",
5226 "third_party/quiche/src/http2/decoder/payload_decoders/rst_stream_payload_decoder_test.cc",
5227 "third_party/quiche/src/http2/decoder/payload_decoders/settings_payload_decoder_test.cc",
5228 "third_party/quiche/src/http2/decoder/payload_decoders/unknown_payload_decoder_test.cc",
5229 "third_party/quiche/src/http2/decoder/payload_decoders/window_update_payload_decoder_test.cc",
5230 "third_party/quiche/src/http2/hpack/decoder/hpack_block_collector.cc",
5231 "third_party/quiche/src/http2/hpack/decoder/hpack_block_collector.h",
5232 "third_party/quiche/src/http2/hpack/decoder/hpack_block_decoder_test.cc",
5233 "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_state_test.cc",
5234 "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_string_buffer_test.cc",
5235 "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_tables_test.cc",
5236 "third_party/quiche/src/http2/hpack/decoder/hpack_decoder_test.cc",
5237 "third_party/quiche/src/http2/hpack/decoder/hpack_entry_collector.cc",
5238 "third_party/quiche/src/http2/hpack/decoder/hpack_entry_collector.h",
5239 "third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder_test.cc",
5240 "third_party/quiche/src/http2/hpack/decoder/hpack_entry_type_decoder_test.cc",
5241 "third_party/quiche/src/http2/hpack/decoder/hpack_string_collector.cc",
5242 "third_party/quiche/src/http2/hpack/decoder/hpack_string_collector.h",
5243 "third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder_test.cc",
5244 "third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_buffer_test.cc",
5245 "third_party/quiche/src/http2/hpack/hpack_string_test.cc",
5246 "third_party/quiche/src/http2/hpack/http2_hpack_constants_test.cc",
5247 "third_party/quiche/src/http2/hpack/huffman/hpack_huffman_decoder_test.cc",
5248 "third_party/quiche/src/http2/hpack/huffman/hpack_huffman_encoder_test.cc",
5249 "third_party/quiche/src/http2/hpack/huffman/hpack_huffman_transcoder_test.cc",
5250 "third_party/quiche/src/http2/hpack/tools/hpack_block_builder.cc",
5251 "third_party/quiche/src/http2/hpack/tools/hpack_block_builder.h",
5252 "third_party/quiche/src/http2/hpack/tools/hpack_block_builder_test.cc",
5253 "third_party/quiche/src/http2/hpack/tools/hpack_example.cc",
5254 "third_party/quiche/src/http2/hpack/tools/hpack_example.h",
5255 "third_party/quiche/src/http2/hpack/varint/hpack_varint_decoder_test.cc",
5256 "third_party/quiche/src/http2/hpack/varint/hpack_varint_encoder_test.cc",
5257 "third_party/quiche/src/http2/hpack/varint/hpack_varint_round_trip_test.cc",
5258 "third_party/quiche/src/http2/http2_constants_test.cc",
5259 "third_party/quiche/src/http2/http2_constants_test_util.cc",
5260 "third_party/quiche/src/http2/http2_constants_test_util.h",
5261 "third_party/quiche/src/http2/http2_structures_test.cc",
5262 "third_party/quiche/src/http2/http2_structures_test_util.cc",
5263 "third_party/quiche/src/http2/http2_structures_test_util.h",
5264 "third_party/quiche/src/http2/platform/api/http2_mock_log.h",
5265 "third_party/quiche/src/http2/platform/api/http2_string_utils_test.cc",
5266 "third_party/quiche/src/http2/platform/api/http2_test_helpers.h",
5267 "third_party/quiche/src/http2/test_tools/frame_parts.cc",
5268 "third_party/quiche/src/http2/test_tools/frame_parts.h",
5269 "third_party/quiche/src/http2/test_tools/frame_parts_collector.cc",
5270 "third_party/quiche/src/http2/test_tools/frame_parts_collector.h",
5271 "third_party/quiche/src/http2/test_tools/frame_parts_collector_listener.cc",
5272 "third_party/quiche/src/http2/test_tools/frame_parts_collector_listener.h",
5273 "third_party/quiche/src/http2/test_tools/http2_random.cc",
5274 "third_party/quiche/src/http2/test_tools/http2_random.h",
5275 "third_party/quiche/src/http2/test_tools/http2_random_test.cc",
5276 "third_party/quiche/src/http2/tools/http2_frame_builder.cc",
5277 "third_party/quiche/src/http2/tools/http2_frame_builder.h",
5278 "third_party/quiche/src/http2/tools/random_decoder_test.cc",
5279 "third_party/quiche/src/http2/tools/random_decoder_test.h",
5280 "third_party/quiche/src/http2/tools/random_util.cc",
5281 "third_party/quiche/src/http2/tools/random_util.h",
Ryan Hamilton2e003eea2018-05-02 00:24:295282 "third_party/spdy/core/array_output_buffer.cc",
5283 "third_party/spdy/core/array_output_buffer.h",
5284 "third_party/spdy/core/array_output_buffer_test.cc",
Ryan Hamilton2e003eea2018-05-02 00:24:295285 "third_party/spdy/core/hpack/hpack_decoder_adapter_test.cc",
5286 "third_party/spdy/core/hpack/hpack_encoder_test.cc",
5287 "third_party/spdy/core/hpack/hpack_entry_test.cc",
5288 "third_party/spdy/core/hpack/hpack_header_table_test.cc",
5289 "third_party/spdy/core/hpack/hpack_huffman_table_test.cc",
5290 "third_party/spdy/core/hpack/hpack_output_stream_test.cc",
5291 "third_party/spdy/core/hpack/hpack_round_trip_test.cc",
5292 "third_party/spdy/core/hpack/hpack_static_table_test.cc",
5293 "third_party/spdy/core/mock_spdy_framer_visitor.cc",
5294 "third_party/spdy/core/mock_spdy_framer_visitor.h",
5295 "third_party/spdy/core/priority_write_scheduler_test.cc",
5296 "third_party/spdy/core/spdy_alt_svc_wire_format_test.cc",
5297 "third_party/spdy/core/spdy_deframer_visitor.cc",
5298 "third_party/spdy/core/spdy_deframer_visitor.h",
5299 "third_party/spdy/core/spdy_deframer_visitor_test.cc",
5300 "third_party/spdy/core/spdy_frame_builder_test.cc",
5301 "third_party/spdy/core/spdy_frame_reader_test.cc",
5302 "third_party/spdy/core/spdy_framer_test.cc",
5303 "third_party/spdy/core/spdy_header_block_test.cc",
5304 "third_party/spdy/core/spdy_no_op_visitor.cc",
5305 "third_party/spdy/core/spdy_no_op_visitor.h",
5306 "third_party/spdy/core/spdy_pinnable_buffer_piece_test.cc",
5307 "third_party/spdy/core/spdy_prefixed_buffer_reader_test.cc",
5308 "third_party/spdy/core/spdy_protocol_test.cc",
5309 "third_party/spdy/core/spdy_protocol_test_utils.cc",
5310 "third_party/spdy/core/spdy_protocol_test_utils.h",
5311 "third_party/spdy/core/spdy_test_utils.cc",
5312 "third_party/spdy/core/spdy_test_utils.h",
5313 "third_party/spdy/platform/api/spdy_mem_slice_test.cc",
5314 "third_party/spdy/platform/api/spdy_string_utils_test.cc",
dalyk6b82a0252018-08-22 15:22:385315 "third_party/uri_template/uri_template_test.cc",
ckrasic73f7240b2017-01-24 00:06:455316 "tools/content_decoder_tool/content_decoder_tool.cc",
5317 "tools/content_decoder_tool/content_decoder_tool.h",
5318 "tools/content_decoder_tool/content_decoder_tool_unittest.cc",
5319 "tools/quic/quic_simple_client_test.cc",
ckrasic73f7240b2017-01-24 00:06:455320 "tools/tld_cleanup/tld_cleanup_util_unittest.cc",
Tsuyoshi Horoec9880b2017-09-28 22:25:215321 "url_request/redirect_info_unittest.cc",
Tsuyoshi Horo9e2ec4df2017-10-16 15:15:555322 "url_request/redirect_util_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455323 "url_request/report_sender_unittest.cc",
ckrasic73f7240b2017-01-24 00:06:455324 "url_request/url_fetcher_impl_unittest.cc",
5325 "url_request/url_fetcher_response_writer_unittest.cc",
5326 "url_request/url_request_context_builder_unittest.cc",
5327 "url_request/url_request_context_unittest.cc",
5328 "url_request/url_request_data_job_unittest.cc",
5329 "url_request/url_request_file_dir_job_unittest.cc",
5330 "url_request/url_request_file_job_unittest.cc",
5331 "url_request/url_request_filter_unittest.cc",
5332 "url_request/url_request_ftp_job_unittest.cc",
5333 "url_request/url_request_http_job_unittest.cc",
5334 "url_request/url_request_job_factory_impl_unittest.cc",
5335 "url_request/url_request_job_unittest.cc",
5336 "url_request/url_request_quic_unittest.cc",
5337 "url_request/url_request_simple_job_unittest.cc",
5338 "url_request/url_request_throttler_simulation_unittest.cc",
5339 "url_request/url_request_throttler_test_support.cc",
5340 "url_request/url_request_throttler_test_support.h",
5341 "url_request/url_request_throttler_unittest.cc",
5342 "url_request/url_request_unittest.cc",
5343 "url_request/view_cache_helper_unittest.cc",
5344 ]
mattm1a07e632017-05-16 05:55:505345 net_unfiltered_sources = []
dpranke64df2832015-07-31 22:33:365346
Ryan Sleevic2fcac62017-12-21 16:37:045347 configs += [ "//build/config:precompiled_headers" ]
dpranke64df2832015-07-31 22:33:365348 defines = []
5349
5350 deps = [
dpranke64df2832015-07-31 22:33:365351 ":net",
xunjielicc6b1d02017-06-05 16:51:405352 ":quic_test_tools",
dpranke64df2832015-07-31 22:33:365353 ":simple_quic_tools",
Victor Vasiliev802b8d02018-10-19 17:48:175354 ":spdy_test_tools",
dpranke64df2832015-07-31 22:33:365355 ":test_support",
5356 "//base",
dpranke64df2832015-07-31 22:33:365357 "//base/third_party/dynamic_annotations",
5358 "//crypto",
5359 "//crypto:platform",
5360 "//crypto:test_support",
dpranke64df2832015-07-31 22:33:365361 "//net/base/registry_controlled_domains",
Eric Orth24feb5b2018-05-25 19:42:465362 "//net/dns:tests",
Eric Orth8afaf152018-11-07 21:01:265363 "//net/dns/public:tests",
martijnd369e6702017-03-21 18:36:455364 "//net/http:transport_security_state_unittest_data",
Martijn Croonenb1383da2017-10-11 11:56:355365 "//net/http:transport_security_state_unittest_data_default",
dpranke64df2832015-07-31 22:33:365366 "//testing/gmock",
5367 "//testing/gtest",
thomasanderson77bec4d2017-03-20 07:09:255368 "//third_party/protobuf:protobuf_lite",
dpranke64df2832015-07-31 22:33:365369 "//third_party/zlib",
5370 "//url",
Scott Violetfd6ee112019-01-10 19:05:325371 "//url:buildflags",
dpranke64df2832015-07-31 22:33:365372 ]
mmenkefd9d15c2017-06-29 13:45:545373
Helen Lic51db4c2018-06-14 22:05:045374 if (enable_websockets) {
5375 deps += [ "//net/server:tests" ]
5376 }
5377
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:585378 if (is_posix || is_fuchsia) {
Eric Orth24feb5b2018-05-25 19:42:465379 sources += [ "socket/udp_socket_posix_unittest.cc" ]
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:585380 }
5381
mmenkefd9d15c2017-06-29 13:45:545382 if (enable_reporting) {
5383 sources += [
Julia Tuttle6c949ae2017-11-17 16:36:275384 "network_error_logging/network_error_logging_service_unittest.cc",
mmenkefd9d15c2017-06-29 13:45:545385 "reporting/reporting_browsing_data_remover_unittest.cc",
5386 "reporting/reporting_cache_unittest.cc",
5387 "reporting/reporting_delivery_agent_unittest.cc",
5388 "reporting/reporting_endpoint_manager_unittest.cc",
5389 "reporting/reporting_garbage_collector_unittest.cc",
5390 "reporting/reporting_header_parser_unittest.cc",
5391 "reporting/reporting_network_change_observer_unittest.cc",
mmenkefd9d15c2017-06-29 13:45:545392 "reporting/reporting_service_unittest.cc",
mmenkefd9d15c2017-06-29 13:45:545393 "reporting/reporting_uploader_unittest.cc",
5394 ]
5395 }
5396
ckrasic73f7240b2017-01-24 00:06:455397 if (!is_proto_quic) {
5398 deps += [
5399 ":extras",
5400 "//base:i18n",
5401 "//sql",
5402 ]
5403 } else {
5404 sources -= [
5405 "extras/sqlite/sqlite_channel_id_store_unittest.cc",
5406 "extras/sqlite/sqlite_persistent_cookie_store_unittest.cc",
5407 ]
5408 }
dpranke64df2832015-07-31 22:33:365409
jbudorick944eb922016-06-20 15:38:305410 data = []
svaldez2135be52016-04-20 16:34:535411 data_deps = [
5412 "third_party/nist-pkits/",
5413 ]
dpranke64df2832015-07-31 22:33:365414
Scott Grahambe24b04f2017-09-21 23:27:525415 if (is_linux || is_mac || is_win || is_fuchsia) {
dpranke64df2832015-07-31 22:33:365416 deps += [
5417 "//third_party/pyftpdlib/",
5418 "//third_party/pywebsocket/",
5419 "//third_party/tlslite/",
5420 ]
mattm6586b432016-02-12 04:52:395421 data_deps += [
dpranke64df2832015-07-31 22:33:365422 "//third_party/pyftpdlib/",
5423 "//third_party/pywebsocket/",
5424 "//third_party/tlslite/",
5425 ]
5426 data += [
5427 "tools/testserver/",
5428 "//third_party/pyftpdlib/",
Takuto Ikuta7ff839d2018-08-09 03:15:365429 "//third_party/pywebsocket/src/mod_pywebsocket/",
dpranke64df2832015-07-31 22:33:365430 "//third_party/tlslite/",
dprankef497c7962015-07-31 19:46:235431 ]
5432 }
5433
dpranke64df2832015-07-31 22:33:365434 if (is_desktop_linux) {
5435 deps += [ ":epoll_quic_tools" ]
5436 }
5437 if (is_linux) {
ckrasic73f7240b2017-01-24 00:06:455438 sources += [
Ryan Hamilton56b10c5d2018-05-11 13:40:165439 "third_party/quic/core/chlo_extractor_test.cc",
Victor Vasilievc5b409c22018-07-24 12:23:465440 "third_party/quic/core/http/end_to_end_test.cc",
5441 "third_party/quic/core/http/quic_spdy_client_session_test.cc",
5442 "third_party/quic/core/http/quic_spdy_client_stream_test.cc",
5443 "third_party/quic/core/http/quic_spdy_server_stream_base_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165444 "third_party/quic/core/quic_epoll_alarm_factory_test.cc",
5445 "third_party/quic/core/quic_epoll_connection_helper_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165446 "third_party/quic/core/stateless_rejector_test.cc",
Bin Wu346d1aac02018-11-09 17:45:125447 "third_party/quic/platform/impl/batch_writer/quic_batch_writer_buffer_test.cc",
5448 "third_party/quic/platform/impl/batch_writer/quic_batch_writer_test.h",
5449 "third_party/quic/platform/impl/batch_writer/quic_gso_batch_writer_test.cc",
5450 "third_party/quic/platform/impl/batch_writer/quic_sendmmsg_batch_writer_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165451 "third_party/quic/platform/impl/quic_epoll_clock_test.cc",
Michael Warrese803e0f2018-12-21 18:27:275452 "third_party/quic/platform/impl/quic_flags_test.cc",
Bin Wu346d1aac02018-11-09 17:45:125453 "third_party/quic/platform/impl/quic_linux_socket_utils_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165454 "third_party/quic/platform/impl/quic_socket_utils_test.cc",
5455 "third_party/quic/tools/quic_client_test.cc",
Rajesh Mahindrae6c0da12018-05-17 21:02:545456 "third_party/quic/tools/quic_memory_cache_backend_test.cc",
Ryan Hamilton56b10c5d2018-05-11 13:40:165457 "third_party/quic/tools/quic_server_test.cc",
5458 "third_party/quic/tools/quic_simple_server_session_test.cc",
5459 "third_party/quic/tools/quic_simple_server_stream_test.cc",
Ian Swettb08ee8f2018-10-16 19:37:575460 "third_party/quic/tools/quic_url_test.cc",
Rajesh Mahindra43802172018-07-24 20:00:145461 "tools/quic/quic_http_proxy_backend_stream_test.cc",
5462 "tools/quic/quic_http_proxy_backend_test.cc",
ckrasic73f7240b2017-01-24 00:06:455463 "tools/quic/quic_simple_server_session_helper_test.cc",
ckrasic73f7240b2017-01-24 00:06:455464 "tools/quic/quic_simple_server_test.cc",
ckrasic73f7240b2017-01-24 00:06:455465 ]
dpranke64df2832015-07-31 22:33:365466 deps += [
5467 ":epoll_quic_tools",
5468 ":epoll_server",
brettwbc8b2a22015-07-28 18:24:425469 ]
dpranke64df2832015-07-31 22:33:365470 }
[email protected]8a3f8242014-06-05 18:05:125471
dpranke64df2832015-07-31 22:33:365472 if (is_mac || is_ios) {
ckrasic73f7240b2017-01-24 00:06:455473 sources += [ "base/mac/url_conversions_unittest.mm" ]
dpranke64df2832015-07-31 22:33:365474 }
5475
mattmaf868e72016-09-23 23:25:205476 if (is_mac) {
5477 libs = [ "Security.framework" ]
5478 }
5479
dpranke64df2832015-07-31 22:33:365480 if (is_chromeos) {
Lily Houghton582d4622018-01-22 22:43:405481 sources -= [ "proxy_resolution/proxy_config_service_linux_unittest.cc" ]
dpranke64df2832015-07-31 22:33:365482 }
5483
ckrasic73f7240b2017-01-24 00:06:455484 if (!is_proto_quic && v8_use_external_startup_data) {
dpranke64df2832015-07-31 22:33:365485 deps += [ "//gin" ]
5486 }
5487
zentarob74795682017-07-14 00:58:225488 if (is_win) {
5489 sources -= [
zentarob89acda42017-07-14 01:28:575490 "http/http_auth_handler_ntlm_portable_unittest.cc",
zentarob74795682017-07-14 00:58:225491 "ntlm/ntlm_buffer_reader_unittest.cc",
5492 "ntlm/ntlm_buffer_writer_unittest.cc",
Zentaro Kavanaghdd556612017-08-03 20:27:045493 "ntlm/ntlm_client_unittest.cc",
zentarob89acda42017-07-14 01:28:575494 "ntlm/ntlm_test_data.h",
5495 "ntlm/ntlm_unittest.cc",
zentarob74795682017-07-14 00:58:225496 ]
5497 }
5498
Sergey Ulanovec1d3de2017-09-19 19:27:475499 if (enable_python_utils) {
5500 sources += [ "test/python_utils_unittest.cc" ]
5501 }
5502
Sergey Ulanov7c0bcaf2017-08-28 19:03:265503 if (is_fuchsia) {
5504 use_test_server = true
Kevin Marshall3e89fd72018-06-05 21:29:105505 deps += [
Kevin Marshall87c85022018-10-23 00:29:445506 "//third_party/fuchsia-sdk/sdk:fidl_cpp",
Kevin Marshallf10ee892018-10-02 01:45:375507 "//third_party/fuchsia-sdk/sdk:netstack",
Kevin Marshall3e89fd72018-06-05 21:29:105508 ]
5509 sources += [ "base/network_change_notifier_fuchsia_unittest.cc" ]
Sergey Ulanov7c0bcaf2017-08-28 19:03:265510 }
5511
dpranke64df2832015-07-31 22:33:365512 if (!use_nss_certs) {
5513 sources -= [
mattm9c63d442016-09-03 00:45:515514 "cert/internal/trust_store_nss_unittest.cc",
dpranke64df2832015-07-31 22:33:365515 "cert/nss_cert_database_unittest.cc",
Matt Mueller10684c92017-08-09 07:24:095516 "cert/x509_util_nss_unittest.cc",
dpranke64df2832015-07-31 22:33:365517 "ssl/client_cert_store_nss_unittest.cc",
davidben983d610b2016-12-14 19:35:405518 "ssl/ssl_platform_key_nss_unittest.cc",
[email protected]8a3f8242014-06-05 18:05:125519 ]
dpranke64df2832015-07-31 22:33:365520 if (is_chromeos) { # Already removed for all non-ChromeOS builds.
davidben2bcbc6b2015-04-22 02:36:415521 sources -= [
dpranke64df2832015-07-31 22:33:365522 "cert/nss_cert_database_chromeos_unittest.cc",
5523 "cert/nss_profile_filter_chromeos_unittest.cc",
davidben2bcbc6b2015-04-22 02:36:415524 ]
brettw43ae0e12015-07-14 22:12:365525 }
[email protected]8a3f8242014-06-05 18:05:125526 }
dpranke64df2832015-07-31 22:33:365527
dpranke64df2832015-07-31 22:33:365528 # These are excluded on Android, because the actual Kerberos support, which
5529 # these test, is in a separate app on Android.
Fabrice de Gans-Riberi0ab6b072018-04-20 21:32:585530 if (use_kerberos && ((is_posix && !is_android) || is_fuchsia)) {
5531 sources += [
dpranke64df2832015-07-31 22:33:365532 "http/http_auth_gssapi_posix_unittest.cc",
5533 "http/mock_gssapi_library_posix.cc",
5534 "http/mock_gssapi_library_posix.h",
5535 ]
5536 }
5537 if (!use_kerberos) {
5538 sources -= [ "http/http_auth_handler_negotiate_unittest.cc" ]
5539 }
5540
svaldez2135be52016-04-20 16:34:535541 if (!use_nss_certs) {
svaldeza1714ab2016-03-18 20:47:535542 # Only include this test when using NSS for cert verification.
dpranke64df2832015-07-31 22:33:365543 sources -= [ "cert_net/nss_ocsp_unittest.cc" ]
5544 }
5545
jbudorick1273a842016-04-01 19:50:055546 if (enable_websockets) {
ckrasic73f7240b2017-01-24 00:06:455547 sources += [
Adam Riced4596a8e2018-07-13 08:06:175548 "websockets/websocket_basic_handshake_stream_test.cc",
Bence Béky7294fc22018-02-08 14:26:175549 "websockets/websocket_basic_stream_adapters_test.cc",
ckrasic73f7240b2017-01-24 00:06:455550 "websockets/websocket_basic_stream_test.cc",
5551 "websockets/websocket_channel_test.cc",
5552 "websockets/websocket_deflate_parameters_test.cc",
5553 "websockets/websocket_deflate_predictor_impl_test.cc",
5554 "websockets/websocket_deflate_stream_test.cc",
5555 "websockets/websocket_deflater_test.cc",
5556 "websockets/websocket_end_to_end_test.cc",
5557 "websockets/websocket_errors_test.cc",
5558 "websockets/websocket_extension_parser_test.cc",
5559 "websockets/websocket_extension_test.cc",
5560 "websockets/websocket_frame_parser_test.cc",
5561 "websockets/websocket_frame_test.cc",
5562 "websockets/websocket_handshake_challenge_test.cc",
5563 "websockets/websocket_handshake_stream_create_helper_test.cc",
5564 "websockets/websocket_inflater_test.cc",
5565 "websockets/websocket_stream_cookie_test.cc",
5566 "websockets/websocket_stream_create_test_base.cc",
5567 "websockets/websocket_stream_create_test_base.h",
5568 "websockets/websocket_stream_test.cc",
5569 "websockets/websocket_test_util.cc",
5570 "websockets/websocket_test_util.h",
5571 ]
dpranke64df2832015-07-31 22:33:365572 }
5573
5574 if (disable_file_support) {
5575 sources -= [
5576 "base/directory_lister_unittest.cc",
Thiago Farinad673bb122016-01-06 23:18:165577 "base/directory_listing_unittest.cc",
shahriar.rostamia8c06daf2016-02-12 00:07:045578 "url_request/url_request_file_dir_job_unittest.cc",
dpranke64df2832015-07-31 22:33:365579 "url_request/url_request_file_job_unittest.cc",
5580 ]
5581 }
5582
5583 if (disable_ftp_support) {
5584 sources -= [
5585 "ftp/ftp_auth_cache_unittest.cc",
5586 "ftp/ftp_ctrl_response_buffer_unittest.cc",
5587 "ftp/ftp_directory_listing_parser_ls_unittest.cc",
dpranke64df2832015-07-31 22:33:365588 "ftp/ftp_directory_listing_parser_unittest.cc",
5589 "ftp/ftp_directory_listing_parser_unittest.h",
5590 "ftp/ftp_directory_listing_parser_vms_unittest.cc",
5591 "ftp/ftp_directory_listing_parser_windows_unittest.cc",
5592 "ftp/ftp_network_transaction_unittest.cc",
5593 "ftp/ftp_util_unittest.cc",
5594 "url_request/url_request_ftp_job_unittest.cc",
5595 ]
5596 }
5597
Brad Lasseyd44bd422018-05-31 22:45:235598 if (enable_built_in_dns) {
5599 sources += [ "url_request/http_with_dns_over_https_unittest.cc" ]
5600 }
5601
xunjieli905496a2015-08-31 15:51:175602 if (use_v8_in_net) {
mmenkee2ad9922017-06-08 20:27:365603 deps += [ ":net_with_v8" ]
dpranke64df2832015-07-31 22:33:365604 } else {
5605 sources -= [
Lily Houghton582d4622018-01-22 22:43:405606 "proxy_resolution/proxy_resolver_v8_tracing_unittest.cc",
5607 "proxy_resolution/proxy_resolver_v8_tracing_wrapper_unittest.cc",
5608 "proxy_resolution/proxy_resolver_v8_unittest.cc",
dpranke64df2832015-07-31 22:33:365609 ]
5610 }
dpranke64df2832015-07-31 22:33:365611
dpranke64df2832015-07-31 22:33:365612 if (is_ios) {
dpranke64df2832015-07-31 22:33:365613 sources -= [
5614 # TODO(droger): The following tests are disabled because the
5615 # implementation is missing or incomplete.
dpranke64df2832015-07-31 22:33:365616 "disk_cache/backend_unittest.cc",
5617 "disk_cache/blockfile/block_files_unittest.cc",
5618
5619 # Need to read input data files.
dpranke64df2832015-07-31 22:33:365620 "socket/ssl_server_socket_unittest.cc",
Victor Vasiliev802b8d02018-10-19 17:48:175621 "spdy/fuzzing/hpack_fuzz_util_test.cc",
dpranke64df2832015-07-31 22:33:365622
5623 # Need TestServer.
5624 "cert_net/cert_net_fetcher_impl_unittest.cc",
Lily Houghton582d4622018-01-22 22:43:405625 "proxy_resolution/pac_file_fetcher_impl_unittest.cc",
dpranke64df2832015-07-31 22:33:365626 "socket/ssl_client_socket_unittest.cc",
5627 "url_request/url_fetcher_impl_unittest.cc",
5628 "url_request/url_request_context_builder_unittest.cc",
dpranke64df2832015-07-31 22:33:365629 ]
mattm1a07e632017-05-16 05:55:505630 net_unfiltered_sources += [ "cert/x509_util_ios_and_mac_unittest.cc" ]
rsesek7d4ab4bc2016-07-22 17:35:135631
5632 bundle_deps = [ ":net_unittests_bundle_data" ]
dpranke64df2832015-07-31 22:33:365633 }
5634
Sergey Ulanov21dea152017-09-13 00:50:505635 if (enable_unix_sockets) {
5636 sources += [
5637 "socket/unix_domain_client_socket_posix_unittest.cc",
5638 "socket/unix_domain_server_socket_posix_unittest.cc",
5639 ]
5640 }
5641
Fabrice de Gans-Riberi9fba3aff2018-04-12 19:00:485642 # Use getifaddrs() on POSIX platforms, except Linux and Android.
5643 if (is_posix && !is_linux && !is_android) {
5644 sources += [ "base/network_interfaces_getifaddrs_unittest.cc" ]
Sergey Ulanov5c33235ae2017-07-06 23:55:075645 }
5646
kapishnikovabe280e2016-04-14 19:07:165647 # Unit tests that aren't supported by the current ICU alternatives on Android.
5648 if (is_android && use_platform_icu_alternatives) {
5649 sources -= [
5650 "base/filename_util_unittest.cc",
5651 "base/url_util_unittest.cc",
5652 "cert/x509_certificate_unittest.cc",
Lily Houghton582d4622018-01-22 22:43:405653 "proxy_resolution/proxy_resolver_v8_unittest.cc",
kapishnikovabe280e2016-04-14 19:07:165654 "url_request/url_request_job_unittest.cc",
5655 ]
Misha Efimov17221622018-01-30 23:36:025656 deps += [ "//url:url_java" ]
kapishnikovabe280e2016-04-14 19:07:165657 }
5658
5659 # Unit tests that are not supported by the current ICU alternatives on iOS.
5660 if (is_ios && use_platform_icu_alternatives) {
5661 sources -= [
5662 "base/filename_util_unittest.cc",
5663 "base/url_util_unittest.cc",
5664 "cert/x509_certificate_unittest.cc",
5665 "http/http_auth_handler_basic_unittest.cc",
5666 "http/http_auth_handler_digest_unittest.cc",
5667 "http/http_auth_handler_factory_unittest.cc",
5668 "http/http_auth_unittest.cc",
5669 "http/http_content_disposition_unittest.cc",
5670 "http/http_network_transaction_unittest.cc",
5671 "http/http_proxy_client_socket_pool_unittest.cc",
5672 "socket/ssl_client_socket_pool_unittest.cc",
Bence Béky94658bf2018-05-11 19:22:585673 "spdy/spdy_network_transaction_unittest.cc",
5674 "spdy/spdy_proxy_client_socket_unittest.cc",
kapishnikovabe280e2016-04-14 19:07:165675 "url_request/url_request_job_unittest.cc",
5676 "url_request/url_request_unittest.cc",
5677 ]
5678 }
5679
5680 # Exclude brotli test if the support for brotli is disabled.
xunjielif54f24a02016-11-04 15:51:545681 if (disable_brotli_filter) {
xunjieli084a9292016-09-23 18:15:045682 sources -= [ "filter/brotli_source_stream_unittest.cc" ]
kapishnikovabe280e2016-04-14 19:07:165683 }
5684
dpranke64df2832015-07-31 22:33:365685 if (is_android) {
agrieve732db3a2016-04-26 19:18:195686 data_deps += [ "//net/tools/testserver:testserver_py" ]
agrieve97176362015-12-01 16:36:195687 deps += [
5688 ":net_test_jni_headers",
agrievea5517aa2015-10-23 03:03:455689 "//base:base_java_unittest_support",
5690 "//net/android:net_java",
agrievea5517aa2015-10-23 03:03:455691 "//net/android:net_java_test_support",
Yipeng Wangff2db2d2017-06-16 13:54:525692 "//net/android:net_java_test_support_provider",
agrieve97176362015-12-01 16:36:195693 "//net/android:net_javatests",
agrievea5517aa2015-10-23 03:03:455694 "//net/android:net_unittests_apk_resources",
agrieve97176362015-12-01 16:36:195695
5696 # TODO(mmenke): This depends on test_support_base, which depends on
5697 # icu. Figure out a way to remove that dependency.
5698 "//testing/android/native_test:native_test_native_code",
pkotwicz8c7027d2015-11-11 06:30:075699 "//v8:v8_external_startup_data_assets",
agrievea5517aa2015-10-23 03:03:455700 ]
5701 android_manifest = "//net/android/unittest_support/AndroidManifest.xml"
dpranke64df2832015-07-31 22:33:365702 set_sources_assignment_filter([])
Sergey Ulanov5bb07d32017-07-12 04:14:545703 sources += [
5704 "base/address_tracker_linux_unittest.cc",
5705 "base/network_interfaces_linux_unittest.cc",
5706 ]
dpranke64df2832015-07-31 22:33:365707 set_sources_assignment_filter(sources_assignment_filter)
agrieve3ac557f02016-04-12 15:52:005708 shard_timeout = 300
dpranke64df2832015-07-31 22:33:365709 }
5710
dpranke64df2832015-07-31 22:33:365711 # Symbols for crashes when running tests on swarming.
5712 if (symbol_level > 0) {
5713 if (is_win) {
5714 data += [ "$root_out_dir/net_unittests.exe.pdb" ]
5715 } else if (is_mac) {
dprankede2945b82016-04-15 22:14:135716 # TODO(crbug.com/330301): make this conditional on mac_strip_release.
5717 # data += [ "$root_out_dir/net_unittests.dSYM/" ]
dpranke64df2832015-07-31 22:33:365718 }
5719 }
maksim.sisovc69619d2016-05-20 19:23:555720
5721 if (is_win) {
davidbend6d1e4d2017-05-10 16:49:015722 libs = [
5723 "iphlpapi.lib",
5724 "ncrypt.lib",
5725 ]
maksim.sisovc69619d2016-05-20 19:23:555726 }
davidben983d610b2016-12-14 19:35:405727
5728 if (is_chromecast && use_nss_certs) {
mattm436ccfe2017-06-19 20:24:085729 sources -= [
5730 "ssl/client_cert_store_nss_unittest.cc",
5731 "ssl/ssl_platform_key_nss_unittest.cc",
5732 ]
davidben983d610b2016-12-14 19:35:405733 }
martijnb9aca9d2017-03-31 19:56:155734
5735 # Include transport_security_state_generator tests.
5736 if (host_toolchain == current_toolchain) {
Mustafa Emre Acera7152b862018-06-14 20:57:475737 deps += [
5738 "//net/tools/huffman_trie:huffman_trie_generator_test_sources",
5739 "//net/tools/transport_security_state_generator:transport_security_state_generator_test_sources",
5740 ]
martijnb9aca9d2017-03-31 19:56:155741 }
mattm1a07e632017-05-16 05:55:505742
5743 # Add back some sources that were otherwise filtered out.
5744 set_sources_assignment_filter([])
5745 sources += net_unfiltered_sources
5746 set_sources_assignment_filter(sources_assignment_filter)
dpranke64df2832015-07-31 22:33:365747}
5748
5749# !is_android && !is_win && !is_mac
ckrasic73f7240b2017-01-24 00:06:455750if (!is_ios && !is_proto_quic) {
sdefresne3001f172016-03-16 10:30:035751 # TODO(crbug.com/594965): this should be converted to "app" template and
5752 # enabled on iOS too.
Stephan Stross92fe507e2018-05-12 01:47:335753 test("net_perftests") {
sdefresne3001f172016-03-16 10:30:035754 sources = [
5755 "base/mime_sniffer_perftest.cc",
5756 "cookies/cookie_monster_perftest.cc",
gavinpc28fe1122016-05-13 17:49:055757 "disk_cache/disk_cache_perftest.cc",
sdefresne3001f172016-03-16 10:30:035758 "extras/sqlite/sqlite_persistent_cookie_store_perftest.cc",
tfarina5dd13c22016-11-16 12:08:265759 "socket/udp_socket_perftest.cc",
xunjielicc6b1d02017-06-05 16:51:405760 "url_request/url_request_quic_perftest.cc",
sdefresne3001f172016-03-16 10:30:035761 ]
[email protected]8a3f8242014-06-05 18:05:125762
sdefresne3001f172016-03-16 10:30:035763 deps = [
5764 ":extras",
5765 ":net",
xunjielicc6b1d02017-06-05 16:51:405766 ":quic_test_tools",
5767 ":simple_quic_tools",
sdefresne3001f172016-03-16 10:30:035768 ":test_support",
5769 "//base",
5770 "//base:i18n",
5771 "//base/test:test_support_perf",
sdefresne3001f172016-03-16 10:30:035772 "//testing/gtest",
xunjielicc6b1d02017-06-05 16:51:405773 "//testing/perf",
sdefresne3001f172016-03-16 10:30:035774 "//url",
5775 ]
Emily Hanley87c264cc2018-04-13 17:58:455776 data_deps = [
xunjieli5a866842017-06-09 18:16:205777 # Needed for isolate script to execute.
Emily Hanley87c264cc2018-04-13 17:58:455778 "//testing:run_perf_test",
xunjieli5a866842017-06-09 18:16:205779 ]
sdefresne3001f172016-03-16 10:30:035780 if (enable_websockets) {
5781 sources += [ "websockets/websocket_frame_perftest.cc" ]
5782 }
Stephan Stross92fe507e2018-05-12 01:47:335783 if (is_win) {
5784 deps += [ "//build/win:default_exe_manifest" ]
5785 }
rockot9c67e5f2015-03-12 20:01:215786 }
rockot9c67e5f2015-03-12 20:01:215787}
mefff34b822016-01-11 15:28:085788
eromanfe8659e2016-03-02 23:47:025789# Fuzzers
5790
mmenke35a30012016-07-15 19:20:125791# This has a global (InitGlobals) that must always be linked in, so
5792# must be a source set instead of a static library.
5793source_set("net_fuzzer_test_support") {
eroman02b4fe562016-03-04 12:15:165794 testonly = true
5795
5796 sources = [
csharrison37ef9852016-08-23 19:00:195797 "base/fuzzer_test_support.cc",
xunjieli75837332016-10-31 16:51:265798 "filter/fuzzed_source_stream.cc",
5799 "filter/fuzzed_source_stream.h",
tfarina5dd13c22016-11-16 12:08:265800 "socket/fuzzed_datagram_client_socket.cc",
5801 "socket/fuzzed_datagram_client_socket.h",
morlovich5e6e19b2017-01-30 14:38:165802 "socket/fuzzed_server_socket.cc",
5803 "socket/fuzzed_server_socket.h",
mmenke99b57172016-04-14 20:44:335804 "socket/fuzzed_socket.cc",
5805 "socket/fuzzed_socket.h",
mmenkec951d412016-04-28 19:05:225806 "socket/fuzzed_socket_factory.cc",
5807 "socket/fuzzed_socket_factory.h",
eroman02b4fe562016-03-04 12:15:165808 ]
csharrisonf30fc95f2016-08-19 21:43:445809 public_deps = [
5810 "//base/test:test_support",
Eric Orth24feb5b2018-05-25 19:42:465811 "//net/dns:fuzzer_test_support",
csharrisonf30fc95f2016-08-19 21:43:445812 ]
eroman02b4fe562016-03-04 12:15:165813 deps = [
5814 "//base",
5815 "//base:i18n",
mmenke99b57172016-04-14 20:44:335816 "//net",
eroman02b4fe562016-03-04 12:15:165817 ]
Eric Orth24feb5b2018-05-25 19:42:465818 allow_circular_includes_from = [ "//net/dns:fuzzer_test_support" ]
eroman02b4fe562016-03-04 12:15:165819}
5820
csharrisonaa314dc2016-04-29 20:15:375821fuzzer_test("net_data_job_fuzzer") {
5822 sources = [
5823 "url_request/url_request_data_job_fuzzer.cc",
5824 ]
5825 deps = [
5826 ":net_fuzzer_test_support",
5827 ":test_support",
5828 "//base",
5829 "//net",
5830 ]
5831}
5832
mmenke5552a6a2016-03-28 23:11:595833fuzzer_test("net_mime_sniffer_fuzzer") {
5834 sources = [
5835 "base/mime_sniffer_fuzzer.cc",
5836 ]
5837 deps = [
5838 ":net_fuzzer_test_support",
5839 "//base",
5840 "//net",
5841 ]
mmoroz4a561d32016-07-07 17:45:125842 dict = "data/fuzzer_dictionaries/net_mime_sniffer_fuzzer.dict"
mmenke5552a6a2016-03-28 23:11:595843}
5844
mmoroz565e8df22016-03-04 18:17:205845fuzzer_test("net_parse_proxy_list_pac_fuzzer") {
eromane6264fd2016-03-02 22:46:305846 sources = [
Lily Houghton582d4622018-01-22 22:43:405847 "proxy_resolution/parse_proxy_list_pac_fuzzer.cc",
eromane6264fd2016-03-02 22:46:305848 ]
5849 deps = [
eroman02b4fe562016-03-04 12:15:165850 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305851 "//net",
5852 ]
5853}
5854
mmoroz565e8df22016-03-04 18:17:205855fuzzer_test("net_parse_proxy_list_fuzzer") {
eromane6264fd2016-03-02 22:46:305856 sources = [
Lily Houghton582d4622018-01-22 22:43:405857 "proxy_resolution/parse_proxy_list_fuzzer.cc",
eromane6264fd2016-03-02 22:46:305858 ]
5859 deps = [
eroman02b4fe562016-03-04 12:15:165860 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305861 "//net",
5862 ]
5863}
5864
mmoroz565e8df22016-03-04 18:17:205865fuzzer_test("net_parse_proxy_bypass_rules_fuzzer") {
eromane6264fd2016-03-02 22:46:305866 sources = [
Lily Houghton582d4622018-01-22 22:43:405867 "proxy_resolution/parse_proxy_bypass_rules_fuzzer.cc",
eromane6264fd2016-03-02 22:46:305868 ]
Eric Romanb8522d62018-03-01 02:53:585869
5870 libfuzzer_options = [
5871 # The proxy bypass rules aren't very complicated, so this is more than
5872 # enough to explore the grammar. Allowing the length to become too large
5873 # can result in test timeouts (https://crbug.com/813619).
5874 "max_len=512",
5875 ]
5876
eromane6264fd2016-03-02 22:46:305877 deps = [
eroman02b4fe562016-03-04 12:15:165878 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305879 "//net",
5880 ]
5881}
5882
mmoroz565e8df22016-03-04 18:17:205883fuzzer_test("net_parse_proxy_rules_fuzzer") {
eromane6264fd2016-03-02 22:46:305884 sources = [
Lily Houghton582d4622018-01-22 22:43:405885 "proxy_resolution/parse_proxy_rules_fuzzer.cc",
eromane6264fd2016-03-02 22:46:305886 ]
5887 deps = [
eroman02b4fe562016-03-04 12:15:165888 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305889 "//net",
5890 ]
metzman31db75e2016-08-03 22:33:275891 dict = "data/fuzzer_dictionaries/net_parse_proxy_bypass_rules_fuzzer.dict"
eromane6264fd2016-03-02 22:46:305892}
5893
mmoroz565e8df22016-03-04 18:17:205894fuzzer_test("net_parse_data_url_fuzzer") {
eromane6264fd2016-03-02 22:46:305895 sources = [
5896 "base/parse_data_url_fuzzer.cc",
5897 ]
5898 deps = [
eroman02b4fe562016-03-04 12:15:165899 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305900 "//base",
5901 "//net",
5902 ]
mmoroz4a561d32016-07-07 17:45:125903 dict = "data/fuzzer_dictionaries/net_parse_data_url_fuzzer.dict"
eromane6264fd2016-03-02 22:46:305904}
5905
mmoroz565e8df22016-03-04 18:17:205906fuzzer_test("net_parse_ip_pattern_fuzzer") {
eromane6264fd2016-03-02 22:46:305907 sources = [
5908 "base/parse_ip_pattern_fuzzer.cc",
5909 ]
5910 deps = [
eroman02b4fe562016-03-04 12:15:165911 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305912 "//net",
5913 ]
5914}
5915
mmoroz565e8df22016-03-04 18:17:205916fuzzer_test("net_get_domain_and_registry_fuzzer") {
eromane6264fd2016-03-02 22:46:305917 sources = [
5918 "base/registry_controlled_domains/get_domain_and_registry_fuzzer.cc",
5919 ]
5920 deps = [
eroman02b4fe562016-03-04 12:15:165921 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305922 "//base",
eromane6264fd2016-03-02 22:46:305923 "//net",
5924 ]
mmoroz4a561d32016-07-07 17:45:125925 dict = "data/fuzzer_dictionaries/net_get_domain_and_registry_fuzzer.dict"
eromane6264fd2016-03-02 22:46:305926}
5927
mattmafe43b82016-04-28 20:40:545928fuzzer_test("net_cert_verify_name_match_fuzzer") {
5929 sources = [
5930 "cert/internal/verify_name_match_fuzzer.cc",
5931 ]
5932 deps = [
5933 ":net_fuzzer_test_support",
5934 "//base",
5935 "//net",
5936 ]
5937}
5938
mattm2c637da42016-04-28 02:55:595939fuzzer_test("net_cert_normalize_name_fuzzer") {
5940 sources = [
5941 "cert/internal/verify_name_match_normalizename_fuzzer.cc",
5942 ]
5943 deps = [
5944 "//base",
5945 "//net",
5946 ]
5947}
5948
mattmafe43b82016-04-28 20:40:545949fuzzer_test("net_cert_verify_name_in_subtree_fuzzer") {
5950 sources = [
5951 "cert/internal/verify_name_match_verifynameinsubtree_fuzzer.cc",
5952 ]
5953 deps = [
5954 ":net_fuzzer_test_support",
5955 "//base",
5956 "//net",
5957 ]
5958}
5959
nharper85d3b6f2016-04-28 20:58:195960fuzzer_test("net_cert_parse_certificate_fuzzer") {
5961 sources = [
5962 "cert/internal/parse_certificate_fuzzer.cc",
5963 ]
5964 deps = [
5965 "//base",
5966 "//net",
5967 ]
5968}
5969
mmoroz565e8df22016-03-04 18:17:205970fuzzer_test("net_parse_cookie_line_fuzzer") {
eromane6264fd2016-03-02 22:46:305971 sources = [
5972 "cookies/parse_cookie_line_fuzzer.cc",
5973 ]
5974 deps = [
eroman02b4fe562016-03-04 12:15:165975 ":net_fuzzer_test_support",
eromane6264fd2016-03-02 22:46:305976 "//net",
5977 ]
5978}
5979
mmenke44e8e9c2016-03-29 18:38:575980fuzzer_test("net_http_stream_parser_fuzzer") {
5981 sources = [
5982 "http/http_stream_parser_fuzzer.cc",
5983 ]
5984 deps = [
5985 ":net_fuzzer_test_support",
5986 ":test_support",
5987 "//base",
5988 "//net",
5989 ]
mmoroz4a561d32016-07-07 17:45:125990 dict = "data/fuzzer_dictionaries/net_http_stream_parser_fuzzer.dict"
mmenke44e8e9c2016-03-29 18:38:575991}
5992
Jonathan Metzman0e5e530f2018-10-04 19:29:575993if (!is_win) {
5994 fuzzer_test("net_ntlm_ntlm_client_fuzzer") {
5995 sources = [
5996 "ntlm/ntlm_client_fuzzer.cc",
5997 "ntlm/ntlm_test_data.h",
5998 ]
5999 deps = [
6000 ":net_fuzzer_test_support",
6001 ":test_support",
6002 "//base",
6003 "//net",
6004 ]
6005 dict = "data/fuzzer_dictionaries/net_ntlm_ntlm_client_fuzzer.dict"
6006 seed_corpus = "data/fuzzer_data/ntlm_client_fuzzer/"
6007 }
Zentaro Kavanaghdd556612017-08-03 20:27:046008}
6009
xunjielid5ffeaf2016-11-01 15:22:006010if (!disable_brotli_filter) {
6011 fuzzer_test("net_brotli_source_stream_fuzzer") {
6012 sources = [
6013 "filter/brotli_source_stream_fuzzer.cc",
6014 ]
6015 deps = [
6016 ":net_fuzzer_test_support",
6017 ":test_support",
6018 "//base",
6019 "//net",
6020 ]
6021 }
6022}
6023
xunjieli75837332016-10-31 16:51:266024fuzzer_test("net_gzip_source_stream_fuzzer") {
6025 sources = [
6026 "filter/gzip_source_stream_fuzzer.cc",
6027 ]
6028 deps = [
6029 ":net_fuzzer_test_support",
6030 ":test_support",
6031 "//base",
6032 "//net",
6033 ]
6034}
6035
mmoroz565e8df22016-03-04 18:17:206036fuzzer_test("net_ftp_ctrl_response_fuzzer") {
eromanfe8659e2016-03-02 23:47:026037 sources = [
6038 "ftp/ftp_ctrl_response_fuzzer.cc",
6039 ]
6040 deps = [
eroman02b4fe562016-03-04 12:15:166041 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026042 "//base",
6043 "//net",
6044 ]
6045}
6046
mmoroz565e8df22016-03-04 18:17:206047fuzzer_test("net_ftp_directory_listing_fuzzer") {
eromanfe8659e2016-03-02 23:47:026048 sources = [
6049 "ftp/ftp_directory_listing_fuzzer.cc",
6050 ]
6051 deps = [
eroman02b4fe562016-03-04 12:15:166052 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026053 "//base",
eromanfe8659e2016-03-02 23:47:026054 "//net",
6055 ]
6056}
6057
mmoroz565e8df22016-03-04 18:17:206058fuzzer_test("net_unescape_url_component_fuzzer") {
eromanfe8659e2016-03-02 23:47:026059 sources = [
6060 "base/unescape_url_component_fuzzer.cc",
6061 ]
6062 deps = [
eroman02b4fe562016-03-04 12:15:166063 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026064 "//base",
6065 "//net",
6066 ]
mmoroz34eb0082016-03-11 14:32:016067 dict = "base/unescape_url_component_fuzzer.dict"
mmoroz062a4a62016-04-12 09:02:336068 libfuzzer_options = [ "max_len = 2048" ]
eromanfe8659e2016-03-02 23:47:026069}
6070
ricea7b870e72016-09-01 04:41:046071fuzzer_test("net_websocket_deflate_stream_fuzzer") {
6072 sources = [
6073 "websockets/websocket_deflate_stream_fuzzer.cc",
6074 ]
6075 deps = [
6076 ":net_fuzzer_test_support",
6077 "//net",
6078 ]
6079 dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict"
6080 libfuzzer_options = [ "max_len=512" ]
6081}
6082
riceaf9dcc092016-09-13 12:42:006083fuzzer_test("net_websocket_extension_parser_fuzzer") {
6084 sources = [
6085 "websockets/websocket_extension_parser_fuzzer.cc",
6086 ]
6087 deps = [
6088 ":net_fuzzer_test_support",
6089 "//net",
6090 ]
6091 dict = "data/fuzzer_dictionaries/net_websocket_extension_parser_fuzzer.dict"
6092 libfuzzer_options = [ "max_len = 256" ]
6093}
6094
mmoroz565e8df22016-03-04 18:17:206095fuzzer_test("net_websocket_frame_parser_fuzzer") {
eromanfe8659e2016-03-02 23:47:026096 sources = [
6097 "websockets/websocket_frame_parser_fuzzer.cc",
6098 ]
6099 deps = [
eroman02b4fe562016-03-04 12:15:166100 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026101 "//net",
6102 ]
mmoroz4a561d32016-07-07 17:45:126103 dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict"
ricea105ae612016-09-08 08:00:076104 libfuzzer_options = [ "max_len=256" ]
eromanfe8659e2016-03-02 23:47:026105}
6106
mmoroz565e8df22016-03-04 18:17:206107fuzzer_test("net_http_chunked_decoder_fuzzer") {
eromanfe8659e2016-03-02 23:47:026108 sources = [
6109 "http/http_chunked_decoder_fuzzer.cc",
6110 ]
6111 deps = [
eroman02b4fe562016-03-04 12:15:166112 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026113 "//net",
6114 ]
6115}
6116
mmenke8e9314bc2016-04-15 21:45:026117fuzzer_test("net_http_proxy_client_socket_fuzzer") {
6118 sources = [
6119 "http/http_proxy_client_socket_fuzzer.cc",
6120 ]
6121 deps = [
6122 ":net_fuzzer_test_support",
6123 ":test_support",
6124 "//base",
6125 "//net",
6126 ]
mmoroz4a561d32016-07-07 17:45:126127 dict = "data/fuzzer_dictionaries/net_http_proxy_client_socket_fuzzer.dict"
mmenke8e9314bc2016-04-15 21:45:026128}
6129
mmoroz9299ef9b2016-09-01 17:37:096130fuzzer_test("net_parse_url_hostname_to_address_fuzzer") {
6131 sources = [
6132 "base/parse_url_hostname_to_address_fuzzer.cc",
6133 ]
6134 deps = [
6135 ":net_fuzzer_test_support",
6136 "//base",
6137 "//net",
6138 ]
6139 libfuzzer_options = [ "max_len=512" ]
6140 seed_corpus = "data/fuzzer_data/hostnames/"
6141}
6142
mmoroz565e8df22016-03-04 18:17:206143fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") {
eromanfe8659e2016-03-02 23:47:026144 sources = [
Ryan Hamilton7582d2652018-08-01 22:35:326145 "quic/quic_crypto_framer_parse_message_fuzzer.cc",
eromanfe8659e2016-03-02 23:47:026146 ]
6147 deps = [
eroman02b4fe562016-03-04 12:15:166148 ":net_fuzzer_test_support",
eromanfe8659e2016-03-02 23:47:026149 "//base",
6150 "//net",
6151 ]
6152}
mmenke99b57172016-04-14 20:44:336153
btolsch7ebfd23c2018-11-16 00:05:106154fuzzer_test("net_quic_transport_parameters_fuzzer") {
6155 sources = [
6156 "quic/quic_transport_parameters_fuzzer.cc",
6157 ]
6158 deps = [
6159 ":net_fuzzer_test_support",
6160 "//base",
6161 "//net",
6162 ]
6163}
6164
mmenke99b57172016-04-14 20:44:336165fuzzer_test("net_socks_client_socket_fuzzer") {
6166 sources = [
6167 "socket/socks_client_socket_fuzzer.cc",
6168 ]
6169 deps = [
6170 ":net_fuzzer_test_support",
6171 ":test_support",
6172 "//base",
6173 "//net",
6174 ]
6175}
6176
6177fuzzer_test("net_socks5_client_socket_fuzzer") {
6178 sources = [
6179 "socket/socks5_client_socket_fuzzer.cc",
6180 ]
6181 deps = [
6182 ":net_fuzzer_test_support",
6183 ":test_support",
6184 "//base",
6185 "//net",
6186 ]
6187}
mmenkec951d412016-04-28 19:05:226188
mmenkea7da0712016-11-21 21:12:316189fuzzer_test("net_url_request_ftp_fuzzer") {
6190 sources = [
6191 "url_request/url_request_ftp_fuzzer.cc",
6192 ]
6193 deps = [
6194 ":net_fuzzer_test_support",
6195 ":test_support",
6196 "//base",
6197 "//net",
6198 ]
6199 dict = "data/fuzzer_dictionaries/net_url_request_ftp_fuzzer.dict"
6200 seed_corpus = "data/fuzzer_data/net_url_request_ftp_fuzzer/"
6201}
6202
mmenkec951d412016-04-28 19:05:226203fuzzer_test("net_url_request_fuzzer") {
6204 sources = [
6205 "url_request/url_request_fuzzer.cc",
6206 ]
6207 deps = [
6208 ":net_fuzzer_test_support",
6209 ":test_support",
6210 "//base",
6211 "//net",
6212 ]
mmoroz4a561d32016-07-07 17:45:126213 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict"
Jonathan Metzman4cf98282018-03-09 02:36:566214
6215 # TODO(crbug.com/820089): Figure out why this fuzzer's corpus explodes to
6216 # 10 GB. For now, disable it on ClusterFuzz.
6217 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ]
mmenkec951d412016-04-28 19:05:226218}
csharrison88d2a612016-09-09 16:58:546219
6220fuzzer_test("net_auth_challenge_tokenizer_fuzzer") {
6221 sources = [
6222 "http/http_auth_challenge_tokenizer_fuzzer.cc",
6223 ]
6224 deps = [
6225 ":net_fuzzer_test_support",
6226 ":test_support",
6227 "//base",
6228 "//net",
6229 ]
6230}
martijndb9ad4f2016-10-26 18:34:096231
estarka57e8162017-04-21 18:01:056232fuzzer_test("net_http_security_headers_expect_ct_fuzzer") {
6233 sources = [
6234 "http/http_security_headers_expect_ct_fuzzer.cc",
6235 ]
6236 deps = [
6237 ":net_fuzzer_test_support",
6238 "//base",
6239 "//net",
6240 "//url",
6241 ]
6242 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
6243 seed_corpus = "data/fuzzer_data/http_security_headers/"
6244}
6245
martijndb9ad4f2016-10-26 18:34:096246fuzzer_test("net_http_security_headers_hsts_fuzzer") {
6247 sources = [
6248 "http/http_security_headers_hsts_fuzzer.cc",
6249 ]
6250 deps = [
6251 "//base",
6252 "//net",
6253 ]
6254 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
estarka57e8162017-04-21 18:01:056255 seed_corpus = "data/fuzzer_data/http_security_headers/"
martijndb9ad4f2016-10-26 18:34:096256}
6257
martijnda940792016-12-29 01:36:516258fuzzer_test("net_http_transport_security_state_static_fuzzer") {
6259 sources = [
6260 "http/transport_security_state_static_fuzzer.cc",
6261 ]
6262 deps = [
6263 ":net_fuzzer_test_support",
6264 "//net",
6265 ]
6266 dict =
6267 "data/fuzzer_dictionaries/net_http_transport_security_state_fuzzer.dict"
6268}
6269
morlovich833190ec2017-02-10 16:53:046270fuzzer_test("net_spdy_session_fuzzer") {
6271 sources = [
Bence Béky94658bf2018-05-11 19:22:586272 "spdy/spdy_session_fuzzer.cc",
morlovich833190ec2017-02-10 16:53:046273 ]
6274 deps = [
6275 ":net_fuzzer_test_support",
6276 ":test_support",
6277 "//base",
6278 "//net",
Ryan Hamiltone3e592e2017-11-16 04:49:096279 "//net/data/ssl/certificates:generate_fuzzer_cert_includes",
morlovich833190ec2017-02-10 16:53:046280 ]
6281 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
6282 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
6283}
Patrick Meenan6a9701372017-10-03 21:33:416284
6285fuzzer_test("net_http2_frame_decoder_fuzzer") {
6286 sources = [
Victor Vasiliev747e0c3c2018-12-07 04:38:536287 "spdy/fuzzing/http2_frame_decoder_fuzzer.cc",
Patrick Meenan6a9701372017-10-03 21:33:416288 ]
6289 deps = [
6290 ":net_fuzzer_test_support",
6291 ":test_support",
6292 "//base",
6293 "//net",
6294 ]
6295}
Patrick Meenan73b497a2017-10-05 22:40:446296
6297fuzzer_test("net_hpack_decoder_fuzzer") {
6298 sources = [
Victor Vasiliev747e0c3c2018-12-07 04:38:536299 "spdy/fuzzing/hpack_decoder_fuzzer.cc",
Patrick Meenan73b497a2017-10-05 22:40:446300 ]
6301 deps = [
6302 ":net_fuzzer_test_support",
6303 ":test_support",
6304 "//base",
6305 "//net",
6306 ]
6307}
Max Moroz592f4c62017-11-01 01:10:326308
6309proto_library("reporting_policy_proto") {
6310 import_dirs = [ "//testing/libfuzzer/proto/" ]
6311 sources = [
6312 "reporting/reporting_policy.proto",
6313 ]
6314 deps = [
6315 "//testing/libfuzzer/proto:json_proto",
6316 ]
6317}
6318
6319fuzzer_test("net_reporting_header_parser_fuzzer") {
6320 sources = [
6321 "reporting/reporting_header_parser_fuzzer.cc",
Max Moroz592f4c62017-11-01 01:10:326322 ]
6323
6324 deps = [
6325 ":net_fuzzer_test_support",
6326 ":reporting_policy_proto",
6327 ":test_support",
6328 "//base",
6329 "//net",
6330 "//testing/libfuzzer/proto:json_proto",
6331 "//testing/libfuzzer/proto:json_proto_converter",
6332 "//third_party/libprotobuf-mutator",
6333 ]
6334}
Ned Williamson3d55bbb2017-11-07 22:58:136335
6336fuzzer_test("net_quic_stream_factory_fuzzer") {
6337 sources = [
Ryan Hamiltona3ee93a72018-08-01 22:03:086338 "quic/quic_stream_factory_fuzzer.cc",
Ned Williamson3d55bbb2017-11-07 22:58:136339 ]
6340
6341 deps = [
6342 ":net_fuzzer_test_support",
6343 ":quic_test_tools",
6344 ":test_support",
6345 "//net",
Ryan Hamiltone3e592e2017-11-16 04:49:096346 "//net/data/ssl/certificates:generate_fuzzer_cert_includes",
Ned Williamson3d55bbb2017-11-07 22:58:136347 ]
6348}
dalyk6b82a0252018-08-22 15:22:386349
6350fuzzer_test("net_uri_template_fuzzer") {
6351 sources = [
6352 "third_party/uri_template/uri_template_fuzzer.cc",
6353 ]
6354 deps = [
6355 ":net_fuzzer_test_support",
6356 "//base",
6357 "//net",
6358 ]
6359 dict = "data/fuzzer_dictionaries/net_uri_template_fuzzer.dict"
6360}
Bence Béky681131512018-12-17 13:29:166361
6362fuzzer_test("net_qpack_decoder_fuzzer") {
6363 sources = [
6364 "third_party/quic/core/qpack/fuzzer/qpack_decoder_fuzzer.cc",
6365 ]
6366 deps = [
6367 ":net_fuzzer_test_support",
6368 ":quic_test_tools",
Zhongyi Shi2be051202019-01-07 22:57:196369 ":test_support",
Bence Béky681131512018-12-17 13:29:166370 "//base",
6371 "//net",
6372 ]
6373 seed_corpus =
6374 "third_party/quic/core/qpack/fuzzer/qpack_decoder_fuzzer_corpus/"
6375}
6376
6377fuzzer_test("net_qpack_encoder_stream_receiver_fuzzer") {
6378 sources = [
6379 "third_party/quic/core/qpack/fuzzer/qpack_encoder_stream_receiver_fuzzer.cc",
6380 ]
6381 deps = [
6382 ":net_fuzzer_test_support",
6383 "//base",
6384 "//net",
6385 ]
6386 seed_corpus = "third_party/quic/core/qpack/fuzzer/qpack_encoder_stream_receiver_fuzzer_corpus/"
6387}
6388
6389fuzzer_test("net_qpack_encoder_stream_sender_fuzzer") {
6390 sources = [
6391 "third_party/quic/core/qpack/fuzzer/qpack_encoder_stream_sender_fuzzer.cc",
6392 ]
6393 deps = [
6394 ":net_fuzzer_test_support",
6395 "//base",
6396 "//net",
6397 ]
6398 seed_corpus = "third_party/quic/core/qpack/fuzzer/qpack_encoder_stream_sender_fuzzer_corpus/"
6399}
6400
6401fuzzer_test("net_qpack_round_trip_fuzzer") {
6402 sources = [
6403 "third_party/quic/core/qpack/fuzzer/qpack_round_trip_fuzzer.cc",
6404 ]
6405 deps = [
6406 ":net_fuzzer_test_support",
6407 ":quic_test_tools",
Zhongyi Shi2be051202019-01-07 22:57:196408 ":test_support",
Bence Béky681131512018-12-17 13:29:166409 "//base",
6410 "//net",
6411 ]
6412 seed_corpus =
6413 "third_party/quic/core/qpack/fuzzer/qpack_round_trip_fuzzer_corpus/"
6414}