[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 1 | # 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 | |
mef | ff34b82 | 2016-01-11 15:28:08 | [diff] [blame] | 5 | import("//build/buildflag_header.gni") |
slan | 77bdc2e6 | 2015-09-21 17:56:26 | [diff] [blame] | 6 | import("//build/config/chromecast_build.gni") |
Yuta Hijikata | 101ed2a | 2020-11-18 07:50:39 | [diff] [blame] | 7 | import("//build/config/chromeos/ui_mode.gni") |
brettw | 4cab0f1 | 2015-09-14 21:40:01 | [diff] [blame] | 8 | import("//build/config/compiler/compiler.gni") |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 9 | import("//build/config/features.gni") |
Justin Cohen | 90defe3 | 2022-01-28 02:28:20 | [diff] [blame] | 10 | import("//build/config/ios/config.gni") |
Collin | 5baeeba5 | 2022-01-20 02:07:59 | [diff] [blame] | 11 | import("//crypto/features.gni") |
sdefresne | eb26586 | 2016-09-08 14:27:12 | [diff] [blame] | 12 | import("//net/features.gni") |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 13 | import("//testing/libfuzzer/fuzzer_test.gni") |
qsr | fb5251d1 | 2015-01-21 15:57:22 | [diff] [blame] | 14 | import("//testing/test.gni") |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 15 | import("//third_party/icu/config.gni") |
rtenneti | b6f1c0d | 2015-04-03 17:52:06 | [diff] [blame] | 16 | import("//third_party/protobuf/proto_library.gni") |
tfarina | e597851a | 2015-10-06 23:14:41 | [diff] [blame] | 17 | import("//tools/grit/grit_rule.gni") |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 18 | import("//url/features.gni") |
[email protected] | 26046b5 | 2014-07-16 00:11:03 | [diff] [blame] | 19 | |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 20 | if (is_android) { |
| 21 | import("//build/config/android/config.gni") |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 22 | import("//build/config/android/rules.gni") |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 23 | } else if (is_mac) { |
| 24 | import("//build/config/mac/mac_sdk.gni") |
| 25 | } |
| 26 | |
Bryant Chandler | 6404a78fe | 2022-03-15 15:08:27 | [diff] [blame] | 27 | # Android: |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 28 | # The way the cache uses mmap() is inefficient on some Android devices. If |
| 29 | # this flag is set, we hackily avoid using mmap() in the disk cache. We are |
| 30 | # pretty confident that mmap-ing the index would not hurt any existing x86 |
| 31 | # android devices, but we cannot be so sure about the variety of ARM devices. |
| 32 | # So enable it for x86 only for now. |
Bryant Chandler | 6404a78fe | 2022-03-15 15:08:27 | [diff] [blame] | 33 | # Fuchsia: |
| 34 | # Writable mmap isn't supported on Fuchsia, so it should be bypassed. |
| 35 | posix_bypass_mmap = (is_android && current_cpu != "x86") || is_fuchsia |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 36 | |
Victor Vasiliev | c0110d7 | 2019-07-21 19:29:46 | [diff] [blame] | 37 | enable_built_in_dns = !is_ios |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 38 | |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 39 | # Unix sockets are not supported on iOS. |
| 40 | enable_unix_sockets = is_posix && !is_ios |
Sergey Ulanov | 21dea15 | 2017-09-13 00:50:50 | [diff] [blame] | 41 | |
Sergey Volk | 3ee3537f | 2018-06-12 01:45:48 | [diff] [blame] | 42 | # x86/x64 cast_shell builds run on regular trybots and can use python runtime |
| 43 | # and remote test server. ARM cast_shell builds don't have python runtime. |
| 44 | is_arm_cast_shell_build = |
| 45 | is_chromecast && (current_cpu == "arm" || current_cpu == "arm64") |
Sergey Ulanov | 2a0b019 | 2017-08-31 23:09:40 | [diff] [blame] | 46 | |
Daniel Bratell | e0c1730 | 2018-09-27 08:52:45 | [diff] [blame] | 47 | # Python works only on Linux, MacOS and Windows so exclude the others, |
| 48 | # chromecast, android, fuchsia, ios. |
Sergey Volk | 3ee3537f | 2018-06-12 01:45:48 | [diff] [blame] | 49 | enable_python_utils = |
| 50 | !is_arm_cast_shell_build && !is_android && !is_fuchsia && !is_ios |
| 51 | |
Daniel Bratell | e0c1730 | 2018-09-27 08:52:45 | [diff] [blame] | 52 | # Platforms that cannot use python_utils (like Android but see full |
| 53 | # list above) will instead use a remote server, except for iOS which |
| 54 | # won't get either. |
| 55 | use_remote_test_server = !enable_python_utils && !is_ios |
Sergey Volk | 3ee3537f | 2018-06-12 01:45:48 | [diff] [blame] | 56 | |
Asanka Herath | 48ddc2d | 2019-06-03 20:31:38 | [diff] [blame] | 57 | # Whether //net should use an external GSSAPI library for implementing HTTP |
| 58 | # Negotiate authentication. All platforms for which use_kerberos is true should |
| 59 | # have some external implementation since //net doesn't have intrinsic support |
| 60 | # for Kerberos. This implementation is an external GSSAPI library on all |
| 61 | # platforms except on: |
| 62 | # |
| 63 | # Windows : Uses SSPI for Negotiate authentication. |
| 64 | # |
| 65 | # Android : Uses an external authenticator. See |
| 66 | # https://www.chromium.org/developers/design-documents/http-authentication/writing-a-spnego-authenticator-for-chrome-on-android |
| 67 | use_external_gssapi = use_kerberos && !is_android && !is_win |
| 68 | |
Sergey Volk | 3ee3537f | 2018-06-12 01:45:48 | [diff] [blame] | 69 | config("net_test_config") { |
| 70 | if (use_remote_test_server) { |
| 71 | defines = [ "USE_REMOTE_TEST_SERVER" ] |
| 72 | } |
| 73 | } |
Sergey Ulanov | ec1d3de | 2017-09-19 19:27:47 | [diff] [blame] | 74 | |
Scott Violet | 0caaaf43 | 2018-03-24 00:43:59 | [diff] [blame] | 75 | buildflag_header("buildflags") { |
| 76 | header = "net_buildflags.h" |
brettw | a1228ebb | 2016-10-28 03:51:34 | [diff] [blame] | 77 | flags = [ |
Bryant Chandler | 6404a78fe | 2022-03-15 15:08:27 | [diff] [blame] | 78 | "POSIX_BYPASS_MMAP=$posix_bypass_mmap", |
brettw | a1228ebb | 2016-10-28 03:51:34 | [diff] [blame] | 79 | "DISABLE_FILE_SUPPORT=$disable_file_support", |
brettw | 5224a18 | 2016-10-28 22:13:02 | [diff] [blame] | 80 | "ENABLE_MDNS=$enable_mdns", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 81 | "ENABLE_REPORTING=$enable_reporting", |
brettw | a1228ebb | 2016-10-28 03:51:34 | [diff] [blame] | 82 | "ENABLE_WEBSOCKETS=$enable_websockets", |
xunjieli | 815ad5b | 2017-07-18 15:51:35 | [diff] [blame] | 83 | "INCLUDE_TRANSPORT_SECURITY_STATE_PRELOAD_LIST=$include_transport_security_state_preload_list", |
Nico Weber | 0699ffbd | 2018-07-09 16:57:05 | [diff] [blame] | 84 | "USE_KERBEROS=$use_kerberos", |
Asanka Herath | fbe4a670 | 2019-07-23 17:36:31 | [diff] [blame] | 85 | "USE_EXTERNAL_GSSAPI=$use_external_gssapi", |
Matt Mueller | dbc0aa7 | 2019-02-04 22:13:18 | [diff] [blame] | 86 | "TRIAL_COMPARISON_CERT_VERIFIER_SUPPORTED=$trial_comparison_cert_verifier_supported", |
Matt Mueller | 36c3b10 | 2019-06-18 02:28:20 | [diff] [blame] | 87 | "BUILTIN_CERT_VERIFIER_FEATURE_SUPPORTED=$builtin_cert_verifier_feature_supported", |
Hubert Chao | 7c39043 | 2021-07-16 17:36:04 | [diff] [blame] | 88 | "CHROME_ROOT_STORE_SUPPORTED=$chrome_root_store_supported", |
brettw | a1228ebb | 2016-10-28 03:51:34 | [diff] [blame] | 89 | ] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 90 | } |
| 91 | |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 92 | config("net_internal_config") { |
Asanka Herath | 48ddc2d | 2019-06-03 20:31:38 | [diff] [blame] | 93 | defines = [ "NET_IMPLEMENTATION" ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 94 | |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 95 | if (enable_built_in_dns) { |
| 96 | defines += [ "ENABLE_BUILT_IN_DNS" ] |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 97 | } |
| 98 | } |
| 99 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 100 | net_configs = [ |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 101 | ":net_internal_config", |
| 102 | "//build/config:precompiled_headers", |
| 103 | |
rsesek | 99679aa | 2016-06-28 21:24:17 | [diff] [blame] | 104 | "//build/config/compiler:wexit_time_destructors", |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 105 | ] |
| 106 | |
Sean McAllister | 9c0cdcf | 2020-07-31 16:24:20 | [diff] [blame] | 107 | if (is_linux || is_chromeos) { |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 108 | net_configs += [ "//build/config/linux:libresolv" ] |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 109 | } |
| 110 | |
xunjieli | 0b7f5b6 | 2016-12-06 20:43:48 | [diff] [blame] | 111 | source_set("constants") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 112 | sources = [ "base/trace_constants.h" ] |
| 113 | deps = [ "//base" ] |
xunjieli | 0b7f5b6 | 2016-12-06 20:43:48 | [diff] [blame] | 114 | } |
| 115 | |
Justin Cohen | 90defe3 | 2022-01-28 02:28:20 | [diff] [blame] | 116 | buildflag_header("ios_cronet_buildflags") { |
| 117 | header = "ios_cronet_buildflags.h" |
| 118 | header_dir = "net/socket" |
| 119 | flags = [ "CRONET_BUILD=$is_cronet_build" ] |
| 120 | } |
| 121 | |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 122 | component("net") { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 123 | sources = [ |
| 124 | "base/address_family.cc", |
| 125 | "base/address_family.h", |
| 126 | "base/address_list.cc", |
| 127 | "base/address_list.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 128 | "base/auth.cc", |
| 129 | "base/auth.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 130 | "base/backoff_entry.cc", |
| 131 | "base/backoff_entry.h", |
| 132 | "base/backoff_entry_serializer.cc", |
| 133 | "base/backoff_entry_serializer.h", |
| 134 | "base/cache_metrics.cc", |
| 135 | "base/cache_metrics.h", |
| 136 | "base/cache_type.h", |
| 137 | "base/chunked_upload_data_stream.cc", |
| 138 | "base/chunked_upload_data_stream.h", |
Matt Menke | dadd6c7 | 2018-01-30 23:07:25 | [diff] [blame] | 139 | "base/completion_once_callback.h", |
Bence Béky | 61f756c | 2018-04-25 14:17:53 | [diff] [blame] | 140 | "base/completion_repeating_callback.h", |
Eric Orth | d39d067 | 2021-11-16 21:17:58 | [diff] [blame] | 141 | "base/connection_endpoint_metadata.cc", |
| 142 | "base/connection_endpoint_metadata.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 143 | "base/data_url.cc", |
| 144 | "base/data_url.h", |
Charles 'Buck' Krasic | ed43ded | 2018-03-23 18:48:12 | [diff] [blame] | 145 | "base/datagram_buffer.cc", |
| 146 | "base/datagram_buffer.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 147 | "base/elements_upload_data_stream.cc", |
| 148 | "base/elements_upload_data_stream.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 149 | "base/escape.cc", |
| 150 | "base/escape.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 151 | "base/expiring_cache.h", |
Mythri Alle | 030e8f89 | 2018-10-09 14:58:17 | [diff] [blame] | 152 | "base/features.cc", |
| 153 | "base/features.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 154 | "base/file_stream.cc", |
| 155 | "base/file_stream.h", |
| 156 | "base/file_stream_context.cc", |
| 157 | "base/file_stream_context.h", |
| 158 | "base/filename_util.cc", |
| 159 | "base/filename_util.h", |
| 160 | "base/filename_util_internal.cc", |
| 161 | "base/filename_util_internal.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 162 | "base/hash_value.cc", |
| 163 | "base/hash_value.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 164 | "base/hex_utils.cc", |
| 165 | "base/hex_utils.h", |
| 166 | "base/host_mapping_rules.cc", |
| 167 | "base/host_mapping_rules.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 168 | "base/host_port_pair.cc", |
| 169 | "base/host_port_pair.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 170 | "base/http_user_agent_settings.h", |
| 171 | "base/idempotency.h", |
fayang | baec8ff5 | 2017-01-28 03:26:12 | [diff] [blame] | 172 | "base/interval.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 173 | "base/io_buffer.cc", |
| 174 | "base/io_buffer.h", |
| 175 | "base/ip_address.cc", |
| 176 | "base/ip_address.h", |
| 177 | "base/ip_endpoint.cc", |
| 178 | "base/ip_endpoint.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 179 | "base/isolation_info.cc", |
| 180 | "base/isolation_info.h", |
| 181 | "base/load_flags.h", |
| 182 | "base/load_flags_list.h", |
| 183 | "base/load_states.h", |
| 184 | "base/load_states_list.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 185 | "base/load_timing_info.cc", |
| 186 | "base/load_timing_info.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 187 | "base/logging_network_change_observer.cc", |
| 188 | "base/logging_network_change_observer.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 189 | "base/lookup_string_in_fixed_set.cc", |
| 190 | "base/lookup_string_in_fixed_set.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 191 | "base/mime_sniffer.cc", |
| 192 | "base/mime_sniffer.h", |
| 193 | "base/mime_util.cc", |
| 194 | "base/mime_util.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 195 | "base/net_error_details.h", |
| 196 | "base/net_error_list.h", |
| 197 | "base/net_errors.cc", |
| 198 | "base/net_errors.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 199 | "base/net_info_source_list.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 200 | "base/net_module.cc", |
| 201 | "base/net_module.h", |
| 202 | "base/net_string_util.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 203 | "base/network_activity_monitor.cc", |
| 204 | "base/network_activity_monitor.h", |
| 205 | "base/network_change_notifier.cc", |
| 206 | "base/network_change_notifier.h", |
| 207 | "base/network_change_notifier_factory.h", |
| 208 | "base/network_delegate.cc", |
| 209 | "base/network_delegate.h", |
| 210 | "base/network_delegate_impl.cc", |
| 211 | "base/network_delegate_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 212 | "base/network_interfaces.cc", |
| 213 | "base/network_interfaces.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 214 | "base/network_isolation_key.cc", |
| 215 | "base/network_isolation_key.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 216 | "base/parse_number.cc", |
| 217 | "base/parse_number.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 218 | "base/platform_mime_util.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 219 | "base/port_util.cc", |
| 220 | "base/port_util.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 221 | "base/prioritized_dispatcher.cc", |
| 222 | "base/prioritized_dispatcher.h", |
| 223 | "base/prioritized_task_runner.cc", |
| 224 | "base/prioritized_task_runner.h", |
| 225 | "base/priority_queue.h", |
David Benjamin | f6f0431 | 2020-07-15 00:19:21 | [diff] [blame] | 226 | "base/privacy_mode.cc", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 227 | "base/privacy_mode.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 228 | "base/proxy_delegate.h", |
| 229 | "base/proxy_server.cc", |
| 230 | "base/proxy_server.h", |
Eric Orth | 5ccc3f0 | 2021-09-23 00:01:57 | [diff] [blame] | 231 | "base/proxy_string_util.cc", |
| 232 | "base/proxy_string_util.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 233 | "base/rand_callback.h", |
| 234 | "base/registry_controlled_domains/registry_controlled_domain.cc", |
| 235 | "base/registry_controlled_domains/registry_controlled_domain.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 236 | "base/request_priority.cc", |
| 237 | "base/request_priority.h", |
| 238 | "base/scheme_host_port_matcher.cc", |
| 239 | "base/scheme_host_port_matcher.h", |
| 240 | "base/scheme_host_port_matcher_result.h", |
| 241 | "base/scheme_host_port_matcher_rule.cc", |
| 242 | "base/scheme_host_port_matcher_rule.h", |
John Delaney | 513e53f | 2020-10-29 20:16:04 | [diff] [blame] | 243 | "base/schemeful_site.cc", |
| 244 | "base/schemeful_site.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 245 | "base/sockaddr_storage.cc", |
| 246 | "base/sockaddr_storage.h", |
| 247 | "base/sys_addrinfo.h", |
Titouan Rigoudy | ba507a88 | 2020-07-31 12:15:15 | [diff] [blame] | 248 | "base/transport_info.cc", |
| 249 | "base/transport_info.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 250 | "base/upload_bytes_element_reader.cc", |
| 251 | "base/upload_bytes_element_reader.h", |
| 252 | "base/upload_data_stream.cc", |
| 253 | "base/upload_data_stream.h", |
| 254 | "base/upload_element_reader.cc", |
| 255 | "base/upload_element_reader.h", |
| 256 | "base/upload_file_element_reader.cc", |
| 257 | "base/upload_file_element_reader.h", |
| 258 | "base/upload_progress.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 259 | "base/url_util.cc", |
| 260 | "base/url_util.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 261 | "cert/asn1_util.cc", |
| 262 | "cert/asn1_util.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 263 | "cert/caching_cert_verifier.cc", |
| 264 | "cert/caching_cert_verifier.h", |
Chris Thompson | b20d589 | 2020-11-25 02:54:02 | [diff] [blame] | 265 | "cert/cert_and_ct_verifier.cc", |
| 266 | "cert/cert_and_ct_verifier.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 267 | "cert/cert_database.cc", |
| 268 | "cert/cert_database.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 269 | "cert/cert_net_fetcher.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 270 | "cert/cert_status_flags.cc", |
| 271 | "cert/cert_status_flags.h", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 272 | "cert/cert_status_flags_list.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 273 | "cert/cert_verifier.cc", |
| 274 | "cert/cert_verifier.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 275 | "cert/cert_verify_proc.cc", |
| 276 | "cert/cert_verify_proc.h", |
| 277 | "cert/cert_verify_proc_builtin.cc", |
| 278 | "cert/cert_verify_proc_builtin.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 279 | "cert/cert_verify_result.cc", |
| 280 | "cert/cert_verify_result.h", |
| 281 | "cert/client_cert_verifier.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 282 | "cert/coalescing_cert_verifier.cc", |
| 283 | "cert/coalescing_cert_verifier.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 284 | "cert/crl_set.cc", |
| 285 | "cert/crl_set.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 286 | "cert/ct_log_response_parser.cc", |
| 287 | "cert/ct_log_response_parser.h", |
| 288 | "cert/ct_log_verifier.cc", |
| 289 | "cert/ct_log_verifier.h", |
| 290 | "cert/ct_log_verifier_util.cc", |
| 291 | "cert/ct_log_verifier_util.h", |
| 292 | "cert/ct_objects_extractor.cc", |
| 293 | "cert/ct_objects_extractor.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 294 | "cert/ct_policy_enforcer.cc", |
| 295 | "cert/ct_policy_enforcer.h", |
| 296 | "cert/ct_policy_status.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 297 | "cert/ct_sct_to_string.cc", |
| 298 | "cert/ct_sct_to_string.h", |
| 299 | "cert/ct_serialization.cc", |
| 300 | "cert/ct_serialization.h", |
| 301 | "cert/ct_signed_certificate_timestamp_log_param.cc", |
| 302 | "cert/ct_signed_certificate_timestamp_log_param.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 303 | "cert/ct_verifier.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 304 | "cert/do_nothing_ct_verifier.cc", |
| 305 | "cert/do_nothing_ct_verifier.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 306 | "cert/ev_root_ca_metadata.cc", |
| 307 | "cert/ev_root_ca_metadata.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 308 | "cert/internal/cert_error_id.cc", |
| 309 | "cert/internal/cert_error_id.h", |
| 310 | "cert/internal/cert_error_params.cc", |
| 311 | "cert/internal/cert_error_params.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 312 | "cert/internal/cert_errors.cc", |
| 313 | "cert/internal/cert_errors.h", |
| 314 | "cert/internal/cert_issuer_source.h", |
| 315 | "cert/internal/cert_issuer_source_aia.cc", |
| 316 | "cert/internal/cert_issuer_source_aia.h", |
| 317 | "cert/internal/cert_issuer_source_static.cc", |
| 318 | "cert/internal/cert_issuer_source_static.h", |
| 319 | "cert/internal/certificate_policies.cc", |
| 320 | "cert/internal/certificate_policies.h", |
Eric Roman | caa0a60 | 2017-07-28 21:17:11 | [diff] [blame] | 321 | "cert/internal/common_cert_errors.cc", |
| 322 | "cert/internal/common_cert_errors.h", |
Matt Mueller | e39d83d | 2019-06-11 21:25:24 | [diff] [blame] | 323 | "cert/internal/crl.cc", |
| 324 | "cert/internal/crl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 325 | "cert/internal/extended_key_usage.cc", |
| 326 | "cert/internal/extended_key_usage.h", |
Matt Mueller | 9e3ad303 | 2017-09-14 19:29:31 | [diff] [blame] | 327 | "cert/internal/general_names.cc", |
| 328 | "cert/internal/general_names.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 329 | "cert/internal/name_constraints.cc", |
| 330 | "cert/internal/name_constraints.h", |
Eric Roman | a2f6f55d | 2017-09-07 23:34:57 | [diff] [blame] | 331 | "cert/internal/ocsp.cc", |
| 332 | "cert/internal/ocsp.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 333 | "cert/internal/parse_certificate.cc", |
| 334 | "cert/internal/parse_certificate.h", |
| 335 | "cert/internal/parse_name.cc", |
| 336 | "cert/internal/parse_name.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 337 | "cert/internal/parsed_certificate.cc", |
| 338 | "cert/internal/parsed_certificate.h", |
| 339 | "cert/internal/path_builder.cc", |
| 340 | "cert/internal/path_builder.h", |
Eric Roman | cc56d16f | 2017-10-11 23:04:26 | [diff] [blame] | 341 | "cert/internal/revocation_checker.cc", |
| 342 | "cert/internal/revocation_checker.h", |
Matt Mueller | cfc358e2 | 2019-05-29 04:30:42 | [diff] [blame] | 343 | "cert/internal/revocation_util.cc", |
| 344 | "cert/internal/revocation_util.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 345 | "cert/internal/signature_algorithm.cc", |
| 346 | "cert/internal/signature_algorithm.h", |
Eric Roman | 5431d70 | 2017-07-26 01:58:18 | [diff] [blame] | 347 | "cert/internal/simple_path_builder_delegate.cc", |
| 348 | "cert/internal/simple_path_builder_delegate.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 349 | "cert/internal/system_trust_store.cc", |
| 350 | "cert/internal/system_trust_store.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 351 | "cert/internal/trust_store.cc", |
| 352 | "cert/internal/trust_store.h", |
| 353 | "cert/internal/trust_store_collection.cc", |
| 354 | "cert/internal/trust_store_collection.h", |
| 355 | "cert/internal/trust_store_in_memory.cc", |
| 356 | "cert/internal/trust_store_in_memory.h", |
| 357 | "cert/internal/verify_certificate_chain.cc", |
| 358 | "cert/internal/verify_certificate_chain.h", |
| 359 | "cert/internal/verify_name_match.cc", |
| 360 | "cert/internal/verify_name_match.h", |
| 361 | "cert/internal/verify_signed_data.cc", |
| 362 | "cert/internal/verify_signed_data.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 363 | "cert/known_roots.cc", |
| 364 | "cert/known_roots.h", |
| 365 | "cert/merkle_audit_proof.cc", |
| 366 | "cert/merkle_audit_proof.h", |
| 367 | "cert/merkle_consistency_proof.cc", |
| 368 | "cert/merkle_consistency_proof.h", |
| 369 | "cert/merkle_tree_leaf.cc", |
| 370 | "cert/merkle_tree_leaf.h", |
| 371 | "cert/multi_log_ct_verifier.cc", |
| 372 | "cert/multi_log_ct_verifier.h", |
| 373 | "cert/multi_threaded_cert_verifier.cc", |
| 374 | "cert/multi_threaded_cert_verifier.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 375 | "cert/ocsp_revocation_status.h", |
| 376 | "cert/ocsp_verify_result.cc", |
| 377 | "cert/ocsp_verify_result.h", |
Matt Mueller | dd8f469 | 2019-11-21 01:09:32 | [diff] [blame] | 378 | "cert/pem.cc", |
| 379 | "cert/pem.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 380 | "cert/root_cert_list_generated.h", |
Chris Thompson | f31b249 | 2020-07-21 05:47:42 | [diff] [blame] | 381 | "cert/sct_auditing_delegate.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 382 | "cert/sct_status_flags.cc", |
| 383 | "cert/sct_status_flags.h", |
| 384 | "cert/signed_certificate_timestamp.cc", |
| 385 | "cert/signed_certificate_timestamp.h", |
| 386 | "cert/signed_certificate_timestamp_and_status.cc", |
| 387 | "cert/signed_certificate_timestamp_and_status.h", |
| 388 | "cert/signed_tree_head.cc", |
| 389 | "cert/signed_tree_head.h", |
Emily Stark | d29cdae | 2017-09-16 01:59:34 | [diff] [blame] | 390 | "cert/symantec_certs.cc", |
| 391 | "cert/symantec_certs.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 392 | "cert/test_root_certs.cc", |
| 393 | "cert/test_root_certs.h", |
Hubert Chao | 99aa7f4 | 2021-10-28 22:38:27 | [diff] [blame] | 394 | "cert/trial_comparison_cert_verifier_util.cc", |
| 395 | "cert/trial_comparison_cert_verifier_util.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 396 | "cert/x509_cert_types.cc", |
| 397 | "cert/x509_cert_types.h", |
| 398 | "cert/x509_certificate.cc", |
| 399 | "cert/x509_certificate.h", |
| 400 | "cert/x509_certificate_net_log_param.cc", |
| 401 | "cert/x509_certificate_net_log_param.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 402 | "cert/x509_util.cc", |
| 403 | "cert/x509_util.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 404 | "cert_net/cert_net_fetcher_url_request.cc", |
| 405 | "cert_net/cert_net_fetcher_url_request.h", |
| 406 | "cookies/canonical_cookie.cc", |
| 407 | "cookies/canonical_cookie.h", |
| 408 | "cookies/cookie_access_delegate.cc", |
| 409 | "cookies/cookie_access_delegate.h", |
| 410 | "cookies/cookie_access_result.cc", |
| 411 | "cookies/cookie_access_result.h", |
| 412 | "cookies/cookie_change_dispatcher.cc", |
| 413 | "cookies/cookie_change_dispatcher.h", |
| 414 | "cookies/cookie_constants.cc", |
| 415 | "cookies/cookie_constants.h", |
| 416 | "cookies/cookie_deletion_info.cc", |
| 417 | "cookies/cookie_deletion_info.h", |
| 418 | "cookies/cookie_inclusion_status.cc", |
| 419 | "cookies/cookie_inclusion_status.h", |
| 420 | "cookies/cookie_monster.cc", |
| 421 | "cookies/cookie_monster.h", |
| 422 | "cookies/cookie_monster_change_dispatcher.cc", |
| 423 | "cookies/cookie_monster_change_dispatcher.h", |
| 424 | "cookies/cookie_monster_netlog_params.cc", |
| 425 | "cookies/cookie_monster_netlog_params.h", |
| 426 | "cookies/cookie_options.cc", |
| 427 | "cookies/cookie_options.h", |
Dylan Cutler | 2730733 | 2021-08-02 21:00:41 | [diff] [blame] | 428 | "cookies/cookie_partition_key.cc", |
| 429 | "cookies/cookie_partition_key.h", |
Aykut Bulut | 244341e | 2021-12-09 15:57:25 | [diff] [blame] | 430 | "cookies/cookie_partition_key_collection.cc", |
| 431 | "cookies/cookie_partition_key_collection.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 432 | "cookies/cookie_store.cc", |
| 433 | "cookies/cookie_store.h", |
| 434 | "cookies/cookie_util.cc", |
| 435 | "cookies/cookie_util.h", |
cfredric | b7ae6d3 | 2022-01-05 22:08:31 | [diff] [blame] | 436 | "cookies/first_party_set_metadata.cc", |
| 437 | "cookies/first_party_set_metadata.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 438 | "cookies/parsed_cookie.cc", |
| 439 | "cookies/parsed_cookie.h", |
cfredric | 362c4a0 | 2021-07-09 22:40:40 | [diff] [blame] | 440 | "cookies/same_party_context.cc", |
| 441 | "cookies/same_party_context.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 442 | "cookies/site_for_cookies.cc", |
| 443 | "cookies/site_for_cookies.h", |
| 444 | "cookies/static_cookie_policy.cc", |
| 445 | "cookies/static_cookie_policy.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 446 | "der/encode_values.cc", |
| 447 | "der/encode_values.h", |
| 448 | "der/input.cc", |
| 449 | "der/input.h", |
| 450 | "der/parse_values.cc", |
| 451 | "der/parse_values.h", |
| 452 | "der/parser.cc", |
| 453 | "der/parser.h", |
| 454 | "der/tag.cc", |
| 455 | "der/tag.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 456 | "disk_cache/backend_cleanup_tracker.cc", |
| 457 | "disk_cache/backend_cleanup_tracker.h", |
| 458 | "disk_cache/blockfile/addr.cc", |
| 459 | "disk_cache/blockfile/addr.h", |
| 460 | "disk_cache/blockfile/backend_impl.cc", |
| 461 | "disk_cache/blockfile/backend_impl.h", |
| 462 | "disk_cache/blockfile/bitmap.cc", |
| 463 | "disk_cache/blockfile/bitmap.h", |
| 464 | "disk_cache/blockfile/block_files.cc", |
| 465 | "disk_cache/blockfile/block_files.h", |
| 466 | "disk_cache/blockfile/disk_format.cc", |
| 467 | "disk_cache/blockfile/disk_format.h", |
| 468 | "disk_cache/blockfile/disk_format_base.h", |
| 469 | "disk_cache/blockfile/entry_impl.cc", |
| 470 | "disk_cache/blockfile/entry_impl.h", |
| 471 | "disk_cache/blockfile/errors.h", |
| 472 | "disk_cache/blockfile/eviction.cc", |
| 473 | "disk_cache/blockfile/eviction.h", |
| 474 | "disk_cache/blockfile/experiments.h", |
| 475 | "disk_cache/blockfile/file.cc", |
| 476 | "disk_cache/blockfile/file.h", |
| 477 | "disk_cache/blockfile/file_block.h", |
| 478 | "disk_cache/blockfile/file_lock.cc", |
| 479 | "disk_cache/blockfile/file_lock.h", |
| 480 | "disk_cache/blockfile/histogram_macros.h", |
| 481 | "disk_cache/blockfile/in_flight_backend_io.cc", |
| 482 | "disk_cache/blockfile/in_flight_backend_io.h", |
| 483 | "disk_cache/blockfile/in_flight_io.cc", |
| 484 | "disk_cache/blockfile/in_flight_io.h", |
| 485 | "disk_cache/blockfile/mapped_file.cc", |
| 486 | "disk_cache/blockfile/mapped_file.h", |
| 487 | "disk_cache/blockfile/rankings.cc", |
| 488 | "disk_cache/blockfile/rankings.h", |
| 489 | "disk_cache/blockfile/sparse_control.cc", |
| 490 | "disk_cache/blockfile/sparse_control.h", |
| 491 | "disk_cache/blockfile/stats.cc", |
| 492 | "disk_cache/blockfile/stats.h", |
| 493 | "disk_cache/blockfile/storage_block-inl.h", |
| 494 | "disk_cache/blockfile/storage_block.h", |
| 495 | "disk_cache/blockfile/stress_support.h", |
| 496 | "disk_cache/cache_util.cc", |
| 497 | "disk_cache/cache_util.h", |
| 498 | "disk_cache/disk_cache.cc", |
| 499 | "disk_cache/disk_cache.h", |
| 500 | "disk_cache/memory/mem_backend_impl.cc", |
| 501 | "disk_cache/memory/mem_backend_impl.h", |
| 502 | "disk_cache/memory/mem_entry_impl.cc", |
| 503 | "disk_cache/memory/mem_entry_impl.h", |
| 504 | "disk_cache/net_log_parameters.cc", |
| 505 | "disk_cache/net_log_parameters.h", |
| 506 | "disk_cache/simple/post_doom_waiter.cc", |
| 507 | "disk_cache/simple/post_doom_waiter.h", |
| 508 | "disk_cache/simple/simple_backend_impl.cc", |
| 509 | "disk_cache/simple/simple_backend_impl.h", |
| 510 | "disk_cache/simple/simple_backend_version.h", |
| 511 | "disk_cache/simple/simple_entry_format.cc", |
| 512 | "disk_cache/simple/simple_entry_format.h", |
| 513 | "disk_cache/simple/simple_entry_format_history.h", |
| 514 | "disk_cache/simple/simple_entry_impl.cc", |
| 515 | "disk_cache/simple/simple_entry_impl.h", |
| 516 | "disk_cache/simple/simple_entry_operation.cc", |
| 517 | "disk_cache/simple/simple_entry_operation.h", |
| 518 | "disk_cache/simple/simple_file_tracker.cc", |
| 519 | "disk_cache/simple/simple_file_tracker.h", |
| 520 | "disk_cache/simple/simple_histogram_macros.h", |
| 521 | "disk_cache/simple/simple_index.cc", |
| 522 | "disk_cache/simple/simple_index.h", |
| 523 | "disk_cache/simple/simple_index_delegate.h", |
| 524 | "disk_cache/simple/simple_index_file.cc", |
| 525 | "disk_cache/simple/simple_index_file.h", |
| 526 | "disk_cache/simple/simple_net_log_parameters.cc", |
| 527 | "disk_cache/simple/simple_net_log_parameters.h", |
| 528 | "disk_cache/simple/simple_synchronous_entry.cc", |
| 529 | "disk_cache/simple/simple_synchronous_entry.h", |
| 530 | "disk_cache/simple/simple_util.cc", |
| 531 | "disk_cache/simple/simple_util.h", |
| 532 | "disk_cache/simple/simple_version_upgrade.cc", |
| 533 | "disk_cache/simple/simple_version_upgrade.h", |
| 534 | "filter/filter_source_stream.cc", |
| 535 | "filter/filter_source_stream.h", |
| 536 | "filter/gzip_header.cc", |
| 537 | "filter/gzip_header.h", |
| 538 | "filter/gzip_source_stream.cc", |
| 539 | "filter/gzip_source_stream.h", |
| 540 | "filter/source_stream.cc", |
| 541 | "filter/source_stream.h", |
| 542 | "http/alternative_service.cc", |
| 543 | "http/alternative_service.h", |
| 544 | "http/bidirectional_stream.cc", |
| 545 | "http/bidirectional_stream.h", |
| 546 | "http/bidirectional_stream_impl.cc", |
| 547 | "http/bidirectional_stream_impl.h", |
| 548 | "http/bidirectional_stream_request_info.cc", |
| 549 | "http/bidirectional_stream_request_info.h", |
| 550 | "http/broken_alternative_services.cc", |
| 551 | "http/broken_alternative_services.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 552 | "http/http_auth.cc", |
| 553 | "http/http_auth.h", |
| 554 | "http/http_auth_cache.cc", |
| 555 | "http/http_auth_cache.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 556 | "http/http_auth_challenge_tokenizer.cc", |
| 557 | "http/http_auth_challenge_tokenizer.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 558 | "http/http_auth_controller.cc", |
| 559 | "http/http_auth_controller.h", |
| 560 | "http/http_auth_filter.cc", |
| 561 | "http/http_auth_filter.h", |
| 562 | "http/http_auth_handler.cc", |
| 563 | "http/http_auth_handler.h", |
| 564 | "http/http_auth_handler_basic.cc", |
| 565 | "http/http_auth_handler_basic.h", |
| 566 | "http/http_auth_handler_digest.cc", |
| 567 | "http/http_auth_handler_digest.h", |
| 568 | "http/http_auth_handler_factory.cc", |
| 569 | "http/http_auth_handler_factory.h", |
| 570 | "http/http_auth_handler_ntlm.cc", |
| 571 | "http/http_auth_handler_ntlm.h", |
| 572 | "http/http_auth_mechanism.h", |
| 573 | "http/http_auth_multi_round_parse.cc", |
| 574 | "http/http_auth_multi_round_parse.h", |
| 575 | "http/http_auth_preferences.cc", |
| 576 | "http/http_auth_preferences.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 577 | "http/http_auth_scheme.cc", |
| 578 | "http/http_auth_scheme.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 579 | "http/http_basic_state.cc", |
| 580 | "http/http_basic_state.h", |
| 581 | "http/http_basic_stream.cc", |
| 582 | "http/http_basic_stream.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 583 | "http/http_byte_range.cc", |
| 584 | "http/http_byte_range.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 585 | "http/http_cache.cc", |
| 586 | "http/http_cache.h", |
| 587 | "http/http_cache_lookup_manager.cc", |
| 588 | "http/http_cache_lookup_manager.h", |
| 589 | "http/http_cache_transaction.cc", |
| 590 | "http/http_cache_transaction.h", |
| 591 | "http/http_cache_writers.cc", |
| 592 | "http/http_cache_writers.h", |
| 593 | "http/http_chunked_decoder.cc", |
| 594 | "http/http_chunked_decoder.h", |
| 595 | "http/http_content_disposition.cc", |
| 596 | "http/http_content_disposition.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 597 | "http/http_log_util.cc", |
| 598 | "http/http_log_util.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 599 | "http/http_network_layer.cc", |
| 600 | "http/http_network_layer.h", |
| 601 | "http/http_network_session.cc", |
| 602 | "http/http_network_session.h", |
| 603 | "http/http_network_session_peer.cc", |
| 604 | "http/http_network_session_peer.h", |
| 605 | "http/http_network_transaction.cc", |
| 606 | "http/http_network_transaction.h", |
| 607 | "http/http_proxy_client_socket.cc", |
| 608 | "http/http_proxy_client_socket.h", |
| 609 | "http/http_proxy_connect_job.cc", |
| 610 | "http/http_proxy_connect_job.h", |
Andrey Kosyakov | 83a6eee | 2017-08-14 19:20:04 | [diff] [blame] | 611 | "http/http_raw_request_headers.cc", |
| 612 | "http/http_raw_request_headers.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 613 | "http/http_request_headers.cc", |
| 614 | "http/http_request_headers.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 615 | "http/http_request_info.cc", |
| 616 | "http/http_request_info.h", |
| 617 | "http/http_response_body_drainer.cc", |
| 618 | "http/http_response_body_drainer.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 619 | "http/http_response_headers.cc", |
| 620 | "http/http_response_headers.h", |
| 621 | "http/http_response_info.cc", |
| 622 | "http/http_response_info.h", |
| 623 | "http/http_security_headers.cc", |
| 624 | "http/http_security_headers.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 625 | "http/http_server_properties.cc", |
| 626 | "http/http_server_properties.h", |
| 627 | "http/http_server_properties_manager.cc", |
| 628 | "http/http_server_properties_manager.h", |
| 629 | "http/http_status_code.cc", |
| 630 | "http/http_status_code.h", |
Daniel Bratell | a6f7191d | 2017-11-23 09:20:37 | [diff] [blame] | 631 | "http/http_status_code_list.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 632 | "http/http_stream.h", |
| 633 | "http/http_stream_factory.cc", |
| 634 | "http/http_stream_factory.h", |
| 635 | "http/http_stream_factory_job.cc", |
| 636 | "http/http_stream_factory_job.h", |
| 637 | "http/http_stream_factory_job_controller.cc", |
| 638 | "http/http_stream_factory_job_controller.h", |
| 639 | "http/http_stream_parser.cc", |
| 640 | "http/http_stream_parser.h", |
| 641 | "http/http_stream_request.cc", |
| 642 | "http/http_stream_request.h", |
| 643 | "http/http_transaction.h", |
| 644 | "http/http_transaction_factory.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 645 | "http/http_util.cc", |
| 646 | "http/http_util.h", |
| 647 | "http/http_vary_data.cc", |
| 648 | "http/http_vary_data.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 649 | "http/http_version.h", |
| 650 | "http/partial_data.cc", |
| 651 | "http/partial_data.h", |
| 652 | "http/proxy_client_socket.cc", |
| 653 | "http/proxy_client_socket.h", |
| 654 | "http/proxy_fallback.cc", |
| 655 | "http/proxy_fallback.h", |
Yutaka Hirano | 7babd26e | 2020-02-12 16:03:21 | [diff] [blame] | 656 | "http/structured_headers.cc", |
| 657 | "http/structured_headers.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 658 | "http/transport_security_persister.cc", |
| 659 | "http/transport_security_persister.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 660 | "http/transport_security_state.h", |
xunjieli | 815ad5b | 2017-07-18 15:51:35 | [diff] [blame] | 661 | "http/transport_security_state_source.cc", |
martijn | 9b806ab2 | 2017-03-18 16:13:21 | [diff] [blame] | 662 | "http/transport_security_state_source.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 663 | "http/url_security_manager.cc", |
| 664 | "http/url_security_manager.h", |
| 665 | "http/webfonts_histogram.cc", |
| 666 | "http/webfonts_histogram.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 667 | "log/file_net_log_observer.cc", |
| 668 | "log/file_net_log_observer.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 669 | "log/net_log.cc", |
| 670 | "log/net_log.h", |
| 671 | "log/net_log_capture_mode.cc", |
| 672 | "log/net_log_capture_mode.h", |
| 673 | "log/net_log_entry.cc", |
| 674 | "log/net_log_entry.h", |
Titouan Rigoudy | 26d7d31 | 2022-03-15 18:10:33 | [diff] [blame] | 675 | "log/net_log_event_type.cc", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 676 | "log/net_log_event_type.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 677 | "log/net_log_event_type_list.h", |
| 678 | "log/net_log_source.cc", |
| 679 | "log/net_log_source.h", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 680 | "log/net_log_source_type.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 681 | "log/net_log_source_type_list.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 682 | "log/net_log_util.cc", |
| 683 | "log/net_log_util.h", |
Eric Roman | 06bd974 | 2019-07-13 15:19:13 | [diff] [blame] | 684 | "log/net_log_values.cc", |
| 685 | "log/net_log_values.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 686 | "log/net_log_with_source.cc", |
| 687 | "log/net_log_with_source.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 688 | "log/trace_net_log_observer.cc", |
| 689 | "log/trace_net_log_observer.h", |
| 690 | "nqe/cached_network_quality.cc", |
| 691 | "nqe/cached_network_quality.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 692 | "nqe/effective_connection_type.cc", |
| 693 | "nqe/effective_connection_type.h", |
| 694 | "nqe/effective_connection_type_observer.h", |
| 695 | "nqe/event_creator.cc", |
| 696 | "nqe/event_creator.h", |
| 697 | "nqe/network_id.cc", |
| 698 | "nqe/network_id.h", |
| 699 | "nqe/network_qualities_prefs_manager.cc", |
| 700 | "nqe/network_qualities_prefs_manager.h", |
| 701 | "nqe/network_quality.cc", |
| 702 | "nqe/network_quality.h", |
| 703 | "nqe/network_quality_estimator.cc", |
| 704 | "nqe/network_quality_estimator.h", |
| 705 | "nqe/network_quality_estimator_params.cc", |
| 706 | "nqe/network_quality_estimator_params.h", |
| 707 | "nqe/network_quality_estimator_util.cc", |
| 708 | "nqe/network_quality_estimator_util.h", |
| 709 | "nqe/network_quality_observation.cc", |
| 710 | "nqe/network_quality_observation.h", |
| 711 | "nqe/network_quality_observation_source.h", |
| 712 | "nqe/network_quality_store.cc", |
| 713 | "nqe/network_quality_store.h", |
| 714 | "nqe/observation_buffer.cc", |
| 715 | "nqe/observation_buffer.h", |
| 716 | "nqe/peer_to_peer_connections_count_observer.h", |
| 717 | "nqe/pref_names.cc", |
| 718 | "nqe/pref_names.h", |
| 719 | "nqe/rtt_throughput_estimates_observer.h", |
| 720 | "nqe/socket_watcher.cc", |
| 721 | "nqe/socket_watcher.h", |
| 722 | "nqe/socket_watcher_factory.cc", |
| 723 | "nqe/socket_watcher_factory.h", |
| 724 | "nqe/throughput_analyzer.cc", |
| 725 | "nqe/throughput_analyzer.h", |
| 726 | "nqe/weighted_observation.h", |
| 727 | "proxy_resolution/configured_proxy_resolution_request.cc", |
| 728 | "proxy_resolution/configured_proxy_resolution_request.h", |
| 729 | "proxy_resolution/configured_proxy_resolution_service.cc", |
| 730 | "proxy_resolution/configured_proxy_resolution_service.h", |
| 731 | "proxy_resolution/dhcp_pac_file_fetcher.cc", |
| 732 | "proxy_resolution/dhcp_pac_file_fetcher.h", |
| 733 | "proxy_resolution/multi_threaded_proxy_resolver.cc", |
| 734 | "proxy_resolution/multi_threaded_proxy_resolver.h", |
| 735 | "proxy_resolution/network_delegate_error_observer.cc", |
| 736 | "proxy_resolution/network_delegate_error_observer.h", |
| 737 | "proxy_resolution/pac_file_data.cc", |
| 738 | "proxy_resolution/pac_file_data.h", |
| 739 | "proxy_resolution/pac_file_decider.cc", |
| 740 | "proxy_resolution/pac_file_decider.h", |
Matt Menke | 467dd789 | 2021-08-10 20:19:23 | [diff] [blame] | 741 | "proxy_resolution/pac_file_fetcher.cc", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 742 | "proxy_resolution/pac_file_fetcher.h", |
| 743 | "proxy_resolution/pac_file_fetcher_impl.cc", |
| 744 | "proxy_resolution/pac_file_fetcher_impl.h", |
| 745 | "proxy_resolution/polling_proxy_config_service.cc", |
| 746 | "proxy_resolution/polling_proxy_config_service.h", |
| 747 | "proxy_resolution/proxy_bypass_rules.cc", |
| 748 | "proxy_resolution/proxy_bypass_rules.h", |
| 749 | "proxy_resolution/proxy_config.cc", |
| 750 | "proxy_resolution/proxy_config.h", |
| 751 | "proxy_resolution/proxy_config_service.h", |
| 752 | "proxy_resolution/proxy_config_service_fixed.cc", |
| 753 | "proxy_resolution/proxy_config_service_fixed.h", |
| 754 | "proxy_resolution/proxy_config_with_annotation.cc", |
| 755 | "proxy_resolution/proxy_config_with_annotation.h", |
| 756 | "proxy_resolution/proxy_info.cc", |
| 757 | "proxy_resolution/proxy_info.h", |
| 758 | "proxy_resolution/proxy_list.cc", |
| 759 | "proxy_resolution/proxy_list.h", |
| 760 | "proxy_resolution/proxy_resolution_request.h", |
| 761 | "proxy_resolution/proxy_resolution_service.h", |
| 762 | "proxy_resolution/proxy_resolve_dns_operation.h", |
| 763 | "proxy_resolution/proxy_resolver.h", |
| 764 | "proxy_resolution/proxy_resolver_error_observer.h", |
| 765 | "proxy_resolution/proxy_resolver_factory.cc", |
| 766 | "proxy_resolution/proxy_resolver_factory.h", |
| 767 | "proxy_resolution/proxy_retry_info.h", |
| 768 | "quic/address_utils.h", |
| 769 | "quic/bidirectional_stream_quic_impl.cc", |
| 770 | "quic/bidirectional_stream_quic_impl.h", |
| 771 | "quic/crypto/proof_source_chromium.cc", |
| 772 | "quic/crypto/proof_source_chromium.h", |
| 773 | "quic/crypto/proof_verifier_chromium.cc", |
| 774 | "quic/crypto/proof_verifier_chromium.h", |
| 775 | "quic/dedicated_web_transport_http3_client.cc", |
| 776 | "quic/dedicated_web_transport_http3_client.h", |
| 777 | "quic/network_connection.cc", |
| 778 | "quic/network_connection.h", |
| 779 | "quic/platform/impl/quic_chromium_clock.cc", |
| 780 | "quic/platform/impl/quic_chromium_clock.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 781 | "quic/properties_based_quic_server_info.cc", |
| 782 | "quic/properties_based_quic_server_info.h", |
| 783 | "quic/quic_address_mismatch.cc", |
| 784 | "quic/quic_address_mismatch.h", |
| 785 | "quic/quic_chromium_alarm_factory.cc", |
| 786 | "quic/quic_chromium_alarm_factory.h", |
| 787 | "quic/quic_chromium_client_session.cc", |
| 788 | "quic/quic_chromium_client_session.h", |
| 789 | "quic/quic_chromium_client_stream.cc", |
| 790 | "quic/quic_chromium_client_stream.h", |
| 791 | "quic/quic_chromium_connection_helper.cc", |
| 792 | "quic/quic_chromium_connection_helper.h", |
| 793 | "quic/quic_chromium_packet_reader.cc", |
| 794 | "quic/quic_chromium_packet_reader.h", |
| 795 | "quic/quic_chromium_packet_writer.cc", |
| 796 | "quic/quic_chromium_packet_writer.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 797 | "quic/quic_clock_skew_detector.cc", |
| 798 | "quic/quic_clock_skew_detector.h", |
| 799 | "quic/quic_connection_logger.cc", |
| 800 | "quic/quic_connection_logger.h", |
| 801 | "quic/quic_connectivity_monitor.cc", |
| 802 | "quic/quic_connectivity_monitor.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 803 | "quic/quic_context.cc", |
| 804 | "quic/quic_context.h", |
| 805 | "quic/quic_crypto_client_config_handle.cc", |
| 806 | "quic/quic_crypto_client_config_handle.h", |
| 807 | "quic/quic_crypto_client_stream_factory.cc", |
| 808 | "quic/quic_crypto_client_stream_factory.h", |
| 809 | "quic/quic_event_logger.cc", |
| 810 | "quic/quic_event_logger.h", |
| 811 | "quic/quic_http3_logger.cc", |
| 812 | "quic/quic_http3_logger.h", |
| 813 | "quic/quic_http_stream.cc", |
| 814 | "quic/quic_http_stream.h", |
| 815 | "quic/quic_http_utils.cc", |
| 816 | "quic/quic_http_utils.h", |
| 817 | "quic/quic_proxy_client_socket.cc", |
| 818 | "quic/quic_proxy_client_socket.h", |
| 819 | "quic/quic_server_info.cc", |
| 820 | "quic/quic_server_info.h", |
| 821 | "quic/quic_session_key.cc", |
| 822 | "quic/quic_session_key.h", |
| 823 | "quic/quic_stream_factory.cc", |
| 824 | "quic/quic_stream_factory.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 825 | "quic/web_transport_client.cc", |
| 826 | "quic/web_transport_client.h", |
Kenichi Ishibashi | f220ec68 | 2021-05-14 04:34:44 | [diff] [blame] | 827 | "quic/web_transport_error.cc", |
| 828 | "quic/web_transport_error.h", |
Victor Vasiliev | 22dd3f21 | 2022-02-11 21:57:29 | [diff] [blame] | 829 | "quiche/common/platform/impl/quiche_command_line_flags_impl.cc", |
| 830 | "quiche/common/platform/impl/quiche_command_line_flags_impl.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 831 | "quiche/common/platform/impl/quiche_flag_utils_impl.h", |
| 832 | "quiche/common/platform/impl/quiche_flags_impl.cc", |
| 833 | "quiche/common/platform/impl/quiche_flags_impl.h", |
Victor Vasiliev | 4235732 | 2022-03-15 20:15:59 | [diff] [blame] | 834 | "quiche/common/platform/impl/quiche_iovec_impl.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 835 | "socket/client_socket_factory.cc", |
| 836 | "socket/client_socket_factory.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 837 | "socket/client_socket_handle.cc", |
| 838 | "socket/client_socket_handle.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 839 | "socket/client_socket_pool.cc", |
| 840 | "socket/client_socket_pool.h", |
| 841 | "socket/client_socket_pool_manager.cc", |
| 842 | "socket/client_socket_pool_manager.h", |
| 843 | "socket/client_socket_pool_manager_impl.cc", |
| 844 | "socket/client_socket_pool_manager_impl.h", |
Matt Menke | 977e61b | 2019-01-10 19:36:02 | [diff] [blame] | 845 | "socket/connect_job.cc", |
| 846 | "socket/connect_job.h", |
Eric Orth | a9b8be0 | 2021-06-29 23:09:08 | [diff] [blame] | 847 | "socket/connect_job_factory.cc", |
| 848 | "socket/connect_job_factory.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 849 | "socket/connection_attempts.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 850 | "socket/datagram_client_socket.h", |
| 851 | "socket/datagram_server_socket.h", |
| 852 | "socket/datagram_socket.h", |
| 853 | "socket/diff_serv_code_point.h", |
Stefano Duo | e8048e7 | 2022-01-25 17:59:53 | [diff] [blame] | 854 | "socket/network_binding_client_socket_factory.cc", |
| 855 | "socket/network_binding_client_socket_factory.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 856 | "socket/next_proto.cc", |
| 857 | "socket/next_proto.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 858 | "socket/server_socket.cc", |
| 859 | "socket/server_socket.h", |
xunjieli | 321a96f3 | 2017-03-07 19:42:17 | [diff] [blame] | 860 | "socket/socket.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 861 | "socket/socket.h", |
| 862 | "socket/socket_bio_adapter.cc", |
| 863 | "socket/socket_bio_adapter.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 864 | "socket/socket_descriptor.cc", |
| 865 | "socket/socket_descriptor.h", |
| 866 | "socket/socket_net_log_params.cc", |
| 867 | "socket/socket_net_log_params.h", |
| 868 | "socket/socket_options.cc", |
| 869 | "socket/socket_options.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 870 | "socket/socket_performance_watcher.h", |
| 871 | "socket/socket_performance_watcher_factory.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 872 | "socket/socket_tag.cc", |
| 873 | "socket/socket_tag.h", |
| 874 | "socket/socks5_client_socket.cc", |
| 875 | "socket/socks5_client_socket.h", |
| 876 | "socket/socks_client_socket.cc", |
| 877 | "socket/socks_client_socket.h", |
| 878 | "socket/socks_connect_job.cc", |
| 879 | "socket/socks_connect_job.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 880 | "socket/ssl_client_socket.cc", |
| 881 | "socket/ssl_client_socket.h", |
| 882 | "socket/ssl_client_socket_impl.cc", |
| 883 | "socket/ssl_client_socket_impl.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 884 | "socket/ssl_connect_job.cc", |
| 885 | "socket/ssl_connect_job.h", |
| 886 | "socket/ssl_server_socket.h", |
| 887 | "socket/ssl_server_socket_impl.cc", |
| 888 | "socket/ssl_server_socket_impl.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 889 | "socket/ssl_socket.h", |
Bence Béky | dae8af5f | 2018-04-13 08:53:17 | [diff] [blame] | 890 | "socket/stream_socket.cc", |
| 891 | "socket/stream_socket.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 892 | "socket/tcp_client_socket.cc", |
| 893 | "socket/tcp_client_socket.h", |
| 894 | "socket/tcp_server_socket.cc", |
| 895 | "socket/tcp_server_socket.h", |
| 896 | "socket/tcp_socket.h", |
| 897 | "socket/transport_client_socket.cc", |
| 898 | "socket/transport_client_socket.h", |
| 899 | "socket/transport_client_socket_pool.cc", |
| 900 | "socket/transport_client_socket_pool.h", |
| 901 | "socket/transport_connect_job.cc", |
| 902 | "socket/transport_connect_job.h", |
| 903 | "socket/udp_client_socket.cc", |
| 904 | "socket/udp_client_socket.h", |
| 905 | "socket/udp_net_log_parameters.cc", |
| 906 | "socket/udp_net_log_parameters.h", |
| 907 | "socket/udp_server_socket.cc", |
| 908 | "socket/udp_server_socket.h", |
| 909 | "socket/udp_socket.h", |
| 910 | "socket/udp_socket_global_limits.cc", |
| 911 | "socket/udp_socket_global_limits.h", |
| 912 | "socket/websocket_endpoint_lock_manager.cc", |
| 913 | "socket/websocket_endpoint_lock_manager.h", |
| 914 | "socket/websocket_transport_client_socket_pool.cc", |
| 915 | "socket/websocket_transport_client_socket_pool.h", |
| 916 | "socket/websocket_transport_connect_job.cc", |
| 917 | "socket/websocket_transport_connect_job.h", |
| 918 | "socket/websocket_transport_connect_sub_job.cc", |
| 919 | "socket/websocket_transport_connect_sub_job.h", |
| 920 | "spdy/alps_decoder.cc", |
| 921 | "spdy/alps_decoder.h", |
| 922 | "spdy/bidirectional_stream_spdy_impl.cc", |
| 923 | "spdy/bidirectional_stream_spdy_impl.h", |
| 924 | "spdy/buffered_spdy_framer.cc", |
| 925 | "spdy/buffered_spdy_framer.h", |
| 926 | "spdy/header_coalescer.cc", |
| 927 | "spdy/header_coalescer.h", |
| 928 | "spdy/http2_priority_dependencies.cc", |
| 929 | "spdy/http2_priority_dependencies.h", |
| 930 | "spdy/http2_push_promise_index.cc", |
| 931 | "spdy/http2_push_promise_index.h", |
| 932 | "spdy/multiplexed_http_stream.cc", |
| 933 | "spdy/multiplexed_http_stream.h", |
| 934 | "spdy/multiplexed_session.cc", |
| 935 | "spdy/multiplexed_session.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 936 | "spdy/server_push_delegate.h", |
| 937 | "spdy/spdy_buffer.cc", |
| 938 | "spdy/spdy_buffer.h", |
| 939 | "spdy/spdy_buffer_producer.cc", |
| 940 | "spdy/spdy_buffer_producer.h", |
| 941 | "spdy/spdy_http_stream.cc", |
| 942 | "spdy/spdy_http_stream.h", |
| 943 | "spdy/spdy_http_utils.cc", |
| 944 | "spdy/spdy_http_utils.h", |
| 945 | "spdy/spdy_log_util.cc", |
| 946 | "spdy/spdy_log_util.h", |
| 947 | "spdy/spdy_proxy_client_socket.cc", |
| 948 | "spdy/spdy_proxy_client_socket.h", |
| 949 | "spdy/spdy_read_queue.cc", |
| 950 | "spdy/spdy_read_queue.h", |
| 951 | "spdy/spdy_session.cc", |
| 952 | "spdy/spdy_session.h", |
| 953 | "spdy/spdy_session_key.cc", |
| 954 | "spdy/spdy_session_key.h", |
| 955 | "spdy/spdy_session_pool.cc", |
| 956 | "spdy/spdy_session_pool.h", |
| 957 | "spdy/spdy_stream.cc", |
| 958 | "spdy/spdy_stream.h", |
| 959 | "spdy/spdy_write_queue.cc", |
| 960 | "spdy/spdy_write_queue.h", |
Victor Vasiliev | 5c5f62b | 2020-12-03 22:27:52 | [diff] [blame] | 961 | "ssl/cert_compression.cc", |
| 962 | "ssl/cert_compression.h", |
mattm | 436ccfe | 2017-06-19 20:24:08 | [diff] [blame] | 963 | "ssl/client_cert_identity.cc", |
| 964 | "ssl/client_cert_identity.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 965 | "ssl/client_cert_store.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 966 | "ssl/openssl_ssl_util.cc", |
| 967 | "ssl/openssl_ssl_util.h", |
| 968 | "ssl/ssl_cert_request_info.cc", |
| 969 | "ssl/ssl_cert_request_info.h", |
| 970 | "ssl/ssl_cipher_suite_names.cc", |
| 971 | "ssl/ssl_cipher_suite_names.h", |
| 972 | "ssl/ssl_client_auth_cache.cc", |
| 973 | "ssl/ssl_client_auth_cache.h", |
| 974 | "ssl/ssl_client_cert_type.h", |
| 975 | "ssl/ssl_client_session_cache.cc", |
| 976 | "ssl/ssl_client_session_cache.h", |
| 977 | "ssl/ssl_config.cc", |
| 978 | "ssl/ssl_config.h", |
| 979 | "ssl/ssl_config_service.cc", |
| 980 | "ssl/ssl_config_service.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 981 | "ssl/ssl_config_service_defaults.cc", |
| 982 | "ssl/ssl_config_service_defaults.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 983 | "ssl/ssl_connection_status_flags.h", |
David Benjamin | 0627236e | 2019-06-27 02:01:18 | [diff] [blame] | 984 | "ssl/ssl_handshake_details.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 985 | "ssl/ssl_info.cc", |
| 986 | "ssl/ssl_info.h", |
Matt Mueller | 37a27b57 | 2020-11-25 19:15:10 | [diff] [blame] | 987 | "ssl/ssl_key_logger.cc", |
David Benjamin | bd37c17 | 2018-07-11 17:24:57 | [diff] [blame] | 988 | "ssl/ssl_key_logger.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 989 | "ssl/ssl_key_logger_impl.cc", |
| 990 | "ssl/ssl_key_logger_impl.h", |
David Benjamin | 07a07d65 | 2020-02-26 22:26:59 | [diff] [blame] | 991 | "ssl/ssl_legacy_crypto_fallback.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 992 | "ssl/ssl_platform_key_util.cc", |
| 993 | "ssl/ssl_platform_key_util.h", |
David Benjamin | b9bafbe | 2017-11-07 21:41:38 | [diff] [blame] | 994 | "ssl/ssl_private_key.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 995 | "ssl/ssl_private_key.h", |
| 996 | "ssl/ssl_server_config.cc", |
| 997 | "ssl/ssl_server_config.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 998 | "ssl/threaded_ssl_private_key.cc", |
| 999 | "ssl/threaded_ssl_private_key.h", |
dalyk | 6b82a025 | 2018-08-22 15:22:38 | [diff] [blame] | 1000 | "third_party/uri_template/uri_template.cc", |
| 1001 | "third_party/uri_template/uri_template.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1002 | "url_request/redirect_info.cc", |
| 1003 | "url_request/redirect_info.h", |
| 1004 | "url_request/redirect_util.cc", |
| 1005 | "url_request/redirect_util.h", |
| 1006 | "url_request/referrer_policy.h", |
| 1007 | "url_request/report_sender.cc", |
| 1008 | "url_request/report_sender.h", |
| 1009 | "url_request/static_http_user_agent_settings.cc", |
| 1010 | "url_request/static_http_user_agent_settings.h", |
| 1011 | "url_request/url_fetcher.cc", |
| 1012 | "url_request/url_fetcher.h", |
| 1013 | "url_request/url_fetcher_core.cc", |
| 1014 | "url_request/url_fetcher_core.h", |
| 1015 | "url_request/url_fetcher_delegate.cc", |
| 1016 | "url_request/url_fetcher_delegate.h", |
| 1017 | "url_request/url_fetcher_factory.h", |
| 1018 | "url_request/url_fetcher_impl.cc", |
| 1019 | "url_request/url_fetcher_impl.h", |
| 1020 | "url_request/url_fetcher_response_writer.cc", |
| 1021 | "url_request/url_fetcher_response_writer.h", |
| 1022 | "url_request/url_request.cc", |
| 1023 | "url_request/url_request.h", |
| 1024 | "url_request/url_request_context.cc", |
| 1025 | "url_request/url_request_context.h", |
| 1026 | "url_request/url_request_context_builder.cc", |
| 1027 | "url_request/url_request_context_builder.h", |
| 1028 | "url_request/url_request_context_getter.cc", |
| 1029 | "url_request/url_request_context_getter.h", |
| 1030 | "url_request/url_request_context_getter_observer.h", |
| 1031 | "url_request/url_request_context_storage.cc", |
| 1032 | "url_request/url_request_context_storage.h", |
| 1033 | "url_request/url_request_error_job.cc", |
| 1034 | "url_request/url_request_error_job.h", |
| 1035 | "url_request/url_request_filter.cc", |
| 1036 | "url_request/url_request_filter.h", |
| 1037 | "url_request/url_request_http_job.cc", |
| 1038 | "url_request/url_request_http_job.h", |
| 1039 | "url_request/url_request_interceptor.cc", |
| 1040 | "url_request/url_request_interceptor.h", |
| 1041 | "url_request/url_request_job.cc", |
| 1042 | "url_request/url_request_job.h", |
| 1043 | "url_request/url_request_job_factory.cc", |
| 1044 | "url_request/url_request_job_factory.h", |
| 1045 | "url_request/url_request_netlog_params.cc", |
| 1046 | "url_request/url_request_netlog_params.h", |
| 1047 | "url_request/url_request_redirect_job.cc", |
| 1048 | "url_request/url_request_redirect_job.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1049 | "url_request/url_request_throttler_entry.cc", |
| 1050 | "url_request/url_request_throttler_entry.h", |
| 1051 | "url_request/url_request_throttler_entry_interface.h", |
| 1052 | "url_request/url_request_throttler_manager.cc", |
| 1053 | "url_request/url_request_throttler_manager.h", |
| 1054 | "url_request/view_cache_helper.cc", |
| 1055 | "url_request/view_cache_helper.h", |
| 1056 | "url_request/websocket_handshake_userdata_key.cc", |
| 1057 | "url_request/websocket_handshake_userdata_key.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1058 | ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1059 | |
Fabrice de Gans-Riberi | 0ab6b07 | 2018-04-20 21:32:58 | [diff] [blame] | 1060 | if (is_posix || is_fuchsia) { |
| 1061 | sources += [ "base/net_errors_posix.cc" ] |
| 1062 | } |
| 1063 | |
Adam Langley | 93cbfad1 | 2018-07-06 22:07:16 | [diff] [blame] | 1064 | defines = [] |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1065 | if (disable_brotli_filter) { |
Adam Langley | 93cbfad1 | 2018-07-06 22:07:16 | [diff] [blame] | 1066 | defines += [ "NET_DISABLE_BROTLI" ] |
| 1067 | } |
| 1068 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1069 | deps = [ |
Justin Cohen | 90defe3 | 2022-01-28 02:28:20 | [diff] [blame] | 1070 | ":ios_cronet_buildflags", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1071 | ":net_deps", |
Yuta Hijikata | 101ed2a | 2020-11-18 07:50:39 | [diff] [blame] | 1072 | "//build:chromeos_buildflags", |
Hubert Chao | 02846b3 | 2021-12-16 17:26:49 | [diff] [blame] | 1073 | "//net/data/ssl/ev_roots:gen_ev_root_store_inc", |
Takuto Ikuta | 94330d9b | 2019-03-09 11:03:14 | [diff] [blame] | 1074 | "//net/http:transport_security_state_generated_files", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1075 | ] |
| 1076 | |
| 1077 | public_deps = [ |
Daniel Bratell | c36e87a | 2019-03-26 16:31:46 | [diff] [blame] | 1078 | ":net_export_header", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1079 | ":net_public_deps", |
Anton Bikineev | 5bc0d156 | 2021-05-13 03:56:02 | [diff] [blame] | 1080 | "//base", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1081 | "//net/dns", |
| 1082 | "//net/dns:dns_client", |
Eric Orth | 168a7e5 | 2018-08-27 19:11:32 | [diff] [blame] | 1083 | "//net/dns:host_resolver", |
Eric Orth | 0bea166 | 2019-03-20 19:11:22 | [diff] [blame] | 1084 | "//net/dns:host_resolver_manager", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1085 | "//net/dns:mdns_client", |
Eric Orth | 8afaf15 | 2018-11-07 21:01:26 | [diff] [blame] | 1086 | "//net/dns/public", |
Victor Vasiliev | da165f3 | 2020-01-25 22:49:55 | [diff] [blame] | 1087 | "//net/third_party/quiche", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1088 | ] |
| 1089 | |
| 1090 | allow_circular_includes_from = [ |
| 1091 | "//net/dns", |
| 1092 | "//net/dns:dns_client", |
Eric Orth | 168a7e5 | 2018-08-27 19:11:32 | [diff] [blame] | 1093 | "//net/dns:host_resolver", |
Eric Orth | 0bea166 | 2019-03-20 19:11:22 | [diff] [blame] | 1094 | "//net/dns:host_resolver_manager", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1095 | "//net/dns:mdns_client", |
Eric Orth | 8afaf15 | 2018-11-07 21:01:26 | [diff] [blame] | 1096 | "//net/dns/public", |
Takuto Ikuta | 94330d9b | 2019-03-09 11:03:14 | [diff] [blame] | 1097 | "//net/http:transport_security_state_generated_files", |
Victor Vasiliev | da165f3 | 2020-01-25 22:49:55 | [diff] [blame] | 1098 | "//net/third_party/quiche", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1099 | ] |
| 1100 | |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1101 | if (enable_reporting) { |
| 1102 | sources += [ |
| 1103 | "network_error_logging/network_error_logging_service.cc", |
| 1104 | "network_error_logging/network_error_logging_service.h", |
| 1105 | "network_error_logging/persistent_reporting_and_nel_store.h", |
| 1106 | "reporting/reporting_browsing_data_remover.cc", |
| 1107 | "reporting/reporting_browsing_data_remover.h", |
| 1108 | "reporting/reporting_cache.cc", |
| 1109 | "reporting/reporting_cache.h", |
| 1110 | "reporting/reporting_cache_impl.cc", |
| 1111 | "reporting/reporting_cache_impl.h", |
| 1112 | "reporting/reporting_cache_observer.cc", |
| 1113 | "reporting/reporting_cache_observer.h", |
| 1114 | "reporting/reporting_context.cc", |
| 1115 | "reporting/reporting_context.h", |
| 1116 | "reporting/reporting_delegate.cc", |
| 1117 | "reporting/reporting_delegate.h", |
| 1118 | "reporting/reporting_delivery_agent.cc", |
| 1119 | "reporting/reporting_delivery_agent.h", |
| 1120 | "reporting/reporting_endpoint.cc", |
| 1121 | "reporting/reporting_endpoint.h", |
| 1122 | "reporting/reporting_endpoint_manager.cc", |
| 1123 | "reporting/reporting_endpoint_manager.h", |
| 1124 | "reporting/reporting_garbage_collector.cc", |
| 1125 | "reporting/reporting_garbage_collector.h", |
| 1126 | "reporting/reporting_header_parser.cc", |
| 1127 | "reporting/reporting_header_parser.h", |
| 1128 | "reporting/reporting_network_change_observer.cc", |
| 1129 | "reporting/reporting_network_change_observer.h", |
| 1130 | "reporting/reporting_policy.cc", |
| 1131 | "reporting/reporting_policy.h", |
| 1132 | "reporting/reporting_report.cc", |
| 1133 | "reporting/reporting_report.h", |
| 1134 | "reporting/reporting_service.cc", |
| 1135 | "reporting/reporting_service.h", |
| 1136 | "reporting/reporting_uploader.cc", |
| 1137 | "reporting/reporting_uploader.h", |
| 1138 | ] |
Matt Menke | 577d3e9 | 2019-10-31 21:17:31 | [diff] [blame] | 1139 | } |
| 1140 | |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1141 | if (is_android) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1142 | sources += [ |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1143 | "android/android_http_util.cc", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1144 | "android/cert_verify_result_android.cc", |
| 1145 | "android/cert_verify_result_android.h", |
| 1146 | "android/gurl_utils.cc", |
| 1147 | "android/http_auth_negotiate_android.cc", |
| 1148 | "android/http_auth_negotiate_android.h", |
| 1149 | "android/keystore.cc", |
| 1150 | "android/keystore.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1151 | "android/network_change_notifier_android.cc", |
| 1152 | "android/network_change_notifier_android.h", |
| 1153 | "android/network_change_notifier_delegate_android.cc", |
| 1154 | "android/network_change_notifier_delegate_android.h", |
| 1155 | "android/network_change_notifier_factory_android.cc", |
| 1156 | "android/network_change_notifier_factory_android.h", |
| 1157 | "android/network_library.cc", |
| 1158 | "android/network_library.h", |
Kenichi Ishibashi | ec7fdcdb | 2021-12-08 00:32:20 | [diff] [blame] | 1159 | "android/radio_activity_tracker.cc", |
| 1160 | "android/radio_activity_tracker.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1161 | "android/traffic_stats.cc", |
| 1162 | "android/traffic_stats.h", |
| 1163 | "cert/cert_verify_proc_android.cc", |
| 1164 | "cert/cert_verify_proc_android.h", |
| 1165 | "cert/test_root_certs_android.cc", |
| 1166 | "cert/x509_util_android.cc", |
| 1167 | "proxy_resolution/proxy_config_service_android.cc", |
| 1168 | "proxy_resolution/proxy_config_service_android.h", |
| 1169 | "ssl/ssl_platform_key_android.cc", |
| 1170 | "ssl/ssl_platform_key_android.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1171 | ] |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1172 | } |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1173 | |
Nico Weber | d73c9038 | 2022-03-30 20:37:50 | [diff] [blame] | 1174 | if (is_chromeos && use_nss_certs) { |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1175 | sources += [ |
| 1176 | "cert/nss_cert_database_chromeos.cc", |
| 1177 | "cert/nss_cert_database_chromeos.h", |
| 1178 | "cert/nss_profile_filter_chromeos.cc", |
| 1179 | "cert/nss_profile_filter_chromeos.h", |
| 1180 | ] |
| 1181 | } |
| 1182 | |
| 1183 | if (is_ios) { |
| 1184 | sources += [ |
| 1185 | "cert/cert_verify_proc_ios.cc", |
| 1186 | "cert/cert_verify_proc_ios.h", |
| 1187 | "cert/x509_util_ios.cc", |
| 1188 | "cert/x509_util_ios.h", |
| 1189 | "disk_cache/blockfile/file_ios.cc", |
| 1190 | "proxy_resolution/proxy_config_service_ios.cc", |
| 1191 | "proxy_resolution/proxy_config_service_ios.h", |
| 1192 | ] |
| 1193 | } |
| 1194 | |
| 1195 | if (is_linux || is_chromeos_lacros) { |
| 1196 | sources += [ |
| 1197 | "base/network_change_notifier_linux.cc", |
| 1198 | "base/network_change_notifier_linux.h", |
| 1199 | "proxy_resolution/proxy_config_service_linux.cc", |
| 1200 | "proxy_resolution/proxy_config_service_linux.h", |
| 1201 | ] |
| 1202 | } |
| 1203 | |
| 1204 | if (is_linux || is_chromeos || is_android) { |
| 1205 | sources += [ |
| 1206 | "base/address_tracker_linux.cc", |
| 1207 | "base/address_tracker_linux.h", |
| 1208 | "base/network_interfaces_linux.cc", |
| 1209 | "base/network_interfaces_linux.h", |
| 1210 | "base/platform_mime_util_linux.cc", |
| 1211 | ] |
| 1212 | } |
| 1213 | |
| 1214 | if (is_mac) { |
| 1215 | sources += [ |
| 1216 | "base/network_notification_thread_mac.cc", |
| 1217 | "base/network_notification_thread_mac.h", |
| 1218 | "cert/cert_database_mac.cc", |
| 1219 | "cert/cert_verify_proc_mac.cc", |
| 1220 | "cert/cert_verify_proc_mac.h", |
| 1221 | "cert/internal/trust_store_mac.cc", |
| 1222 | "cert/internal/trust_store_mac.h", |
| 1223 | "cert/known_roots_mac.cc", |
| 1224 | "cert/known_roots_mac.h", |
| 1225 | "cert/test_keychain_search_list_mac.cc", |
| 1226 | "cert/test_keychain_search_list_mac.h", |
| 1227 | "cert/x509_util_mac.cc", |
| 1228 | "cert/x509_util_mac.h", |
| 1229 | "proxy_resolution/proxy_config_service_mac.cc", |
| 1230 | "proxy_resolution/proxy_config_service_mac.h", |
| 1231 | "ssl/client_cert_identity_mac.cc", |
| 1232 | "ssl/client_cert_identity_mac.h", |
| 1233 | "ssl/client_cert_store_mac.cc", |
| 1234 | "ssl/client_cert_store_mac.h", |
| 1235 | "ssl/ssl_platform_key_mac.cc", |
| 1236 | "ssl/ssl_platform_key_mac.h", |
| 1237 | ] |
| 1238 | } |
| 1239 | |
| 1240 | if (is_apple) { |
| 1241 | sources += [ |
| 1242 | "base/mac/url_conversions.h", |
| 1243 | "base/mac/url_conversions.mm", |
| 1244 | "base/network_change_notifier_mac.h", |
| 1245 | "base/network_change_notifier_mac.mm", |
| 1246 | "base/network_config_watcher_mac.cc", |
| 1247 | "base/network_config_watcher_mac.h", |
| 1248 | "base/platform_mime_util_mac.mm", |
Eric Orth | 5ccc3f0 | 2021-09-23 00:01:57 | [diff] [blame] | 1249 | "base/proxy_string_util_mac.cc", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1250 | "cert/test_root_certs_mac.cc", |
| 1251 | "cert/x509_util_ios_and_mac.cc", |
| 1252 | "cert/x509_util_ios_and_mac.h", |
| 1253 | "proxy_resolution/proxy_resolver_mac.cc", |
| 1254 | "proxy_resolution/proxy_resolver_mac.h", |
| 1255 | ] |
| 1256 | } |
| 1257 | |
| 1258 | if (is_win) { |
| 1259 | sources += [ |
| 1260 | "base/file_stream_context_win.cc", |
| 1261 | "base/net_errors_win.cc", |
| 1262 | "base/network_change_notifier_win.cc", |
| 1263 | "base/network_change_notifier_win.h", |
| 1264 | "base/network_interfaces_win.cc", |
| 1265 | "base/network_interfaces_win.h", |
| 1266 | "base/platform_mime_util_win.cc", |
| 1267 | "base/winsock_init.cc", |
| 1268 | "base/winsock_init.h", |
| 1269 | "base/winsock_util.cc", |
| 1270 | "base/winsock_util.h", |
| 1271 | "cert/cert_verify_proc_win.cc", |
| 1272 | "cert/cert_verify_proc_win.h", |
| 1273 | "cert/known_roots_win.cc", |
| 1274 | "cert/known_roots_win.h", |
| 1275 | "cert/test_root_certs_win.cc", |
| 1276 | "cert/x509_util_win.cc", |
| 1277 | "cert/x509_util_win.h", |
| 1278 | "disk_cache/blockfile/file_win.cc", |
| 1279 | "disk_cache/blockfile/mapped_file_win.cc", |
| 1280 | "disk_cache/cache_util_win.cc", |
| 1281 | "disk_cache/simple/simple_index_file_win.cc", |
| 1282 | "disk_cache/simple/simple_util_win.cc", |
| 1283 | "http/http_auth_handler_ntlm_win.cc", |
| 1284 | "http/http_auth_sspi_win.cc", |
| 1285 | "http/http_auth_sspi_win.h", |
| 1286 | "http/url_security_manager_win.cc", |
| 1287 | "proxy_resolution/win/dhcp_pac_file_adapter_fetcher_win.cc", |
| 1288 | "proxy_resolution/win/dhcp_pac_file_adapter_fetcher_win.h", |
| 1289 | "proxy_resolution/win/dhcp_pac_file_fetcher_win.cc", |
| 1290 | "proxy_resolution/win/dhcp_pac_file_fetcher_win.h", |
| 1291 | "proxy_resolution/win/dhcpcsvc_init_win.cc", |
| 1292 | "proxy_resolution/win/dhcpcsvc_init_win.h", |
| 1293 | "proxy_resolution/win/proxy_config_service_win.cc", |
| 1294 | "proxy_resolution/win/proxy_config_service_win.h", |
| 1295 | "proxy_resolution/win/proxy_resolver_winhttp.cc", |
| 1296 | "proxy_resolution/win/proxy_resolver_winhttp.h", |
| 1297 | "proxy_resolution/win/windows_system_proxy_resolution_request.cc", |
| 1298 | "proxy_resolution/win/windows_system_proxy_resolution_request.h", |
| 1299 | "proxy_resolution/win/windows_system_proxy_resolution_service.cc", |
| 1300 | "proxy_resolution/win/windows_system_proxy_resolution_service.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1301 | "proxy_resolution/win/windows_system_proxy_resolver.h", |
Nicolas Arciniega | fc964514 | 2021-10-05 20:29:59 | [diff] [blame] | 1302 | "proxy_resolution/win/winhttp_status.h", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1303 | "socket/tcp_socket_win.cc", |
| 1304 | "socket/tcp_socket_win.h", |
| 1305 | "socket/udp_socket_win.cc", |
| 1306 | "socket/udp_socket_win.h", |
| 1307 | "ssl/client_cert_store_win.cc", |
| 1308 | "ssl/client_cert_store_win.h", |
| 1309 | "ssl/ssl_platform_key_win.cc", |
| 1310 | ] |
| 1311 | } |
| 1312 | |
| 1313 | if (use_kerberos) { |
| 1314 | sources += [ |
| 1315 | "http/http_auth_handler_negotiate.cc", |
| 1316 | "http/http_auth_handler_negotiate.h", |
| 1317 | ] |
| 1318 | } |
| 1319 | |
| 1320 | if (is_posix || is_fuchsia) { |
| 1321 | sources += [ |
| 1322 | "base/file_stream_context_posix.cc", |
| 1323 | "base/network_interfaces_posix.cc", |
| 1324 | "base/network_interfaces_posix.h", |
| 1325 | "disk_cache/cache_util_posix.cc", |
| 1326 | "disk_cache/simple/simple_index_file_posix.cc", |
| 1327 | "disk_cache/simple/simple_util_posix.cc", |
| 1328 | "http/url_security_manager_posix.cc", |
| 1329 | "socket/socket_posix.cc", |
| 1330 | "socket/socket_posix.h", |
| 1331 | "socket/tcp_socket_posix.cc", |
| 1332 | "socket/tcp_socket_posix.h", |
| 1333 | "socket/udp_socket_posix.cc", |
| 1334 | "socket/udp_socket_posix.h", |
| 1335 | ] |
| 1336 | if (!is_ios) { |
| 1337 | sources += [ "disk_cache/blockfile/file_posix.cc" ] |
| 1338 | } |
Bryant Chandler | 6404a78fe | 2022-03-15 15:08:27 | [diff] [blame] | 1339 | if (posix_bypass_mmap) { |
| 1340 | sources += [ "disk_cache/blockfile/mapped_file_bypass_mmap_posix.cc" ] |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1341 | } else { |
| 1342 | sources += [ "disk_cache/blockfile/mapped_file_posix.cc" ] |
| 1343 | } |
| 1344 | } |
| 1345 | |
| 1346 | if (is_android || is_chromeos_ash) { |
| 1347 | sources += [ |
| 1348 | "base/network_change_notifier_posix.cc", |
| 1349 | "base/network_change_notifier_posix.h", |
| 1350 | ] |
| 1351 | } |
| 1352 | |
| 1353 | if (!is_win) { |
| 1354 | sources += [ |
| 1355 | "http/http_auth_handler_ntlm_portable.cc", |
| 1356 | "http/http_auth_ntlm_mechanism.cc", |
| 1357 | "http/http_auth_ntlm_mechanism.h", |
| 1358 | "ntlm/ntlm.cc", |
| 1359 | "ntlm/ntlm.h", |
| 1360 | "ntlm/ntlm_buffer_reader.cc", |
| 1361 | "ntlm/ntlm_buffer_reader.h", |
| 1362 | "ntlm/ntlm_buffer_writer.cc", |
| 1363 | "ntlm/ntlm_buffer_writer.h", |
| 1364 | "ntlm/ntlm_client.cc", |
| 1365 | "ntlm/ntlm_client.h", |
| 1366 | "ntlm/ntlm_constants.cc", |
| 1367 | "ntlm/ntlm_constants.h", |
| 1368 | ] |
| 1369 | } |
| 1370 | |
| 1371 | if (use_external_gssapi) { |
| 1372 | sources += [ |
| 1373 | "http/http_auth_gssapi_posix.cc", |
| 1374 | "http/http_auth_gssapi_posix.h", |
| 1375 | ] |
| 1376 | } |
| 1377 | |
| 1378 | # Use getifaddrs() on POSIX platforms, except Linux. |
| 1379 | if (is_posix && !is_linux && !is_chromeos) { |
| 1380 | sources += [ |
| 1381 | "base/network_interfaces_getifaddrs.cc", |
| 1382 | "base/network_interfaces_getifaddrs.h", |
| 1383 | ] |
Byoungchan Lee | 4cf6297 | 2022-02-14 05:35:12 | [diff] [blame] | 1384 | if (is_android) { |
| 1385 | sources += [ |
| 1386 | "base/network_interfaces_getifaddrs_android.cc", |
| 1387 | "base/network_interfaces_getifaddrs_android.h", |
| 1388 | ] |
| 1389 | } |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1390 | } |
| 1391 | |
Hubert Chao | 7c39043 | 2021-07-16 17:36:04 | [diff] [blame] | 1392 | if (chrome_root_store_supported) { |
| 1393 | sources += [ |
| 1394 | "cert/internal/trust_store_chrome.cc", |
| 1395 | "cert/internal/trust_store_chrome.h", |
| 1396 | ] |
| 1397 | deps += [ "//net/data/ssl/chrome_root_store:gen_root_store_inc" ] |
Hubert Chao | 78114c5 | 2021-08-16 19:05:25 | [diff] [blame] | 1398 | if (is_win) { |
| 1399 | sources += [ |
| 1400 | "cert/internal/trust_store_win.cc", |
| 1401 | "cert/internal/trust_store_win.h", |
| 1402 | "third_party/mozilla_win/cert/win_util.cc", |
| 1403 | "third_party/mozilla_win/cert/win_util.h", |
| 1404 | ] |
| 1405 | } |
Hubert Chao | 7c39043 | 2021-07-16 17:36:04 | [diff] [blame] | 1406 | } |
| 1407 | |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1408 | if (use_nss_certs) { |
| 1409 | sources += [ |
| 1410 | "cert/internal/system_trust_store_nss.h", |
| 1411 | "cert/internal/trust_store_nss.cc", |
| 1412 | "cert/internal/trust_store_nss.h", |
| 1413 | "cert/known_roots_nss.cc", |
| 1414 | "cert/known_roots_nss.h", |
| 1415 | "cert/nss_cert_database.cc", |
| 1416 | "cert/nss_cert_database.h", |
| 1417 | "cert/test_root_certs_builtin.cc", |
| 1418 | "cert/x509_util_nss.cc", |
| 1419 | "cert/x509_util_nss.h", |
| 1420 | "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp", |
| 1421 | "third_party/mozilla_security_manager/nsNSSCertificateDB.h", |
| 1422 | "third_party/mozilla_security_manager/nsPKCS12Blob.cpp", |
| 1423 | "third_party/mozilla_security_manager/nsPKCS12Blob.h", |
| 1424 | "third_party/nss/ssl/cmpcert.cc", |
| 1425 | "third_party/nss/ssl/cmpcert.h", |
| 1426 | ] |
| 1427 | if (!is_chromecast) { |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 1428 | sources += [ |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1429 | "ssl/client_cert_store_nss.cc", |
| 1430 | "ssl/client_cert_store_nss.h", |
| 1431 | "ssl/ssl_platform_key_nss.cc", |
| 1432 | "ssl/ssl_platform_key_nss.h", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 1433 | ] |
| 1434 | } |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1435 | } |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 1436 | |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1437 | if (is_fuchsia) { |
| 1438 | deps += [ "//third_party/fuchsia-sdk/sdk/pkg/async-loop-cpp" ] |
| 1439 | public_deps += |
| 1440 | [ "//third_party/fuchsia-sdk/sdk/fidl/fuchsia.net.interfaces" ] |
| 1441 | sources += [ |
| 1442 | "base/network_change_notifier_fuchsia.cc", |
| 1443 | "base/network_change_notifier_fuchsia.h", |
| 1444 | "base/network_interfaces_fuchsia.cc", |
| 1445 | "base/network_interfaces_fuchsia.h", |
| 1446 | "base/platform_mime_util_fuchsia.cc", |
| 1447 | "cert/test_root_certs_builtin.cc", |
| 1448 | ] |
| 1449 | } |
Matt Menke | cd0f6a4 | 2019-10-30 15:49:43 | [diff] [blame] | 1450 | |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1451 | if (trial_comparison_cert_verifier_supported) { |
| 1452 | sources += [ |
| 1453 | "cert/trial_comparison_cert_verifier.cc", |
| 1454 | "cert/trial_comparison_cert_verifier.h", |
| 1455 | ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1456 | } |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 1457 | |
Sergey Ulanov | 21dea15 | 2017-09-13 00:50:50 | [diff] [blame] | 1458 | if (enable_unix_sockets) { |
| 1459 | sources += [ |
| 1460 | "socket/unix_domain_client_socket_posix.cc", |
| 1461 | "socket/unix_domain_client_socket_posix.h", |
| 1462 | "socket/unix_domain_server_socket_posix.cc", |
| 1463 | "socket/unix_domain_server_socket_posix.h", |
| 1464 | ] |
| 1465 | } |
| 1466 | |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 1467 | cflags = [] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 1468 | |
| 1469 | if (is_mac) { |
Robert Sesek | d5a74a80 | 2020-07-01 16:38:08 | [diff] [blame] | 1470 | libs = [ "resolv" ] |
| 1471 | frameworks = [ |
rsesek | 02aa51c | 2016-05-11 02:13:57 | [diff] [blame] | 1472 | "CFNetwork.framework", |
| 1473 | "CoreServices.framework", |
[email protected] | ab9ce6e | 2014-04-17 20:33:19 | [diff] [blame] | 1474 | "Foundation.framework", |
| 1475 | "Security.framework", |
| 1476 | "SystemConfiguration.framework", |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 1477 | ] |
| 1478 | } |
| 1479 | |
| 1480 | if (is_ios) { |
Robert Sesek | d5a74a80 | 2020-07-01 16:38:08 | [diff] [blame] | 1481 | libs = [ "resolv" ] |
| 1482 | frameworks = [ |
[email protected] | ab9ce6e | 2014-04-17 20:33:19 | [diff] [blame] | 1483 | "CFNetwork.framework", |
Olivier Robin | f7f1657 | 2020-09-18 17:46:31 | [diff] [blame] | 1484 | "CoreTelephony.framework", |
[email protected] | ab9ce6e | 2014-04-17 20:33:19 | [diff] [blame] | 1485 | "MobileCoreServices.framework", |
| 1486 | "Security.framework", |
| 1487 | "SystemConfiguration.framework", |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 1488 | ] |
xunjieli | 06d9398 | 2015-08-27 17:13:02 | [diff] [blame] | 1489 | } |
xunjieli | 4c8c692 | 2015-08-27 16:02:40 | [diff] [blame] | 1490 | |
jam | 5332a63 | 2016-04-01 22:36:05 | [diff] [blame] | 1491 | if (is_win) { |
| 1492 | libs = [ |
| 1493 | "crypt32.lib", |
| 1494 | "dhcpcsvc.lib", |
| 1495 | "iphlpapi.lib", |
davidben | 6239919 | 2016-09-13 01:54:22 | [diff] [blame] | 1496 | "ncrypt.lib", |
jam | 5332a63 | 2016-04-01 22:36:05 | [diff] [blame] | 1497 | "rpcrt4.lib", |
| 1498 | "secur32.lib", |
| 1499 | "urlmon.lib", |
| 1500 | "winhttp.lib", |
| 1501 | ] |
Cliff Smolinsky | c5c5210 | 2019-05-03 20:51:54 | [diff] [blame] | 1502 | |
| 1503 | ldflags = [ "/DELAYLOAD:urlmon.dll" ] |
jam | 5332a63 | 2016-04-01 22:36:05 | [diff] [blame] | 1504 | } |
| 1505 | |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1506 | if (!disable_file_support) { |
| 1507 | sources += [ |
| 1508 | "base/directory_lister.cc", |
| 1509 | "base/directory_lister.h", |
| 1510 | "base/directory_listing.cc", |
| 1511 | "base/directory_listing.h", |
| 1512 | ] |
| 1513 | } |
xunjieli | 06d9398 | 2015-08-27 17:13:02 | [diff] [blame] | 1514 | |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1515 | if (enable_websockets) { |
| 1516 | sources += [ |
| 1517 | "websockets/websocket_basic_handshake_stream.cc", |
| 1518 | "websockets/websocket_basic_handshake_stream.h", |
| 1519 | "websockets/websocket_basic_stream.cc", |
| 1520 | "websockets/websocket_basic_stream.h", |
| 1521 | "websockets/websocket_basic_stream_adapters.cc", |
| 1522 | "websockets/websocket_basic_stream_adapters.h", |
| 1523 | "websockets/websocket_channel.cc", |
| 1524 | "websockets/websocket_channel.h", |
| 1525 | "websockets/websocket_deflate_parameters.cc", |
| 1526 | "websockets/websocket_deflate_parameters.h", |
| 1527 | "websockets/websocket_deflate_predictor.h", |
| 1528 | "websockets/websocket_deflate_predictor_impl.cc", |
| 1529 | "websockets/websocket_deflate_predictor_impl.h", |
| 1530 | "websockets/websocket_deflate_stream.cc", |
| 1531 | "websockets/websocket_deflate_stream.h", |
| 1532 | "websockets/websocket_deflater.cc", |
| 1533 | "websockets/websocket_deflater.h", |
| 1534 | "websockets/websocket_errors.cc", |
| 1535 | "websockets/websocket_errors.h", |
| 1536 | "websockets/websocket_event_interface.h", |
| 1537 | "websockets/websocket_extension.cc", |
| 1538 | "websockets/websocket_extension.h", |
| 1539 | "websockets/websocket_extension_parser.cc", |
| 1540 | "websockets/websocket_extension_parser.h", |
| 1541 | "websockets/websocket_frame.cc", |
| 1542 | "websockets/websocket_frame.h", |
| 1543 | "websockets/websocket_frame_parser.cc", |
| 1544 | "websockets/websocket_frame_parser.h", |
| 1545 | "websockets/websocket_handshake_challenge.cc", |
| 1546 | "websockets/websocket_handshake_challenge.h", |
| 1547 | "websockets/websocket_handshake_constants.cc", |
| 1548 | "websockets/websocket_handshake_constants.h", |
| 1549 | "websockets/websocket_handshake_request_info.cc", |
| 1550 | "websockets/websocket_handshake_request_info.h", |
| 1551 | "websockets/websocket_handshake_response_info.cc", |
| 1552 | "websockets/websocket_handshake_response_info.h", |
| 1553 | "websockets/websocket_handshake_stream_base.cc", |
| 1554 | "websockets/websocket_handshake_stream_base.h", |
| 1555 | "websockets/websocket_handshake_stream_create_helper.cc", |
| 1556 | "websockets/websocket_handshake_stream_create_helper.h", |
| 1557 | "websockets/websocket_http2_handshake_stream.cc", |
| 1558 | "websockets/websocket_http2_handshake_stream.h", |
| 1559 | "websockets/websocket_inflater.cc", |
| 1560 | "websockets/websocket_inflater.h", |
| 1561 | "websockets/websocket_stream.cc", |
| 1562 | "websockets/websocket_stream.h", |
| 1563 | ] |
| 1564 | } |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 1565 | |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1566 | # ICU support. |
| 1567 | if (use_platform_icu_alternatives) { |
| 1568 | if (is_android) { |
| 1569 | # Use ICU alternative on Android. |
| 1570 | sources += [ "base/net_string_util_icu_alternatives_android.cc" ] |
| 1571 | } else if (is_ios) { |
| 1572 | # Use ICU alternative on iOS. |
| 1573 | sources += [ "base/net_string_util_icu_alternatives_ios.mm" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1574 | } else { |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1575 | assert(false, |
| 1576 | "ICU alternative is not implemented for platform: " + target_os) |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 1577 | } |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1578 | } else { |
| 1579 | # Use ICU. |
| 1580 | sources += [ |
| 1581 | "base/filename_util_icu.cc", |
| 1582 | "base/net_string_util_icu.cc", |
| 1583 | ] |
| 1584 | } |
eustas | fbec913 | 2015-12-30 14:56:51 | [diff] [blame] | 1585 | |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1586 | # Brotli support. |
| 1587 | if (!disable_brotli_filter) { |
| 1588 | sources += [ |
| 1589 | "filter/brotli_source_stream.cc", |
| 1590 | "filter/brotli_source_stream.h", |
| 1591 | ] |
| 1592 | } else { |
| 1593 | sources += [ "filter/brotli_source_stream_disabled.cc" ] |
[email protected] | 85191ed | 2014-05-15 00:41:49 | [diff] [blame] | 1594 | } |
Sebastien Marchand | 113c39f6 | 2020-03-12 02:22:31 | [diff] [blame] | 1595 | |
| 1596 | if (!is_debug && !optimize_for_size) { |
| 1597 | configs -= [ "//build/config/compiler:default_optimization" ] |
| 1598 | configs += [ "//build/config/compiler:optimize_max" ] |
| 1599 | } |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 1600 | } |
| 1601 | |
Daniel Bratell | c36e87a | 2019-03-26 16:31:46 | [diff] [blame] | 1602 | # net_export.h has its own build target so that code (eg |
| 1603 | # net_nqe_proto) can use it without depending on the whole of //net. |
| 1604 | source_set("net_export_header") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 1605 | sources = [ "base/net_export.h" ] |
Daniel Bratell | c36e87a | 2019-03-26 16:31:46 | [diff] [blame] | 1606 | } |
| 1607 | |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1608 | # Private dependencies for the //net component and for any build targets (e.g. |
| 1609 | # source sets with circular dependencies with //net) that need to share the same |
| 1610 | # dependencies. |
| 1611 | source_set("net_deps") { |
| 1612 | visibility = [ |
| 1613 | ":net", |
| 1614 | "//net/dns", |
| 1615 | "//net/dns:dns_client", |
Eric Orth | 168a7e5 | 2018-08-27 19:11:32 | [diff] [blame] | 1616 | "//net/dns:host_resolver", |
Eric Orth | 0bea166 | 2019-03-20 19:11:22 | [diff] [blame] | 1617 | "//net/dns:host_resolver_manager", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1618 | "//net/dns:mdns_client", |
Eric Orth | 8afaf15 | 2018-11-07 21:01:26 | [diff] [blame] | 1619 | "//net/dns/public", |
Takuto Ikuta | 94330d9b | 2019-03-09 11:03:14 | [diff] [blame] | 1620 | "//net/http:transport_security_state_generated_files", |
Victor Vasiliev | da165f3 | 2020-01-25 22:49:55 | [diff] [blame] | 1621 | "//net/third_party/quiche", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1622 | ] |
| 1623 | |
| 1624 | public_deps = [ |
| 1625 | ":constants", |
Rayan Kanso | 0f21e4d | 2021-10-06 09:40:39 | [diff] [blame] | 1626 | ":isolation_info_proto", |
Daniel Bratell | c36e87a | 2019-03-26 16:31:46 | [diff] [blame] | 1627 | ":net_export_header", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1628 | ":net_resources", |
git-meacer.google.com | 9e93f982 | 2018-07-03 00:33:05 | [diff] [blame] | 1629 | ":preload_decoder", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1630 | "//base", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1631 | "//base/third_party/dynamic_annotations", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1632 | "//net/base/registry_controlled_domains", |
| 1633 | "//third_party/protobuf:protobuf_lite", |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1634 | "//third_party/zlib", |
Scott Violet | fd6ee11 | 2019-01-10 19:05:32 | [diff] [blame] | 1635 | "//url:buildflags", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1636 | ] |
| 1637 | |
| 1638 | public_configs = net_configs |
| 1639 | |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1640 | if (use_gio) { |
| 1641 | public_configs += [ "//build/linux:gio_config" ] |
| 1642 | } |
| 1643 | |
| 1644 | if (is_android) { |
| 1645 | public_deps += [ ":net_jni_headers" ] |
| 1646 | } |
| 1647 | |
| 1648 | if (is_fuchsia) { |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1649 | public_deps += [ |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1650 | "//third_party/fuchsia-sdk/sdk/fidl/fuchsia.hardware.network", |
| 1651 | "//third_party/fuchsia-sdk/sdk/fidl/fuchsia.net.interfaces", |
| 1652 | "//third_party/fuchsia-sdk/sdk/pkg/sys_cpp", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1653 | ] |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1654 | } |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1655 | |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1656 | if (use_platform_icu_alternatives) { |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1657 | if (is_android) { |
| 1658 | public_deps += [ ":net_jni_headers" ] |
| 1659 | } |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1660 | } else { |
| 1661 | public_deps += [ |
| 1662 | "//base:i18n", |
| 1663 | "//third_party/icu", |
| 1664 | ] |
| 1665 | } |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1666 | |
David Benjamin | ead319b | 2021-05-05 21:48:17 | [diff] [blame] | 1667 | if (!disable_brotli_filter) { |
| 1668 | public_deps += [ "//third_party/brotli:dec" ] |
| 1669 | } else { |
| 1670 | public_deps += [ "//third_party/brotli:headers" ] |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1671 | } |
| 1672 | } |
| 1673 | |
| 1674 | # Public dependencies for the //net component and for any build targets (e.g. |
| 1675 | # source sets with circular dependencies with //net) that need to share the same |
| 1676 | # dependencies. |
| 1677 | source_set("net_public_deps") { |
| 1678 | visibility = [ |
| 1679 | ":net", |
| 1680 | "//net/dns", |
| 1681 | "//net/dns:dns_client", |
Eric Orth | 168a7e5 | 2018-08-27 19:11:32 | [diff] [blame] | 1682 | "//net/dns:host_resolver", |
Eric Orth | 0bea166 | 2019-03-20 19:11:22 | [diff] [blame] | 1683 | "//net/dns:host_resolver_manager", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1684 | "//net/dns:mdns_client", |
Eric Orth | 8afaf15 | 2018-11-07 21:01:26 | [diff] [blame] | 1685 | "//net/dns/public", |
Takuto Ikuta | 94330d9b | 2019-03-09 11:03:14 | [diff] [blame] | 1686 | "//net/http:transport_security_state_generated_files", |
Victor Vasiliev | da165f3 | 2020-01-25 22:49:55 | [diff] [blame] | 1687 | "//net/third_party/quiche", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1688 | ] |
| 1689 | |
| 1690 | public_deps = [ |
| 1691 | ":buildflags", |
| 1692 | ":net_nqe_proto", |
Jan Wilken Dörrie | 79d02214 | 2020-08-19 18:18:32 | [diff] [blame] | 1693 | "//base", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1694 | "//crypto", |
| 1695 | "//crypto:platform", |
Victor Vasiliev | da165f3 | 2020-01-25 22:49:55 | [diff] [blame] | 1696 | "//net/third_party/quiche:net_quic_proto", |
| 1697 | "//net/third_party/quiche:net_quic_test_tools_proto", |
Victor Vasiliev | 1614e0d | 2020-08-24 23:12:56 | [diff] [blame] | 1698 | "//net/third_party/quiche:quiche_public_deps", |
Veranika Liaukevich | 8a68644 | 2018-05-29 18:55:12 | [diff] [blame] | 1699 | "//net/traffic_annotation", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1700 | "//third_party/boringssl", |
| 1701 | "//url", |
| 1702 | ] |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1703 | } |
| 1704 | |
Michael Thiessen | 454d0c3 | 2019-04-08 13:58:54 | [diff] [blame] | 1705 | if (is_android) { |
| 1706 | java_cpp_enum("effective_connection_type_java") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 1707 | sources = [ "//net/nqe/effective_connection_type.h" ] |
Michael Thiessen | 454d0c3 | 2019-04-08 13:58:54 | [diff] [blame] | 1708 | } |
| 1709 | } |
| 1710 | |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 1711 | grit("net_resources") { |
| 1712 | source = "base/net_resources.grd" |
[email protected] | b89c5384 | 2014-07-23 16:32:32 | [diff] [blame] | 1713 | outputs = [ |
| 1714 | "grit/net_resources.h", |
| 1715 | "net_resources.pak", |
[email protected] | b89c5384 | 2014-07-23 16:32:32 | [diff] [blame] | 1716 | ] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 1717 | } |
| 1718 | |
Tarun Bansal | cdfa34b | 2017-11-23 05:11:17 | [diff] [blame] | 1719 | proto_library("net_nqe_proto") { |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 1720 | visibility = [ ":net_public_deps" ] |
Tarun Bansal | cdfa34b | 2017-11-23 05:11:17 | [diff] [blame] | 1721 | |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 1722 | sources = [ "nqe/proto/network_id_proto.proto" ] |
Tarun Bansal | cdfa34b | 2017-11-23 05:11:17 | [diff] [blame] | 1723 | cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:" |
| 1724 | cc_include = "net/base/net_export.h" |
| 1725 | component_build_force_source_set = true |
| 1726 | |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 1727 | deps = [ ":net_export_header" ] |
Daniel Bratell | c36e87a | 2019-03-26 16:31:46 | [diff] [blame] | 1728 | |
Tarun Bansal | cdfa34b | 2017-11-23 05:11:17 | [diff] [blame] | 1729 | defines = [ "NET_IMPLEMENTATION" ] |
| 1730 | |
| 1731 | extra_configs = [ "//build/config/compiler:wexit_time_destructors" ] |
| 1732 | } |
| 1733 | |
Rayan Kanso | 0f21e4d | 2021-10-06 09:40:39 | [diff] [blame] | 1734 | proto_library("isolation_info_proto") { |
| 1735 | sources = [ "base/isolation_info.proto" ] |
| 1736 | } |
| 1737 | |
Victor Vasiliev | c0110d7 | 2019-07-21 19:29:46 | [diff] [blame] | 1738 | component("extras") { |
| 1739 | sources = [ |
| 1740 | "extras/sqlite/cookie_crypto_delegate.h", |
| 1741 | "extras/sqlite/sqlite_persistent_cookie_store.cc", |
| 1742 | "extras/sqlite/sqlite_persistent_cookie_store.h", |
| 1743 | "extras/sqlite/sqlite_persistent_store_backend_base.cc", |
| 1744 | "extras/sqlite/sqlite_persistent_store_backend_base.h", |
| 1745 | ] |
| 1746 | defines = [ "IS_NET_EXTRAS_IMPL" ] |
| 1747 | configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 1748 | deps = [ |
| 1749 | ":net", |
| 1750 | "//base", |
| 1751 | "//sql:sql", |
| 1752 | ] |
Lily Chen | db14198 | 2019-03-18 17:18:49 | [diff] [blame] | 1753 | |
Victor Vasiliev | c0110d7 | 2019-07-21 19:29:46 | [diff] [blame] | 1754 | if (enable_reporting) { |
| 1755 | sources += [ |
| 1756 | "extras/sqlite/sqlite_persistent_reporting_and_nel_store.cc", |
| 1757 | "extras/sqlite/sqlite_persistent_reporting_and_nel_store.h", |
| 1758 | ] |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1759 | } |
mef | 327a8e4 | 2014-08-29 17:10:03 | [diff] [blame] | 1760 | } |
| 1761 | |
git-meacer.google.com | 9e93f982 | 2018-07-03 00:33:05 | [diff] [blame] | 1762 | static_library("preload_decoder") { |
| 1763 | sources = [ |
| 1764 | "extras/preload_data/decoder.cc", |
| 1765 | "extras/preload_data/decoder.h", |
| 1766 | ] |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 1767 | deps = [ "//base" ] |
git-meacer.google.com | 9e93f982 | 2018-07-03 00:33:05 | [diff] [blame] | 1768 | } |
| 1769 | |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 1770 | if (!is_ios) { |
| 1771 | executable("dump_cache") { |
| 1772 | testonly = true |
| 1773 | sources = [ |
| 1774 | "tools/dump_cache/dump_cache.cc", |
| 1775 | "tools/dump_cache/dump_files.cc", |
| 1776 | "tools/dump_cache/dump_files.h", |
| 1777 | ] |
[email protected] | 4625ade | 2014-04-15 19:26:44 | [diff] [blame] | 1778 | |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 1779 | deps = [ |
| 1780 | ":net", |
| 1781 | ":test_support", |
| 1782 | "//base", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 1783 | "//build/win:default_exe_manifest", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 1784 | ] |
| 1785 | } |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 1786 | } |
| 1787 | |
eroman | 1295131 | 2017-05-05 22:55:51 | [diff] [blame] | 1788 | # This section can be updated from globbing rules using: |
| 1789 | # python ./tools/update_ios_bundle_data.py |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 1790 | bundle_data("test_support_bundle_data") { |
sdefresne | 04f9114 | 2016-04-21 08:41:59 | [diff] [blame] | 1791 | visibility = [ ":test_support" ] |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 1792 | testonly = true |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1793 | sources = [ |
David Jean | 1011de7c | 2021-09-15 13:31:44 | [diff] [blame] | 1794 | "data/quic_http_response_cache_data/test.example.com/index.html", |
| 1795 | "data/quic_http_response_cache_data/test.example.com/map.html", |
zhongyi | d7dd2db1 | 2017-04-14 17:01:25 | [diff] [blame] | 1796 | "data/quic_http_response_cache_data_with_push/test.example.com/favicon.ico", |
| 1797 | "data/quic_http_response_cache_data_with_push/test.example.com/index.html", |
| 1798 | "data/quic_http_response_cache_data_with_push/test.example.com/index2.html", |
| 1799 | "data/quic_http_response_cache_data_with_push/test.example.com/kitten-1.jpg", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1800 | "data/ssl/certificates/1024-rsa-ee-by-1024-rsa-intermediate.pem", |
| 1801 | "data/ssl/certificates/1024-rsa-ee-by-2048-rsa-intermediate.pem", |
| 1802 | "data/ssl/certificates/1024-rsa-ee-by-768-rsa-intermediate.pem", |
| 1803 | "data/ssl/certificates/1024-rsa-ee-by-prime256v1-ecdsa-intermediate.pem", |
| 1804 | "data/ssl/certificates/1024-rsa-intermediate.pem", |
| 1805 | "data/ssl/certificates/10_year_validity.pem", |
| 1806 | "data/ssl/certificates/11_year_validity.pem", |
| 1807 | "data/ssl/certificates/2029_globalsign_com_cert.pem", |
| 1808 | "data/ssl/certificates/2048-rsa-ee-by-1024-rsa-intermediate.pem", |
| 1809 | "data/ssl/certificates/2048-rsa-ee-by-2048-rsa-intermediate.pem", |
| 1810 | "data/ssl/certificates/2048-rsa-ee-by-768-rsa-intermediate.pem", |
| 1811 | "data/ssl/certificates/2048-rsa-ee-by-prime256v1-ecdsa-intermediate.pem", |
| 1812 | "data/ssl/certificates/2048-rsa-intermediate.pem", |
| 1813 | "data/ssl/certificates/2048-rsa-root.pem", |
Ryan Sleevi | ae4d680 | 2020-06-23 19:50:10 | [diff] [blame] | 1814 | "data/ssl/certificates/398_days_1_second_after_2020_09_01.pem", |
| 1815 | "data/ssl/certificates/398_days_after_2020_09_01.pem", |
| 1816 | "data/ssl/certificates/399_days_after_2020_09_01.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1817 | "data/ssl/certificates/39_months_after_2015_04.pem", |
Ryan Sleevi | fb6f8664 | 2018-04-07 03:55:38 | [diff] [blame] | 1818 | "data/ssl/certificates/39_months_based_on_last_day.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1819 | "data/ssl/certificates/40_months_after_2015_04.pem", |
| 1820 | "data/ssl/certificates/60_months_after_2012_07.pem", |
| 1821 | "data/ssl/certificates/61_months_after_2012_07.pem", |
| 1822 | "data/ssl/certificates/768-rsa-ee-by-1024-rsa-intermediate.pem", |
| 1823 | "data/ssl/certificates/768-rsa-ee-by-2048-rsa-intermediate.pem", |
| 1824 | "data/ssl/certificates/768-rsa-ee-by-768-rsa-intermediate.pem", |
| 1825 | "data/ssl/certificates/768-rsa-ee-by-prime256v1-ecdsa-intermediate.pem", |
| 1826 | "data/ssl/certificates/768-rsa-intermediate.pem", |
Ryan Sleevi | 1f9eb9f | 2018-01-23 21:25:14 | [diff] [blame] | 1827 | "data/ssl/certificates/825_days_1_second_after_2018_03_01.pem", |
| 1828 | "data/ssl/certificates/825_days_after_2018_03_01.pem", |
| 1829 | "data/ssl/certificates/826_days_after_2018_03_01.pem", |
Ryan Sleevi | 435064d3 | 2019-12-17 02:24:55 | [diff] [blame] | 1830 | "data/ssl/certificates/900_days_after_2019_07_01.pem", |
Matt Mueller | c391cdf | 2018-02-08 01:05:57 | [diff] [blame] | 1831 | "data/ssl/certificates/BUILD.gn", |
eroman | 1295131 | 2017-05-05 22:55:51 | [diff] [blame] | 1832 | "data/ssl/certificates/README", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1833 | "data/ssl/certificates/bad_validity.pem", |
Kunihiko Sakamoto | 97cfcf5 | 2018-06-26 03:08:22 | [diff] [blame] | 1834 | "data/ssl/certificates/can_sign_http_exchanges_draft_extension.pem", |
David Benjamin | 933f39b | 2018-08-27 14:59:18 | [diff] [blame] | 1835 | "data/ssl/certificates/can_sign_http_exchanges_draft_extension_invalid.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1836 | "data/ssl/certificates/client-empty-password.p12", |
| 1837 | "data/ssl/certificates/client-nokey.p12", |
| 1838 | "data/ssl/certificates/client-null-password.p12", |
| 1839 | "data/ssl/certificates/client.p12", |
| 1840 | "data/ssl/certificates/client_1.key", |
| 1841 | "data/ssl/certificates/client_1.pem", |
| 1842 | "data/ssl/certificates/client_1.pk8", |
| 1843 | "data/ssl/certificates/client_1_ca.pem", |
| 1844 | "data/ssl/certificates/client_2.key", |
| 1845 | "data/ssl/certificates/client_2.pem", |
| 1846 | "data/ssl/certificates/client_2.pk8", |
| 1847 | "data/ssl/certificates/client_2_ca.pem", |
| 1848 | "data/ssl/certificates/client_3.key", |
| 1849 | "data/ssl/certificates/client_3.pem", |
| 1850 | "data/ssl/certificates/client_3.pk8", |
| 1851 | "data/ssl/certificates/client_3_ca.pem", |
| 1852 | "data/ssl/certificates/client_4.key", |
| 1853 | "data/ssl/certificates/client_4.pem", |
| 1854 | "data/ssl/certificates/client_4.pk8", |
| 1855 | "data/ssl/certificates/client_4_ca.pem", |
| 1856 | "data/ssl/certificates/client_5.key", |
| 1857 | "data/ssl/certificates/client_5.pem", |
| 1858 | "data/ssl/certificates/client_5.pk8", |
| 1859 | "data/ssl/certificates/client_5_ca.pem", |
| 1860 | "data/ssl/certificates/client_6.key", |
| 1861 | "data/ssl/certificates/client_6.pem", |
| 1862 | "data/ssl/certificates/client_6.pk8", |
| 1863 | "data/ssl/certificates/client_6_ca.pem", |
| 1864 | "data/ssl/certificates/client_root_ca.pem", |
Ryan Sleevi | c2fcac6 | 2017-12-21 16:37:04 | [diff] [blame] | 1865 | "data/ssl/certificates/common_name_only.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1866 | "data/ssl/certificates/crit-codeSigning-chain.pem", |
Ryan Sleevi | 54fe766 | 2019-11-21 01:31:58 | [diff] [blame] | 1867 | "data/ssl/certificates/crlset_blocked_interception_by_intermediate.raw", |
| 1868 | "data/ssl/certificates/crlset_blocked_interception_by_root.raw", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1869 | "data/ssl/certificates/crlset_by_intermediate_serial.raw", |
| 1870 | "data/ssl/certificates/crlset_by_leaf_spki.raw", |
Eric Roman | 3b13fe0a | 2018-01-10 22:54:43 | [diff] [blame] | 1871 | "data/ssl/certificates/crlset_by_leaf_subject_no_spki.raw", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1872 | "data/ssl/certificates/crlset_by_root_serial.raw", |
Ryan Sleevi | ae4d680 | 2020-06-23 19:50:10 | [diff] [blame] | 1873 | "data/ssl/certificates/crlset_by_root_spki.raw", |
Eric Roman | 3b13fe0a | 2018-01-10 22:54:43 | [diff] [blame] | 1874 | "data/ssl/certificates/crlset_by_root_subject.raw", |
| 1875 | "data/ssl/certificates/crlset_by_root_subject_no_spki.raw", |
Ryan Sleevi | 54fe766 | 2019-11-21 01:31:58 | [diff] [blame] | 1876 | "data/ssl/certificates/crlset_known_interception_by_root.raw", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1877 | "data/ssl/certificates/cross-signed-leaf.pem", |
| 1878 | "data/ssl/certificates/cross-signed-root-md5.pem", |
| 1879 | "data/ssl/certificates/cross-signed-root-sha256.pem", |
| 1880 | "data/ssl/certificates/ct-test-embedded-cert.pem", |
| 1881 | "data/ssl/certificates/ct-test-embedded-with-intermediate-chain.pem", |
| 1882 | "data/ssl/certificates/ct-test-embedded-with-intermediate-preca-chain.pem", |
| 1883 | "data/ssl/certificates/ct-test-embedded-with-preca-chain.pem", |
David Benjamin | 9d8f726 | 2021-04-19 22:18:24 | [diff] [blame] | 1884 | "data/ssl/certificates/ct-test-embedded-with-uids.pem", |
Ryan Sleevi | bd9ca311 | 2017-12-23 05:22:19 | [diff] [blame] | 1885 | "data/ssl/certificates/dec_2017.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1886 | "data/ssl/certificates/diginotar_cyber_ca.pem", |
| 1887 | "data/ssl/certificates/diginotar_pkioverheid.pem", |
| 1888 | "data/ssl/certificates/diginotar_pkioverheid_g2.pem", |
| 1889 | "data/ssl/certificates/diginotar_public_ca_2025.pem", |
| 1890 | "data/ssl/certificates/diginotar_root_ca.pem", |
| 1891 | "data/ssl/certificates/diginotar_services_1024_ca.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1892 | "data/ssl/certificates/duplicate_cn_1.p12", |
| 1893 | "data/ssl/certificates/duplicate_cn_1.pem", |
| 1894 | "data/ssl/certificates/duplicate_cn_2.p12", |
| 1895 | "data/ssl/certificates/duplicate_cn_2.pem", |
| 1896 | "data/ssl/certificates/eku-test-root.pem", |
Panos Astithas | cbce035 | 2020-09-02 17:37:59 | [diff] [blame] | 1897 | "data/ssl/certificates/ev-multi-oid.pem", |
Chris Thompson | 973da38 | 2020-04-10 21:26:10 | [diff] [blame] | 1898 | "data/ssl/certificates/ev_test.pem", |
| 1899 | "data/ssl/certificates/ev_test_state_only.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1900 | "data/ssl/certificates/expired_cert.pem", |
| 1901 | "data/ssl/certificates/explicit-policy-chain.pem", |
| 1902 | "data/ssl/certificates/foaf.me.chromium-test-cert.der", |
Ryan Sleevi | c646e48 | 2018-01-27 18:08:56 | [diff] [blame] | 1903 | "data/ssl/certificates/gms.hongleong.com.my-verisign-chain.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1904 | "data/ssl/certificates/google.binary.p7b", |
| 1905 | "data/ssl/certificates/google.chain.pem", |
| 1906 | "data/ssl/certificates/google.pem_cert.p7b", |
| 1907 | "data/ssl/certificates/google.pem_pkcs7.p7b", |
| 1908 | "data/ssl/certificates/google.single.der", |
| 1909 | "data/ssl/certificates/google.single.pem", |
| 1910 | "data/ssl/certificates/google_diginotar.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1911 | "data/ssl/certificates/intermediate_ca_cert.pem", |
| 1912 | "data/ssl/certificates/invalid_key_usage_cert.der", |
Matt Mueller | dbc0aa7 | 2019-02-04 22:13:18 | [diff] [blame] | 1913 | "data/ssl/certificates/key_usage_p256.key", |
David Benjamin | 03c28a4 | 2018-05-11 23:12:07 | [diff] [blame] | 1914 | "data/ssl/certificates/key_usage_p256_both.pem", |
| 1915 | "data/ssl/certificates/key_usage_p256_digitalsignature.pem", |
| 1916 | "data/ssl/certificates/key_usage_p256_keyagreement.pem", |
| 1917 | "data/ssl/certificates/key_usage_p256_no_extension.pem", |
Matt Mueller | dbc0aa7 | 2019-02-04 22:13:18 | [diff] [blame] | 1918 | "data/ssl/certificates/key_usage_rsa.key", |
David Benjamin | 03c28a4 | 2018-05-11 23:12:07 | [diff] [blame] | 1919 | "data/ssl/certificates/key_usage_rsa_both.pem", |
| 1920 | "data/ssl/certificates/key_usage_rsa_digitalsignature.pem", |
| 1921 | "data/ssl/certificates/key_usage_rsa_keyencipherment.pem", |
| 1922 | "data/ssl/certificates/key_usage_rsa_no_extension.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1923 | "data/ssl/certificates/large_key.pem", |
Matt Mueller | 1d80b22 | 2022-02-14 18:52:03 | [diff] [blame] | 1924 | "data/ssl/certificates/lets-encrypt-dst-x3-root.pem", |
| 1925 | "data/ssl/certificates/lets-encrypt-isrg-x1-root.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1926 | "data/ssl/certificates/localhost_cert.pem", |
Matt Mueller | dbc0aa7 | 2019-02-04 22:13:18 | [diff] [blame] | 1927 | "data/ssl/certificates/may_2018.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1928 | "data/ssl/certificates/mit.davidben.der", |
| 1929 | "data/ssl/certificates/multi-root-A-by-B.pem", |
| 1930 | "data/ssl/certificates/multi-root-B-by-C.pem", |
| 1931 | "data/ssl/certificates/multi-root-B-by-F.pem", |
| 1932 | "data/ssl/certificates/multi-root-BFE.keychain", |
| 1933 | "data/ssl/certificates/multi-root-C-by-D.pem", |
| 1934 | "data/ssl/certificates/multi-root-C-by-E.pem", |
| 1935 | "data/ssl/certificates/multi-root-D-by-D.pem", |
| 1936 | "data/ssl/certificates/multi-root-E-by-E.pem", |
| 1937 | "data/ssl/certificates/multi-root-F-by-E.pem", |
| 1938 | "data/ssl/certificates/multi-root-chain1.pem", |
| 1939 | "data/ssl/certificates/multi-root-chain2.pem", |
| 1940 | "data/ssl/certificates/multi-root-crlset-C.raw", |
| 1941 | "data/ssl/certificates/multi-root-crlset-CD-and-FE.raw", |
| 1942 | "data/ssl/certificates/multi-root-crlset-D-and-E.raw", |
| 1943 | "data/ssl/certificates/multi-root-crlset-E.raw", |
| 1944 | "data/ssl/certificates/multi-root-crlset-unrelated.raw", |
eroman | 1295131 | 2017-05-05 22:55:51 | [diff] [blame] | 1945 | "data/ssl/certificates/multi-root.keychain", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1946 | "data/ssl/certificates/multivalue_rdn.pem", |
Matt Mueller | 09c8fd9a | 2019-05-04 00:37:24 | [diff] [blame] | 1947 | "data/ssl/certificates/name-normalization-byteequal.pem", |
| 1948 | "data/ssl/certificates/name-normalization-case-folding.pem", |
| 1949 | "data/ssl/certificates/name-normalization-printable-utf8.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1950 | "data/ssl/certificates/name_constraint_bad.pem", |
| 1951 | "data/ssl/certificates/name_constraint_good.pem", |
| 1952 | "data/ssl/certificates/ndn.ca.crt", |
| 1953 | "data/ssl/certificates/nist.der", |
| 1954 | "data/ssl/certificates/no_subject_common_name_cert.pem", |
| 1955 | "data/ssl/certificates/non-crit-codeSigning-chain.pem", |
| 1956 | "data/ssl/certificates/ocsp-test-root.pem", |
| 1957 | "data/ssl/certificates/ok_cert.pem", |
| 1958 | "data/ssl/certificates/ok_cert_by_intermediate.pem", |
| 1959 | "data/ssl/certificates/post_june_2016.pem", |
| 1960 | "data/ssl/certificates/pre_br_validity_bad_121.pem", |
| 1961 | "data/ssl/certificates/pre_br_validity_bad_2020.pem", |
| 1962 | "data/ssl/certificates/pre_br_validity_ok.pem", |
| 1963 | "data/ssl/certificates/pre_june_2016.pem", |
| 1964 | "data/ssl/certificates/prime256v1-ecdsa-ee-by-1024-rsa-intermediate.pem", |
| 1965 | "data/ssl/certificates/prime256v1-ecdsa-ee-by-2048-rsa-intermediate.pem", |
| 1966 | "data/ssl/certificates/prime256v1-ecdsa-ee-by-768-rsa-intermediate.pem", |
| 1967 | "data/ssl/certificates/prime256v1-ecdsa-ee-by-prime256v1-ecdsa-intermediate.pem", |
| 1968 | "data/ssl/certificates/prime256v1-ecdsa-intermediate.pem", |
| 1969 | "data/ssl/certificates/punycodetest.pem", |
John Abd-El-Malek | 1c36bfd | 2017-12-19 19:21:36 | [diff] [blame] | 1970 | "data/ssl/certificates/quic-chain.pem", |
Victor Vasiliev | d62b274 | 2022-01-19 06:15:03 | [diff] [blame] | 1971 | "data/ssl/certificates/quic-ecdsa-leaf.key", |
John Abd-El-Malek | ec2f082 | 2017-12-20 21:35:11 | [diff] [blame] | 1972 | "data/ssl/certificates/quic-leaf-cert.key", |
| 1973 | "data/ssl/certificates/quic-leaf-cert.key.pkcs8.pem", |
| 1974 | "data/ssl/certificates/quic-leaf-cert.key.sct", |
John Abd-El-Malek | 1c36bfd | 2017-12-19 19:21:36 | [diff] [blame] | 1975 | "data/ssl/certificates/quic-root.pem", |
Victor Vasiliev | 2cb5235 | 2020-06-11 01:16:59 | [diff] [blame] | 1976 | "data/ssl/certificates/quic-short-lived.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1977 | "data/ssl/certificates/redundant-server-chain.pem", |
| 1978 | "data/ssl/certificates/redundant-validated-chain-root.pem", |
| 1979 | "data/ssl/certificates/redundant-validated-chain.pem", |
| 1980 | "data/ssl/certificates/reject_intranet_hosts.pem", |
| 1981 | "data/ssl/certificates/root_ca_cert.pem", |
| 1982 | "data/ssl/certificates/salesforce_com_test.pem", |
| 1983 | "data/ssl/certificates/self-signed-invalid-name.pem", |
| 1984 | "data/ssl/certificates/self-signed-invalid-sig.pem", |
| 1985 | "data/ssl/certificates/sha1_2016.pem", |
Ryan Sleevi | c2fcac6 | 2017-12-21 16:37:04 | [diff] [blame] | 1986 | "data/ssl/certificates/sha1_leaf.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1987 | "data/ssl/certificates/spdy_pooling.pem", |
| 1988 | "data/ssl/certificates/start_after_expiry.pem", |
| 1989 | "data/ssl/certificates/subjectAltName_sanity_check.pem", |
elawrence | c7484f5 | 2017-04-05 21:46:42 | [diff] [blame] | 1990 | "data/ssl/certificates/subjectAltName_www_example_com.pem", |
David Benjamin | ddf9671c3 | 2019-12-03 16:54:12 | [diff] [blame] | 1991 | "data/ssl/certificates/test_names.pem", |
Matt Mueller | 2bd3cab | 2022-02-28 19:58:57 | [diff] [blame] | 1992 | "data/ssl/certificates/thepaverbros.com.pem", |
Matt Mueller | 7d5464b | 2019-05-15 20:18:45 | [diff] [blame] | 1993 | "data/ssl/certificates/treadclimber.pem", |
| 1994 | "data/ssl/certificates/treadclimber.sctlist", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1995 | "data/ssl/certificates/unescaped.pem", |
| 1996 | "data/ssl/certificates/unittest.key.bin", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 1997 | "data/ssl/certificates/unittest.selfsigned.der", |
| 1998 | "data/ssl/certificates/verisign_class3_g5_crosssigned-trusted.keychain", |
| 1999 | "data/ssl/certificates/verisign_class3_g5_crosssigned.pem", |
| 2000 | "data/ssl/certificates/verisign_intermediate_ca_2011.pem", |
| 2001 | "data/ssl/certificates/verisign_intermediate_ca_2016.pem", |
Matt Mueller | 1d80b22 | 2022-02-14 18:52:03 | [diff] [blame] | 2002 | "data/ssl/certificates/vrk_gov_root.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2003 | "data/ssl/certificates/weak_digest_md2_ee.pem", |
| 2004 | "data/ssl/certificates/weak_digest_md2_intermediate.pem", |
| 2005 | "data/ssl/certificates/weak_digest_md2_root.pem", |
| 2006 | "data/ssl/certificates/weak_digest_md4_ee.pem", |
| 2007 | "data/ssl/certificates/weak_digest_md4_intermediate.pem", |
| 2008 | "data/ssl/certificates/weak_digest_md4_root.pem", |
| 2009 | "data/ssl/certificates/weak_digest_md5_ee.pem", |
| 2010 | "data/ssl/certificates/weak_digest_md5_intermediate.pem", |
| 2011 | "data/ssl/certificates/weak_digest_md5_root.pem", |
| 2012 | "data/ssl/certificates/weak_digest_sha1_ee.pem", |
| 2013 | "data/ssl/certificates/weak_digest_sha1_intermediate.pem", |
| 2014 | "data/ssl/certificates/weak_digest_sha1_root.pem", |
| 2015 | "data/ssl/certificates/websocket_cacert.pem", |
| 2016 | "data/ssl/certificates/websocket_client_cert.p12", |
| 2017 | "data/ssl/certificates/wildcard.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2018 | "data/ssl/certificates/x509_verify_results.chain.pem", |
| 2019 | ] |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 2020 | outputs = [ "{{bundle_resources_dir}}/" + |
| 2021 | "{{source_root_relative_dir}}/{{source_file_part}}" ] |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 2022 | } |
| 2023 | |
brettw | 3871f52 | 2016-07-14 22:08:34 | [diff] [blame] | 2024 | static_library("test_support") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2025 | testonly = true |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2026 | sources = [ |
Eric Orth | d39d067 | 2021-11-16 21:17:58 | [diff] [blame] | 2027 | "base/connection_endpoint_metadata_test_util.cc", |
| 2028 | "base/connection_endpoint_metadata_test_util.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2029 | "base/load_timing_info_test_util.cc", |
| 2030 | "base/load_timing_info_test_util.h", |
| 2031 | "base/mock_file_stream.cc", |
| 2032 | "base/mock_file_stream.h", |
Helen Li | f18af04d | 2017-10-19 17:26:07 | [diff] [blame] | 2033 | "base/mock_network_change_notifier.cc", |
| 2034 | "base/mock_network_change_notifier.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2035 | "base/test_completion_callback.cc", |
| 2036 | "base/test_completion_callback.h", |
Lei Zhang | 57f43ff | 2021-06-01 22:49:41 | [diff] [blame] | 2037 | "base/test_data_stream.cc", |
| 2038 | "base/test_data_stream.h", |
Matt Mueller | 8d75a7d | 2022-01-04 22:40:36 | [diff] [blame] | 2039 | "cert/mock_cert_net_fetcher.cc", |
| 2040 | "cert/mock_cert_net_fetcher.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2041 | "cert/mock_cert_verifier.cc", |
| 2042 | "cert/mock_cert_verifier.h", |
ryanchung | 987b2ff | 2016-02-19 00:17:12 | [diff] [blame] | 2043 | "cert/mock_client_cert_verifier.cc", |
| 2044 | "cert/mock_client_cert_verifier.h", |
Victor Costan | 8587494 | 2018-02-28 04:11:44 | [diff] [blame] | 2045 | "cookies/canonical_cookie_test_helpers.h", |
Victor Costan | 1dcd675 | 2018-03-16 12:31:36 | [diff] [blame] | 2046 | "cookies/cookie_change_dispatcher_test_helpers.cc", |
| 2047 | "cookies/cookie_change_dispatcher_test_helpers.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2048 | "cookies/cookie_monster_store_test.cc", |
| 2049 | "cookies/cookie_monster_store_test.h", |
Victor Costan | f8cb27d | 2018-02-21 09:16:23 | [diff] [blame] | 2050 | "cookies/cookie_store_change_unittest.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2051 | "cookies/cookie_store_test_callbacks.cc", |
| 2052 | "cookies/cookie_store_test_callbacks.h", |
| 2053 | "cookies/cookie_store_test_helpers.cc", |
| 2054 | "cookies/cookie_store_test_helpers.h", |
droger | fd8b277 | 2015-12-04 14:34:56 | [diff] [blame] | 2055 | "cookies/cookie_store_unittest.h", |
Lily Chen | 9995b82 | 2019-10-02 21:08:48 | [diff] [blame] | 2056 | "cookies/test_cookie_access_delegate.cc", |
| 2057 | "cookies/test_cookie_access_delegate.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2058 | "disk_cache/disk_cache_test_base.cc", |
| 2059 | "disk_cache/disk_cache_test_base.h", |
| 2060 | "disk_cache/disk_cache_test_util.cc", |
| 2061 | "disk_cache/disk_cache_test_util.h", |
Matt Menke | 1dd3f2f | 2017-08-09 17:10:06 | [diff] [blame] | 2062 | "filter/filter_source_stream_test_util.cc", |
| 2063 | "filter/filter_source_stream_test_util.h", |
xunjieli | 6cc8b84b | 2016-11-08 15:23:39 | [diff] [blame] | 2064 | "filter/mock_source_stream.cc", |
| 2065 | "filter/mock_source_stream.h", |
zhongyi | 3c41298 | 2016-06-18 00:34:30 | [diff] [blame] | 2066 | "http/http_stream_factory_test_util.cc", |
| 2067 | "http/http_stream_factory_test_util.h", |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 2068 | "http/http_transaction_test_util.cc", |
| 2069 | "http/http_transaction_test_util.h", |
Steven Bingler | 674fb082 | 2018-12-12 18:04:52 | [diff] [blame] | 2070 | "http/mock_http_cache.cc", |
| 2071 | "http/mock_http_cache.h", |
Matt Mueller | 230996f1 | 2018-10-22 19:39:44 | [diff] [blame] | 2072 | "http/transport_security_state_test_util.cc", |
| 2073 | "http/transport_security_state_test_util.h", |
vishal.b | 62985ca9 | 2015-04-17 08:45:51 | [diff] [blame] | 2074 | "log/test_net_log.cc", |
| 2075 | "log/test_net_log.h", |
mmenke | 0034c54 | 2015-05-05 22:34:59 | [diff] [blame] | 2076 | "log/test_net_log_util.cc", |
mmenke | 43758e6 | 2015-05-04 21:09:46 | [diff] [blame] | 2077 | "log/test_net_log_util.h", |
tbansal | 785a6ab | 2016-10-10 20:19:28 | [diff] [blame] | 2078 | "nqe/network_quality_estimator_test_util.cc", |
| 2079 | "nqe/network_quality_estimator_test_util.h", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 2080 | "proxy_resolution/mock_pac_file_fetcher.cc", |
| 2081 | "proxy_resolution/mock_pac_file_fetcher.h", |
| 2082 | "proxy_resolution/mock_proxy_resolver.cc", |
| 2083 | "proxy_resolution/mock_proxy_resolver.h", |
| 2084 | "proxy_resolution/proxy_config_service_common_unittest.cc", |
| 2085 | "proxy_resolution/proxy_config_service_common_unittest.h", |
Ryan Hamilton | abad59e | 2019-06-06 04:02:59 | [diff] [blame] | 2086 | "quic/quic_test_packet_printer.cc", |
| 2087 | "quic/quic_test_packet_printer.h", |
David Benjamin | 91900ce5 | 2020-02-04 19:25:23 | [diff] [blame] | 2088 | "socket/read_buffering_stream_socket.cc", |
| 2089 | "socket/read_buffering_stream_socket.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2090 | "socket/socket_test_util.cc", |
| 2091 | "socket/socket_test_util.h", |
Liza Burakova | 0f25707 | 2022-04-01 19:00:29 | [diff] [blame^] | 2092 | "socket/transport_client_socket_test_util.cc", |
| 2093 | "socket/transport_client_socket_test_util.h", |
Bence Béky | 94658bf | 2018-05-11 19:22:58 | [diff] [blame] | 2094 | "spdy/spdy_test_util_common.cc", |
| 2095 | "spdy/spdy_test_util_common.h", |
mattm | 436ccfe | 2017-06-19 20:24:08 | [diff] [blame] | 2096 | "ssl/client_cert_identity_test_util.cc", |
| 2097 | "ssl/client_cert_identity_test_util.h", |
| 2098 | "ssl/ssl_private_key_test_util.cc", |
| 2099 | "ssl/ssl_private_key_test_util.h", |
David Benjamin | 151ec6b | 2019-08-02 19:38:52 | [diff] [blame] | 2100 | "ssl/test_ssl_config_service.cc", |
| 2101 | "ssl/test_ssl_config_service.h", |
David Benjamin | 9f6bce2 | 2019-07-16 20:41:05 | [diff] [blame] | 2102 | "ssl/test_ssl_private_key.cc", |
| 2103 | "ssl/test_ssl_private_key.h", |
Matt Mueller | fcd2efb | 2019-09-23 19:56:16 | [diff] [blame] | 2104 | "test/cert_builder.cc", |
| 2105 | "test/cert_builder.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2106 | "test/cert_test_util.cc", |
| 2107 | "test/cert_test_util.h", |
| 2108 | "test/ct_test_util.cc", |
| 2109 | "test/ct_test_util.h", |
Antonio Sartori | 388e0a0 | 2021-09-02 10:01:52 | [diff] [blame] | 2110 | "test/embedded_test_server/connection_tracker.cc", |
| 2111 | "test/embedded_test_server/connection_tracker.h", |
John Abd-El-Malek | f071beb | 2018-01-30 18:03:24 | [diff] [blame] | 2112 | "test/embedded_test_server/controllable_http_response.cc", |
| 2113 | "test/embedded_test_server/controllable_http_response.h", |
svaldez | 7d25c56 | 2015-10-30 19:09:45 | [diff] [blame] | 2114 | "test/embedded_test_server/default_handlers.cc", |
| 2115 | "test/embedded_test_server/default_handlers.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2116 | "test/embedded_test_server/embedded_test_server.cc", |
| 2117 | "test/embedded_test_server/embedded_test_server.h", |
Aaron Tagliaboschi | 820a93cd | 2021-10-06 19:50:12 | [diff] [blame] | 2118 | "test/embedded_test_server/embedded_test_server_connection_listener.cc", |
mmenke | 392ec46 | 2017-03-23 18:49:35 | [diff] [blame] | 2119 | "test/embedded_test_server/embedded_test_server_connection_listener.h", |
Aaron Tagliaboschi | 0ed1a93 | 2021-09-09 21:04:08 | [diff] [blame] | 2120 | "test/embedded_test_server/http1_connection.cc", |
| 2121 | "test/embedded_test_server/http1_connection.h", |
Aaron Tagliaboschi | 820a93cd | 2021-10-06 19:50:12 | [diff] [blame] | 2122 | "test/embedded_test_server/http2_connection.cc", |
| 2123 | "test/embedded_test_server/http2_connection.h", |
| 2124 | "test/embedded_test_server/http_connection.cc", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2125 | "test/embedded_test_server/http_connection.h", |
| 2126 | "test/embedded_test_server/http_request.cc", |
| 2127 | "test/embedded_test_server/http_request.h", |
| 2128 | "test/embedded_test_server/http_response.cc", |
| 2129 | "test/embedded_test_server/http_response.h", |
svaldez | 6e7e82a2 | 2015-10-28 19:39:53 | [diff] [blame] | 2130 | "test/embedded_test_server/request_handler_util.cc", |
| 2131 | "test/embedded_test_server/request_handler_util.h", |
mmenke | 93be9ca | 2017-05-23 16:29:13 | [diff] [blame] | 2132 | "test/embedded_test_server/simple_connection_listener.cc", |
| 2133 | "test/embedded_test_server/simple_connection_listener.h", |
sammc | 6ac3fe5 | 2015-02-25 06:00:28 | [diff] [blame] | 2134 | "test/event_waiter.h", |
johnme | 36ae580 | 2016-05-10 15:46:24 | [diff] [blame] | 2135 | "test/gtest_util.h", |
Jesse Selover | 1d82faf | 2019-03-20 19:44:35 | [diff] [blame] | 2136 | "test/key_util.cc", |
| 2137 | "test/key_util.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2138 | "test/net_test_suite.cc", |
| 2139 | "test/net_test_suite.h", |
Misha Efimov | 2f3f8ed | 2018-03-06 13:27:28 | [diff] [blame] | 2140 | "test/quic_simple_test_server.cc", |
| 2141 | "test/quic_simple_test_server.h", |
Matt Mueller | f566f0e5 | 2020-05-06 00:52:25 | [diff] [blame] | 2142 | "test/revocation_builder.cc", |
| 2143 | "test/revocation_builder.h", |
johnme | 36ae580 | 2016-05-10 15:46:24 | [diff] [blame] | 2144 | "test/scoped_disable_exit_on_dfatal.cc", |
| 2145 | "test/scoped_disable_exit_on_dfatal.h", |
David Benjamin | 6e089be | 2022-02-11 18:22:21 | [diff] [blame] | 2146 | "test/ssl_test_util.cc", |
| 2147 | "test/ssl_test_util.h", |
brettw | 6315e03 | 2015-11-27 18:38:36 | [diff] [blame] | 2148 | "test/test_certificate_data.h", |
rsleevi | a69c79a | 2016-06-22 03:28:43 | [diff] [blame] | 2149 | "test/test_data_directory.cc", |
| 2150 | "test/test_data_directory.h", |
David Benjamin | 42261c2 | 2021-10-13 23:32:42 | [diff] [blame] | 2151 | "test/test_doh_server.cc", |
| 2152 | "test/test_doh_server.h", |
Gabriel Charette | c710874 | 2019-08-23 03:31:40 | [diff] [blame] | 2153 | "test/test_with_task_environment.h", |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 2154 | "test/url_request/ssl_certificate_error_job.cc", |
| 2155 | "test/url_request/ssl_certificate_error_job.h", |
Brett Wilson | 32ce17a | 2014-11-10 17:45:30 | [diff] [blame] | 2156 | "test/url_request/url_request_failed_job.cc", |
| 2157 | "test/url_request/url_request_failed_job.h", |
xunjieli | 5d1f989 | 2016-05-18 20:44:34 | [diff] [blame] | 2158 | "test/url_request/url_request_hanging_read_job.cc", |
| 2159 | "test/url_request/url_request_hanging_read_job.h", |
mef | 3e826cf | 2014-12-13 18:40:40 | [diff] [blame] | 2160 | "test/url_request/url_request_mock_data_job.cc", |
| 2161 | "test/url_request/url_request_mock_data_job.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2162 | "url_request/test_url_fetcher_factory.cc", |
| 2163 | "url_request/test_url_fetcher_factory.h", |
Lei Zhang | 57f43ff | 2021-06-01 22:49:41 | [diff] [blame] | 2164 | "url_request/url_request_test_job.cc", |
| 2165 | "url_request/url_request_test_job.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2166 | "url_request/url_request_test_util.cc", |
| 2167 | "url_request/url_request_test_util.h", |
| 2168 | ] |
| 2169 | |
Matt Menke | cd0f6a4 | 2019-10-30 15:49:43 | [diff] [blame] | 2170 | if (is_mac) { |
| 2171 | sources += [ |
| 2172 | "test/keychain_test_util_mac.cc", |
| 2173 | "test/keychain_test_util_mac.h", |
| 2174 | ] |
| 2175 | } |
| 2176 | |
Ryan Sleevi | c2fcac6 | 2017-12-21 16:37:04 | [diff] [blame] | 2177 | configs += [ "//build/config:precompiled_headers" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2178 | |
Brett Wilson | e5389527 | 2014-09-23 23:41:46 | [diff] [blame] | 2179 | public_deps = [ |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2180 | "//base", |
| 2181 | "//base/test:test_support", |
[email protected] | 22fe91d | 2014-08-12 17:07:12 | [diff] [blame] | 2182 | "//crypto", |
[email protected] | 59ff2d4 | 2014-04-22 22:25:23 | [diff] [blame] | 2183 | "//net", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 2184 | "//net/dns:test_support", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2185 | "//net/tools/tld_cleanup", |
Veranika Liaukevich | 8a68644 | 2018-05-29 18:55:12 | [diff] [blame] | 2186 | "//net/traffic_annotation:test_support", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2187 | "//testing/gmock", |
| 2188 | "//testing/gtest", |
| 2189 | "//url", |
| 2190 | ] |
| 2191 | |
Matt Menke | 1dd3f2f | 2017-08-09 17:10:06 | [diff] [blame] | 2192 | deps = [ |
Olivier Robin | 3fce77a | 2021-07-30 17:50:51 | [diff] [blame] | 2193 | ":quic_test_flags_utils", |
Misha Efimov | 2f3f8ed | 2018-03-06 13:27:28 | [diff] [blame] | 2194 | ":simple_quic_tools", |
Matt Mueller | 230996f1 | 2018-10-22 19:39:44 | [diff] [blame] | 2195 | "//net/http:transport_security_state_unittest_data_default", |
Matt Menke | 1dd3f2f | 2017-08-09 17:10:06 | [diff] [blame] | 2196 | "//third_party/zlib", |
| 2197 | ] |
sdefresne | 04f9114 | 2016-04-21 08:41:59 | [diff] [blame] | 2198 | |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 2199 | allow_circular_includes_from = [ "//net/dns:test_support" ] |
| 2200 | |
Kevin Marshall | c42a21c | 2022-02-24 22:37:53 | [diff] [blame] | 2201 | # Data dependencies shared with suites other than net_unittests. |
| 2202 | data = [ |
| 2203 | "data/cert_net_fetcher_impl_unittest/", |
| 2204 | "data/dns/", |
| 2205 | "data/ov_name_constraints/", |
| 2206 | "data/parse_certificate_unittest/", |
| 2207 | "data/ssl/", |
| 2208 | "data/url_request_unittest/", |
| 2209 | "data/websocket/", |
| 2210 | ] |
jbudorick | 944eb92 | 2016-06-20 15:38:30 | [diff] [blame] | 2211 | |
Daniel Bratell | f4784d1 | 2018-10-09 17:54:08 | [diff] [blame] | 2212 | if (is_mac) { |
Robert Sesek | d5a74a80 | 2020-07-01 16:38:08 | [diff] [blame] | 2213 | frameworks = [ "Security.framework" ] |
Daniel Bratell | f4784d1 | 2018-10-09 17:54:08 | [diff] [blame] | 2214 | } |
| 2215 | |
rsesek | 7d4ab4bc | 2016-07-22 17:35:13 | [diff] [blame] | 2216 | if (is_ios) { |
| 2217 | deps += [ ":test_support_bundle_data" ] |
jam | b533b7e | 2015-03-04 17:12:05 | [diff] [blame] | 2218 | } |
| 2219 | |
svaldez | 2135be5 | 2016-04-20 16:34:53 | [diff] [blame] | 2220 | if (use_nss_certs) { |
scottmg | 34fb7e5 | 2014-12-03 23:27:24 | [diff] [blame] | 2221 | public_deps += [ "//crypto:platform" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2222 | } |
| 2223 | |
Sergey Ulanov | ec1d3de | 2017-09-19 19:27:47 | [diff] [blame] | 2224 | if (!is_ios) { |
sherouk | 3eee4a8 | 2015-09-01 10:42:33 | [diff] [blame] | 2225 | sources += [ |
Sergey Ulanov | ec1d3de | 2017-09-19 19:27:47 | [diff] [blame] | 2226 | "test/spawned_test_server/base_test_server.cc", |
| 2227 | "test/spawned_test_server/base_test_server.h", |
| 2228 | "test/spawned_test_server/spawned_test_server.h", |
| 2229 | ] |
Sergey Ulanov | 7de8580 | 2018-01-19 19:50:34 | [diff] [blame] | 2230 | } |
Sergey Ulanov | ec1d3de | 2017-09-19 19:27:47 | [diff] [blame] | 2231 | |
Sergey Volk | 3ee3537f | 2018-06-12 01:45:48 | [diff] [blame] | 2232 | public_configs = [ ":net_test_config" ] |
| 2233 | |
Sergey Ulanov | 7de8580 | 2018-01-19 19:50:34 | [diff] [blame] | 2234 | if (use_remote_test_server) { |
| 2235 | sources += [ |
| 2236 | "test/spawned_test_server/remote_test_server.cc", |
| 2237 | "test/spawned_test_server/remote_test_server.h", |
Sergey Ulanov | 7de8580 | 2018-01-19 19:50:34 | [diff] [blame] | 2238 | "test/spawned_test_server/remote_test_server_spawner_request.cc", |
| 2239 | "test/spawned_test_server/remote_test_server_spawner_request.h", |
| 2240 | ] |
| 2241 | } else if (!is_ios) { |
| 2242 | sources += [ |
| 2243 | "test/spawned_test_server/local_test_server.cc", |
| 2244 | "test/spawned_test_server/local_test_server.h", |
Sergey Ulanov | 7de8580 | 2018-01-19 19:50:34 | [diff] [blame] | 2245 | ] |
Fabrice de Gans-Riberi | 0ab6b07 | 2018-04-20 21:32:58 | [diff] [blame] | 2246 | if (is_win) { |
| 2247 | sources += [ "test/spawned_test_server/local_test_server_win.cc" ] |
| 2248 | } else if (is_posix || is_fuchsia) { |
| 2249 | sources += [ "test/spawned_test_server/local_test_server_posix.cc" ] |
| 2250 | } |
Sergey Ulanov | ec1d3de | 2017-09-19 19:27:47 | [diff] [blame] | 2251 | } |
| 2252 | |
| 2253 | if (enable_python_utils) { |
| 2254 | sources += [ |
| 2255 | "test/python_utils.cc", |
| 2256 | "test/python_utils.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2257 | ] |
| 2258 | } |
| 2259 | |
Matt Menke | 577d3e9 | 2019-10-31 21:17:31 | [diff] [blame] | 2260 | if (use_nss_certs) { |
| 2261 | sources += [ "test/cert_test_util_nss.cc" ] |
[email protected] | 83e1ae3 | 2014-07-18 10:57:07 | [diff] [blame] | 2262 | } |
xunjieli | a688820 | 2015-04-14 21:34:25 | [diff] [blame] | 2263 | |
| 2264 | if (!disable_file_support) { |
| 2265 | sources += [ |
| 2266 | "test/url_request/url_request_mock_http_job.cc", |
| 2267 | "test/url_request/url_request_mock_http_job.h", |
Matt Menke | 27e91ae4 | 2019-09-10 16:10:48 | [diff] [blame] | 2268 | "test/url_request/url_request_test_job_backed_by_file.cc", |
| 2269 | "test/url_request/url_request_test_job_backed_by_file.h", |
xunjieli | a688820 | 2015-04-14 21:34:25 | [diff] [blame] | 2270 | ] |
| 2271 | } |
Eric Orth | b812a44 | 2018-05-04 20:26:48 | [diff] [blame] | 2272 | |
| 2273 | if (enable_reporting) { |
| 2274 | sources += [ |
Lily Chen | 6ac29d8 | 2019-04-11 22:26:58 | [diff] [blame] | 2275 | "network_error_logging/mock_persistent_nel_store.cc", |
| 2276 | "network_error_logging/mock_persistent_nel_store.h", |
Douglas Creager | 3cb04205 | 2018-11-06 23:08:52 | [diff] [blame] | 2277 | "network_error_logging/network_error_logging_test_util.cc", |
| 2278 | "network_error_logging/network_error_logging_test_util.h", |
Lily Chen | 0ada609 | 2019-05-08 00:08:48 | [diff] [blame] | 2279 | "reporting/mock_persistent_reporting_store.cc", |
| 2280 | "reporting/mock_persistent_reporting_store.h", |
Eric Orth | b812a44 | 2018-05-04 20:26:48 | [diff] [blame] | 2281 | "reporting/reporting_test_util.cc", |
| 2282 | "reporting/reporting_test_util.h", |
| 2283 | ] |
| 2284 | } |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2285 | } |
| 2286 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2287 | if (!is_ios && !is_android) { |
mattm | 36d8968 | 2016-06-08 22:22:40 | [diff] [blame] | 2288 | executable("cert_verify_tool") { |
| 2289 | testonly = true |
| 2290 | sources = [ |
| 2291 | "tools/cert_verify_tool/cert_verify_tool.cc", |
| 2292 | "tools/cert_verify_tool/cert_verify_tool_util.cc", |
| 2293 | "tools/cert_verify_tool/cert_verify_tool_util.h", |
| 2294 | "tools/cert_verify_tool/verify_using_cert_verify_proc.cc", |
| 2295 | "tools/cert_verify_tool/verify_using_cert_verify_proc.h", |
mattm | 3c66edc | 2016-07-13 22:40:42 | [diff] [blame] | 2296 | "tools/cert_verify_tool/verify_using_path_builder.cc", |
| 2297 | "tools/cert_verify_tool/verify_using_path_builder.h", |
mattm | 36d8968 | 2016-06-08 22:22:40 | [diff] [blame] | 2298 | ] |
| 2299 | |
mattm | 36d8968 | 2016-06-08 22:22:40 | [diff] [blame] | 2300 | deps = [ |
| 2301 | ":net", |
| 2302 | ":test_support", |
| 2303 | "//base", |
mattm | 36d8968 | 2016-06-08 22:22:40 | [diff] [blame] | 2304 | "//build/win:default_exe_manifest", |
| 2305 | ] |
mattm | 49957fe | 2017-03-02 01:45:29 | [diff] [blame] | 2306 | |
| 2307 | if (is_mac) { |
Robert Sesek | d5a74a80 | 2020-07-01 16:38:08 | [diff] [blame] | 2308 | frameworks = [ "Security.framework" ] |
mattm | 49957fe | 2017-03-02 01:45:29 | [diff] [blame] | 2309 | } |
mattm | 36d8968 | 2016-06-08 22:22:40 | [diff] [blame] | 2310 | } |
| 2311 | |
Hubert Chao | 8508e52 | 2021-10-14 21:12:30 | [diff] [blame] | 2312 | proto_library("cert_verify_comparison_tool_proto") { |
| 2313 | sources = [ "tools/cert_verify_tool/dumper.proto" ] |
| 2314 | |
| 2315 | visibility = [ ":cert_verify_comparison_tool" ] |
| 2316 | } |
| 2317 | |
| 2318 | executable("cert_verify_comparison_tool") { |
| 2319 | testonly = true |
| 2320 | sources = [ |
| 2321 | "tools/cert_verify_tool/cert_verify_comparision_tool.cc", |
| 2322 | "tools/cert_verify_tool/cert_verify_tool_util.cc", |
| 2323 | "tools/cert_verify_tool/cert_verify_tool_util.h", |
| 2324 | "tools/cert_verify_tool/verify_using_cert_verify_proc.cc", |
| 2325 | "tools/cert_verify_tool/verify_using_cert_verify_proc.h", |
| 2326 | ] |
| 2327 | |
| 2328 | deps = [ |
| 2329 | ":cert_verify_comparison_tool_proto", |
| 2330 | ":net", |
| 2331 | ":test_support", |
| 2332 | "//base", |
| 2333 | "//build/win:default_exe_manifest", |
| 2334 | ] |
| 2335 | |
| 2336 | if (is_mac) { |
| 2337 | frameworks = [ "Security.framework" ] |
| 2338 | } |
| 2339 | } |
| 2340 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2341 | executable("crash_cache") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2342 | testonly = true |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 2343 | sources = [ "tools/crash_cache/crash_cache.cc" ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 2344 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2345 | deps = [ |
| 2346 | ":net", |
[email protected] | b2b2bf5 | 2014-05-28 20:26:57 | [diff] [blame] | 2347 | ":test_support", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2348 | "//base", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2349 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2350 | ] |
| 2351 | } |
| 2352 | |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 2353 | executable("hpack_example_generator") { |
| 2354 | testonly = true |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 2355 | sources = [ "spdy/fuzzing/hpack_example_generator.cc" ] |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 2356 | |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 2357 | deps = [ |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 2358 | ":net", |
Victor Vasiliev | 802b8d0 | 2018-10-19 17:48:17 | [diff] [blame] | 2359 | ":spdy_test_tools", |
brettw | ba7a73d | 2015-08-31 22:17:39 | [diff] [blame] | 2360 | "//base", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2361 | "//build/win:default_exe_manifest", |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 2362 | ] |
| 2363 | } |
| 2364 | |
Matt Menke | 74f013a | 2019-11-15 17:14:26 | [diff] [blame] | 2365 | executable("net_watcher") { |
| 2366 | testonly = true |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 2367 | sources = [ "tools/net_watcher/net_watcher.cc" ] |
Matt Menke | 74f013a | 2019-11-15 17:14:26 | [diff] [blame] | 2368 | deps = [ |
| 2369 | ":net", |
| 2370 | "//base", |
Yuta Hijikata | 101ed2a | 2020-11-18 07:50:39 | [diff] [blame] | 2371 | "//build:chromeos_buildflags", |
Matt Menke | 74f013a | 2019-11-15 17:14:26 | [diff] [blame] | 2372 | "//build/win:default_exe_manifest", |
| 2373 | ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2374 | } |
| 2375 | |
| 2376 | executable("run_testserver") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2377 | testonly = true |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 2378 | sources = [ "tools/testserver/run_testserver.cc" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2379 | deps = [ |
[email protected] | b2b2bf5 | 2014-05-28 20:26:57 | [diff] [blame] | 2380 | ":test_support", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2381 | "//base", |
| 2382 | "//base/test:test_support", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2383 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2384 | "//testing/gtest", |
| 2385 | ] |
| 2386 | } |
| 2387 | |
| 2388 | executable("stress_cache") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2389 | testonly = true |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 2390 | sources = [ "tools/stress_cache/stress_cache.cc" ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 2391 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2392 | deps = [ |
| 2393 | ":net", |
[email protected] | b2b2bf5 | 2014-05-28 20:26:57 | [diff] [blame] | 2394 | ":test_support", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2395 | "//base", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2396 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2397 | ] |
| 2398 | } |
| 2399 | |
| 2400 | executable("tld_cleanup") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 2401 | sources = [ "tools/tld_cleanup/tld_cleanup.cc" ] |
dpranke | 4327621 | 2015-02-20 02:55:19 | [diff] [blame] | 2402 | |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2403 | deps = [ |
| 2404 | "//base", |
| 2405 | "//base:i18n", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2406 | "//build/win:default_exe_manifest", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2407 | "//net/tools/tld_cleanup", |
| 2408 | ] |
| 2409 | } |
| 2410 | } |
| 2411 | |
Asanka Herath | de6cd1606e | 2019-06-09 13:39:14 | [diff] [blame] | 2412 | if (use_external_gssapi) { |
| 2413 | # In order for the tests to be reliable, these two targets cannot depend on a |
| 2414 | # valid GSSAPI library. This is easy to achieve on most platforms. But on |
| 2415 | # macOS care must be taken to not depend directly or indirectly on |
| 2416 | # GSS.framework. This is suprisingly easy to get wrong since |
| 2417 | # Security.framework is such a common dependency and it indirectly depends on |
| 2418 | # GSS. |
| 2419 | shared_library("test_gssapi") { |
| 2420 | testonly = true |
| 2421 | sources = [ |
| 2422 | "tools/gssapi/gss_import_name.cc", |
| 2423 | "tools/gssapi/gss_methods.cc", |
| 2424 | "tools/gssapi/gss_types.h", |
| 2425 | ] |
| 2426 | } |
| 2427 | |
| 2428 | shared_library("test_badgssapi") { |
| 2429 | testonly = true |
| 2430 | sources = [ |
| 2431 | "tools/gssapi/gss_methods.cc", |
| 2432 | "tools/gssapi/gss_types.h", |
| 2433 | ] |
| 2434 | } |
| 2435 | } |
| 2436 | |
Sean McAllister | 9c0cdcf | 2020-07-31 16:24:20 | [diff] [blame] | 2437 | if (is_linux || is_chromeos || is_mac) { |
gabadie | 64af64a | 2016-03-29 16:36:42 | [diff] [blame] | 2438 | executable("cachetool") { |
| 2439 | testonly = true |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 2440 | sources = [ "tools/cachetool/cachetool.cc" ] |
gabadie | 64af64a | 2016-03-29 16:36:42 | [diff] [blame] | 2441 | deps = [ |
| 2442 | ":net", |
| 2443 | ":test_support", |
| 2444 | "//base", |
| 2445 | ] |
| 2446 | } |
| 2447 | |
| 2448 | executable("content_decoder_tool") { |
| 2449 | testonly = true |
| 2450 | sources = [ |
gabadie | 64af64a | 2016-03-29 16:36:42 | [diff] [blame] | 2451 | "tools/content_decoder_tool/content_decoder_tool.cc", |
xunjieli | bb2d9f20 | 2016-11-01 16:37:27 | [diff] [blame] | 2452 | "tools/content_decoder_tool/content_decoder_tool.h", |
| 2453 | "tools/content_decoder_tool/content_decoder_tool_bin.cc", |
gabadie | 64af64a | 2016-03-29 16:36:42 | [diff] [blame] | 2454 | ] |
| 2455 | deps = [ |
| 2456 | ":net", |
| 2457 | ":test_support", |
| 2458 | "//base", |
| 2459 | "//url", |
| 2460 | ] |
| 2461 | } |
gabadie | 0774bee | 2016-05-12 14:02:58 | [diff] [blame] | 2462 | } |
gabadie | 64af64a | 2016-03-29 16:36:42 | [diff] [blame] | 2463 | |
Sean McAllister | 9c0cdcf | 2020-07-31 16:24:20 | [diff] [blame] | 2464 | if (is_linux || is_chromeos) { |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 2465 | static_library("epoll_server") { |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2466 | sources = [ |
Dan Zhang | 4149fc5 | 2019-04-26 14:28:28 | [diff] [blame] | 2467 | "tools/epoll_server/platform/impl/epoll_bug_impl.h", |
| 2468 | "tools/epoll_server/platform/impl/epoll_export_impl.h", |
| 2469 | "tools/epoll_server/platform/impl/epoll_logging_impl.h", |
| 2470 | "tools/epoll_server/platform/impl/epoll_ptr_util_impl.h", |
| 2471 | "tools/epoll_server/platform/impl/epoll_thread_impl.h", |
| 2472 | "tools/epoll_server/platform/impl/epoll_time_impl.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2473 | ] |
| 2474 | deps = [ |
| 2475 | ":net", |
| 2476 | "//base", |
| 2477 | ] |
Victor Vasiliev | da165f3 | 2020-01-25 22:49:55 | [diff] [blame] | 2478 | public_deps = [ "//net/third_party/quiche:epoll_server_core" ] |
| 2479 | allow_circular_includes_from = |
| 2480 | [ "//net/third_party/quiche:epoll_server_core" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2481 | } |
| 2482 | |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 2483 | source_set("epoll_quic_tools") { |
Haoyue Wang | fed8b7f | 2021-05-08 00:17:31 | [diff] [blame] | 2484 | testonly = true |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2485 | sources = [ |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 2486 | "quic/platform/impl/quic_epoll_clock.cc", |
| 2487 | "quic/platform/impl/quic_epoll_clock.h", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2488 | ] |
| 2489 | deps = [ |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2490 | ":epoll_server", |
| 2491 | ":net", |
tfarina | 8ac4d17f | 2015-12-16 02:11:11 | [diff] [blame] | 2492 | ":simple_quic_tools", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2493 | "//base", |
| 2494 | "//base/third_party/dynamic_annotations", |
| 2495 | "//crypto", |
[email protected] | edfd0f4 | 2014-07-22 18:20:37 | [diff] [blame] | 2496 | "//third_party/boringssl", |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2497 | "//url", |
| 2498 | ] |
Victor Vasiliev | da165f3 | 2020-01-25 22:49:55 | [diff] [blame] | 2499 | public_deps = [ "//net/third_party/quiche:epoll_quic_tools_core" ] |
| 2500 | allow_circular_includes_from = |
| 2501 | [ "//net/third_party/quiche:epoll_quic_tools_core" ] |
David Schinazi | ebf569b | 2019-12-19 00:50:36 | [diff] [blame] | 2502 | } |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2503 | } |
| 2504 | |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 2505 | if (is_android) { |
| 2506 | generate_jni("net_jni_headers") { |
| 2507 | sources = [ |
| 2508 | "android/java/src/org/chromium/net/AndroidCertVerifyResult.java", |
| 2509 | "android/java/src/org/chromium/net/AndroidKeyStore.java", |
| 2510 | "android/java/src/org/chromium/net/AndroidNetworkLibrary.java", |
tbansal | 59a1ddc | 2015-09-14 17:35:01 | [diff] [blame] | 2511 | "android/java/src/org/chromium/net/AndroidTrafficStats.java", |
dalyk | 6d7d8ead | 2019-08-15 03:30:08 | [diff] [blame] | 2512 | "android/java/src/org/chromium/net/DnsStatus.java", |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 2513 | "android/java/src/org/chromium/net/GURLUtils.java", |
aberent | ec894a5 | 2015-07-09 14:45:53 | [diff] [blame] | 2514 | "android/java/src/org/chromium/net/HttpNegotiateAuthenticator.java", |
Peter E Conn | f7d277b | 2018-08-15 16:23:32 | [diff] [blame] | 2515 | "android/java/src/org/chromium/net/HttpUtil.java", |
xunjieli | 905496a | 2015-08-31 15:51:17 | [diff] [blame] | 2516 | "android/java/src/org/chromium/net/NetStringUtil.java", |
Stefano Duo | 9d086688 | 2022-01-17 13:19:54 | [diff] [blame] | 2517 | "android/java/src/org/chromium/net/NetworkActiveNotifier.java", |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 2518 | "android/java/src/org/chromium/net/NetworkChangeNotifier.java", |
| 2519 | "android/java/src/org/chromium/net/ProxyChangeListener.java", |
| 2520 | "android/java/src/org/chromium/net/X509Util.java", |
| 2521 | ] |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 2522 | } |
cjhopman | dad5f427 | 2014-09-05 01:00:55 | [diff] [blame] | 2523 | generate_jni("net_test_jni_headers") { |
Eric Stevenson | 4c4d634 | 2019-10-04 20:02:47 | [diff] [blame] | 2524 | testonly = true |
cjhopman | dad5f427 | 2014-09-05 01:00:55 | [diff] [blame] | 2525 | sources = [ |
| 2526 | "android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java", |
pauljensen | 6815aef | 2017-05-05 03:00:06 | [diff] [blame] | 2527 | "android/javatests/src/org/chromium/net/AndroidProxyConfigServiceTestUtil.java", |
Bo Liu | c7f3c2b | 2021-09-14 22:25:12 | [diff] [blame] | 2528 | "test/android/javatests/src/org/chromium/net/AndroidNetworkLibraryTestUtil.java", |
aberent | ec894a5 | 2015-07-09 14:45:53 | [diff] [blame] | 2529 | "test/android/javatests/src/org/chromium/net/test/DummySpnegoAuthenticator.java", |
jbudorick | ccffb98 | 2015-12-22 01:21:35 | [diff] [blame] | 2530 | "test/android/javatests/src/org/chromium/net/test/EmbeddedTestServerImpl.java", |
cjhopman | dad5f427 | 2014-09-05 01:00:55 | [diff] [blame] | 2531 | ] |
cjhopman | dad5f427 | 2014-09-05 01:00:55 | [diff] [blame] | 2532 | } |
[email protected] | ef0eb44 | 2014-05-15 09:32:18 | [diff] [blame] | 2533 | } |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2534 | |
Sean McAllister | 9c0cdcf | 2020-07-31 16:24:20 | [diff] [blame] | 2535 | if (is_android || is_linux || is_chromeos) { |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2536 | executable("disk_cache_memory_test") { |
Brett Wilson | 8f80ad0b | 2014-09-08 19:50:24 | [diff] [blame] | 2537 | testonly = true |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 2538 | sources = [ "tools/disk_cache_memory_test/disk_cache_memory_test.cc" ] |
[email protected] | 8603c5de | 2014-04-16 20:34:31 | [diff] [blame] | 2539 | deps = [ |
| 2540 | ":net", |
| 2541 | "//base", |
| 2542 | ] |
| 2543 | } |
| 2544 | } |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 2545 | |
Dan Zhang | 4149fc5 | 2019-04-26 14:28:28 | [diff] [blame] | 2546 | source_set("epoll_server_test_tools") { |
| 2547 | testonly = true |
| 2548 | sources = [ |
Dan Zhang | 4149fc5 | 2019-04-26 14:28:28 | [diff] [blame] | 2549 | "tools/epoll_server/platform/impl/epoll_address_test_utils_impl.h", |
| 2550 | "tools/epoll_server/platform/impl/epoll_expect_bug_impl.h", |
| 2551 | "tools/epoll_server/platform/impl/epoll_test_impl.h", |
| 2552 | ] |
| 2553 | deps = [ |
| 2554 | ":net", |
| 2555 | ":test_support", |
| 2556 | "//base", |
| 2557 | "//testing/gmock", |
| 2558 | "//testing/gtest", |
| 2559 | ] |
Victor Vasiliev | da165f3 | 2020-01-25 22:49:55 | [diff] [blame] | 2560 | public_deps = [ "//net/third_party/quiche:epoll_server_test_tools_core" ] |
| 2561 | allow_circular_includes_from = |
| 2562 | [ "//net/third_party/quiche:epoll_server_test_tools_core" ] |
Dan Zhang | 4149fc5 | 2019-04-26 14:28:28 | [diff] [blame] | 2563 | } |
| 2564 | |
Victor Vasiliev | 802b8d0 | 2018-10-19 17:48:17 | [diff] [blame] | 2565 | source_set("spdy_test_tools") { |
| 2566 | testonly = true |
| 2567 | sources = [ |
| 2568 | "spdy/fuzzing/hpack_fuzz_util.cc", |
| 2569 | "spdy/fuzzing/hpack_fuzz_util.h", |
| 2570 | ] |
| 2571 | deps = [ |
| 2572 | ":net", |
| 2573 | "//base", |
Zhongyi Shi | 48f981a | 2019-06-26 06:08:11 | [diff] [blame] | 2574 | "//testing/gmock", |
| 2575 | "//testing/gtest", |
Victor Vasiliev | 802b8d0 | 2018-10-19 17:48:17 | [diff] [blame] | 2576 | ] |
| 2577 | } |
| 2578 | |
Dan Zhang | b4d098e3 | 2019-05-03 15:29:48 | [diff] [blame] | 2579 | source_set("quiche_test_tools") { |
| 2580 | testonly = true |
Bin Wu | eefe3e3b | 2021-04-16 20:15:44 | [diff] [blame] | 2581 | sources = [ |
Victor Vasiliev | 5b04a6b | 2022-03-15 14:24:25 | [diff] [blame] | 2582 | "quiche/common/platform/impl/quiche_test_helpers_impl.cc", |
Bin Wu | eefe3e3b | 2021-04-16 20:15:44 | [diff] [blame] | 2583 | "quiche/common/platform/impl/quiche_test_helpers_impl.h", |
Bence Béky | 328bfc1 | 2021-07-07 18:27:25 | [diff] [blame] | 2584 | "quiche/common/platform/impl/quiche_test_impl.cc", |
Bin Wu | eefe3e3b | 2021-04-16 20:15:44 | [diff] [blame] | 2585 | "quiche/common/platform/impl/quiche_test_impl.h", |
| 2586 | ] |
Dan Zhang | b4d098e3 | 2019-05-03 15:29:48 | [diff] [blame] | 2587 | deps = [ |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 2588 | ":net", |
Victor Vasiliev | 5b04a6b | 2022-03-15 14:24:25 | [diff] [blame] | 2589 | ":quic_test_flags_utils", |
Bin Wu | eefe3e3b | 2021-04-16 20:15:44 | [diff] [blame] | 2590 | ":test_support", |
Dan Zhang | b4d098e3 | 2019-05-03 15:29:48 | [diff] [blame] | 2591 | "//testing/gmock", |
| 2592 | "//testing/gtest", |
| 2593 | ] |
Victor Vasiliev | da165f3 | 2020-01-25 22:49:55 | [diff] [blame] | 2594 | public_deps = [ "//net/third_party/quiche:quiche_test_tools_core" ] |
| 2595 | allow_circular_includes_from = |
| 2596 | [ "//net/third_party/quiche:quiche_test_tools_core" ] |
Dan Zhang | b4d098e3 | 2019-05-03 15:29:48 | [diff] [blame] | 2597 | } |
| 2598 | |
Olivier Robin | 3fce77a | 2021-07-30 17:50:51 | [diff] [blame] | 2599 | source_set("quic_test_flags_utils") { |
| 2600 | testonly = true |
| 2601 | sources = [ |
| 2602 | "quic/platform/impl/quic_test_flags_utils.cc", |
| 2603 | "quic/platform/impl/quic_test_flags_utils.h", |
| 2604 | ] |
| 2605 | deps = [ ":net" ] |
| 2606 | } |
| 2607 | |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 2608 | source_set("quic_test_tools") { |
| 2609 | testonly = true |
| 2610 | sources = [ |
Ryan Hamilton | a3ee93a7 | 2018-08-01 22:03:08 | [diff] [blame] | 2611 | "quic/crypto_test_utils_chromium.cc", |
Ryan Hamilton | 7582d265 | 2018-08-01 22:35:32 | [diff] [blame] | 2612 | "quic/mock_crypto_client_stream.cc", |
| 2613 | "quic/mock_crypto_client_stream.h", |
| 2614 | "quic/mock_crypto_client_stream_factory.cc", |
| 2615 | "quic/mock_crypto_client_stream_factory.h", |
| 2616 | "quic/mock_decrypter.cc", |
| 2617 | "quic/mock_decrypter.h", |
| 2618 | "quic/mock_encrypter.cc", |
| 2619 | "quic/mock_encrypter.h", |
Victor Vasiliev | 012b0b5 | 2019-12-03 01:14:47 | [diff] [blame] | 2620 | "quic/mock_quic_context.cc", |
| 2621 | "quic/mock_quic_context.h", |
Ryan Hamilton | 7582d265 | 2018-08-01 22:35:32 | [diff] [blame] | 2622 | "quic/test_task_runner.cc", |
| 2623 | "quic/test_task_runner.h", |
Nick Harper | aeb7ab0 | 2020-04-29 11:00:31 | [diff] [blame] | 2624 | "third_party/quiche/src/quic/test_tools/test_ticket_crypter.cc", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 2625 | ] |
| 2626 | deps = [ |
| 2627 | ":net", |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 2628 | ":quiche_test_tools", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 2629 | ":simple_quic_tools", |
| 2630 | ":test_support", |
| 2631 | "//base", |
| 2632 | "//crypto:test_support", |
| 2633 | "//testing/gmock", |
| 2634 | "//testing/gtest", |
| 2635 | "//third_party/boringssl", |
| 2636 | "//third_party/protobuf:protobuf_lite", |
Victor Vasiliev | 3b5cf15 | 2018-07-02 18:47:41 | [diff] [blame] | 2637 | "//third_party/quic_trace:quic_trace_proto", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 2638 | ] |
Olivier Robin | 3fce77a | 2021-07-30 17:50:51 | [diff] [blame] | 2639 | public_deps = [ |
| 2640 | ":quic_test_flags_utils", |
| 2641 | "//net/third_party/quiche:quic_test_tools_core", |
| 2642 | ] |
Victor Vasiliev | da165f3 | 2020-01-25 22:49:55 | [diff] [blame] | 2643 | allow_circular_includes_from = |
| 2644 | [ "//net/third_party/quiche:quic_test_tools_core" ] |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 2645 | } |
| 2646 | |
rch | 47ad01f | 2015-03-20 21:17:23 | [diff] [blame] | 2647 | source_set("simple_quic_tools") { |
rch | a9d12ce1 | 2015-03-19 23:06:49 | [diff] [blame] | 2648 | sources = [ |
Ryan Hamilton | c440230 | 2017-08-10 01:55:46 | [diff] [blame] | 2649 | "tools/quic/quic_client_message_loop_network_helper.cc", |
| 2650 | "tools/quic/quic_client_message_loop_network_helper.h", |
Rajesh Mahindra | 4380217 | 2018-07-24 20:00:14 | [diff] [blame] | 2651 | "tools/quic/quic_http_proxy_backend.cc", |
| 2652 | "tools/quic/quic_http_proxy_backend.h", |
| 2653 | "tools/quic/quic_http_proxy_backend_stream.cc", |
| 2654 | "tools/quic/quic_http_proxy_backend_stream.h", |
rch | a9d12ce1 | 2015-03-19 23:06:49 | [diff] [blame] | 2655 | "tools/quic/quic_simple_client.cc", |
| 2656 | "tools/quic/quic_simple_client.h", |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 2657 | "tools/quic/quic_simple_server.cc", |
| 2658 | "tools/quic/quic_simple_server.h", |
| 2659 | "tools/quic/quic_simple_server_packet_writer.cc", |
| 2660 | "tools/quic/quic_simple_server_packet_writer.h", |
mpw | b5c8da9 | 2016-06-05 20:07:31 | [diff] [blame] | 2661 | "tools/quic/quic_simple_server_session_helper.cc", |
| 2662 | "tools/quic/quic_simple_server_session_helper.h", |
Victor Vasiliev | 301277a | 2019-11-08 21:30:04 | [diff] [blame] | 2663 | "tools/quic/quic_simple_server_socket.cc", |
| 2664 | "tools/quic/quic_simple_server_socket.h", |
rch | da78df5a | 2015-03-22 05:16:37 | [diff] [blame] | 2665 | "tools/quic/synchronous_host_resolver.cc", |
| 2666 | "tools/quic/synchronous_host_resolver.h", |
rch | a9d12ce1 | 2015-03-19 23:06:49 | [diff] [blame] | 2667 | ] |
| 2668 | deps = [ |
| 2669 | ":net", |
| 2670 | "//base", |
rch | 47ad01f | 2015-03-20 21:17:23 | [diff] [blame] | 2671 | "//base/third_party/dynamic_annotations", |
Nick Harper | c12a880 | 2020-05-09 02:09:50 | [diff] [blame] | 2672 | "//net/third_party/quiche:simple_quic_tools_core", |
Victor Vasiliev | 44700b6e | 2018-05-06 23:23:22 | [diff] [blame] | 2673 | "//third_party/protobuf:protobuf_lite", |
rch | 47ad01f | 2015-03-20 21:17:23 | [diff] [blame] | 2674 | "//url", |
| 2675 | ] |
Victor Vasiliev | da165f3 | 2020-01-25 22:49:55 | [diff] [blame] | 2676 | public_deps = [ "//net/third_party/quiche:simple_quic_tools_core" ] |
| 2677 | allow_circular_includes_from = |
| 2678 | [ "//net/third_party/quiche:simple_quic_tools_core" ] |
rch | 47ad01f | 2015-03-20 21:17:23 | [diff] [blame] | 2679 | } |
| 2680 | |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 2681 | if (!is_ios) { |
| 2682 | executable("quic_client") { |
Haoyue Wang | fed8b7f | 2021-05-08 00:17:31 | [diff] [blame] | 2683 | testonly = true |
Victor Vasiliev | da165f3 | 2020-01-25 22:49:55 | [diff] [blame] | 2684 | sources = [ "tools/quic/quic_simple_client_bin.cc" ] |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 2685 | deps = [ |
| 2686 | ":net", |
| 2687 | ":simple_quic_tools", |
| 2688 | "//base", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2689 | "//build/win:default_exe_manifest", |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 2690 | "//url", |
| 2691 | ] |
Victor Vasiliev | da165f3 | 2020-01-25 22:49:55 | [diff] [blame] | 2692 | public_deps = [ "//net/third_party/quiche:quic_client_core" ] |
| 2693 | allow_circular_includes_from = |
| 2694 | [ "//net/third_party/quiche:quic_client_core" ] |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 2695 | } |
| 2696 | executable("quic_server") { |
| 2697 | sources = [ |
Ryan Hamilton | 381ce9d | 2019-09-03 01:42:42 | [diff] [blame] | 2698 | "tools/quic/quic_simple_server_backend_factory.cc", |
| 2699 | "tools/quic/quic_simple_server_backend_factory.h", |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 2700 | "tools/quic/quic_simple_server_bin.cc", |
| 2701 | ] |
| 2702 | deps = [ |
| 2703 | ":net", |
| 2704 | ":simple_quic_tools", |
| 2705 | "//base", |
brucedawson | f9f7d629 | 2016-04-27 19:11:07 | [diff] [blame] | 2706 | "//build/win:default_exe_manifest", |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 2707 | "//third_party/boringssl", |
| 2708 | "//third_party/protobuf:protobuf_lite", |
| 2709 | ] |
Victor Vasiliev | da165f3 | 2020-01-25 22:49:55 | [diff] [blame] | 2710 | public_deps = [ "//net/third_party/quiche:quic_server_core" ] |
| 2711 | allow_circular_includes_from = |
| 2712 | [ "//net/third_party/quiche:quic_server_core" ] |
sherouk | 51b4b098b | 2015-08-10 09:00:43 | [diff] [blame] | 2713 | } |
danzh | 1401f0a | 2016-05-19 13:41:10 | [diff] [blame] | 2714 | executable("crypto_message_printer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 2715 | sources = [ "tools/quic/crypto_message_printer_bin.cc" ] |
danzh | 1401f0a | 2016-05-19 13:41:10 | [diff] [blame] | 2716 | deps = [ |
| 2717 | ":net", |
| 2718 | "//base", |
danzh | 1401f0a | 2016-05-19 13:41:10 | [diff] [blame] | 2719 | "//build/win:default_exe_manifest", |
| 2720 | ] |
| 2721 | } |
rch | 216445c | 2015-03-27 00:23:28 | [diff] [blame] | 2722 | } |
| 2723 | |
eroman | d5207a9 | 2017-05-05 17:49:36 | [diff] [blame] | 2724 | # This section can be updated from globbing rules using: |
| 2725 | # python ./tools/update_ios_bundle_data.py |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 2726 | bundle_data("net_unittests_bundle_data") { |
| 2727 | testonly = true |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2728 | sources = [ |
| 2729 | "data/cert_issuer_source_aia_unittest/i.pem", |
| 2730 | "data/cert_issuer_source_aia_unittest/i2.pem", |
| 2731 | "data/cert_issuer_source_aia_unittest/i3.pem", |
eroman | d5207a9 | 2017-05-05 17:49:36 | [diff] [blame] | 2732 | "data/cert_issuer_source_aia_unittest/root.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2733 | "data/cert_issuer_source_aia_unittest/target_file_aia.pem", |
| 2734 | "data/cert_issuer_source_aia_unittest/target_file_and_http_aia.pem", |
| 2735 | "data/cert_issuer_source_aia_unittest/target_invalid_and_http_aia.pem", |
| 2736 | "data/cert_issuer_source_aia_unittest/target_invalid_url_aia.pem", |
| 2737 | "data/cert_issuer_source_aia_unittest/target_no_aia.pem", |
| 2738 | "data/cert_issuer_source_aia_unittest/target_one_aia.pem", |
| 2739 | "data/cert_issuer_source_aia_unittest/target_six_aia.pem", |
| 2740 | "data/cert_issuer_source_aia_unittest/target_three_aia.pem", |
| 2741 | "data/cert_issuer_source_aia_unittest/target_two_aia.pem", |
| 2742 | "data/cert_issuer_source_static_unittest/c1.pem", |
| 2743 | "data/cert_issuer_source_static_unittest/c2.pem", |
| 2744 | "data/cert_issuer_source_static_unittest/d.pem", |
| 2745 | "data/cert_issuer_source_static_unittest/e1.pem", |
| 2746 | "data/cert_issuer_source_static_unittest/e2.pem", |
| 2747 | "data/cert_issuer_source_static_unittest/i1_1.pem", |
| 2748 | "data/cert_issuer_source_static_unittest/i1_2.pem", |
| 2749 | "data/cert_issuer_source_static_unittest/i2.pem", |
| 2750 | "data/cert_issuer_source_static_unittest/i3_1.pem", |
| 2751 | "data/cert_issuer_source_static_unittest/i3_2.pem", |
| 2752 | "data/cert_issuer_source_static_unittest/root.pem", |
| 2753 | "data/certificate_policies_unittest/anypolicy.pem", |
| 2754 | "data/certificate_policies_unittest/anypolicy_with_qualifier.pem", |
| 2755 | "data/certificate_policies_unittest/invalid-anypolicy_with_custom_qualifier.pem", |
| 2756 | "data/certificate_policies_unittest/invalid-empty.pem", |
| 2757 | "data/certificate_policies_unittest/invalid-policy_1_2_3_dupe.pem", |
| 2758 | "data/certificate_policies_unittest/invalid-policy_1_2_3_policyinformation_unconsumed_data.pem", |
| 2759 | "data/certificate_policies_unittest/invalid-policy_1_2_3_policyqualifierinfo_unconsumed_data.pem", |
| 2760 | "data/certificate_policies_unittest/invalid-policy_1_2_3_with_empty_qualifiers_sequence.pem", |
| 2761 | "data/certificate_policies_unittest/invalid-policy_identifier_not_oid.pem", |
| 2762 | "data/certificate_policies_unittest/policy_1_2_3.pem", |
| 2763 | "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4.pem", |
| 2764 | "data/certificate_policies_unittest/policy_1_2_3_and_1_2_4_with_qualifiers.pem", |
| 2765 | "data/certificate_policies_unittest/policy_1_2_3_with_custom_qualifier.pem", |
| 2766 | "data/certificate_policies_unittest/policy_1_2_3_with_qualifier.pem", |
Matt Mueller | e39d83d | 2019-06-11 21:25:24 | [diff] [blame] | 2767 | "data/crl_unittest/bad_crldp_has_crlissuer.pem", |
| 2768 | "data/crl_unittest/bad_fake_critical_crlentryextension.pem", |
| 2769 | "data/crl_unittest/bad_fake_critical_extension.pem", |
Matt Mueller | e0065696 | 2019-06-22 00:10:36 | [diff] [blame] | 2770 | "data/crl_unittest/bad_idp_contains_wrong_uri.pem", |
| 2771 | "data/crl_unittest/bad_idp_indirectcrl.pem", |
Matt Mueller | c30c3a1 | 2019-06-25 22:00:40 | [diff] [blame] | 2772 | "data/crl_unittest/bad_idp_onlycontainscacerts.pem", |
| 2773 | "data/crl_unittest/bad_idp_onlycontainscacerts_no_basic_constraints.pem", |
| 2774 | "data/crl_unittest/bad_idp_onlycontainsusercerts.pem", |
| 2775 | "data/crl_unittest/bad_idp_uri_and_onlycontainscacerts.pem", |
| 2776 | "data/crl_unittest/bad_idp_uri_and_onlycontainsusercerts.pem", |
Matt Mueller | b59f772 | 2019-06-14 23:06:45 | [diff] [blame] | 2777 | "data/crl_unittest/bad_key_rollover_signature.pem", |
Matt Mueller | e39d83d | 2019-06-11 21:25:24 | [diff] [blame] | 2778 | "data/crl_unittest/bad_nextupdate_too_old.pem", |
| 2779 | "data/crl_unittest/bad_signature.pem", |
| 2780 | "data/crl_unittest/bad_thisupdate_in_future.pem", |
| 2781 | "data/crl_unittest/bad_thisupdate_too_old.pem", |
| 2782 | "data/crl_unittest/bad_wrong_issuer.pem", |
| 2783 | "data/crl_unittest/good.pem", |
| 2784 | "data/crl_unittest/good_fake_extension.pem", |
| 2785 | "data/crl_unittest/good_fake_extension_no_nextupdate.pem", |
| 2786 | "data/crl_unittest/good_generalizedtime.pem", |
Matt Mueller | e0065696 | 2019-06-22 00:10:36 | [diff] [blame] | 2787 | "data/crl_unittest/good_idp_contains_uri.pem", |
Matt Mueller | c30c3a1 | 2019-06-25 22:00:40 | [diff] [blame] | 2788 | "data/crl_unittest/good_idp_onlycontainscacerts.pem", |
| 2789 | "data/crl_unittest/good_idp_onlycontainsusercerts.pem", |
| 2790 | "data/crl_unittest/good_idp_onlycontainsusercerts_no_basic_constraints.pem", |
| 2791 | "data/crl_unittest/good_idp_uri_and_onlycontainscacerts.pem", |
| 2792 | "data/crl_unittest/good_idp_uri_and_onlycontainsusercerts.pem", |
Matt Mueller | e39d83d | 2019-06-11 21:25:24 | [diff] [blame] | 2793 | "data/crl_unittest/good_issuer_name_normalization.pem", |
| 2794 | "data/crl_unittest/good_issuer_no_keyusage.pem", |
Matt Mueller | b59f772 | 2019-06-14 23:06:45 | [diff] [blame] | 2795 | "data/crl_unittest/good_key_rollover.pem", |
Matt Mueller | e39d83d | 2019-06-11 21:25:24 | [diff] [blame] | 2796 | "data/crl_unittest/good_no_crldp.pem", |
| 2797 | "data/crl_unittest/good_no_nextupdate.pem", |
| 2798 | "data/crl_unittest/good_no_version.pem", |
| 2799 | "data/crl_unittest/invalid_garbage_after_crlentryextensions.pem", |
| 2800 | "data/crl_unittest/invalid_garbage_after_extensions.pem", |
| 2801 | "data/crl_unittest/invalid_garbage_after_nextupdate.pem", |
| 2802 | "data/crl_unittest/invalid_garbage_after_revocationdate.pem", |
| 2803 | "data/crl_unittest/invalid_garbage_after_revokedcerts.pem", |
| 2804 | "data/crl_unittest/invalid_garbage_after_signaturevalue.pem", |
| 2805 | "data/crl_unittest/invalid_garbage_after_thisupdate.pem", |
| 2806 | "data/crl_unittest/invalid_garbage_crlentry.pem", |
| 2807 | "data/crl_unittest/invalid_garbage_issuer_name.pem", |
| 2808 | "data/crl_unittest/invalid_garbage_revocationdate.pem", |
| 2809 | "data/crl_unittest/invalid_garbage_revoked_serial_number.pem", |
| 2810 | "data/crl_unittest/invalid_garbage_signaturealgorithm.pem", |
| 2811 | "data/crl_unittest/invalid_garbage_signaturevalue.pem", |
| 2812 | "data/crl_unittest/invalid_garbage_tbs_signature_algorithm.pem", |
| 2813 | "data/crl_unittest/invalid_garbage_tbscertlist.pem", |
| 2814 | "data/crl_unittest/invalid_garbage_thisupdate.pem", |
| 2815 | "data/crl_unittest/invalid_garbage_version.pem", |
Matt Mueller | e0065696 | 2019-06-22 00:10:36 | [diff] [blame] | 2816 | "data/crl_unittest/invalid_idp_dpname_choice_extra_data.pem", |
| 2817 | "data/crl_unittest/invalid_idp_empty_sequence.pem", |
Matt Mueller | c30c3a1 | 2019-06-25 22:00:40 | [diff] [blame] | 2818 | "data/crl_unittest/invalid_idp_onlycontains_user_and_ca_certs.pem", |
| 2819 | "data/crl_unittest/invalid_idp_onlycontainsusercerts_v1_leaf.pem", |
Matt Mueller | e39d83d | 2019-06-11 21:25:24 | [diff] [blame] | 2820 | "data/crl_unittest/invalid_issuer_keyusage_no_crlsign.pem", |
Matt Mueller | b59f772 | 2019-06-14 23:06:45 | [diff] [blame] | 2821 | "data/crl_unittest/invalid_key_rollover_issuer_keyusage_no_crlsign.pem", |
Matt Mueller | e39d83d | 2019-06-11 21:25:24 | [diff] [blame] | 2822 | "data/crl_unittest/invalid_mismatched_signature_algorithm.pem", |
| 2823 | "data/crl_unittest/invalid_revoked_empty_sequence.pem", |
| 2824 | "data/crl_unittest/invalid_v1_explicit.pem", |
| 2825 | "data/crl_unittest/invalid_v1_with_crlentryextension.pem", |
| 2826 | "data/crl_unittest/invalid_v1_with_extension.pem", |
| 2827 | "data/crl_unittest/invalid_v3.pem", |
| 2828 | "data/crl_unittest/revoked.pem", |
| 2829 | "data/crl_unittest/revoked_fake_crlentryextension.pem", |
| 2830 | "data/crl_unittest/revoked_generalized_revocationdate.pem", |
Matt Mueller | b59f772 | 2019-06-14 23:06:45 | [diff] [blame] | 2831 | "data/crl_unittest/revoked_key_rollover.pem", |
Matt Mueller | e39d83d | 2019-06-11 21:25:24 | [diff] [blame] | 2832 | "data/crl_unittest/revoked_no_nextupdate.pem", |
jam | 29f1aed4 | 2017-06-06 21:37:43 | [diff] [blame] | 2833 | "data/embedded_test_server/mock-headers-without-crlf.html", |
| 2834 | "data/embedded_test_server/mock-headers-without-crlf.html.mock-http-headers", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2835 | "data/filter_unittests/google.br", |
| 2836 | "data/filter_unittests/google.txt", |
| 2837 | "data/name_constraints_unittest/directoryname-excludeall.pem", |
| 2838 | "data/name_constraints_unittest/directoryname-excluded.pem", |
| 2839 | "data/name_constraints_unittest/directoryname.pem", |
| 2840 | "data/name_constraints_unittest/directoryname_and_dnsname.pem", |
| 2841 | "data/name_constraints_unittest/directoryname_and_dnsname_and_ipaddress.pem", |
| 2842 | "data/name_constraints_unittest/dnsname-exclude_dot.pem", |
| 2843 | "data/name_constraints_unittest/dnsname-excludeall.pem", |
| 2844 | "data/name_constraints_unittest/dnsname-excluded.pem", |
| 2845 | "data/name_constraints_unittest/dnsname-excluded_with_leading_dot.pem", |
| 2846 | "data/name_constraints_unittest/dnsname-permitted_two_dot.pem", |
| 2847 | "data/name_constraints_unittest/dnsname-permitted_with_leading_dot.pem", |
| 2848 | "data/name_constraints_unittest/dnsname-with_max.pem", |
| 2849 | "data/name_constraints_unittest/dnsname-with_min_0.pem", |
| 2850 | "data/name_constraints_unittest/dnsname-with_min_0_and_max.pem", |
| 2851 | "data/name_constraints_unittest/dnsname-with_min_1.pem", |
| 2852 | "data/name_constraints_unittest/dnsname-with_min_1_and_max.pem", |
| 2853 | "data/name_constraints_unittest/dnsname.pem", |
| 2854 | "data/name_constraints_unittest/dnsname2.pem", |
| 2855 | "data/name_constraints_unittest/edipartyname-excluded.pem", |
| 2856 | "data/name_constraints_unittest/edipartyname-permitted.pem", |
| 2857 | "data/name_constraints_unittest/invalid-empty_excluded_subtree.pem", |
| 2858 | "data/name_constraints_unittest/invalid-empty_permitted_subtree.pem", |
| 2859 | "data/name_constraints_unittest/invalid-no_subtrees.pem", |
| 2860 | "data/name_constraints_unittest/ipaddress-excludeall.pem", |
| 2861 | "data/name_constraints_unittest/ipaddress-excluded.pem", |
| 2862 | "data/name_constraints_unittest/ipaddress-invalid_addr.pem", |
| 2863 | "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_1.pem", |
| 2864 | "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_2.pem", |
| 2865 | "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_3.pem", |
| 2866 | "data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_4.pem", |
| 2867 | "data/name_constraints_unittest/ipaddress-permit_all.pem", |
| 2868 | "data/name_constraints_unittest/ipaddress-permit_prefix1.pem", |
| 2869 | "data/name_constraints_unittest/ipaddress-permit_prefix31.pem", |
| 2870 | "data/name_constraints_unittest/ipaddress-permit_singlehost.pem", |
| 2871 | "data/name_constraints_unittest/ipaddress.pem", |
| 2872 | "data/name_constraints_unittest/name-ca.pem", |
| 2873 | "data/name_constraints_unittest/name-de.pem", |
| 2874 | "data/name_constraints_unittest/name-empty.pem", |
| 2875 | "data/name_constraints_unittest/name-jp-tokyo.pem", |
| 2876 | "data/name_constraints_unittest/name-jp.pem", |
| 2877 | "data/name_constraints_unittest/name-us-arizona-1.1.1.1.pem", |
| 2878 | "data/name_constraints_unittest/name-us-arizona-192.168.1.1.pem", |
| 2879 | "data/name_constraints_unittest/name-us-arizona-email.pem", |
| 2880 | "data/name_constraints_unittest/name-us-arizona-foo.com.pem", |
| 2881 | "data/name_constraints_unittest/name-us-arizona-ipv6.pem", |
| 2882 | "data/name_constraints_unittest/name-us-arizona-permitted.example.com.pem", |
| 2883 | "data/name_constraints_unittest/name-us-arizona.pem", |
| 2884 | "data/name_constraints_unittest/name-us-california-192.168.1.1.pem", |
| 2885 | "data/name_constraints_unittest/name-us-california-mountain_view.pem", |
| 2886 | "data/name_constraints_unittest/name-us-california-permitted.example.com.pem", |
| 2887 | "data/name_constraints_unittest/name-us-california.pem", |
| 2888 | "data/name_constraints_unittest/name-us.pem", |
| 2889 | "data/name_constraints_unittest/othername-excluded.pem", |
| 2890 | "data/name_constraints_unittest/othername-permitted.pem", |
| 2891 | "data/name_constraints_unittest/registeredid-excluded.pem", |
| 2892 | "data/name_constraints_unittest/registeredid-permitted.pem", |
| 2893 | "data/name_constraints_unittest/rfc822name-excluded.pem", |
| 2894 | "data/name_constraints_unittest/rfc822name-permitted.pem", |
Matt Mueller | 766bedc9 | 2017-09-14 23:30:41 | [diff] [blame] | 2895 | "data/name_constraints_unittest/san-directoryname.pem", |
| 2896 | "data/name_constraints_unittest/san-dnsname.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2897 | "data/name_constraints_unittest/san-edipartyname.pem", |
| 2898 | "data/name_constraints_unittest/san-excluded-directoryname.pem", |
| 2899 | "data/name_constraints_unittest/san-excluded-dnsname.pem", |
| 2900 | "data/name_constraints_unittest/san-excluded-ipaddress.pem", |
| 2901 | "data/name_constraints_unittest/san-invalid-empty.pem", |
| 2902 | "data/name_constraints_unittest/san-invalid-ipaddress.pem", |
Matt Mueller | 766bedc9 | 2017-09-14 23:30:41 | [diff] [blame] | 2903 | "data/name_constraints_unittest/san-ipaddress4.pem", |
| 2904 | "data/name_constraints_unittest/san-ipaddress6.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2905 | "data/name_constraints_unittest/san-othername.pem", |
| 2906 | "data/name_constraints_unittest/san-permitted.pem", |
| 2907 | "data/name_constraints_unittest/san-registeredid.pem", |
| 2908 | "data/name_constraints_unittest/san-rfc822name.pem", |
| 2909 | "data/name_constraints_unittest/san-uri.pem", |
| 2910 | "data/name_constraints_unittest/san-x400address.pem", |
| 2911 | "data/name_constraints_unittest/uri-excluded.pem", |
| 2912 | "data/name_constraints_unittest/uri-permitted.pem", |
| 2913 | "data/name_constraints_unittest/x400address-excluded.pem", |
| 2914 | "data/name_constraints_unittest/x400address-permitted.pem", |
Eric Roman | a2f6f55d | 2017-09-07 23:34:57 | [diff] [blame] | 2915 | "data/ocsp_unittest/bad_ocsp_type.pem", |
| 2916 | "data/ocsp_unittest/bad_signature.pem", |
| 2917 | "data/ocsp_unittest/bad_status.pem", |
| 2918 | "data/ocsp_unittest/good_response.pem", |
| 2919 | "data/ocsp_unittest/good_response_next_update.pem", |
Steven Valdez | 060eac4 | 2017-09-21 22:31:57 | [diff] [blame] | 2920 | "data/ocsp_unittest/good_response_sha256.pem", |
Kaustubha Govind | 32f60f7 | 2019-08-13 13:47:13 | [diff] [blame] | 2921 | "data/ocsp_unittest/has_critical_ct_extension.pem", |
| 2922 | "data/ocsp_unittest/has_critical_response_extension.pem", |
| 2923 | "data/ocsp_unittest/has_critical_single_extension.pem", |
Eric Roman | a2f6f55d | 2017-09-07 23:34:57 | [diff] [blame] | 2924 | "data/ocsp_unittest/has_extension.pem", |
| 2925 | "data/ocsp_unittest/has_single_extension.pem", |
| 2926 | "data/ocsp_unittest/has_version.pem", |
Eric Roman | ff24262 | 2017-09-25 21:49:44 | [diff] [blame] | 2927 | "data/ocsp_unittest/malformed_request.pem", |
Eric Roman | a2f6f55d | 2017-09-07 23:34:57 | [diff] [blame] | 2928 | "data/ocsp_unittest/missing_response.pem", |
| 2929 | "data/ocsp_unittest/multiple_response.pem", |
| 2930 | "data/ocsp_unittest/no_response.pem", |
| 2931 | "data/ocsp_unittest/ocsp_extra_certs.pem", |
| 2932 | "data/ocsp_unittest/ocsp_sign_bad_indirect.pem", |
| 2933 | "data/ocsp_unittest/ocsp_sign_direct.pem", |
| 2934 | "data/ocsp_unittest/ocsp_sign_indirect.pem", |
| 2935 | "data/ocsp_unittest/ocsp_sign_indirect_missing.pem", |
| 2936 | "data/ocsp_unittest/other_response.pem", |
| 2937 | "data/ocsp_unittest/responder_id.pem", |
| 2938 | "data/ocsp_unittest/responder_name.pem", |
| 2939 | "data/ocsp_unittest/revoke_response.pem", |
| 2940 | "data/ocsp_unittest/revoke_response_reason.pem", |
| 2941 | "data/ocsp_unittest/unknown_response.pem", |
Ryan Sleevi | 3dabe0b | 2018-04-05 03:59:01 | [diff] [blame] | 2942 | "data/ov_name_constraints/int-bmp-o1.pem", |
| 2943 | "data/ov_name_constraints/int-cn.pem", |
| 2944 | "data/ov_name_constraints/int-o1-o2.pem", |
| 2945 | "data/ov_name_constraints/int-o1-plus-o2.pem", |
| 2946 | "data/ov_name_constraints/int-o2-o1.pem", |
| 2947 | "data/ov_name_constraints/int-o3.pem", |
| 2948 | "data/ov_name_constraints/leaf-no-o.pem", |
| 2949 | "data/ov_name_constraints/leaf-o1-o2.pem", |
| 2950 | "data/ov_name_constraints/leaf-o1.pem", |
| 2951 | "data/ov_name_constraints/nc-int-exclude-o1.pem", |
| 2952 | "data/ov_name_constraints/nc-int-permit-bmp-o1.pem", |
| 2953 | "data/ov_name_constraints/nc-int-permit-cn.pem", |
| 2954 | "data/ov_name_constraints/nc-int-permit-dns.pem", |
| 2955 | "data/ov_name_constraints/nc-int-permit-o1.pem", |
| 2956 | "data/ov_name_constraints/nc-int-permit-o2-o1-o3.pem", |
| 2957 | "data/ov_name_constraints/root.pem", |
Matt Mueller | 7793d41 | 2019-11-01 01:43:08 | [diff] [blame] | 2958 | "data/parse_certificate_unittest/authority_key_identifier/empty_sequence.pem", |
| 2959 | "data/parse_certificate_unittest/authority_key_identifier/extra_contents_after_extension_sequence.pem", |
| 2960 | "data/parse_certificate_unittest/authority_key_identifier/extra_contents_after_issuer_and_serial.pem", |
| 2961 | "data/parse_certificate_unittest/authority_key_identifier/invalid_contents.pem", |
| 2962 | "data/parse_certificate_unittest/authority_key_identifier/invalid_issuer.pem", |
| 2963 | "data/parse_certificate_unittest/authority_key_identifier/invalid_key_identifier.pem", |
| 2964 | "data/parse_certificate_unittest/authority_key_identifier/invalid_serial.pem", |
| 2965 | "data/parse_certificate_unittest/authority_key_identifier/issuer_and_serial.pem", |
| 2966 | "data/parse_certificate_unittest/authority_key_identifier/issuer_only.pem", |
| 2967 | "data/parse_certificate_unittest/authority_key_identifier/key_identifier.pem", |
| 2968 | "data/parse_certificate_unittest/authority_key_identifier/key_identifier_and_issuer_and_serial.pem", |
| 2969 | "data/parse_certificate_unittest/authority_key_identifier/serial_only.pem", |
| 2970 | "data/parse_certificate_unittest/authority_key_identifier/url_issuer_and_serial.pem", |
| 2971 | "data/parse_certificate_unittest/authority_key_identifier_not_sequence.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 2972 | "data/parse_certificate_unittest/bad_key_usage.pem", |
| 2973 | "data/parse_certificate_unittest/bad_policy_qualifiers.pem", |
| 2974 | "data/parse_certificate_unittest/bad_signature_algorithm_oid.pem", |
| 2975 | "data/parse_certificate_unittest/bad_validity.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2976 | "data/parse_certificate_unittest/basic_constraints_ca_false.pem", |
| 2977 | "data/parse_certificate_unittest/basic_constraints_ca_no_path.pem", |
| 2978 | "data/parse_certificate_unittest/basic_constraints_ca_path_9.pem", |
| 2979 | "data/parse_certificate_unittest/basic_constraints_negative_path.pem", |
| 2980 | "data/parse_certificate_unittest/basic_constraints_not_ca.pem", |
| 2981 | "data/parse_certificate_unittest/basic_constraints_path_too_large.pem", |
| 2982 | "data/parse_certificate_unittest/basic_constraints_pathlen_255.pem", |
| 2983 | "data/parse_certificate_unittest/basic_constraints_pathlen_256.pem", |
| 2984 | "data/parse_certificate_unittest/basic_constraints_pathlen_not_ca.pem", |
| 2985 | "data/parse_certificate_unittest/basic_constraints_unconsumed_data.pem", |
| 2986 | "data/parse_certificate_unittest/cert_algorithm_not_sequence.pem", |
| 2987 | "data/parse_certificate_unittest/cert_data_after_signature.pem", |
| 2988 | "data/parse_certificate_unittest/cert_empty_sequence.pem", |
| 2989 | "data/parse_certificate_unittest/cert_missing_signature.pem", |
| 2990 | "data/parse_certificate_unittest/cert_not_sequence.pem", |
| 2991 | "data/parse_certificate_unittest/cert_signature_not_bit_string.pem", |
| 2992 | "data/parse_certificate_unittest/cert_skeleton.pem", |
| 2993 | "data/parse_certificate_unittest/cert_version3.pem", |
Eric Roman | db460e9 | 2017-08-01 17:17:34 | [diff] [blame] | 2994 | "data/parse_certificate_unittest/crldp_1uri_noissuer.pem", |
| 2995 | "data/parse_certificate_unittest/crldp_3uri_noissuer.pem", |
| 2996 | "data/parse_certificate_unittest/crldp_full_name_as_dirname.pem", |
| 2997 | "data/parse_certificate_unittest/crldp_issuer_as_dirname.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 2998 | "data/parse_certificate_unittest/extended_key_usage.pem", |
| 2999 | "data/parse_certificate_unittest/extension_critical.pem", |
| 3000 | "data/parse_certificate_unittest/extension_critical_0.pem", |
| 3001 | "data/parse_certificate_unittest/extension_critical_3.pem", |
| 3002 | "data/parse_certificate_unittest/extension_not_critical.pem", |
| 3003 | "data/parse_certificate_unittest/extensions_data_after_sequence.pem", |
| 3004 | "data/parse_certificate_unittest/extensions_duplicate_key_usage.pem", |
| 3005 | "data/parse_certificate_unittest/extensions_empty_sequence.pem", |
| 3006 | "data/parse_certificate_unittest/extensions_not_sequence.pem", |
| 3007 | "data/parse_certificate_unittest/extensions_real.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3008 | "data/parse_certificate_unittest/failed_signature_algorithm.pem", |
eroman | d312c06 | 2017-05-19 03:06:29 | [diff] [blame] | 3009 | "data/parse_certificate_unittest/inhibit_any_policy.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3010 | "data/parse_certificate_unittest/issuer_bad_printable_string.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3011 | "data/parse_certificate_unittest/key_usage.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3012 | "data/parse_certificate_unittest/name_constraints_bad_ip.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3013 | "data/parse_certificate_unittest/policies.pem", |
eroman | 25ead1bcf8 | 2017-05-13 06:44:58 | [diff] [blame] | 3014 | "data/parse_certificate_unittest/policy_constraints_empty.pem", |
| 3015 | "data/parse_certificate_unittest/policy_constraints_inhibit.pem", |
| 3016 | "data/parse_certificate_unittest/policy_constraints_inhibit_require.pem", |
| 3017 | "data/parse_certificate_unittest/policy_constraints_require.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3018 | "data/parse_certificate_unittest/policy_qualifiers_empty_sequence.pem", |
mattm | 312644de | 2017-05-16 08:13:18 | [diff] [blame] | 3019 | "data/parse_certificate_unittest/serial_37_bytes.pem", |
| 3020 | "data/parse_certificate_unittest/serial_negative.pem", |
Eric Roman | 5d193462 | 2017-08-03 03:57:09 | [diff] [blame] | 3021 | "data/parse_certificate_unittest/serial_not_minimal.pem", |
| 3022 | "data/parse_certificate_unittest/serial_not_number.pem", |
| 3023 | "data/parse_certificate_unittest/serial_zero.pem", |
mattm | 312644de | 2017-05-16 08:13:18 | [diff] [blame] | 3024 | "data/parse_certificate_unittest/serial_zero_padded.pem", |
| 3025 | "data/parse_certificate_unittest/serial_zero_padded_21_bytes.pem", |
mattm | 2fe429a | 2017-06-20 01:53:44 | [diff] [blame] | 3026 | "data/parse_certificate_unittest/signature_algorithm_null.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3027 | "data/parse_certificate_unittest/subject_alt_name.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3028 | "data/parse_certificate_unittest/subject_blank_subjectaltname_not_critical.pem", |
Matt Mueller | 7793d41 | 2019-11-01 01:43:08 | [diff] [blame] | 3029 | "data/parse_certificate_unittest/subject_key_identifier_not_octet_string.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3030 | "data/parse_certificate_unittest/subject_not_ascii.pem", |
| 3031 | "data/parse_certificate_unittest/subject_not_printable_string.pem", |
Matt Mueller | 6c8b07c6 | 2017-10-09 21:02:25 | [diff] [blame] | 3032 | "data/parse_certificate_unittest/subject_printable_string_containing_utf8_client_cert.pem", |
mattm | 788812f | 2017-05-05 23:49:09 | [diff] [blame] | 3033 | "data/parse_certificate_unittest/subject_t61string.pem", |
| 3034 | "data/parse_certificate_unittest/subject_t61string_1-32.pem", |
| 3035 | "data/parse_certificate_unittest/subject_t61string_126-160.pem", |
| 3036 | "data/parse_certificate_unittest/subject_t61string_actual.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3037 | "data/parse_certificate_unittest/subjectaltname_bad_ip.pem", |
| 3038 | "data/parse_certificate_unittest/subjectaltname_dns_not_ascii.pem", |
| 3039 | "data/parse_certificate_unittest/subjectaltname_general_names_empty_sequence.pem", |
| 3040 | "data/parse_certificate_unittest/subjectaltname_trailing_data.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3041 | "data/parse_certificate_unittest/tbs_explicit_v1.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3042 | "data/parse_certificate_unittest/tbs_v1.pem", |
| 3043 | "data/parse_certificate_unittest/tbs_v1_extensions.pem", |
| 3044 | "data/parse_certificate_unittest/tbs_v2_extensions.pem", |
| 3045 | "data/parse_certificate_unittest/tbs_v2_issuer_and_subject_unique_id.pem", |
| 3046 | "data/parse_certificate_unittest/tbs_v2_issuer_unique_id.pem", |
| 3047 | "data/parse_certificate_unittest/tbs_v2_no_optionals.pem", |
| 3048 | "data/parse_certificate_unittest/tbs_v3_all_optionals.pem", |
| 3049 | "data/parse_certificate_unittest/tbs_v3_data_after_extensions.pem", |
| 3050 | "data/parse_certificate_unittest/tbs_v3_extensions.pem", |
| 3051 | "data/parse_certificate_unittest/tbs_v3_extensions_not_sequence.pem", |
| 3052 | "data/parse_certificate_unittest/tbs_v3_no_optionals.pem", |
| 3053 | "data/parse_certificate_unittest/tbs_v3_real.pem", |
| 3054 | "data/parse_certificate_unittest/tbs_v4.pem", |
| 3055 | "data/parse_certificate_unittest/tbs_validity_both_generalized_time.pem", |
| 3056 | "data/parse_certificate_unittest/tbs_validity_both_utc_time.pem", |
| 3057 | "data/parse_certificate_unittest/tbs_validity_generalized_time_and_utc_time.pem", |
| 3058 | "data/parse_certificate_unittest/tbs_validity_relaxed.pem", |
| 3059 | "data/parse_certificate_unittest/tbs_validity_utc_time_and_generalized_time.pem", |
Eric Roman | 7b45a27 | 2017-08-02 03:21:44 | [diff] [blame] | 3060 | "data/parse_certificate_unittest/v1_explicit_version.pem", |
Matt Mueller | 6c8b07c6 | 2017-10-09 21:02:25 | [diff] [blame] | 3061 | "data/parse_certificate_unittest/v3_certificate_template.pk8", |
Matt Mueller | 7793d41 | 2019-11-01 01:43:08 | [diff] [blame] | 3062 | "data/path_builder_unittest/key_id_name_and_serial_prioritization/int_match_name_only.pem", |
| 3063 | "data/path_builder_unittest/key_id_name_and_serial_prioritization/int_matching.pem", |
| 3064 | "data/path_builder_unittest/key_id_name_and_serial_prioritization/int_mismatch.pem", |
| 3065 | "data/path_builder_unittest/key_id_name_and_serial_prioritization/root.pem", |
| 3066 | "data/path_builder_unittest/key_id_name_and_serial_prioritization/root2.pem", |
| 3067 | "data/path_builder_unittest/key_id_name_and_serial_prioritization/target.pem", |
| 3068 | "data/path_builder_unittest/key_id_prioritization/int_different_ski_a.pem", |
| 3069 | "data/path_builder_unittest/key_id_prioritization/int_different_ski_b.pem", |
| 3070 | "data/path_builder_unittest/key_id_prioritization/int_different_ski_c.pem", |
| 3071 | "data/path_builder_unittest/key_id_prioritization/int_matching_ski_a.pem", |
| 3072 | "data/path_builder_unittest/key_id_prioritization/int_matching_ski_b.pem", |
| 3073 | "data/path_builder_unittest/key_id_prioritization/int_matching_ski_c.pem", |
| 3074 | "data/path_builder_unittest/key_id_prioritization/int_no_ski_a.pem", |
| 3075 | "data/path_builder_unittest/key_id_prioritization/int_no_ski_b.pem", |
| 3076 | "data/path_builder_unittest/key_id_prioritization/int_no_ski_c.pem", |
| 3077 | "data/path_builder_unittest/key_id_prioritization/root.pem", |
| 3078 | "data/path_builder_unittest/key_id_prioritization/target.pem", |
Matt Mueller | d2ec6c4bc | 2021-09-14 16:17:50 | [diff] [blame] | 3079 | "data/path_builder_unittest/self_issued_prioritization/root1.pem", |
| 3080 | "data/path_builder_unittest/self_issued_prioritization/root1_cross.pem", |
| 3081 | "data/path_builder_unittest/self_issued_prioritization/root2.pem", |
| 3082 | "data/path_builder_unittest/self_issued_prioritization/target.pem", |
Matt Mueller | dfa4c00 | 2019-10-23 22:40:52 | [diff] [blame] | 3083 | "data/path_builder_unittest/validity_date_prioritization/int_ac.pem", |
| 3084 | "data/path_builder_unittest/validity_date_prioritization/int_ad.pem", |
| 3085 | "data/path_builder_unittest/validity_date_prioritization/int_bc.pem", |
| 3086 | "data/path_builder_unittest/validity_date_prioritization/int_bd.pem", |
| 3087 | "data/path_builder_unittest/validity_date_prioritization/root.pem", |
| 3088 | "data/path_builder_unittest/validity_date_prioritization/target.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3089 | "data/test.html", |
Matt Mueller | dbc0aa7 | 2019-02-04 22:13:18 | [diff] [blame] | 3090 | "data/trial_comparison_cert_verifier_unittest/target-multiple-policies/chain.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3091 | "data/url_request_unittest/308-without-location-header", |
| 3092 | "data/url_request_unittest/308-without-location-header.mock-http-headers", |
| 3093 | "data/url_request_unittest/BullRunSpeech.txt", |
David Benjamin | 179860f | 2020-05-28 20:20:04 | [diff] [blame] | 3094 | "data/url_request_unittest/BullRunSpeech.txt.deflate", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3095 | "data/url_request_unittest/content-type-normalization.html", |
| 3096 | "data/url_request_unittest/content-type-normalization.html.mock-http-headers", |
Emily Stark | 4cfecf07 | 2017-08-08 01:05:51 | [diff] [blame] | 3097 | "data/url_request_unittest/expect-ct-header-multiple.html", |
| 3098 | "data/url_request_unittest/expect-ct-header-multiple.html.mock-http-headers", |
| 3099 | "data/url_request_unittest/expect-ct-header-preload.html", |
| 3100 | "data/url_request_unittest/expect-ct-header-preload.html.mock-http-headers", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3101 | "data/url_request_unittest/expect-ct-header.html", |
| 3102 | "data/url_request_unittest/expect-ct-header.html.mock-http-headers", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3103 | "data/url_request_unittest/gzip-encoded", |
| 3104 | "data/url_request_unittest/gzip-encoded.mock-http-headers", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3105 | "data/url_request_unittest/hsts-headers.html", |
| 3106 | "data/url_request_unittest/hsts-headers.html.mock-http-headers", |
| 3107 | "data/url_request_unittest/hsts-multiple-headers.html", |
| 3108 | "data/url_request_unittest/hsts-multiple-headers.html.mock-http-headers", |
| 3109 | "data/url_request_unittest/redirect-test.html", |
| 3110 | "data/url_request_unittest/redirect-test.html.mock-http-headers", |
| 3111 | "data/url_request_unittest/redirect-to-data.html", |
| 3112 | "data/url_request_unittest/redirect-to-data.html.mock-http-headers", |
| 3113 | "data/url_request_unittest/redirect-to-echoall", |
| 3114 | "data/url_request_unittest/redirect-to-echoall.mock-http-headers", |
| 3115 | "data/url_request_unittest/redirect-to-file.html", |
| 3116 | "data/url_request_unittest/redirect-to-file.html.mock-http-headers", |
| 3117 | "data/url_request_unittest/redirect-to-invalid-url.html", |
| 3118 | "data/url_request_unittest/redirect-to-invalid-url.html.mock-http-headers", |
| 3119 | "data/url_request_unittest/redirect301-to-echo", |
| 3120 | "data/url_request_unittest/redirect301-to-echo.mock-http-headers", |
| 3121 | "data/url_request_unittest/redirect301-to-https", |
| 3122 | "data/url_request_unittest/redirect301-to-https.mock-http-headers", |
| 3123 | "data/url_request_unittest/redirect302-to-echo", |
| 3124 | "data/url_request_unittest/redirect302-to-echo-cacheable", |
| 3125 | "data/url_request_unittest/redirect302-to-echo-cacheable.mock-http-headers", |
| 3126 | "data/url_request_unittest/redirect302-to-echo.mock-http-headers", |
| 3127 | "data/url_request_unittest/redirect302-to-https", |
| 3128 | "data/url_request_unittest/redirect302-to-https.mock-http-headers", |
| 3129 | "data/url_request_unittest/redirect303-to-echo", |
| 3130 | "data/url_request_unittest/redirect303-to-echo.mock-http-headers", |
| 3131 | "data/url_request_unittest/redirect303-to-https", |
| 3132 | "data/url_request_unittest/redirect303-to-https.mock-http-headers", |
| 3133 | "data/url_request_unittest/redirect307-to-echo", |
| 3134 | "data/url_request_unittest/redirect307-to-echo.mock-http-headers", |
| 3135 | "data/url_request_unittest/redirect307-to-https", |
| 3136 | "data/url_request_unittest/redirect307-to-https.mock-http-headers", |
| 3137 | "data/url_request_unittest/redirect308-to-echo", |
| 3138 | "data/url_request_unittest/redirect308-to-echo.mock-http-headers", |
| 3139 | "data/url_request_unittest/redirect308-to-https", |
| 3140 | "data/url_request_unittest/redirect308-to-https.mock-http-headers", |
| 3141 | "data/url_request_unittest/simple.html", |
| 3142 | "data/url_request_unittest/simple.html.mock-http-headers", |
| 3143 | "data/url_request_unittest/two-content-lengths.html", |
| 3144 | "data/url_request_unittest/two-content-lengths.html.mock-http-headers", |
| 3145 | "data/url_request_unittest/with-headers.html", |
| 3146 | "data/url_request_unittest/with-headers.html.mock-http-headers", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3147 | "data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/chain.pem", |
| 3148 | "data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/main.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3149 | "data/verify_certificate_chain_unittest/expired-intermediate/chain.pem", |
eroman | e7af900 | 2017-05-13 05:04:01 | [diff] [blame] | 3150 | "data/verify_certificate_chain_unittest/expired-intermediate/not-after.test", |
| 3151 | "data/verify_certificate_chain_unittest/expired-intermediate/not-before.test", |
eroman | c1a8b5d0 | 2017-05-03 21:52:10 | [diff] [blame] | 3152 | "data/verify_certificate_chain_unittest/expired-root/chain.pem", |
eroman | e7af900 | 2017-05-13 05:04:01 | [diff] [blame] | 3153 | "data/verify_certificate_chain_unittest/expired-root/not-after-ta-with-constraints.test", |
Matt Mueller | 67011cdc | 2022-03-04 00:25:38 | [diff] [blame] | 3154 | "data/verify_certificate_chain_unittest/expired-root/not-after-ta-with-expiration.test", |
eroman | e7af900 | 2017-05-13 05:04:01 | [diff] [blame] | 3155 | "data/verify_certificate_chain_unittest/expired-root/not-after.test", |
Matt Mueller | 67011cdc | 2022-03-04 00:25:38 | [diff] [blame] | 3156 | "data/verify_certificate_chain_unittest/expired-root/not-before-ta-with-expiration.test", |
eroman | e7af900 | 2017-05-13 05:04:01 | [diff] [blame] | 3157 | "data/verify_certificate_chain_unittest/expired-root/not-before.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3158 | "data/verify_certificate_chain_unittest/expired-target/chain.pem", |
eroman | e7af900 | 2017-05-13 05:04:01 | [diff] [blame] | 3159 | "data/verify_certificate_chain_unittest/expired-target/not-after.test", |
| 3160 | "data/verify_certificate_chain_unittest/expired-target/not-before.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3161 | "data/verify_certificate_chain_unittest/incorrect-trust-anchor/chain.pem", |
| 3162 | "data/verify_certificate_chain_unittest/incorrect-trust-anchor/main.test", |
Matt Mueller | 905e4e3d | 2018-02-14 02:11:17 | [diff] [blame] | 3163 | "data/verify_certificate_chain_unittest/intermediate-and-target-wrong-signature/chain.pem", |
| 3164 | "data/verify_certificate_chain_unittest/intermediate-and-target-wrong-signature/main.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3165 | "data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/chain.pem", |
| 3166 | "data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/main.test", |
| 3167 | "data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/chain.pem", |
| 3168 | "data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/main.test", |
eroman | 7333d9b | 2017-06-23 01:50:25 | [diff] [blame] | 3169 | "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/any.test", |
| 3170 | "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/chain.pem", |
| 3171 | "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/clientauth.test", |
| 3172 | "data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/serverauth.test", |
| 3173 | "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/any.test", |
| 3174 | "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/chain.pem", |
| 3175 | "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/clientauth.test", |
| 3176 | "data/verify_certificate_chain_unittest/intermediate-eku-clientauth/serverauth.test", |
Eric Roman | c8c2d6a | 2017-08-01 22:55:30 | [diff] [blame] | 3177 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-chain.pem", |
| 3178 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-any.test", |
| 3179 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-clientAuth.test", |
| 3180 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-serverAuth.test", |
| 3181 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-chain.pem", |
| 3182 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-any.test", |
| 3183 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-clientAuth.test", |
| 3184 | "data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-serverAuth.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3185 | "data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/chain.pem", |
| 3186 | "data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/main.test", |
| 3187 | "data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/chain.pem", |
| 3188 | "data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/main.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3189 | "data/verify_certificate_chain_unittest/intermediate-signed-with-md5/chain.pem", |
| 3190 | "data/verify_certificate_chain_unittest/intermediate-signed-with-md5/main.test", |
| 3191 | "data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/chain.pem", |
| 3192 | "data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/main.test", |
| 3193 | "data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/chain.pem", |
| 3194 | "data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/main.test", |
Matt Mueller | 5eb9b8e7 | 2019-10-23 00:47:31 | [diff] [blame] | 3195 | "data/verify_certificate_chain_unittest/intermediate-wrong-signature-no-authority-key-identifier/chain.pem", |
| 3196 | "data/verify_certificate_chain_unittest/intermediate-wrong-signature-no-authority-key-identifier/main.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3197 | "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.pem", |
| 3198 | "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.test", |
| 3199 | "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.pem", |
| 3200 | "data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.test", |
| 3201 | "data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.pem", |
| 3202 | "data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.test", |
| 3203 | "data/verify_certificate_chain_unittest/key-rollover/newchain.pem", |
| 3204 | "data/verify_certificate_chain_unittest/key-rollover/newchain.test", |
| 3205 | "data/verify_certificate_chain_unittest/key-rollover/oldchain.pem", |
| 3206 | "data/verify_certificate_chain_unittest/key-rollover/oldchain.test", |
| 3207 | "data/verify_certificate_chain_unittest/key-rollover/rolloverchain.pem", |
| 3208 | "data/verify_certificate_chain_unittest/key-rollover/rolloverchain.test", |
Matt Mueller | c391cdf | 2018-02-08 01:05:57 | [diff] [blame] | 3209 | "data/verify_certificate_chain_unittest/many-names/ok-all-types.pem", |
| 3210 | "data/verify_certificate_chain_unittest/many-names/ok-all-types.test", |
| 3211 | "data/verify_certificate_chain_unittest/many-names/ok-different-types-dirnames.pem", |
| 3212 | "data/verify_certificate_chain_unittest/many-names/ok-different-types-dirnames.test", |
| 3213 | "data/verify_certificate_chain_unittest/many-names/ok-different-types-dns.pem", |
| 3214 | "data/verify_certificate_chain_unittest/many-names/ok-different-types-dns.test", |
| 3215 | "data/verify_certificate_chain_unittest/many-names/ok-different-types-ips.pem", |
| 3216 | "data/verify_certificate_chain_unittest/many-names/ok-different-types-ips.test", |
| 3217 | "data/verify_certificate_chain_unittest/many-names/toomany-all-types.pem", |
| 3218 | "data/verify_certificate_chain_unittest/many-names/toomany-all-types.test", |
| 3219 | "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-excluded.pem", |
| 3220 | "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-excluded.test", |
| 3221 | "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-permitted.pem", |
| 3222 | "data/verify_certificate_chain_unittest/many-names/toomany-dirnames-permitted.test", |
| 3223 | "data/verify_certificate_chain_unittest/many-names/toomany-dns-excluded.pem", |
| 3224 | "data/verify_certificate_chain_unittest/many-names/toomany-dns-excluded.test", |
| 3225 | "data/verify_certificate_chain_unittest/many-names/toomany-dns-permitted.pem", |
| 3226 | "data/verify_certificate_chain_unittest/many-names/toomany-dns-permitted.test", |
| 3227 | "data/verify_certificate_chain_unittest/many-names/toomany-ips-excluded.pem", |
| 3228 | "data/verify_certificate_chain_unittest/many-names/toomany-ips-excluded.test", |
| 3229 | "data/verify_certificate_chain_unittest/many-names/toomany-ips-permitted.pem", |
| 3230 | "data/verify_certificate_chain_unittest/many-names/toomany-ips-permitted.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3231 | "data/verify_certificate_chain_unittest/non-self-signed-root/chain.pem", |
| 3232 | "data/verify_certificate_chain_unittest/non-self-signed-root/main.test", |
eroman | c1a8b5d0 | 2017-05-03 21:52:10 | [diff] [blame] | 3233 | "data/verify_certificate_chain_unittest/non-self-signed-root/ta-with-constraints.test", |
eroman | 605a5cc | 2017-06-03 02:45:24 | [diff] [blame] | 3234 | "data/verify_certificate_chain_unittest/pkits_errors/4.1.2.txt", |
| 3235 | "data/verify_certificate_chain_unittest/pkits_errors/4.1.3.txt", |
| 3236 | "data/verify_certificate_chain_unittest/pkits_errors/4.1.4.txt", |
| 3237 | "data/verify_certificate_chain_unittest/pkits_errors/4.1.5.txt", |
| 3238 | "data/verify_certificate_chain_unittest/pkits_errors/4.1.6.txt", |
| 3239 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.1.txt", |
| 3240 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.10.txt", |
| 3241 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.2.txt", |
| 3242 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.3.txt", |
| 3243 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.4.txt", |
| 3244 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.5.txt", |
| 3245 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.6.txt", |
| 3246 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.7.txt", |
| 3247 | "data/verify_certificate_chain_unittest/pkits_errors/4.10.8.txt", |
| 3248 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.1.txt", |
| 3249 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.10.txt", |
| 3250 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.11.txt", |
| 3251 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.3.txt", |
| 3252 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.5.txt", |
| 3253 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.6.txt", |
| 3254 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.8.txt", |
| 3255 | "data/verify_certificate_chain_unittest/pkits_errors/4.11.9.txt", |
| 3256 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.1.txt", |
| 3257 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.10.txt", |
| 3258 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.3.txt", |
| 3259 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.4.txt", |
| 3260 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.5.txt", |
| 3261 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.6.txt", |
| 3262 | "data/verify_certificate_chain_unittest/pkits_errors/4.12.8.txt", |
| 3263 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.10.txt", |
| 3264 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.12.txt", |
| 3265 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.13.txt", |
| 3266 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.15.txt", |
| 3267 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.16.txt", |
| 3268 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.17.txt", |
| 3269 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.2.txt", |
| 3270 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.20.txt", |
| 3271 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.21.txt", |
| 3272 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.22.txt", |
| 3273 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.23.txt", |
| 3274 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.24.txt", |
| 3275 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.25.txt", |
| 3276 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.26.txt", |
| 3277 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.27.txt", |
| 3278 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.28.txt", |
| 3279 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.29.txt", |
| 3280 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.3.txt", |
| 3281 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.31.txt", |
| 3282 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.33.txt", |
| 3283 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.34.txt", |
| 3284 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.35.txt", |
| 3285 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.36.txt", |
| 3286 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.37.txt", |
| 3287 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.38.txt", |
| 3288 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.7.txt", |
| 3289 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.8.txt", |
| 3290 | "data/verify_certificate_chain_unittest/pkits_errors/4.13.9.txt", |
| 3291 | "data/verify_certificate_chain_unittest/pkits_errors/4.16.2.txt", |
| 3292 | "data/verify_certificate_chain_unittest/pkits_errors/4.2.1.txt", |
| 3293 | "data/verify_certificate_chain_unittest/pkits_errors/4.2.2.txt", |
| 3294 | "data/verify_certificate_chain_unittest/pkits_errors/4.2.5.txt", |
| 3295 | "data/verify_certificate_chain_unittest/pkits_errors/4.2.6.txt", |
| 3296 | "data/verify_certificate_chain_unittest/pkits_errors/4.2.7.txt", |
| 3297 | "data/verify_certificate_chain_unittest/pkits_errors/4.3.1.txt", |
| 3298 | "data/verify_certificate_chain_unittest/pkits_errors/4.3.2.txt", |
| 3299 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.1.txt", |
| 3300 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.10.txt", |
| 3301 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.11.txt", |
| 3302 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.12.txt", |
| 3303 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.16.txt", |
| 3304 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.2.txt", |
| 3305 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.3.txt", |
| 3306 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.5.txt", |
| 3307 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.6.txt", |
| 3308 | "data/verify_certificate_chain_unittest/pkits_errors/4.6.9.txt", |
| 3309 | "data/verify_certificate_chain_unittest/pkits_errors/4.7.1.txt", |
| 3310 | "data/verify_certificate_chain_unittest/pkits_errors/4.7.2.txt", |
| 3311 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.1.txt", |
| 3312 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.12.txt", |
| 3313 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.14.txt", |
| 3314 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.2.txt", |
| 3315 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.3.txt", |
| 3316 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.4.txt", |
| 3317 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.5.txt", |
| 3318 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.6.txt", |
| 3319 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.7.txt", |
| 3320 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.8.txt", |
| 3321 | "data/verify_certificate_chain_unittest/pkits_errors/4.8.9.txt", |
| 3322 | "data/verify_certificate_chain_unittest/pkits_errors/4.9.3.txt", |
| 3323 | "data/verify_certificate_chain_unittest/pkits_errors/4.9.5.txt", |
| 3324 | "data/verify_certificate_chain_unittest/pkits_errors/4.9.7.txt", |
| 3325 | "data/verify_certificate_chain_unittest/pkits_errors/4.9.8.txt", |
eroman | c1a8b5d0 | 2017-05-03 21:52:10 | [diff] [blame] | 3326 | "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/chain.pem", |
| 3327 | "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/main.test", |
| 3328 | "data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/ta-with-constraints.test", |
eroman | 7333d9b | 2017-06-23 01:50:25 | [diff] [blame] | 3329 | "data/verify_certificate_chain_unittest/root-eku-clientauth/chain.pem", |
| 3330 | "data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth-ta-with-constraints.test", |
| 3331 | "data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth.test", |
eroman | c1a8b5d0 | 2017-05-03 21:52:10 | [diff] [blame] | 3332 | "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/chain.pem", |
| 3333 | "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/main.test", |
| 3334 | "data/verify_certificate_chain_unittest/root-lacks-basic-constraints/ta-with-constraints.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3335 | "data/verify_certificate_chain_unittest/target-and-intermediate/chain.pem", |
Matt Mueller | 905e4e3d | 2018-02-14 02:11:17 | [diff] [blame] | 3336 | "data/verify_certificate_chain_unittest/target-and-intermediate/distrusted-root-expired.test", |
eroman | d1c9c9b | 2017-05-04 19:23:45 | [diff] [blame] | 3337 | "data/verify_certificate_chain_unittest/target-and-intermediate/distrusted-root.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3338 | "data/verify_certificate_chain_unittest/target-and-intermediate/main.test", |
Matt Mueller | 67011cdc | 2022-03-04 00:25:38 | [diff] [blame] | 3339 | "data/verify_certificate_chain_unittest/target-and-intermediate/ta-with-constraints.test", |
| 3340 | "data/verify_certificate_chain_unittest/target-and-intermediate/ta-with-expiration.test", |
eroman | d1c9c9b | 2017-05-04 19:23:45 | [diff] [blame] | 3341 | "data/verify_certificate_chain_unittest/target-and-intermediate/unspecified-trust-root.test", |
eroman | 7333d9b | 2017-06-23 01:50:25 | [diff] [blame] | 3342 | "data/verify_certificate_chain_unittest/target-eku-clientauth/any.test", |
| 3343 | "data/verify_certificate_chain_unittest/target-eku-clientauth/chain.pem", |
| 3344 | "data/verify_certificate_chain_unittest/target-eku-clientauth/clientauth.test", |
| 3345 | "data/verify_certificate_chain_unittest/target-eku-clientauth/serverauth.test", |
| 3346 | "data/verify_certificate_chain_unittest/target-eku-none/any.test", |
| 3347 | "data/verify_certificate_chain_unittest/target-eku-none/chain.pem", |
| 3348 | "data/verify_certificate_chain_unittest/target-eku-none/clientauth.test", |
| 3349 | "data/verify_certificate_chain_unittest/target-eku-none/serverauth.test", |
Eric Roman | 5431d70 | 2017-07-26 01:58:18 | [diff] [blame] | 3350 | "data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/chain.pem", |
| 3351 | "data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/main.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3352 | "data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/chain.pem", |
| 3353 | "data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/main.test", |
| 3354 | "data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/chain.pem", |
| 3355 | "data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/main.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3356 | "data/verify_certificate_chain_unittest/target-not-end-entity/chain.pem", |
| 3357 | "data/verify_certificate_chain_unittest/target-not-end-entity/main.test", |
eroman | e789943 | 2017-05-04 16:40:48 | [diff] [blame] | 3358 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.pem", |
| 3359 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.test", |
| 3360 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.pem", |
| 3361 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.test", |
| 3362 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.pem", |
| 3363 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.test", |
| 3364 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.pem", |
| 3365 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.test", |
| 3366 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.pem", |
| 3367 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.test", |
| 3368 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.pem", |
| 3369 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.test", |
| 3370 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.pem", |
| 3371 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.test", |
| 3372 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.pem", |
| 3373 | "data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3374 | "data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/chain.pem", |
| 3375 | "data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/main.test", |
| 3376 | "data/verify_certificate_chain_unittest/target-signed-using-ecdsa/chain.pem", |
| 3377 | "data/verify_certificate_chain_unittest/target-signed-using-ecdsa/main.test", |
| 3378 | "data/verify_certificate_chain_unittest/target-signed-with-md5/chain.pem", |
| 3379 | "data/verify_certificate_chain_unittest/target-signed-with-md5/main.test", |
| 3380 | "data/verify_certificate_chain_unittest/target-unknown-critical-extension/chain.pem", |
| 3381 | "data/verify_certificate_chain_unittest/target-unknown-critical-extension/main.test", |
Matt Mueller | 5eb9b8e7 | 2019-10-23 00:47:31 | [diff] [blame] | 3382 | "data/verify_certificate_chain_unittest/target-wrong-signature-no-authority-key-identifier/chain.pem", |
| 3383 | "data/verify_certificate_chain_unittest/target-wrong-signature-no-authority-key-identifier/main.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3384 | "data/verify_certificate_chain_unittest/target-wrong-signature/chain.pem", |
| 3385 | "data/verify_certificate_chain_unittest/target-wrong-signature/main.test", |
eroman | 178f2c6 | 2017-06-07 01:03:44 | [diff] [blame] | 3386 | "data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/chain.pem", |
| 3387 | "data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/main.test", |
| 3388 | "data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/chain.pem", |
| 3389 | "data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/main.test", |
eroman | 266bda9e | 2017-05-03 01:28:04 | [diff] [blame] | 3390 | "data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/chain.pem", |
| 3391 | "data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/main.test", |
eroman | c1a8b5d0 | 2017-05-03 21:52:10 | [diff] [blame] | 3392 | "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/chain.pem", |
| 3393 | "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/main.test", |
| 3394 | "data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/ta-with-constraints.test", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3395 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-dupe_attr.pem", |
| 3396 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_attr.pem", |
| 3397 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_rdn.pem", |
| 3398 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap.pem", |
| 3399 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-dupe_attr.pem", |
| 3400 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_attr.pem", |
| 3401 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_rdn.pem", |
| 3402 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace.pem", |
| 3403 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-dupe_attr.pem", |
| 3404 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_attr.pem", |
| 3405 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_rdn.pem", |
| 3406 | "data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled.pem", |
| 3407 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-dupe_attr.pem", |
| 3408 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_attr.pem", |
| 3409 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_rdn.pem", |
| 3410 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap.pem", |
| 3411 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-dupe_attr.pem", |
| 3412 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_attr.pem", |
| 3413 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_rdn.pem", |
| 3414 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace.pem", |
| 3415 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_1.pem", |
| 3416 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_2.pem", |
| 3417 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-dupe_attr.pem", |
| 3418 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_attr.pem", |
| 3419 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_rdn.pem", |
| 3420 | "data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled.pem", |
| 3421 | "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-dupe_attr.pem", |
| 3422 | "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_attr.pem", |
| 3423 | "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_rdn.pem", |
| 3424 | "data/verify_name_match_unittest/names/ascii-T61STRING-case_swap.pem", |
| 3425 | "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-dupe_attr.pem", |
| 3426 | "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_attr.pem", |
| 3427 | "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_rdn.pem", |
| 3428 | "data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace.pem", |
| 3429 | "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-dupe_attr.pem", |
| 3430 | "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_attr.pem", |
| 3431 | "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_rdn.pem", |
| 3432 | "data/verify_name_match_unittest/names/ascii-T61STRING-unmangled.pem", |
| 3433 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-dupe_attr.pem", |
| 3434 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_attr.pem", |
| 3435 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_rdn.pem", |
| 3436 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap.pem", |
| 3437 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-dupe_attr.pem", |
| 3438 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_attr.pem", |
| 3439 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_rdn.pem", |
| 3440 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace.pem", |
| 3441 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-dupe_attr.pem", |
| 3442 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_attr.pem", |
| 3443 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_rdn.pem", |
| 3444 | "data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled.pem", |
| 3445 | "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-dupe_attr.pem", |
| 3446 | "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_attr.pem", |
| 3447 | "data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_rdn.pem", |
| 3448 | "data/verify_name_match_unittest/names/ascii-UTF8-case_swap.pem", |
| 3449 | "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-dupe_attr.pem", |
| 3450 | "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_attr.pem", |
| 3451 | "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_rdn.pem", |
| 3452 | "data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace.pem", |
| 3453 | "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-dupe_attr.pem", |
| 3454 | "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_attr.pem", |
| 3455 | "data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_rdn.pem", |
| 3456 | "data/verify_name_match_unittest/names/ascii-UTF8-unmangled.pem", |
| 3457 | "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_1.pem", |
| 3458 | "data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_2.pem", |
David Benjamin | c4dd105 | 2017-12-15 21:23:17 | [diff] [blame] | 3459 | "data/verify_name_match_unittest/names/custom-custom-normalized.pem", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 3460 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-badAttributeType.pem", |
| 3461 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-empty.pem", |
| 3462 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-extradata.pem", |
| 3463 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-onlyOneElement.pem", |
| 3464 | "data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-setNotSequence.pem", |
| 3465 | "data/verify_name_match_unittest/names/invalid-Name-setInsteadOfSequence.pem", |
| 3466 | "data/verify_name_match_unittest/names/invalid-RDN-empty.pem", |
| 3467 | "data/verify_name_match_unittest/names/invalid-RDN-sequenceInsteadOfSet.pem", |
| 3468 | "data/verify_name_match_unittest/names/unicode-mixed-normalized.pem", |
| 3469 | "data/verify_name_match_unittest/names/unicode-mixed-unnormalized.pem", |
| 3470 | "data/verify_name_match_unittest/names/unicode_bmp-BMPSTRING-unmangled.pem", |
| 3471 | "data/verify_name_match_unittest/names/unicode_bmp-UNIVERSALSTRING-unmangled.pem", |
| 3472 | "data/verify_name_match_unittest/names/unicode_bmp-UTF8-unmangled.pem", |
| 3473 | "data/verify_name_match_unittest/names/unicode_supplementary-UNIVERSALSTRING-unmangled.pem", |
| 3474 | "data/verify_name_match_unittest/names/unicode_supplementary-UTF8-unmangled.pem", |
| 3475 | "data/verify_name_match_unittest/names/valid-Name-empty.pem", |
| 3476 | "data/verify_name_match_unittest/names/valid-minimal.pem", |
| 3477 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-spki-params-null.pem", |
| 3478 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-unused-bits-signature.pem", |
| 3479 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecdh-key.pem", |
| 3480 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecmqv-key.pem", |
| 3481 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-rsa-algorithm.pem", |
| 3482 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-wrong-signature-format.pem", |
| 3483 | "data/verify_signed_data_unittest/ecdsa-prime256v1-sha512.pem", |
| 3484 | "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256-corrupted-data.pem", |
| 3485 | "data/verify_signed_data_unittest/ecdsa-secp384r1-sha256.pem", |
| 3486 | "data/verify_signed_data_unittest/ecdsa-using-rsa-key.pem", |
| 3487 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-length.pem", |
| 3488 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-null.pem", |
| 3489 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-key-params-absent.pem", |
| 3490 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-using-pss-key-no-params.pem", |
| 3491 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1-wrong-algorithm.pem", |
| 3492 | "data/verify_signed_data_unittest/rsa-pkcs1-sha1.pem", |
| 3493 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256-key-encoded-ber.pem", |
| 3494 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256-spki-non-null-params.pem", |
| 3495 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-ecdsa-algorithm.pem", |
| 3496 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-id-ea-rsa.pem", |
| 3497 | "data/verify_signed_data_unittest/rsa-pkcs1-sha256.pem", |
| 3498 | "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-no-params.pem", |
| 3499 | "data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-with-null-params.pem", |
| 3500 | "data/verify_signed_data_unittest/rsa-pss-sha1-salt20.pem", |
| 3501 | "data/verify_signed_data_unittest/rsa-pss-sha1-wrong-salt.pem", |
| 3502 | "data/verify_signed_data_unittest/rsa-pss-sha256-mgf1-sha512-salt33.pem", |
| 3503 | "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-params.pem", |
| 3504 | "data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-wrong-params.pem", |
| 3505 | "data/verify_signed_data_unittest/rsa-pss-sha256-salt10.pem", |
| 3506 | "data/verify_signed_data_unittest/rsa-using-ec-key.pem", |
| 3507 | "data/verify_signed_data_unittest/rsa2048-pkcs1-sha512.pem", |
| 3508 | "third_party/nist-pkits/certs/AllCertificatesNoPoliciesTest2EE.crt", |
| 3509 | "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest10EE.crt", |
| 3510 | "third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest13EE.crt", |
| 3511 | "third_party/nist-pkits/certs/AllCertificatesanyPolicyTest11EE.crt", |
| 3512 | "third_party/nist-pkits/certs/AnyPolicyTest14EE.crt", |
| 3513 | "third_party/nist-pkits/certs/BadCRLIssuerNameCACert.crt", |
| 3514 | "third_party/nist-pkits/certs/BadCRLSignatureCACert.crt", |
| 3515 | "third_party/nist-pkits/certs/BadSignedCACert.crt", |
| 3516 | "third_party/nist-pkits/certs/BadnotAfterDateCACert.crt", |
| 3517 | "third_party/nist-pkits/certs/BadnotBeforeDateCACert.crt", |
| 3518 | "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCACert.crt", |
| 3519 | "third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCRLCert.crt", |
| 3520 | "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyCACert.crt", |
| 3521 | "third_party/nist-pkits/certs/BasicSelfIssuedNewKeyOldWithNewCACert.crt", |
| 3522 | "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyCACert.crt", |
| 3523 | "third_party/nist-pkits/certs/BasicSelfIssuedOldKeyNewWithOldCACert.crt", |
| 3524 | "third_party/nist-pkits/certs/CPSPointerQualifierTest20EE.crt", |
| 3525 | "third_party/nist-pkits/certs/DSACACert.crt", |
| 3526 | "third_party/nist-pkits/certs/DSAParametersInheritedCACert.crt", |
| 3527 | "third_party/nist-pkits/certs/DifferentPoliciesTest12EE.crt", |
| 3528 | "third_party/nist-pkits/certs/DifferentPoliciesTest3EE.crt", |
| 3529 | "third_party/nist-pkits/certs/DifferentPoliciesTest4EE.crt", |
| 3530 | "third_party/nist-pkits/certs/DifferentPoliciesTest5EE.crt", |
| 3531 | "third_party/nist-pkits/certs/DifferentPoliciesTest7EE.crt", |
| 3532 | "third_party/nist-pkits/certs/DifferentPoliciesTest8EE.crt", |
| 3533 | "third_party/nist-pkits/certs/DifferentPoliciesTest9EE.crt", |
| 3534 | "third_party/nist-pkits/certs/GeneralizedTimeCRLnextUpdateCACert.crt", |
| 3535 | "third_party/nist-pkits/certs/GoodCACert.crt", |
| 3536 | "third_party/nist-pkits/certs/GoodsubCACert.crt", |
| 3537 | "third_party/nist-pkits/certs/GoodsubCAPanyPolicyMapping1to2CACert.crt", |
| 3538 | "third_party/nist-pkits/certs/InvalidBadCRLIssuerNameTest5EE.crt", |
| 3539 | "third_party/nist-pkits/certs/InvalidBadCRLSignatureTest4EE.crt", |
| 3540 | "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest7EE.crt", |
| 3541 | "third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest8EE.crt", |
| 3542 | "third_party/nist-pkits/certs/InvalidBasicSelfIssuedNewWithOldTest5EE.crt", |
| 3543 | "third_party/nist-pkits/certs/InvalidBasicSelfIssuedOldWithNewTest2EE.crt", |
| 3544 | "third_party/nist-pkits/certs/InvalidCASignatureTest2EE.crt", |
| 3545 | "third_party/nist-pkits/certs/InvalidCAnotAfterDateTest5EE.crt", |
| 3546 | "third_party/nist-pkits/certs/InvalidCAnotBeforeDateTest1EE.crt", |
| 3547 | "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest31EE.crt", |
| 3548 | "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest33EE.crt", |
| 3549 | "third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest38EE.crt", |
| 3550 | "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest28EE.crt", |
| 3551 | "third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest29EE.crt", |
| 3552 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest10EE.crt", |
| 3553 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest12EE.crt", |
| 3554 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest13EE.crt", |
| 3555 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest15EE.crt", |
| 3556 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest16EE.crt", |
| 3557 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest17EE.crt", |
| 3558 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest20EE.crt", |
| 3559 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest2EE.crt", |
| 3560 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest3EE.crt", |
| 3561 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest7EE.crt", |
| 3562 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest8EE.crt", |
| 3563 | "third_party/nist-pkits/certs/InvalidDNnameConstraintsTest9EE.crt", |
| 3564 | "third_party/nist-pkits/certs/InvalidDSASignatureTest6EE.crt", |
| 3565 | "third_party/nist-pkits/certs/InvalidEESignatureTest3EE.crt", |
| 3566 | "third_party/nist-pkits/certs/InvalidEEnotAfterDateTest6EE.crt", |
| 3567 | "third_party/nist-pkits/certs/InvalidEEnotBeforeDateTest2EE.crt", |
| 3568 | "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest23EE.crt", |
| 3569 | "third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest26EE.crt", |
| 3570 | "third_party/nist-pkits/certs/InvalidLongSerialNumberTest18EE.crt", |
| 3571 | "third_party/nist-pkits/certs/InvalidMappingFromanyPolicyTest7EE.crt", |
| 3572 | "third_party/nist-pkits/certs/InvalidMappingToanyPolicyTest8EE.crt", |
| 3573 | "third_party/nist-pkits/certs/InvalidMissingCRLTest1EE.crt", |
| 3574 | "third_party/nist-pkits/certs/InvalidMissingbasicConstraintsTest1EE.crt", |
| 3575 | "third_party/nist-pkits/certs/InvalidNameChainingOrderTest2EE.crt", |
| 3576 | "third_party/nist-pkits/certs/InvalidNameChainingTest1EE.crt", |
| 3577 | "third_party/nist-pkits/certs/InvalidNegativeSerialNumberTest15EE.crt", |
| 3578 | "third_party/nist-pkits/certs/InvalidOldCRLnextUpdateTest11EE.crt", |
| 3579 | "third_party/nist-pkits/certs/InvalidPolicyMappingTest10EE.crt", |
| 3580 | "third_party/nist-pkits/certs/InvalidPolicyMappingTest2EE.crt", |
| 3581 | "third_party/nist-pkits/certs/InvalidPolicyMappingTest4EE.crt", |
| 3582 | "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest22EE.crt", |
| 3583 | "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest24EE.crt", |
| 3584 | "third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest26EE.crt", |
| 3585 | "third_party/nist-pkits/certs/InvalidRevokedCATest2EE.crt", |
| 3586 | "third_party/nist-pkits/certs/InvalidRevokedEETest3EE.crt", |
| 3587 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest10EE.crt", |
| 3588 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest8EE.crt", |
| 3589 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest10EE.crt", |
| 3590 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest11EE.crt", |
| 3591 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest8EE.crt", |
| 3592 | "third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest9EE.crt", |
| 3593 | "third_party/nist-pkits/certs/InvalidSelfIssuedpathLenConstraintTest16EE.crt", |
| 3594 | "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest7EE.crt", |
| 3595 | "third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest8EE.crt", |
| 3596 | "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest20EE.crt", |
| 3597 | "third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest21EE.crt", |
| 3598 | "third_party/nist-pkits/certs/InvalidURInameConstraintsTest35EE.crt", |
| 3599 | "third_party/nist-pkits/certs/InvalidURInameConstraintsTest37EE.crt", |
| 3600 | "third_party/nist-pkits/certs/InvalidUnknownCRLEntryExtensionTest8EE.crt", |
| 3601 | "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest10EE.crt", |
| 3602 | "third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest9EE.crt", |
| 3603 | "third_party/nist-pkits/certs/InvalidUnknownCriticalCertificateExtensionTest2EE.crt", |
| 3604 | "third_party/nist-pkits/certs/InvalidWrongCRLTest6EE.crt", |
| 3605 | "third_party/nist-pkits/certs/InvalidcAFalseTest2EE.crt", |
| 3606 | "third_party/nist-pkits/certs/InvalidcAFalseTest3EE.crt", |
| 3607 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest27EE.crt", |
| 3608 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest31EE.crt", |
| 3609 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest32EE.crt", |
| 3610 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest34EE.crt", |
| 3611 | "third_party/nist-pkits/certs/InvalidcRLIssuerTest35EE.crt", |
| 3612 | "third_party/nist-pkits/certs/InvaliddeltaCRLIndicatorNoBaseTest1EE.crt", |
| 3613 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest10EE.crt", |
| 3614 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest3EE.crt", |
| 3615 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest4EE.crt", |
| 3616 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest6EE.crt", |
| 3617 | "third_party/nist-pkits/certs/InvaliddeltaCRLTest9EE.crt", |
| 3618 | "third_party/nist-pkits/certs/InvaliddistributionPointTest2EE.crt", |
| 3619 | "third_party/nist-pkits/certs/InvaliddistributionPointTest3EE.crt", |
| 3620 | "third_party/nist-pkits/certs/InvaliddistributionPointTest6EE.crt", |
| 3621 | "third_party/nist-pkits/certs/InvaliddistributionPointTest8EE.crt", |
| 3622 | "third_party/nist-pkits/certs/InvaliddistributionPointTest9EE.crt", |
| 3623 | "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest1EE.crt", |
| 3624 | "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest4EE.crt", |
| 3625 | "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest5EE.crt", |
| 3626 | "third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest6EE.crt", |
| 3627 | "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest1EE.crt", |
| 3628 | "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest3EE.crt", |
| 3629 | "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest5EE.crt", |
| 3630 | "third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest6EE.crt", |
| 3631 | "third_party/nist-pkits/certs/InvalidkeyUsageCriticalcRLSignFalseTest4EE.crt", |
| 3632 | "third_party/nist-pkits/certs/InvalidkeyUsageCriticalkeyCertSignFalseTest1EE.crt", |
| 3633 | "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalcRLSignFalseTest5EE.crt", |
| 3634 | "third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalkeyCertSignFalseTest2EE.crt", |
| 3635 | "third_party/nist-pkits/certs/InvalidonlyContainsAttributeCertsTest14EE.crt", |
| 3636 | "third_party/nist-pkits/certs/InvalidonlyContainsCACertsTest12EE.crt", |
| 3637 | "third_party/nist-pkits/certs/InvalidonlyContainsUserCertsTest11EE.crt", |
| 3638 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest15EE.crt", |
| 3639 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest16EE.crt", |
| 3640 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest17EE.crt", |
| 3641 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest20EE.crt", |
| 3642 | "third_party/nist-pkits/certs/InvalidonlySomeReasonsTest21EE.crt", |
| 3643 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest10EE.crt", |
| 3644 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest11EE.crt", |
| 3645 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest12EE.crt", |
| 3646 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest5EE.crt", |
| 3647 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest6EE.crt", |
| 3648 | "third_party/nist-pkits/certs/InvalidpathLenConstraintTest9EE.crt", |
| 3649 | "third_party/nist-pkits/certs/Invalidpre2000CRLnextUpdateTest12EE.crt", |
| 3650 | "third_party/nist-pkits/certs/Invalidpre2000UTCEEnotAfterDateTest7EE.crt", |
| 3651 | "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest3EE.crt", |
| 3652 | "third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest5EE.crt", |
| 3653 | "third_party/nist-pkits/certs/LongSerialNumberCACert.crt", |
| 3654 | "third_party/nist-pkits/certs/Mapping1to2CACert.crt", |
| 3655 | "third_party/nist-pkits/certs/MappingFromanyPolicyCACert.crt", |
| 3656 | "third_party/nist-pkits/certs/MappingToanyPolicyCACert.crt", |
| 3657 | "third_party/nist-pkits/certs/MissingbasicConstraintsCACert.crt", |
| 3658 | "third_party/nist-pkits/certs/NameOrderingCACert.crt", |
| 3659 | "third_party/nist-pkits/certs/NegativeSerialNumberCACert.crt", |
| 3660 | "third_party/nist-pkits/certs/NoCRLCACert.crt", |
| 3661 | "third_party/nist-pkits/certs/NoPoliciesCACert.crt", |
| 3662 | "third_party/nist-pkits/certs/NoissuingDistributionPointCACert.crt", |
| 3663 | "third_party/nist-pkits/certs/OldCRLnextUpdateCACert.crt", |
| 3664 | "third_party/nist-pkits/certs/OverlappingPoliciesTest6EE.crt", |
| 3665 | "third_party/nist-pkits/certs/P12Mapping1to3CACert.crt", |
| 3666 | "third_party/nist-pkits/certs/P12Mapping1to3subCACert.crt", |
| 3667 | "third_party/nist-pkits/certs/P12Mapping1to3subsubCACert.crt", |
| 3668 | "third_party/nist-pkits/certs/P1Mapping1to234CACert.crt", |
| 3669 | "third_party/nist-pkits/certs/P1Mapping1to234subCACert.crt", |
| 3670 | "third_party/nist-pkits/certs/P1anyPolicyMapping1to2CACert.crt", |
| 3671 | "third_party/nist-pkits/certs/PanyPolicyMapping1to2CACert.crt", |
| 3672 | "third_party/nist-pkits/certs/PoliciesP1234CACert.crt", |
| 3673 | "third_party/nist-pkits/certs/PoliciesP1234subCAP123Cert.crt", |
| 3674 | "third_party/nist-pkits/certs/PoliciesP1234subsubCAP123P12Cert.crt", |
| 3675 | "third_party/nist-pkits/certs/PoliciesP123CACert.crt", |
| 3676 | "third_party/nist-pkits/certs/PoliciesP123subCAP12Cert.crt", |
| 3677 | "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P1Cert.crt", |
| 3678 | "third_party/nist-pkits/certs/PoliciesP123subsubCAP12P2Cert.crt", |
| 3679 | "third_party/nist-pkits/certs/PoliciesP123subsubsubCAP12P2P1Cert.crt", |
| 3680 | "third_party/nist-pkits/certs/PoliciesP12CACert.crt", |
| 3681 | "third_party/nist-pkits/certs/PoliciesP12subCAP1Cert.crt", |
| 3682 | "third_party/nist-pkits/certs/PoliciesP12subsubCAP1P2Cert.crt", |
| 3683 | "third_party/nist-pkits/certs/PoliciesP2subCA2Cert.crt", |
| 3684 | "third_party/nist-pkits/certs/PoliciesP2subCACert.crt", |
| 3685 | "third_party/nist-pkits/certs/PoliciesP3CACert.crt", |
| 3686 | "third_party/nist-pkits/certs/RFC3280MandatoryAttributeTypesCACert.crt", |
| 3687 | "third_party/nist-pkits/certs/RFC3280OptionalAttributeTypesCACert.crt", |
| 3688 | "third_party/nist-pkits/certs/RevokedsubCACert.crt", |
| 3689 | "third_party/nist-pkits/certs/RolloverfromPrintableStringtoUTF8StringCACert.crt", |
| 3690 | "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CRLSigningCert.crt", |
| 3691 | "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CertificateSigningCACert.crt", |
| 3692 | "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCRLSigningCert.crt", |
| 3693 | "third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCertificateSigningCACert.crt", |
| 3694 | "third_party/nist-pkits/certs/TrustAnchorRootCertificate.crt", |
| 3695 | "third_party/nist-pkits/certs/TwoCRLsCACert.crt", |
| 3696 | "third_party/nist-pkits/certs/UIDCACert.crt", |
| 3697 | "third_party/nist-pkits/certs/UTF8StringCaseInsensitiveMatchCACert.crt", |
| 3698 | "third_party/nist-pkits/certs/UTF8StringEncodedNamesCACert.crt", |
| 3699 | "third_party/nist-pkits/certs/UnknownCRLEntryExtensionCACert.crt", |
| 3700 | "third_party/nist-pkits/certs/UnknownCRLExtensionCACert.crt", |
| 3701 | "third_party/nist-pkits/certs/UserNoticeQualifierTest15EE.crt", |
| 3702 | "third_party/nist-pkits/certs/UserNoticeQualifierTest16EE.crt", |
| 3703 | "third_party/nist-pkits/certs/UserNoticeQualifierTest17EE.crt", |
| 3704 | "third_party/nist-pkits/certs/UserNoticeQualifierTest18EE.crt", |
| 3705 | "third_party/nist-pkits/certs/UserNoticeQualifierTest19EE.crt", |
| 3706 | "third_party/nist-pkits/certs/ValidBasicSelfIssuedCRLSigningKeyTest6EE.crt", |
| 3707 | "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest3EE.crt", |
| 3708 | "third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest4EE.crt", |
| 3709 | "third_party/nist-pkits/certs/ValidBasicSelfIssuedOldWithNewTest1EE.crt", |
| 3710 | "third_party/nist-pkits/certs/ValidCertificatePathTest1EE.crt", |
| 3711 | "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest30EE.crt", |
| 3712 | "third_party/nist-pkits/certs/ValidDNSnameConstraintsTest32EE.crt", |
| 3713 | "third_party/nist-pkits/certs/ValidDNandRFC822nameConstraintsTest27EE.crt", |
| 3714 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest11EE.crt", |
| 3715 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest14EE.crt", |
| 3716 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest18EE.crt", |
| 3717 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest19EE.crt", |
| 3718 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest1EE.crt", |
| 3719 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest4EE.crt", |
| 3720 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest5EE.crt", |
| 3721 | "third_party/nist-pkits/certs/ValidDNnameConstraintsTest6EE.crt", |
| 3722 | "third_party/nist-pkits/certs/ValidDSAParameterInheritanceTest5EE.crt", |
| 3723 | "third_party/nist-pkits/certs/ValidDSASignaturesTest4EE.crt", |
| 3724 | "third_party/nist-pkits/certs/ValidGeneralizedTimeCRLnextUpdateTest13EE.crt", |
| 3725 | "third_party/nist-pkits/certs/ValidGeneralizedTimenotAfterDateTest8EE.crt", |
| 3726 | "third_party/nist-pkits/certs/ValidGeneralizedTimenotBeforeDateTest4EE.crt", |
| 3727 | "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest22EE.crt", |
| 3728 | "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest24EE.crt", |
| 3729 | "third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest25EE.crt", |
| 3730 | "third_party/nist-pkits/certs/ValidLongSerialNumberTest16EE.crt", |
| 3731 | "third_party/nist-pkits/certs/ValidLongSerialNumberTest17EE.crt", |
| 3732 | "third_party/nist-pkits/certs/ValidNameChainingCapitalizationTest5EE.crt", |
| 3733 | "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest3EE.crt", |
| 3734 | "third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest4EE.crt", |
| 3735 | "third_party/nist-pkits/certs/ValidNameUIDsTest6EE.crt", |
| 3736 | "third_party/nist-pkits/certs/ValidNegativeSerialNumberTest14EE.crt", |
| 3737 | "third_party/nist-pkits/certs/ValidNoissuingDistributionPointTest10EE.crt", |
| 3738 | "third_party/nist-pkits/certs/ValidPolicyMappingTest11EE.crt", |
| 3739 | "third_party/nist-pkits/certs/ValidPolicyMappingTest12EE.crt", |
| 3740 | "third_party/nist-pkits/certs/ValidPolicyMappingTest13EE.crt", |
| 3741 | "third_party/nist-pkits/certs/ValidPolicyMappingTest14EE.crt", |
| 3742 | "third_party/nist-pkits/certs/ValidPolicyMappingTest1EE.crt", |
| 3743 | "third_party/nist-pkits/certs/ValidPolicyMappingTest3EE.crt", |
| 3744 | "third_party/nist-pkits/certs/ValidPolicyMappingTest5EE.crt", |
| 3745 | "third_party/nist-pkits/certs/ValidPolicyMappingTest6EE.crt", |
| 3746 | "third_party/nist-pkits/certs/ValidPolicyMappingTest9EE.crt", |
| 3747 | "third_party/nist-pkits/certs/ValidRFC3280MandatoryAttributeTypesTest7EE.crt", |
| 3748 | "third_party/nist-pkits/certs/ValidRFC3280OptionalAttributeTypesTest8EE.crt", |
| 3749 | "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest21EE.crt", |
| 3750 | "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest23EE.crt", |
| 3751 | "third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest25EE.crt", |
| 3752 | "third_party/nist-pkits/certs/ValidRolloverfromPrintableStringtoUTF8StringTest10EE.crt", |
| 3753 | "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest7EE.crt", |
| 3754 | "third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest9EE.crt", |
| 3755 | "third_party/nist-pkits/certs/ValidSelfIssuedinhibitPolicyMappingTest7EE.crt", |
| 3756 | "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest15EE.crt", |
| 3757 | "third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest17EE.crt", |
| 3758 | "third_party/nist-pkits/certs/ValidSelfIssuedrequireExplicitPolicyTest6EE.crt", |
| 3759 | "third_party/nist-pkits/certs/ValidSeparateCertificateandCRLKeysTest19EE.crt", |
| 3760 | "third_party/nist-pkits/certs/ValidTwoCRLsTest7EE.crt", |
| 3761 | "third_party/nist-pkits/certs/ValidURInameConstraintsTest34EE.crt", |
| 3762 | "third_party/nist-pkits/certs/ValidURInameConstraintsTest36EE.crt", |
| 3763 | "third_party/nist-pkits/certs/ValidUTF8StringCaseInsensitiveMatchTest11EE.crt", |
| 3764 | "third_party/nist-pkits/certs/ValidUTF8StringEncodedNamesTest9EE.crt", |
| 3765 | "third_party/nist-pkits/certs/ValidUnknownNotCriticalCertificateExtensionTest1EE.crt", |
| 3766 | "third_party/nist-pkits/certs/ValidbasicConstraintsNotCriticalTest4EE.crt", |
| 3767 | "third_party/nist-pkits/certs/ValidcRLIssuerTest28EE.crt", |
| 3768 | "third_party/nist-pkits/certs/ValidcRLIssuerTest29EE.crt", |
| 3769 | "third_party/nist-pkits/certs/ValidcRLIssuerTest30EE.crt", |
| 3770 | "third_party/nist-pkits/certs/ValidcRLIssuerTest33EE.crt", |
| 3771 | "third_party/nist-pkits/certs/ValiddeltaCRLTest2EE.crt", |
| 3772 | "third_party/nist-pkits/certs/ValiddeltaCRLTest5EE.crt", |
| 3773 | "third_party/nist-pkits/certs/ValiddeltaCRLTest7EE.crt", |
| 3774 | "third_party/nist-pkits/certs/ValiddeltaCRLTest8EE.crt", |
| 3775 | "third_party/nist-pkits/certs/ValiddistributionPointTest1EE.crt", |
| 3776 | "third_party/nist-pkits/certs/ValiddistributionPointTest4EE.crt", |
| 3777 | "third_party/nist-pkits/certs/ValiddistributionPointTest5EE.crt", |
| 3778 | "third_party/nist-pkits/certs/ValiddistributionPointTest7EE.crt", |
| 3779 | "third_party/nist-pkits/certs/ValidinhibitAnyPolicyTest2EE.crt", |
| 3780 | "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest2EE.crt", |
| 3781 | "third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest4EE.crt", |
| 3782 | "third_party/nist-pkits/certs/ValidkeyUsageNotCriticalTest3EE.crt", |
| 3783 | "third_party/nist-pkits/certs/ValidonlyContainsCACertsTest13EE.crt", |
| 3784 | "third_party/nist-pkits/certs/ValidonlySomeReasonsTest18EE.crt", |
| 3785 | "third_party/nist-pkits/certs/ValidonlySomeReasonsTest19EE.crt", |
| 3786 | "third_party/nist-pkits/certs/ValidpathLenConstraintTest13EE.crt", |
| 3787 | "third_party/nist-pkits/certs/ValidpathLenConstraintTest14EE.crt", |
| 3788 | "third_party/nist-pkits/certs/ValidpathLenConstraintTest7EE.crt", |
| 3789 | "third_party/nist-pkits/certs/ValidpathLenConstraintTest8EE.crt", |
| 3790 | "third_party/nist-pkits/certs/Validpre2000UTCnotBeforeDateTest3EE.crt", |
| 3791 | "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest1EE.crt", |
| 3792 | "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest2EE.crt", |
| 3793 | "third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest4EE.crt", |
| 3794 | "third_party/nist-pkits/certs/WrongCRLCACert.crt", |
| 3795 | "third_party/nist-pkits/certs/anyPolicyCACert.crt", |
| 3796 | "third_party/nist-pkits/certs/basicConstraintsCriticalcAFalseCACert.crt", |
| 3797 | "third_party/nist-pkits/certs/basicConstraintsNotCriticalCACert.crt", |
| 3798 | "third_party/nist-pkits/certs/basicConstraintsNotCriticalcAFalseCACert.crt", |
| 3799 | "third_party/nist-pkits/certs/deltaCRLCA1Cert.crt", |
| 3800 | "third_party/nist-pkits/certs/deltaCRLCA2Cert.crt", |
| 3801 | "third_party/nist-pkits/certs/deltaCRLCA3Cert.crt", |
| 3802 | "third_party/nist-pkits/certs/deltaCRLIndicatorNoBaseCACert.crt", |
| 3803 | "third_party/nist-pkits/certs/distributionPoint1CACert.crt", |
| 3804 | "third_party/nist-pkits/certs/distributionPoint2CACert.crt", |
| 3805 | "third_party/nist-pkits/certs/indirectCRLCA1Cert.crt", |
| 3806 | "third_party/nist-pkits/certs/indirectCRLCA2Cert.crt", |
| 3807 | "third_party/nist-pkits/certs/indirectCRLCA3Cert.crt", |
| 3808 | "third_party/nist-pkits/certs/indirectCRLCA3cRLIssuerCert.crt", |
| 3809 | "third_party/nist-pkits/certs/indirectCRLCA4Cert.crt", |
| 3810 | "third_party/nist-pkits/certs/indirectCRLCA4cRLIssuerCert.crt", |
| 3811 | "third_party/nist-pkits/certs/indirectCRLCA5Cert.crt", |
| 3812 | "third_party/nist-pkits/certs/indirectCRLCA6Cert.crt", |
| 3813 | "third_party/nist-pkits/certs/inhibitAnyPolicy0CACert.crt", |
| 3814 | "third_party/nist-pkits/certs/inhibitAnyPolicy1CACert.crt", |
| 3815 | "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedCACert.crt", |
| 3816 | "third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedsubCA2Cert.crt", |
| 3817 | "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA1Cert.crt", |
| 3818 | "third_party/nist-pkits/certs/inhibitAnyPolicy1subCA2Cert.crt", |
| 3819 | "third_party/nist-pkits/certs/inhibitAnyPolicy1subCAIAP5Cert.crt", |
| 3820 | "third_party/nist-pkits/certs/inhibitAnyPolicy1subsubCA2Cert.crt", |
| 3821 | "third_party/nist-pkits/certs/inhibitAnyPolicy5CACert.crt", |
| 3822 | "third_party/nist-pkits/certs/inhibitAnyPolicy5subCACert.crt", |
| 3823 | "third_party/nist-pkits/certs/inhibitAnyPolicy5subsubCACert.crt", |
| 3824 | "third_party/nist-pkits/certs/inhibitAnyPolicyTest3EE.crt", |
| 3825 | "third_party/nist-pkits/certs/inhibitPolicyMapping0CACert.crt", |
| 3826 | "third_party/nist-pkits/certs/inhibitPolicyMapping0subCACert.crt", |
| 3827 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12CACert.crt", |
| 3828 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCACert.crt", |
| 3829 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCAIPM5Cert.crt", |
| 3830 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCACert.crt", |
| 3831 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCAIPM5Cert.crt", |
| 3832 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1CACert.crt", |
| 3833 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedCACert.crt", |
| 3834 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedsubCACert.crt", |
| 3835 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subCACert.crt", |
| 3836 | "third_party/nist-pkits/certs/inhibitPolicyMapping1P1subsubCACert.crt", |
| 3837 | "third_party/nist-pkits/certs/inhibitPolicyMapping5CACert.crt", |
| 3838 | "third_party/nist-pkits/certs/inhibitPolicyMapping5subCACert.crt", |
| 3839 | "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubCACert.crt", |
| 3840 | "third_party/nist-pkits/certs/inhibitPolicyMapping5subsubsubCACert.crt", |
| 3841 | "third_party/nist-pkits/certs/keyUsageCriticalcRLSignFalseCACert.crt", |
| 3842 | "third_party/nist-pkits/certs/keyUsageCriticalkeyCertSignFalseCACert.crt", |
| 3843 | "third_party/nist-pkits/certs/keyUsageNotCriticalCACert.crt", |
| 3844 | "third_party/nist-pkits/certs/keyUsageNotCriticalcRLSignFalseCACert.crt", |
| 3845 | "third_party/nist-pkits/certs/keyUsageNotCriticalkeyCertSignFalseCACert.crt", |
| 3846 | "third_party/nist-pkits/certs/nameConstraintsDN1CACert.crt", |
| 3847 | "third_party/nist-pkits/certs/nameConstraintsDN1SelfIssuedCACert.crt", |
| 3848 | "third_party/nist-pkits/certs/nameConstraintsDN1subCA1Cert.crt", |
| 3849 | "third_party/nist-pkits/certs/nameConstraintsDN1subCA2Cert.crt", |
| 3850 | "third_party/nist-pkits/certs/nameConstraintsDN1subCA3Cert.crt", |
| 3851 | "third_party/nist-pkits/certs/nameConstraintsDN2CACert.crt", |
| 3852 | "third_party/nist-pkits/certs/nameConstraintsDN3CACert.crt", |
| 3853 | "third_party/nist-pkits/certs/nameConstraintsDN3subCA1Cert.crt", |
| 3854 | "third_party/nist-pkits/certs/nameConstraintsDN3subCA2Cert.crt", |
| 3855 | "third_party/nist-pkits/certs/nameConstraintsDN4CACert.crt", |
| 3856 | "third_party/nist-pkits/certs/nameConstraintsDN5CACert.crt", |
| 3857 | "third_party/nist-pkits/certs/nameConstraintsDNS1CACert.crt", |
| 3858 | "third_party/nist-pkits/certs/nameConstraintsDNS2CACert.crt", |
| 3859 | "third_party/nist-pkits/certs/nameConstraintsRFC822CA1Cert.crt", |
| 3860 | "third_party/nist-pkits/certs/nameConstraintsRFC822CA2Cert.crt", |
| 3861 | "third_party/nist-pkits/certs/nameConstraintsRFC822CA3Cert.crt", |
| 3862 | "third_party/nist-pkits/certs/nameConstraintsURI1CACert.crt", |
| 3863 | "third_party/nist-pkits/certs/nameConstraintsURI2CACert.crt", |
| 3864 | "third_party/nist-pkits/certs/onlyContainsAttributeCertsCACert.crt", |
| 3865 | "third_party/nist-pkits/certs/onlyContainsCACertsCACert.crt", |
| 3866 | "third_party/nist-pkits/certs/onlyContainsUserCertsCACert.crt", |
| 3867 | "third_party/nist-pkits/certs/onlySomeReasonsCA1Cert.crt", |
| 3868 | "third_party/nist-pkits/certs/onlySomeReasonsCA2Cert.crt", |
| 3869 | "third_party/nist-pkits/certs/onlySomeReasonsCA3Cert.crt", |
| 3870 | "third_party/nist-pkits/certs/onlySomeReasonsCA4Cert.crt", |
| 3871 | "third_party/nist-pkits/certs/pathLenConstraint0CACert.crt", |
| 3872 | "third_party/nist-pkits/certs/pathLenConstraint0SelfIssuedCACert.crt", |
| 3873 | "third_party/nist-pkits/certs/pathLenConstraint0subCA2Cert.crt", |
| 3874 | "third_party/nist-pkits/certs/pathLenConstraint0subCACert.crt", |
| 3875 | "third_party/nist-pkits/certs/pathLenConstraint1CACert.crt", |
| 3876 | "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedCACert.crt", |
| 3877 | "third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedsubCACert.crt", |
| 3878 | "third_party/nist-pkits/certs/pathLenConstraint1subCACert.crt", |
| 3879 | "third_party/nist-pkits/certs/pathLenConstraint6CACert.crt", |
| 3880 | "third_party/nist-pkits/certs/pathLenConstraint6subCA0Cert.crt", |
| 3881 | "third_party/nist-pkits/certs/pathLenConstraint6subCA1Cert.crt", |
| 3882 | "third_party/nist-pkits/certs/pathLenConstraint6subCA4Cert.crt", |
| 3883 | "third_party/nist-pkits/certs/pathLenConstraint6subsubCA00Cert.crt", |
| 3884 | "third_party/nist-pkits/certs/pathLenConstraint6subsubCA11Cert.crt", |
| 3885 | "third_party/nist-pkits/certs/pathLenConstraint6subsubCA41Cert.crt", |
| 3886 | "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA11XCert.crt", |
| 3887 | "third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA41XCert.crt", |
| 3888 | "third_party/nist-pkits/certs/pre2000CRLnextUpdateCACert.crt", |
| 3889 | "third_party/nist-pkits/certs/requireExplicitPolicy0CACert.crt", |
| 3890 | "third_party/nist-pkits/certs/requireExplicitPolicy0subCACert.crt", |
| 3891 | "third_party/nist-pkits/certs/requireExplicitPolicy0subsubCACert.crt", |
| 3892 | "third_party/nist-pkits/certs/requireExplicitPolicy0subsubsubCACert.crt", |
| 3893 | "third_party/nist-pkits/certs/requireExplicitPolicy10CACert.crt", |
| 3894 | "third_party/nist-pkits/certs/requireExplicitPolicy10subCACert.crt", |
| 3895 | "third_party/nist-pkits/certs/requireExplicitPolicy10subsubCACert.crt", |
| 3896 | "third_party/nist-pkits/certs/requireExplicitPolicy10subsubsubCACert.crt", |
| 3897 | "third_party/nist-pkits/certs/requireExplicitPolicy2CACert.crt", |
| 3898 | "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedCACert.crt", |
| 3899 | "third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedsubCACert.crt", |
| 3900 | "third_party/nist-pkits/certs/requireExplicitPolicy2subCACert.crt", |
| 3901 | "third_party/nist-pkits/certs/requireExplicitPolicy4CACert.crt", |
| 3902 | "third_party/nist-pkits/certs/requireExplicitPolicy4subCACert.crt", |
| 3903 | "third_party/nist-pkits/certs/requireExplicitPolicy4subsubCACert.crt", |
| 3904 | "third_party/nist-pkits/certs/requireExplicitPolicy4subsubsubCACert.crt", |
| 3905 | "third_party/nist-pkits/certs/requireExplicitPolicy5CACert.crt", |
| 3906 | "third_party/nist-pkits/certs/requireExplicitPolicy5subCACert.crt", |
| 3907 | "third_party/nist-pkits/certs/requireExplicitPolicy5subsubCACert.crt", |
| 3908 | "third_party/nist-pkits/certs/requireExplicitPolicy5subsubsubCACert.crt", |
| 3909 | "third_party/nist-pkits/certs/requireExplicitPolicy7CACert.crt", |
| 3910 | "third_party/nist-pkits/certs/requireExplicitPolicy7subCARE2Cert.crt", |
| 3911 | "third_party/nist-pkits/certs/requireExplicitPolicy7subsubCARE2RE4Cert.crt", |
| 3912 | "third_party/nist-pkits/certs/requireExplicitPolicy7subsubsubCARE2RE4Cert.crt", |
| 3913 | "third_party/nist-pkits/crls/BadCRLIssuerNameCACRL.crl", |
| 3914 | "third_party/nist-pkits/crls/BadCRLSignatureCACRL.crl", |
| 3915 | "third_party/nist-pkits/crls/BadSignedCACRL.crl", |
| 3916 | "third_party/nist-pkits/crls/BadnotAfterDateCACRL.crl", |
| 3917 | "third_party/nist-pkits/crls/BadnotBeforeDateCACRL.crl", |
| 3918 | "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCACRL.crl", |
| 3919 | "third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCRLCertCRL.crl", |
| 3920 | "third_party/nist-pkits/crls/BasicSelfIssuedNewKeyCACRL.crl", |
| 3921 | "third_party/nist-pkits/crls/BasicSelfIssuedOldKeyCACRL.crl", |
| 3922 | "third_party/nist-pkits/crls/BasicSelfIssuedOldKeySelfIssuedCertCRL.crl", |
| 3923 | "third_party/nist-pkits/crls/DSACACRL.crl", |
| 3924 | "third_party/nist-pkits/crls/DSAParametersInheritedCACRL.crl", |
| 3925 | "third_party/nist-pkits/crls/GeneralizedTimeCRLnextUpdateCACRL.crl", |
| 3926 | "third_party/nist-pkits/crls/GoodCACRL.crl", |
| 3927 | "third_party/nist-pkits/crls/GoodsubCACRL.crl", |
| 3928 | "third_party/nist-pkits/crls/GoodsubCAPanyPolicyMapping1to2CACRL.crl", |
| 3929 | "third_party/nist-pkits/crls/LongSerialNumberCACRL.crl", |
| 3930 | "third_party/nist-pkits/crls/Mapping1to2CACRL.crl", |
| 3931 | "third_party/nist-pkits/crls/MappingFromanyPolicyCACRL.crl", |
| 3932 | "third_party/nist-pkits/crls/MappingToanyPolicyCACRL.crl", |
| 3933 | "third_party/nist-pkits/crls/MissingbasicConstraintsCACRL.crl", |
| 3934 | "third_party/nist-pkits/crls/NameOrderCACRL.crl", |
| 3935 | "third_party/nist-pkits/crls/NegativeSerialNumberCACRL.crl", |
| 3936 | "third_party/nist-pkits/crls/NoPoliciesCACRL.crl", |
| 3937 | "third_party/nist-pkits/crls/NoissuingDistributionPointCACRL.crl", |
| 3938 | "third_party/nist-pkits/crls/OldCRLnextUpdateCACRL.crl", |
| 3939 | "third_party/nist-pkits/crls/P12Mapping1to3CACRL.crl", |
| 3940 | "third_party/nist-pkits/crls/P12Mapping1to3subCACRL.crl", |
| 3941 | "third_party/nist-pkits/crls/P12Mapping1to3subsubCACRL.crl", |
| 3942 | "third_party/nist-pkits/crls/P1Mapping1to234CACRL.crl", |
| 3943 | "third_party/nist-pkits/crls/P1Mapping1to234subCACRL.crl", |
| 3944 | "third_party/nist-pkits/crls/P1anyPolicyMapping1to2CACRL.crl", |
| 3945 | "third_party/nist-pkits/crls/PanyPolicyMapping1to2CACRL.crl", |
| 3946 | "third_party/nist-pkits/crls/PoliciesP1234CACRL.crl", |
| 3947 | "third_party/nist-pkits/crls/PoliciesP1234subCAP123CRL.crl", |
| 3948 | "third_party/nist-pkits/crls/PoliciesP1234subsubCAP123P12CRL.crl", |
| 3949 | "third_party/nist-pkits/crls/PoliciesP123CACRL.crl", |
| 3950 | "third_party/nist-pkits/crls/PoliciesP123subCAP12CRL.crl", |
| 3951 | "third_party/nist-pkits/crls/PoliciesP123subsubCAP12P1CRL.crl", |
| 3952 | "third_party/nist-pkits/crls/PoliciesP123subsubCAP2P2CRL.crl", |
| 3953 | "third_party/nist-pkits/crls/PoliciesP123subsubsubCAP12P2P1CRL.crl", |
| 3954 | "third_party/nist-pkits/crls/PoliciesP12CACRL.crl", |
| 3955 | "third_party/nist-pkits/crls/PoliciesP12subCAP1CRL.crl", |
| 3956 | "third_party/nist-pkits/crls/PoliciesP12subsubCAP1P2CRL.crl", |
| 3957 | "third_party/nist-pkits/crls/PoliciesP2subCA2CRL.crl", |
| 3958 | "third_party/nist-pkits/crls/PoliciesP2subCACRL.crl", |
| 3959 | "third_party/nist-pkits/crls/PoliciesP3CACRL.crl", |
| 3960 | "third_party/nist-pkits/crls/RFC3280MandatoryAttributeTypesCACRL.crl", |
| 3961 | "third_party/nist-pkits/crls/RFC3280OptionalAttributeTypesCACRL.crl", |
| 3962 | "third_party/nist-pkits/crls/RevokedsubCACRL.crl", |
| 3963 | "third_party/nist-pkits/crls/RolloverfromPrintableStringtoUTF8StringCACRL.crl", |
| 3964 | "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCA2CRL.crl", |
| 3965 | "third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCRL.crl", |
| 3966 | "third_party/nist-pkits/crls/TrustAnchorRootCRL.crl", |
| 3967 | "third_party/nist-pkits/crls/TwoCRLsCABadCRL.crl", |
| 3968 | "third_party/nist-pkits/crls/TwoCRLsCAGoodCRL.crl", |
| 3969 | "third_party/nist-pkits/crls/UIDCACRL.crl", |
| 3970 | "third_party/nist-pkits/crls/UTF8StringCaseInsensitiveMatchCACRL.crl", |
| 3971 | "third_party/nist-pkits/crls/UTF8StringEncodedNamesCACRL.crl", |
| 3972 | "third_party/nist-pkits/crls/UnknownCRLEntryExtensionCACRL.crl", |
| 3973 | "third_party/nist-pkits/crls/UnknownCRLExtensionCACRL.crl", |
| 3974 | "third_party/nist-pkits/crls/WrongCRLCACRL.crl", |
| 3975 | "third_party/nist-pkits/crls/anyPolicyCACRL.crl", |
| 3976 | "third_party/nist-pkits/crls/basicConstraintsCriticalcAFalseCACRL.crl", |
| 3977 | "third_party/nist-pkits/crls/basicConstraintsNotCriticalCACRL.crl", |
| 3978 | "third_party/nist-pkits/crls/basicConstraintsNotCriticalcAFalseCACRL.crl", |
| 3979 | "third_party/nist-pkits/crls/deltaCRLCA1CRL.crl", |
| 3980 | "third_party/nist-pkits/crls/deltaCRLCA1deltaCRL.crl", |
| 3981 | "third_party/nist-pkits/crls/deltaCRLCA2CRL.crl", |
| 3982 | "third_party/nist-pkits/crls/deltaCRLCA2deltaCRL.crl", |
| 3983 | "third_party/nist-pkits/crls/deltaCRLCA3CRL.crl", |
| 3984 | "third_party/nist-pkits/crls/deltaCRLCA3deltaCRL.crl", |
| 3985 | "third_party/nist-pkits/crls/deltaCRLIndicatorNoBaseCACRL.crl", |
| 3986 | "third_party/nist-pkits/crls/distributionPoint1CACRL.crl", |
| 3987 | "third_party/nist-pkits/crls/distributionPoint2CACRL.crl", |
| 3988 | "third_party/nist-pkits/crls/indirectCRLCA1CRL.crl", |
| 3989 | "third_party/nist-pkits/crls/indirectCRLCA3CRL.crl", |
| 3990 | "third_party/nist-pkits/crls/indirectCRLCA3cRLIssuerCRL.crl", |
| 3991 | "third_party/nist-pkits/crls/indirectCRLCA4cRLIssuerCRL.crl", |
| 3992 | "third_party/nist-pkits/crls/indirectCRLCA5CRL.crl", |
| 3993 | "third_party/nist-pkits/crls/inhibitAnyPolicy0CACRL.crl", |
| 3994 | "third_party/nist-pkits/crls/inhibitAnyPolicy1CACRL.crl", |
| 3995 | "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA1CRL.crl", |
| 3996 | "third_party/nist-pkits/crls/inhibitAnyPolicy1subCA2CRL.crl", |
| 3997 | "third_party/nist-pkits/crls/inhibitAnyPolicy1subCAIAP5CRL.crl", |
| 3998 | "third_party/nist-pkits/crls/inhibitAnyPolicy1subsubCA2CRL.crl", |
| 3999 | "third_party/nist-pkits/crls/inhibitAnyPolicy5CACRL.crl", |
| 4000 | "third_party/nist-pkits/crls/inhibitAnyPolicy5subCACRL.crl", |
| 4001 | "third_party/nist-pkits/crls/inhibitAnyPolicy5subsubCACRL.crl", |
| 4002 | "third_party/nist-pkits/crls/inhibitPolicyMapping0CACRL.crl", |
| 4003 | "third_party/nist-pkits/crls/inhibitPolicyMapping0subCACRL.crl", |
| 4004 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12CACRL.crl", |
| 4005 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCACRL.crl", |
| 4006 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCAIPM5CRL.crl", |
| 4007 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCACRL.crl", |
| 4008 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCAIPM5CRL.crl", |
| 4009 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P1CACRL.crl", |
| 4010 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subCACRL.crl", |
| 4011 | "third_party/nist-pkits/crls/inhibitPolicyMapping1P1subsubCACRL.crl", |
| 4012 | "third_party/nist-pkits/crls/inhibitPolicyMapping5CACRL.crl", |
| 4013 | "third_party/nist-pkits/crls/inhibitPolicyMapping5subCACRL.crl", |
| 4014 | "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubCACRL.crl", |
| 4015 | "third_party/nist-pkits/crls/inhibitPolicyMapping5subsubsubCACRL.crl", |
| 4016 | "third_party/nist-pkits/crls/keyUsageCriticalcRLSignFalseCACRL.crl", |
| 4017 | "third_party/nist-pkits/crls/keyUsageCriticalkeyCertSignFalseCACRL.crl", |
| 4018 | "third_party/nist-pkits/crls/keyUsageNotCriticalCACRL.crl", |
| 4019 | "third_party/nist-pkits/crls/keyUsageNotCriticalcRLSignFalseCACRL.crl", |
| 4020 | "third_party/nist-pkits/crls/keyUsageNotCriticalkeyCertSignFalseCACRL.crl", |
| 4021 | "third_party/nist-pkits/crls/nameConstraintsDN1CACRL.crl", |
| 4022 | "third_party/nist-pkits/crls/nameConstraintsDN1subCA1CRL.crl", |
| 4023 | "third_party/nist-pkits/crls/nameConstraintsDN1subCA2CRL.crl", |
| 4024 | "third_party/nist-pkits/crls/nameConstraintsDN1subCA3CRL.crl", |
| 4025 | "third_party/nist-pkits/crls/nameConstraintsDN2CACRL.crl", |
| 4026 | "third_party/nist-pkits/crls/nameConstraintsDN3CACRL.crl", |
| 4027 | "third_party/nist-pkits/crls/nameConstraintsDN3subCA1CRL.crl", |
| 4028 | "third_party/nist-pkits/crls/nameConstraintsDN3subCA2CRL.crl", |
| 4029 | "third_party/nist-pkits/crls/nameConstraintsDN4CACRL.crl", |
| 4030 | "third_party/nist-pkits/crls/nameConstraintsDN5CACRL.crl", |
| 4031 | "third_party/nist-pkits/crls/nameConstraintsDNS1CACRL.crl", |
| 4032 | "third_party/nist-pkits/crls/nameConstraintsDNS2CACRL.crl", |
| 4033 | "third_party/nist-pkits/crls/nameConstraintsRFC822CA1CRL.crl", |
| 4034 | "third_party/nist-pkits/crls/nameConstraintsRFC822CA2CRL.crl", |
| 4035 | "third_party/nist-pkits/crls/nameConstraintsRFC822CA3CRL.crl", |
| 4036 | "third_party/nist-pkits/crls/nameConstraintsURI1CACRL.crl", |
| 4037 | "third_party/nist-pkits/crls/nameConstraintsURI2CACRL.crl", |
| 4038 | "third_party/nist-pkits/crls/onlyContainsAttributeCertsCACRL.crl", |
| 4039 | "third_party/nist-pkits/crls/onlyContainsCACertsCACRL.crl", |
| 4040 | "third_party/nist-pkits/crls/onlyContainsUserCertsCACRL.crl", |
| 4041 | "third_party/nist-pkits/crls/onlySomeReasonsCA1compromiseCRL.crl", |
| 4042 | "third_party/nist-pkits/crls/onlySomeReasonsCA1otherreasonsCRL.crl", |
| 4043 | "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL1.crl", |
| 4044 | "third_party/nist-pkits/crls/onlySomeReasonsCA2CRL2.crl", |
| 4045 | "third_party/nist-pkits/crls/onlySomeReasonsCA3compromiseCRL.crl", |
| 4046 | "third_party/nist-pkits/crls/onlySomeReasonsCA3otherreasonsCRL.crl", |
| 4047 | "third_party/nist-pkits/crls/onlySomeReasonsCA4compromiseCRL.crl", |
| 4048 | "third_party/nist-pkits/crls/onlySomeReasonsCA4otherreasonsCRL.crl", |
| 4049 | "third_party/nist-pkits/crls/pathLenConstraint0CACRL.crl", |
| 4050 | "third_party/nist-pkits/crls/pathLenConstraint0subCA2CRL.crl", |
| 4051 | "third_party/nist-pkits/crls/pathLenConstraint0subCACRL.crl", |
| 4052 | "third_party/nist-pkits/crls/pathLenConstraint1CACRL.crl", |
| 4053 | "third_party/nist-pkits/crls/pathLenConstraint1subCACRL.crl", |
| 4054 | "third_party/nist-pkits/crls/pathLenConstraint6CACRL.crl", |
| 4055 | "third_party/nist-pkits/crls/pathLenConstraint6subCA0CRL.crl", |
| 4056 | "third_party/nist-pkits/crls/pathLenConstraint6subCA1CRL.crl", |
| 4057 | "third_party/nist-pkits/crls/pathLenConstraint6subCA4CRL.crl", |
| 4058 | "third_party/nist-pkits/crls/pathLenConstraint6subsubCA00CRL.crl", |
| 4059 | "third_party/nist-pkits/crls/pathLenConstraint6subsubCA11CRL.crl", |
| 4060 | "third_party/nist-pkits/crls/pathLenConstraint6subsubCA41CRL.crl", |
| 4061 | "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA11XCRL.crl", |
| 4062 | "third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA41XCRL.crl", |
| 4063 | "third_party/nist-pkits/crls/pre2000CRLnextUpdateCACRL.crl", |
| 4064 | "third_party/nist-pkits/crls/requireExplicitPolicy0CACRL.crl", |
| 4065 | "third_party/nist-pkits/crls/requireExplicitPolicy0subCACRL.crl", |
| 4066 | "third_party/nist-pkits/crls/requireExplicitPolicy0subsubCACRL.crl", |
| 4067 | "third_party/nist-pkits/crls/requireExplicitPolicy0subsubsubCACRL.crl", |
| 4068 | "third_party/nist-pkits/crls/requireExplicitPolicy10CACRL.crl", |
| 4069 | "third_party/nist-pkits/crls/requireExplicitPolicy10subCACRL.crl", |
| 4070 | "third_party/nist-pkits/crls/requireExplicitPolicy10subsubCACRL.crl", |
| 4071 | "third_party/nist-pkits/crls/requireExplicitPolicy10subsubsubCACRL.crl", |
| 4072 | "third_party/nist-pkits/crls/requireExplicitPolicy2CACRL.crl", |
| 4073 | "third_party/nist-pkits/crls/requireExplicitPolicy2subCACRL.crl", |
| 4074 | "third_party/nist-pkits/crls/requireExplicitPolicy4CACRL.crl", |
| 4075 | "third_party/nist-pkits/crls/requireExplicitPolicy4subCACRL.crl", |
| 4076 | "third_party/nist-pkits/crls/requireExplicitPolicy4subsubCACRL.crl", |
| 4077 | "third_party/nist-pkits/crls/requireExplicitPolicy4subsubsubCACRL.crl", |
| 4078 | "third_party/nist-pkits/crls/requireExplicitPolicy5CACRL.crl", |
| 4079 | "third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl", |
| 4080 | "third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl", |
| 4081 | "third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl", |
| 4082 | "third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl", |
| 4083 | "third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl", |
| 4084 | "third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl", |
| 4085 | "third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.crl", |
| 4086 | ] |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 4087 | outputs = [ "{{bundle_resources_dir}}/" + |
| 4088 | "{{source_root_relative_dir}}/{{source_file_part}}" ] |
sdefresne | b0a3164 | 2016-03-18 11:04:45 | [diff] [blame] | 4089 | } |
| 4090 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4091 | test("net_unittests") { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4092 | sources = [ |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4093 | "base/address_family_unittest.cc", |
| 4094 | "base/address_list_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4095 | "base/backoff_entry_serializer_unittest.cc", |
| 4096 | "base/backoff_entry_unittest.cc", |
| 4097 | "base/chunked_upload_data_stream_unittest.cc", |
| 4098 | "base/data_url_unittest.cc", |
Charles 'Buck' Krasic | ed43ded | 2018-03-23 18:48:12 | [diff] [blame] | 4099 | "base/datagram_buffer_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4100 | "base/elements_upload_data_stream_unittest.cc", |
| 4101 | "base/escape_unittest.cc", |
| 4102 | "base/expiring_cache_unittest.cc", |
| 4103 | "base/file_stream_unittest.cc", |
| 4104 | "base/filename_util_unittest.cc", |
| 4105 | "base/host_mapping_rules_unittest.cc", |
| 4106 | "base/host_port_pair_unittest.cc", |
fayang | baec8ff5 | 2017-01-28 03:26:12 | [diff] [blame] | 4107 | "base/interval_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4108 | "base/ip_address_unittest.cc", |
| 4109 | "base/ip_endpoint_unittest.cc", |
Matt Menke | 3ab9c7b | 2020-04-01 22:39:57 | [diff] [blame] | 4110 | "base/isolation_info_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4111 | "base/lookup_string_in_fixed_set_unittest.cc", |
| 4112 | "base/mime_sniffer_unittest.cc", |
| 4113 | "base/mime_util_unittest.cc", |
Eric Roman | e28b6027 | 2019-10-09 19:22:17 | [diff] [blame] | 4114 | "base/net_errors_unittest.cc", |
Zentaro Kavanagh | a02f1da | 2017-09-26 23:56:06 | [diff] [blame] | 4115 | "base/net_string_util_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4116 | "base/network_activity_monitor_unittest.cc", |
| 4117 | "base/network_change_notifier_unittest.cc", |
cfredric | 59f8a845 | 2021-06-08 15:27:11 | [diff] [blame] | 4118 | "base/network_delegate_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4119 | "base/network_interfaces_unittest.cc", |
Shivani Sharma | d81bdd4 | 2019-05-23 17:19:56 | [diff] [blame] | 4120 | "base/network_isolation_key_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4121 | "base/parse_number_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4122 | "base/port_util_unittest.cc", |
| 4123 | "base/prioritized_dispatcher_unittest.cc", |
Josh Karlin | dd9a5d14 | 2018-06-06 00:35:48 | [diff] [blame] | 4124 | "base/prioritized_task_runner_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4125 | "base/priority_queue_unittest.cc", |
Eric Roman | 8bd4d8b | 2020-07-31 21:56:49 | [diff] [blame] | 4126 | "base/proxy_server_unittest.cc", |
Eric Orth | 5ccc3f0 | 2021-09-23 00:01:57 | [diff] [blame] | 4127 | "base/proxy_string_util_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4128 | "base/registry_controlled_domains/registry_controlled_domain_unittest.cc", |
Shimi Zhang | 1064f4c | 2020-01-29 21:59:02 | [diff] [blame] | 4129 | "base/scheme_host_port_matcher_rule_unittest.cc", |
Shimi Zhang | 3c47f49c | 2020-02-01 01:35:12 | [diff] [blame] | 4130 | "base/scheme_host_port_matcher_unittest.cc", |
John Delaney | 513e53f | 2020-10-29 20:16:04 | [diff] [blame] | 4131 | "base/schemeful_site_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4132 | "base/test_completion_callback_unittest.cc", |
| 4133 | "base/test_proxy_delegate.cc", |
| 4134 | "base/test_proxy_delegate.h", |
| 4135 | "base/upload_bytes_element_reader_unittest.cc", |
| 4136 | "base/upload_file_element_reader_unittest.cc", |
| 4137 | "base/url_util_unittest.cc", |
| 4138 | "cert/caching_cert_verifier_unittest.cc", |
Chris Thompson | b20d589 | 2020-11-25 02:54:02 | [diff] [blame] | 4139 | "cert/cert_and_ct_verifier_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4140 | "cert/cert_verifier_unittest.cc", |
Matt Mueller | 9ef5dfa7 | 2019-09-27 00:47:01 | [diff] [blame] | 4141 | "cert/cert_verify_proc_builtin_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4142 | "cert/cert_verify_proc_unittest.cc", |
Ryan Sleevi | 2cb6817 | 2019-10-09 14:03:11 | [diff] [blame] | 4143 | "cert/coalescing_cert_verifier_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4144 | "cert/crl_set_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4145 | "cert/ct_log_response_parser_unittest.cc", |
| 4146 | "cert/ct_log_verifier_unittest.cc", |
| 4147 | "cert/ct_objects_extractor_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4148 | "cert/ct_serialization_unittest.cc", |
| 4149 | "cert/ev_root_ca_metadata_unittest.cc", |
| 4150 | "cert/internal/cert_issuer_source_aia_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4151 | "cert/internal/cert_issuer_source_static_unittest.cc", |
Austin Sullivan | 91c0656 | 2021-02-16 21:16:53 | [diff] [blame] | 4152 | "cert/internal/cert_issuer_source_sync_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4153 | "cert/internal/cert_issuer_source_sync_unittest.h", |
| 4154 | "cert/internal/certificate_policies_unittest.cc", |
Matt Mueller | e39d83d | 2019-06-11 21:25:24 | [diff] [blame] | 4155 | "cert/internal/crl_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4156 | "cert/internal/extended_key_usage_unittest.cc", |
Matt Mueller | 9e3ad303 | 2017-09-14 19:29:31 | [diff] [blame] | 4157 | "cert/internal/general_names_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4158 | "cert/internal/name_constraints_unittest.cc", |
eroman | c95383ac | 2017-05-26 19:37:30 | [diff] [blame] | 4159 | "cert/internal/nist_pkits_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4160 | "cert/internal/nist_pkits_unittest.h", |
Eric Roman | a2f6f55d | 2017-09-07 23:34:57 | [diff] [blame] | 4161 | "cert/internal/ocsp_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4162 | "cert/internal/parse_certificate_unittest.cc", |
| 4163 | "cert/internal/parse_name_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4164 | "cert/internal/parsed_certificate_unittest.cc", |
| 4165 | "cert/internal/path_builder_pkits_unittest.cc", |
| 4166 | "cert/internal/path_builder_unittest.cc", |
| 4167 | "cert/internal/path_builder_verify_certificate_chain_unittest.cc", |
Eric Roman | cc56d16f | 2017-10-11 23:04:26 | [diff] [blame] | 4168 | "cert/internal/revocation_checker_unittest.cc", |
Matt Mueller | cfc358e2 | 2019-05-29 04:30:42 | [diff] [blame] | 4169 | "cert/internal/revocation_util_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4170 | "cert/internal/signature_algorithm_unittest.cc", |
Eric Roman | 5431d70 | 2017-07-26 01:58:18 | [diff] [blame] | 4171 | "cert/internal/simple_path_builder_delegate_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4172 | "cert/internal/test_helpers.cc", |
| 4173 | "cert/internal/test_helpers.h", |
| 4174 | "cert/internal/trust_store_collection_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4175 | "cert/internal/verify_certificate_chain_pkits_unittest.cc", |
| 4176 | "cert/internal/verify_certificate_chain_typed_unittest.h", |
| 4177 | "cert/internal/verify_certificate_chain_unittest.cc", |
| 4178 | "cert/internal/verify_name_match_unittest.cc", |
| 4179 | "cert/internal/verify_signed_data_unittest.cc", |
Ryan Sleevi | 19a7bde | 2017-11-22 06:51:39 | [diff] [blame] | 4180 | "cert/known_roots_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4181 | "cert/merkle_audit_proof_unittest.cc", |
| 4182 | "cert/merkle_tree_leaf_unittest.cc", |
| 4183 | "cert/multi_log_ct_verifier_unittest.cc", |
| 4184 | "cert/multi_threaded_cert_verifier_unittest.cc", |
Matt Mueller | dd8f469 | 2019-11-21 01:09:32 | [diff] [blame] | 4185 | "cert/pem_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4186 | "cert/signed_certificate_timestamp_unittest.cc", |
Emily Stark | d29cdae | 2017-09-16 01:59:34 | [diff] [blame] | 4187 | "cert/symantec_certs_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4188 | "cert/test_root_certs_unittest.cc", |
| 4189 | "cert/x509_cert_types_unittest.cc", |
| 4190 | "cert/x509_certificate_unittest.cc", |
| 4191 | "cert/x509_util_unittest.cc", |
Matthew Denton | 8d91063 | 2019-11-22 23:54:53 | [diff] [blame] | 4192 | "cert_net/cert_net_fetcher_url_request_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4193 | "cookies/canonical_cookie_unittest.cc", |
| 4194 | "cookies/cookie_constants_unittest.cc", |
Chris Mumford | d8ed9f8 | 2018-05-01 15:43:13 | [diff] [blame] | 4195 | "cookies/cookie_deletion_info_unittest.cc", |
Jihwan Marc Kim | 3e132f1 | 2020-05-20 17:33:19 | [diff] [blame] | 4196 | "cookies/cookie_inclusion_status_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4197 | "cookies/cookie_monster_unittest.cc", |
Lily Chen | c6d8e0b7 | 2021-01-27 20:42:55 | [diff] [blame] | 4198 | "cookies/cookie_options_unittest.cc", |
Aykut Bulut | 244341e | 2021-12-09 15:57:25 | [diff] [blame] | 4199 | "cookies/cookie_partition_key_collection_unittest.cc", |
Dylan Cutler | 2730733 | 2021-08-02 21:00:41 | [diff] [blame] | 4200 | "cookies/cookie_partition_key_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4201 | "cookies/cookie_util_unittest.cc", |
| 4202 | "cookies/parsed_cookie_unittest.cc", |
Maks Orlovich | 8be0e25 | 2019-12-09 18:35:49 | [diff] [blame] | 4203 | "cookies/site_for_cookies_unittest.cc", |
Maks Orlovich | 87f4f89 | 2020-02-14 22:22:14 | [diff] [blame] | 4204 | "cookies/static_cookie_policy_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4205 | "der/encode_values_unittest.cc", |
| 4206 | "der/input_unittest.cc", |
| 4207 | "der/parse_values_unittest.cc", |
| 4208 | "der/parser_unittest.cc", |
Maks Orlovich | 036fd1f | 2017-08-07 17:51:11 | [diff] [blame] | 4209 | "disk_cache/backend_cleanup_tracker_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4210 | "disk_cache/backend_unittest.cc", |
| 4211 | "disk_cache/blockfile/addr_unittest.cc", |
| 4212 | "disk_cache/blockfile/bitmap_unittest.cc", |
| 4213 | "disk_cache/blockfile/block_files_unittest.cc", |
| 4214 | "disk_cache/blockfile/mapped_file_unittest.cc", |
| 4215 | "disk_cache/blockfile/stats_unittest.cc", |
| 4216 | "disk_cache/blockfile/storage_block_unittest.cc", |
| 4217 | "disk_cache/cache_util_unittest.cc", |
| 4218 | "disk_cache/entry_unittest.cc", |
Maks Orlovich | f378b3a | 2017-10-31 16:27:30 | [diff] [blame] | 4219 | "disk_cache/simple/simple_file_tracker_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4220 | "disk_cache/simple/simple_index_file_unittest.cc", |
| 4221 | "disk_cache/simple/simple_index_unittest.cc", |
| 4222 | "disk_cache/simple/simple_test_util.cc", |
| 4223 | "disk_cache/simple/simple_test_util.h", |
| 4224 | "disk_cache/simple/simple_util_unittest.cc", |
| 4225 | "disk_cache/simple/simple_version_upgrade_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4226 | "extras/sqlite/sqlite_persistent_cookie_store_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4227 | "filter/filter_source_stream_unittest.cc", |
| 4228 | "filter/gzip_source_stream_unittest.cc", |
Ryan Hamilton | 0246af9 | 2019-08-30 19:28:56 | [diff] [blame] | 4229 | "http/alternative_service_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4230 | "http/bidirectional_stream_unittest.cc", |
wangyix | 64ccc57c | 2017-06-01 23:14:16 | [diff] [blame] | 4231 | "http/broken_alternative_services_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4232 | "http/http_auth_cache_unittest.cc", |
| 4233 | "http/http_auth_challenge_tokenizer_unittest.cc", |
| 4234 | "http/http_auth_controller_unittest.cc", |
| 4235 | "http/http_auth_filter_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4236 | "http/http_auth_handler_basic_unittest.cc", |
| 4237 | "http/http_auth_handler_digest_unittest.cc", |
| 4238 | "http/http_auth_handler_factory_unittest.cc", |
| 4239 | "http/http_auth_handler_mock.cc", |
| 4240 | "http/http_auth_handler_mock.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4241 | "http/http_auth_handler_unittest.cc", |
| 4242 | "http/http_auth_multi_round_parse_unittest.cc", |
| 4243 | "http/http_auth_preferences_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4244 | "http/http_auth_unittest.cc", |
| 4245 | "http/http_basic_state_unittest.cc", |
| 4246 | "http/http_byte_range_unittest.cc", |
| 4247 | "http/http_cache_lookup_manager_unittest.cc", |
| 4248 | "http/http_cache_unittest.cc", |
shivanisha | c6582e1 | 2017-07-14 22:18:19 | [diff] [blame] | 4249 | "http/http_cache_writers_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4250 | "http/http_chunked_decoder_unittest.cc", |
| 4251 | "http/http_content_disposition_unittest.cc", |
| 4252 | "http/http_log_util_unittest.cc", |
| 4253 | "http/http_network_layer_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4254 | "http/http_network_transaction_unittest.cc", |
Paul Jensen | 0f49dec | 2017-12-12 23:39:58 | [diff] [blame] | 4255 | "http/http_proxy_client_socket_unittest.cc", |
Matt Menke | 47a8ec13 | 2019-02-09 00:48:39 | [diff] [blame] | 4256 | "http/http_proxy_connect_job_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4257 | "http/http_request_headers_unittest.cc", |
| 4258 | "http/http_response_body_drainer_unittest.cc", |
| 4259 | "http/http_response_headers_unittest.cc", |
| 4260 | "http/http_response_info_unittest.cc", |
| 4261 | "http/http_security_headers_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4262 | "http/http_server_properties_manager_unittest.cc", |
Matt Menke | 60916074 | 2019-08-02 18:47:26 | [diff] [blame] | 4263 | "http/http_server_properties_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4264 | "http/http_status_code_unittest.cc", |
Xida Chen | 9bfe0b6 | 2018-04-24 19:52:21 | [diff] [blame] | 4265 | "http/http_stream_factory_job_controller_unittest.cc", |
| 4266 | "http/http_stream_factory_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4267 | "http/http_stream_parser_unittest.cc", |
Bence Béky | 6b44abf | 2018-04-11 10:32:51 | [diff] [blame] | 4268 | "http/http_stream_request_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4269 | "http/http_util_unittest.cc", |
| 4270 | "http/http_vary_data_unittest.cc", |
| 4271 | "http/mock_allow_http_auth_preferences.cc", |
| 4272 | "http/mock_allow_http_auth_preferences.h", |
Ian Clelland | 7288749 | 2020-04-24 20:33:25 | [diff] [blame] | 4273 | "http/structured_headers_generated_unittest.cc", |
Yutaka Hirano | 7babd26e | 2020-02-12 16:03:21 | [diff] [blame] | 4274 | "http/structured_headers_unittest.cc", |
Yoichi Osato | 4c75c0c | 2020-06-24 08:03:57 | [diff] [blame] | 4275 | "http/test_upload_data_stream_not_allow_http1.cc", |
| 4276 | "http/test_upload_data_stream_not_allow_http1.h", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4277 | "http/transport_security_persister_unittest.cc", |
| 4278 | "http/transport_security_state_unittest.cc", |
| 4279 | "http/url_security_manager_unittest.cc", |
Yao Xiao | 754da8b4 | 2019-09-13 16:09:33 | [diff] [blame] | 4280 | "http/webfonts_histogram_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4281 | "log/file_net_log_observer_unittest.cc", |
| 4282 | "log/net_log_capture_mode_unittest.cc", |
| 4283 | "log/net_log_unittest.cc", |
| 4284 | "log/net_log_util_unittest.cc", |
Eric Roman | 45f155c | 2019-07-15 19:47:31 | [diff] [blame] | 4285 | "log/net_log_values_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4286 | "log/trace_net_log_observer_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4287 | "nqe/effective_connection_type_unittest.cc", |
tbansal | f38471f | 2017-03-04 01:07:04 | [diff] [blame] | 4288 | "nqe/event_creator_unittest.cc", |
Tarun Bansal | cdfa34b | 2017-11-23 05:11:17 | [diff] [blame] | 4289 | "nqe/network_id_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4290 | "nqe/network_qualities_prefs_manager_unittest.cc", |
tbansal | 35bdb0b | 2017-05-04 16:23:33 | [diff] [blame] | 4291 | "nqe/network_quality_estimator_params_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4292 | "nqe/network_quality_estimator_unittest.cc", |
tbansal | 82edab4 | 2017-06-19 05:55:25 | [diff] [blame] | 4293 | "nqe/network_quality_estimator_util_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4294 | "nqe/network_quality_store_unittest.cc", |
| 4295 | "nqe/observation_buffer_unittest.cc", |
tbansal | 180587c | 2017-02-16 15:13:23 | [diff] [blame] | 4296 | "nqe/socket_watcher_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4297 | "nqe/throughput_analyzer_unittest.cc", |
Nicolas Arciniega | d2013f9 | 2020-02-07 23:00:56 | [diff] [blame] | 4298 | "proxy_resolution/configured_proxy_resolution_service_unittest.cc", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 4299 | "proxy_resolution/multi_threaded_proxy_resolver_unittest.cc", |
| 4300 | "proxy_resolution/network_delegate_error_observer_unittest.cc", |
| 4301 | "proxy_resolution/pac_file_decider_unittest.cc", |
| 4302 | "proxy_resolution/pac_file_fetcher_impl_unittest.cc", |
| 4303 | "proxy_resolution/proxy_bypass_rules_unittest.cc", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 4304 | "proxy_resolution/proxy_config_unittest.cc", |
| 4305 | "proxy_resolution/proxy_info_unittest.cc", |
| 4306 | "proxy_resolution/proxy_list_unittest.cc", |
Ryan Hamilton | a3ee93a7 | 2018-08-01 22:03:08 | [diff] [blame] | 4307 | "quic/bidirectional_stream_quic_impl_unittest.cc", |
| 4308 | "quic/crypto/proof_test_chromium.cc", |
| 4309 | "quic/crypto/proof_verifier_chromium_test.cc", |
Victor Vasiliev | 297b0dc | 2021-10-07 00:47:13 | [diff] [blame] | 4310 | "quic/dedicated_web_transport_http3_client_test.cc", |
Ryan Hamilton | a3ee93a7 | 2018-08-01 22:03:08 | [diff] [blame] | 4311 | "quic/mock_quic_data.cc", |
| 4312 | "quic/mock_quic_data.h", |
| 4313 | "quic/network_connection_unittest.cc", |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 4314 | "quic/platform/impl/quic_chromium_clock_test.cc", |
Ryan Hamilton | a3ee93a7 | 2018-08-01 22:03:08 | [diff] [blame] | 4315 | "quic/properties_based_quic_server_info_test.cc", |
| 4316 | "quic/quic_address_mismatch_test.cc", |
| 4317 | "quic/quic_chromium_alarm_factory_test.cc", |
| 4318 | "quic/quic_chromium_client_session_peer.cc", |
| 4319 | "quic/quic_chromium_client_session_peer.h", |
| 4320 | "quic/quic_chromium_client_session_test.cc", |
| 4321 | "quic/quic_chromium_client_stream_test.cc", |
| 4322 | "quic/quic_chromium_connection_helper_test.cc", |
| 4323 | "quic/quic_clock_skew_detector_test.cc", |
Ryan Hamilton | a3ee93a7 | 2018-08-01 22:03:08 | [diff] [blame] | 4324 | "quic/quic_end_to_end_unittest.cc", |
| 4325 | "quic/quic_http_stream_test.cc", |
| 4326 | "quic/quic_http_utils_test.cc", |
| 4327 | "quic/quic_network_transaction_unittest.cc", |
| 4328 | "quic/quic_proxy_client_socket_unittest.cc", |
| 4329 | "quic/quic_stream_factory_peer.cc", |
| 4330 | "quic/quic_stream_factory_peer.h", |
| 4331 | "quic/quic_stream_factory_test.cc", |
| 4332 | "quic/quic_test_packet_maker.cc", |
| 4333 | "quic/quic_test_packet_maker.h", |
Matt Menke | fca05b6 | 2019-09-20 23:15:56 | [diff] [blame] | 4334 | "quic/test_quic_crypto_client_config_handle.cc", |
| 4335 | "quic/test_quic_crypto_client_config_handle.h", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 4336 | "socket/client_socket_pool_base_unittest.cc", |
Matt Menke | 073441659 | 2019-03-19 16:34:00 | [diff] [blame] | 4337 | "socket/client_socket_pool_unittest.cc", |
Eric Orth | a9b8be0 | 2021-06-29 23:09:08 | [diff] [blame] | 4338 | "socket/connect_job_factory_unittest.cc", |
Matt Menke | 3abc57c | 2019-01-10 21:48:42 | [diff] [blame] | 4339 | "socket/connect_job_test_util.cc", |
| 4340 | "socket/connect_job_test_util.h", |
Matt Menke | 977e61b | 2019-01-10 19:36:02 | [diff] [blame] | 4341 | "socket/connect_job_unittest.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 4342 | "socket/mock_client_socket_pool_manager.cc", |
| 4343 | "socket/mock_client_socket_pool_manager.h", |
| 4344 | "socket/sequenced_socket_data_unittest.cc", |
| 4345 | "socket/socket_bio_adapter_unittest.cc", |
| 4346 | "socket/socket_tag_unittest.cc", |
| 4347 | "socket/socks5_client_socket_unittest.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 4348 | "socket/socks_client_socket_unittest.cc", |
Matt Menke | f368bedf | 2019-01-16 23:08:57 | [diff] [blame] | 4349 | "socket/socks_connect_job_unittest.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 4350 | "socket/ssl_client_socket_unittest.cc", |
Matt Menke | 7b505107 | 2019-01-27 21:22:49 | [diff] [blame] | 4351 | "socket/ssl_connect_job_unittest.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 4352 | "socket/ssl_server_socket_unittest.cc", |
| 4353 | "socket/tcp_client_socket_unittest.cc", |
| 4354 | "socket/tcp_server_socket_unittest.cc", |
| 4355 | "socket/tcp_socket_unittest.cc", |
| 4356 | "socket/transport_client_socket_pool_test_util.cc", |
| 4357 | "socket/transport_client_socket_pool_test_util.h", |
| 4358 | "socket/transport_client_socket_pool_unittest.cc", |
| 4359 | "socket/transport_client_socket_unittest.cc", |
Matt Menke | 3abc57c | 2019-01-10 21:48:42 | [diff] [blame] | 4360 | "socket/transport_connect_job_unittest.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 4361 | "socket/udp_socket_unittest.cc", |
| 4362 | "socket/websocket_endpoint_lock_manager_unittest.cc", |
| 4363 | "socket/websocket_transport_client_socket_pool_unittest.cc", |
Bence Béky | f4acce6 | 2021-03-11 17:20:14 | [diff] [blame] | 4364 | "spdy/alps_decoder_test.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 4365 | "spdy/bidirectional_stream_spdy_impl_unittest.cc", |
| 4366 | "spdy/buffered_spdy_framer_unittest.cc", |
| 4367 | "spdy/fuzzing/hpack_fuzz_util_test.cc", |
| 4368 | "spdy/header_coalescer_test.cc", |
| 4369 | "spdy/http2_priority_dependencies_unittest.cc", |
| 4370 | "spdy/http2_push_promise_index_test.cc", |
| 4371 | "spdy/spdy_buffer_unittest.cc", |
| 4372 | "spdy/spdy_http_stream_unittest.cc", |
| 4373 | "spdy/spdy_http_utils_unittest.cc", |
| 4374 | "spdy/spdy_log_util_unittest.cc", |
| 4375 | "spdy/spdy_network_transaction_unittest.cc", |
| 4376 | "spdy/spdy_proxy_client_socket_unittest.cc", |
| 4377 | "spdy/spdy_read_queue_unittest.cc", |
| 4378 | "spdy/spdy_session_pool_unittest.cc", |
| 4379 | "spdy/spdy_session_test_util.cc", |
| 4380 | "spdy/spdy_session_test_util.h", |
| 4381 | "spdy/spdy_session_unittest.cc", |
| 4382 | "spdy/spdy_stream_test_util.cc", |
| 4383 | "spdy/spdy_stream_test_util.h", |
| 4384 | "spdy/spdy_stream_unittest.cc", |
| 4385 | "spdy/spdy_write_queue_unittest.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 4386 | "ssl/client_cert_identity_unittest.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 4387 | "ssl/client_cert_store_unittest-inl.h", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 4388 | "ssl/ssl_cipher_suite_names_unittest.cc", |
| 4389 | "ssl/ssl_client_auth_cache_unittest.cc", |
| 4390 | "ssl/ssl_client_session_cache_unittest.cc", |
| 4391 | "ssl/ssl_config_service_unittest.cc", |
| 4392 | "ssl/ssl_config_unittest.cc", |
| 4393 | "ssl/ssl_connection_status_flags_unittest.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 4394 | "ssl/ssl_platform_key_util_unittest.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 4395 | "test/embedded_test_server/embedded_test_server_unittest.cc", |
| 4396 | "test/embedded_test_server/http_request_unittest.cc", |
| 4397 | "test/embedded_test_server/http_response_unittest.cc", |
| 4398 | "test/run_all_unittests.cc", |
Matt Menke | 146062f | 2018-12-04 05:12:06 | [diff] [blame] | 4399 | "third_party/nist-pkits/pkits_testcases-inl.h", |
dalyk | 6b82a025 | 2018-08-22 15:22:38 | [diff] [blame] | 4400 | "third_party/uri_template/uri_template_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4401 | "tools/content_decoder_tool/content_decoder_tool.cc", |
| 4402 | "tools/content_decoder_tool/content_decoder_tool.h", |
| 4403 | "tools/content_decoder_tool/content_decoder_tool_unittest.cc", |
| 4404 | "tools/quic/quic_simple_client_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4405 | "tools/tld_cleanup/tld_cleanup_util_unittest.cc", |
Tsuyoshi Horo | ec9880b | 2017-09-28 22:25:21 | [diff] [blame] | 4406 | "url_request/redirect_info_unittest.cc", |
Tsuyoshi Horo | 9e2ec4df | 2017-10-16 15:15:55 | [diff] [blame] | 4407 | "url_request/redirect_util_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4408 | "url_request/report_sender_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4409 | "url_request/url_fetcher_impl_unittest.cc", |
| 4410 | "url_request/url_fetcher_response_writer_unittest.cc", |
| 4411 | "url_request/url_request_context_builder_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4412 | "url_request/url_request_filter_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4413 | "url_request/url_request_http_job_unittest.cc", |
Matt Menke | a9606a0eb | 2020-09-11 20:36:38 | [diff] [blame] | 4414 | "url_request/url_request_job_factory_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4415 | "url_request/url_request_job_unittest.cc", |
| 4416 | "url_request/url_request_quic_unittest.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4417 | "url_request/url_request_throttler_simulation_unittest.cc", |
| 4418 | "url_request/url_request_throttler_test_support.cc", |
| 4419 | "url_request/url_request_throttler_test_support.h", |
| 4420 | "url_request/url_request_throttler_unittest.cc", |
| 4421 | "url_request/url_request_unittest.cc", |
| 4422 | "url_request/view_cache_helper_unittest.cc", |
| 4423 | ] |
Matt Menke | cd0f6a4 | 2019-10-30 15:49:43 | [diff] [blame] | 4424 | |
| 4425 | if (is_android) { |
| 4426 | sources += [ |
Matt Menke | cd0f6a4 | 2019-10-30 15:49:43 | [diff] [blame] | 4427 | "android/dummy_spnego_authenticator.cc", |
| 4428 | "android/dummy_spnego_authenticator.h", |
| 4429 | "android/http_auth_negotiate_android_unittest.cc", |
| 4430 | "android/network_change_notifier_android_unittest.cc", |
| 4431 | "android/network_library_unittest.cc", |
| 4432 | "android/traffic_stats_unittest.cc", |
| 4433 | "cert/cert_verify_proc_android_unittest.cc", |
| 4434 | "proxy_resolution/proxy_config_service_android_unittest.cc", |
| 4435 | "ssl/ssl_platform_key_android_unittest.cc", |
| 4436 | ] |
| 4437 | } |
| 4438 | |
Yuta Hijikata | 101ed2a | 2020-11-18 07:50:39 | [diff] [blame] | 4439 | if (is_chromeos_ash && use_nss_certs) { |
Matt Menke | cd0f6a4 | 2019-10-30 15:49:43 | [diff] [blame] | 4440 | sources += [ |
| 4441 | "cert/nss_cert_database_chromeos_unittest.cc", |
| 4442 | "cert/nss_profile_filter_chromeos_unittest.cc", |
| 4443 | ] |
| 4444 | } |
| 4445 | |
Sean McAllister | 9c0cdcf | 2020-07-31 16:24:20 | [diff] [blame] | 4446 | if (is_linux || is_chromeos) { |
Matt Menke | cd0f6a4 | 2019-10-30 15:49:43 | [diff] [blame] | 4447 | sources += [ |
| 4448 | "base/address_tracker_linux_unittest.cc", |
| 4449 | "base/network_interfaces_linux_unittest.cc", |
Matt Menke | cd0f6a4 | 2019-10-30 15:49:43 | [diff] [blame] | 4450 | ] |
Yuta Hijikata | 101ed2a | 2020-11-18 07:50:39 | [diff] [blame] | 4451 | if (!is_chromeos_ash) { |
Matt Menke | aed1c4b0 | 2019-11-01 01:35:04 | [diff] [blame] | 4452 | sources += [ "proxy_resolution/proxy_config_service_linux_unittest.cc" ] |
| 4453 | } |
Matt Menke | cd0f6a4 | 2019-10-30 15:49:43 | [diff] [blame] | 4454 | } |
| 4455 | |
| 4456 | if (is_mac) { |
| 4457 | sources += [ |
| 4458 | "cert/cert_verify_proc_mac_unittest.cc", |
| 4459 | "cert/internal/trust_store_mac_unittest.cc", |
| 4460 | "cert/x509_util_ios_and_mac_unittest.cc", |
| 4461 | "ssl/client_cert_store_mac_unittest.cc", |
| 4462 | "ssl/ssl_platform_key_mac_unittest.cc", |
| 4463 | ] |
| 4464 | } |
| 4465 | |
| 4466 | if (is_win) { |
| 4467 | sources += [ |
| 4468 | "base/network_change_notifier_win_unittest.cc", |
| 4469 | "base/network_interfaces_win_unittest.cc", |
Ryan Sleevi | efb74bc9 | 2021-09-27 19:37:51 | [diff] [blame] | 4470 | "cert/cert_verify_proc_win_unittest.cc", |
Matt Menke | cd0f6a4 | 2019-10-30 15:49:43 | [diff] [blame] | 4471 | "http/http_auth_sspi_win_unittest.cc", |
| 4472 | "http/mock_sspi_library_win.cc", |
| 4473 | "http/mock_sspi_library_win.h", |
Eric Roman | 74eb14a | 2020-04-20 19:53:51 | [diff] [blame] | 4474 | "proxy_resolution/win/dhcp_pac_file_adapter_fetcher_win_unittest.cc", |
| 4475 | "proxy_resolution/win/dhcp_pac_file_fetcher_win_unittest.cc", |
| 4476 | "proxy_resolution/win/proxy_config_service_win_unittest.cc", |
Nicolas Arciniega | c672049 | 2020-03-28 02:35:26 | [diff] [blame] | 4477 | "proxy_resolution/win/windows_system_proxy_resolution_service_unittest.cc", |
Matt Menke | cd0f6a4 | 2019-10-30 15:49:43 | [diff] [blame] | 4478 | "ssl/client_cert_store_win_unittest.cc", |
| 4479 | "ssl/ssl_platform_key_win_unittest.cc", |
| 4480 | ] |
| 4481 | } |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4482 | |
Ryan Sleevi | c2fcac6 | 2017-12-21 16:37:04 | [diff] [blame] | 4483 | configs += [ "//build/config:precompiled_headers" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4484 | defines = [] |
| 4485 | |
| 4486 | deps = [ |
Victor Vasiliev | c0110d7 | 2019-07-21 19:29:46 | [diff] [blame] | 4487 | ":extras", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4488 | ":net", |
Nick Harper | e0dfef1a | 2019-07-18 23:38:33 | [diff] [blame] | 4489 | ":preload_decoder", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 4490 | ":quic_test_tools", |
Dan Zhang | b4d098e3 | 2019-05-03 15:29:48 | [diff] [blame] | 4491 | ":quiche_test_tools", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4492 | ":simple_quic_tools", |
Victor Vasiliev | 802b8d0 | 2018-10-19 17:48:17 | [diff] [blame] | 4493 | ":spdy_test_tools", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4494 | ":test_support", |
| 4495 | "//base", |
Victor Vasiliev | c0110d7 | 2019-07-21 19:29:46 | [diff] [blame] | 4496 | "//base:i18n", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4497 | "//base/third_party/dynamic_annotations", |
Yuta Hijikata | 101ed2a | 2020-11-18 07:50:39 | [diff] [blame] | 4498 | "//build:chromeos_buildflags", |
David Van Cleve | 680ce7d | 2020-02-07 18:04:24 | [diff] [blame] | 4499 | "//components/sqlite_proto", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4500 | "//crypto", |
| 4501 | "//crypto:platform", |
| 4502 | "//crypto:test_support", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4503 | "//net/base/registry_controlled_domains", |
Olle Liljenzin | 67385c52 | 2020-02-04 20:22:06 | [diff] [blame] | 4504 | "//net/base/registry_controlled_domains:lookup_strings_test_sets", |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 4505 | "//net/dns:tests", |
dalyk | 8574431 | 2020-02-18 19:14:03 | [diff] [blame] | 4506 | "//net/dns/public:tests", |
martijn | d369e670 | 2017-03-21 18:36:45 | [diff] [blame] | 4507 | "//net/http:transport_security_state_unittest_data", |
Martijn Croonen | b1383da | 2017-10-11 11:56:35 | [diff] [blame] | 4508 | "//net/http:transport_security_state_unittest_data_default", |
Victor Vasiliev | da165f3 | 2020-01-25 22:49:55 | [diff] [blame] | 4509 | "//net/third_party/quiche:quiche_tests", |
Nick Harper | e0dfef1a | 2019-07-18 23:38:33 | [diff] [blame] | 4510 | "//net/tools/huffman_trie:huffman_trie_generator_sources", |
Victor Vasiliev | c0110d7 | 2019-07-21 19:29:46 | [diff] [blame] | 4511 | "//sql", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4512 | "//testing/gmock", |
| 4513 | "//testing/gtest", |
thomasanderson | 77bec4d | 2017-03-20 07:09:25 | [diff] [blame] | 4514 | "//third_party/protobuf:protobuf_lite", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4515 | "//third_party/zlib", |
| 4516 | "//url", |
Scott Violet | fd6ee11 | 2019-01-10 19:05:32 | [diff] [blame] | 4517 | "//url:buildflags", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4518 | ] |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 4519 | |
Victor Vasiliev | da165f3 | 2020-01-25 22:49:55 | [diff] [blame] | 4520 | allow_circular_includes_from = [ "//net/third_party/quiche:quiche_tests" ] |
| 4521 | |
Helen Li | c51db4c | 2018-06-14 22:05:04 | [diff] [blame] | 4522 | if (enable_websockets) { |
| 4523 | deps += [ "//net/server:tests" ] |
| 4524 | } |
| 4525 | |
Fabrice de Gans-Riberi | 0ab6b07 | 2018-04-20 21:32:58 | [diff] [blame] | 4526 | if (is_posix || is_fuchsia) { |
Eric Orth | 24feb5b | 2018-05-25 19:42:46 | [diff] [blame] | 4527 | sources += [ "socket/udp_socket_posix_unittest.cc" ] |
Fabrice de Gans-Riberi | 0ab6b07 | 2018-04-20 21:32:58 | [diff] [blame] | 4528 | } |
| 4529 | |
Yuta Hijikata | 101ed2a | 2020-11-18 07:50:39 | [diff] [blame] | 4530 | if (is_android || is_chromeos_ash) { |
Clark DuVall | fe37e8e0 | 2019-02-15 02:00:28 | [diff] [blame] | 4531 | sources += [ "base/network_change_notifier_posix_unittest.cc" ] |
| 4532 | } |
| 4533 | |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 4534 | if (enable_reporting) { |
| 4535 | sources += [ |
Matt Menke | c5d1fc8 | 2019-11-04 22:00:58 | [diff] [blame] | 4536 | "extras/sqlite/sqlite_persistent_reporting_and_nel_store_unittest.cc", |
Lily Chen | 6ac29d8 | 2019-04-11 22:26:58 | [diff] [blame] | 4537 | "network_error_logging/mock_persistent_nel_store_unittest.cc", |
Julia Tuttle | 6c949ae | 2017-11-17 16:36:27 | [diff] [blame] | 4538 | "network_error_logging/network_error_logging_service_unittest.cc", |
Lily Chen | 0ada609 | 2019-05-08 00:08:48 | [diff] [blame] | 4539 | "reporting/mock_persistent_reporting_store_unittest.cc", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 4540 | "reporting/reporting_browsing_data_remover_unittest.cc", |
| 4541 | "reporting/reporting_cache_unittest.cc", |
| 4542 | "reporting/reporting_delivery_agent_unittest.cc", |
| 4543 | "reporting/reporting_endpoint_manager_unittest.cc", |
| 4544 | "reporting/reporting_garbage_collector_unittest.cc", |
| 4545 | "reporting/reporting_header_parser_unittest.cc", |
| 4546 | "reporting/reporting_network_change_observer_unittest.cc", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 4547 | "reporting/reporting_service_unittest.cc", |
mmenke | fd9d15c | 2017-06-29 13:45:54 | [diff] [blame] | 4548 | "reporting/reporting_uploader_unittest.cc", |
| 4549 | ] |
| 4550 | } |
| 4551 | |
Kevin Marshall | c42a21c | 2022-02-24 22:37:53 | [diff] [blame] | 4552 | data = [ |
| 4553 | "data/cache_tests/", |
| 4554 | "data/certificate_policies_unittest/", |
| 4555 | "data/cert_issuer_source_aia_unittest/", |
| 4556 | "data/cert_issuer_source_static_unittest/", |
| 4557 | "data/crl_unittest/", |
| 4558 | "data/embedded_test_server/", |
| 4559 | "data/file_stream_unittest/", |
| 4560 | "data/filter_unittests/", |
| 4561 | "data/gencerts/", |
| 4562 | "data/name_constraints_unittest/", |
| 4563 | "data/ocsp_unittest/", |
| 4564 | "data/pac_file_fetcher_unittest/", |
| 4565 | "data/path_builder_unittest/", |
| 4566 | "data/quic_http_response_cache_data/", |
| 4567 | "data/quic_http_response_cache_data_with_push/", |
| 4568 | "data/spdy_tests/", |
| 4569 | "data/test.html", |
| 4570 | "data/trial_comparison_cert_verifier_unittest/", |
| 4571 | "data/url_fetcher_impl_unittest/", |
| 4572 | "data/verify_certificate_chain_unittest/", |
| 4573 | "data/verify_name_match_unittest/", |
| 4574 | "data/verify_signed_data_unittest/", |
| 4575 | ] |
John Budorick | 7fde6b49 | 2020-01-29 17:43:50 | [diff] [blame] | 4576 | data_deps = [ |
| 4577 | "third_party/nist-pkits/", |
| 4578 | "//testing/buildbot/filters:net_unittests_filters", |
| 4579 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4580 | |
Sean McAllister | 9c0cdcf | 2020-07-31 16:24:20 | [diff] [blame] | 4581 | if (is_linux || is_chromeos || is_mac || is_win || is_fuchsia) { |
David Benjamin | 878348a | 2021-11-22 21:01:55 | [diff] [blame] | 4582 | deps += [ "//third_party/pywebsocket3/" ] |
| 4583 | data_deps += [ "//third_party/pywebsocket3/" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4584 | data += [ |
| 4585 | "tools/testserver/", |
Keita Suzuki | 5651259 | 2020-03-06 09:42:48 | [diff] [blame] | 4586 | "//third_party/pywebsocket3/src/mod_pywebsocket/", |
dpranke | f497c796 | 2015-07-31 19:46:23 | [diff] [blame] | 4587 | ] |
| 4588 | } |
| 4589 | |
Sean McAllister | 9c0cdcf | 2020-07-31 16:24:20 | [diff] [blame] | 4590 | if (is_linux || is_chromeos) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4591 | sources += [ |
Victor Vasiliev | 6bb59d2 | 2019-03-08 21:34:51 | [diff] [blame] | 4592 | "quic/platform/impl/quic_epoll_clock_test.cc", |
| 4593 | "quic/platform/impl/quic_flags_test.cc", |
Victor Vasiliev | 22dd3f21 | 2022-02-11 21:57:29 | [diff] [blame] | 4594 | "quiche/common/platform/impl/quiche_command_line_flags_test.cc", |
Rajesh Mahindra | 4380217 | 2018-07-24 20:00:14 | [diff] [blame] | 4595 | "tools/quic/quic_http_proxy_backend_stream_test.cc", |
| 4596 | "tools/quic/quic_http_proxy_backend_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4597 | "tools/quic/quic_simple_server_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4598 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4599 | } |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 4600 | |
Sylvain Defresne | fafffe8 | 2020-07-27 14:16:50 | [diff] [blame] | 4601 | if (is_apple) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4602 | sources += [ "base/mac/url_conversions_unittest.mm" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4603 | } |
| 4604 | |
mattm | af868e7 | 2016-09-23 23:25:20 | [diff] [blame] | 4605 | if (is_mac) { |
Robert Sesek | d5a74a80 | 2020-07-01 16:38:08 | [diff] [blame] | 4606 | frameworks = [ "Security.framework" ] |
mattm | af868e7 | 2016-09-23 23:25:20 | [diff] [blame] | 4607 | } |
| 4608 | |
Matt Menke | 577d3e9 | 2019-10-31 21:17:31 | [diff] [blame] | 4609 | if (!is_win) { |
| 4610 | sources += [ |
zentaro | b89acda4 | 2017-07-14 01:28:57 | [diff] [blame] | 4611 | "http/http_auth_handler_ntlm_portable_unittest.cc", |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 4612 | "ntlm/ntlm_buffer_reader_unittest.cc", |
| 4613 | "ntlm/ntlm_buffer_writer_unittest.cc", |
Zentaro Kavanagh | dd55661 | 2017-08-03 20:27:04 | [diff] [blame] | 4614 | "ntlm/ntlm_client_unittest.cc", |
zentaro | b89acda4 | 2017-07-14 01:28:57 | [diff] [blame] | 4615 | "ntlm/ntlm_test_data.h", |
| 4616 | "ntlm/ntlm_unittest.cc", |
zentaro | b7479568 | 2017-07-14 00:58:22 | [diff] [blame] | 4617 | ] |
| 4618 | } |
| 4619 | |
Sergey Ulanov | ec1d3de | 2017-09-19 19:27:47 | [diff] [blame] | 4620 | if (enable_python_utils) { |
| 4621 | sources += [ "test/python_utils_unittest.cc" ] |
| 4622 | } |
| 4623 | |
Sergey Ulanov | 7c0bcaf | 2017-08-28 19:03:26 | [diff] [blame] | 4624 | if (is_fuchsia) { |
| 4625 | use_test_server = true |
Kevin Marshall | 3e89fd7 | 2018-06-05 21:29:10 | [diff] [blame] | 4626 | deps += [ |
Marina Ciocea | c05c3e3 | 2020-12-03 19:36:58 | [diff] [blame] | 4627 | "//third_party/fuchsia-sdk/sdk/fidl/fuchsia.net.interfaces", |
Wez | ba21444 | 2020-02-18 15:28:50 | [diff] [blame] | 4628 | "//third_party/fuchsia-sdk/sdk/pkg/fidl_cpp", |
Kevin Marshall | 3e89fd7 | 2018-06-05 21:29:10 | [diff] [blame] | 4629 | ] |
| 4630 | sources += [ "base/network_change_notifier_fuchsia_unittest.cc" ] |
Greg Thompson | 5e4f41f | 2022-02-09 16:35:14 | [diff] [blame] | 4631 | use_cfv2 = false |
Chong Gu | 50c8339 | 2021-04-06 23:00:27 | [diff] [blame] | 4632 | additional_manifest_fragments = |
| 4633 | [ "//build/config/fuchsia/test/network_capabilities.test-cmx" ] |
Sergey Ulanov | 7c0bcaf | 2017-08-28 19:03:26 | [diff] [blame] | 4634 | } |
| 4635 | |
Matt Menke | aed1c4b0 | 2019-11-01 01:35:04 | [diff] [blame] | 4636 | if (use_nss_certs) { |
| 4637 | sources += [ |
Pavol Marko | e11ebca | 2019-07-03 07:08:37 | [diff] [blame] | 4638 | "cert/internal/system_trust_store_nss_unittest.cc", |
mattm | 9c63d44 | 2016-09-03 00:45:51 | [diff] [blame] | 4639 | "cert/internal/trust_store_nss_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4640 | "cert/nss_cert_database_unittest.cc", |
Matt Mueller | 10684c9 | 2017-08-09 07:24:09 | [diff] [blame] | 4641 | "cert/x509_util_nss_unittest.cc", |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 4642 | ] |
Matt Menke | aed1c4b0 | 2019-11-01 01:35:04 | [diff] [blame] | 4643 | if (!is_chromecast) { |
| 4644 | sources += [ |
| 4645 | "ssl/client_cert_store_nss_unittest.cc", |
| 4646 | "ssl/ssl_platform_key_nss_unittest.cc", |
| 4647 | ] |
| 4648 | } |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 4649 | } |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4650 | |
Asanka Herath | 48ddc2d | 2019-06-03 20:31:38 | [diff] [blame] | 4651 | if (use_external_gssapi) { |
Fabrice de Gans-Riberi | 0ab6b07 | 2018-04-20 21:32:58 | [diff] [blame] | 4652 | sources += [ |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4653 | "http/http_auth_gssapi_posix_unittest.cc", |
| 4654 | "http/mock_gssapi_library_posix.cc", |
| 4655 | "http/mock_gssapi_library_posix.h", |
| 4656 | ] |
Asanka Herath | de6cd1606e | 2019-06-09 13:39:14 | [diff] [blame] | 4657 | data_deps += [ |
Asanka Herath | de6cd1606e | 2019-06-09 13:39:14 | [diff] [blame] | 4658 | ":test_badgssapi", |
Zhongyi Shi | c023767 | 2019-12-13 13:07:30 | [diff] [blame] | 4659 | ":test_gssapi", |
Asanka Herath | de6cd1606e | 2019-06-09 13:39:14 | [diff] [blame] | 4660 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4661 | } |
Asanka Herath | 48ddc2d | 2019-06-03 20:31:38 | [diff] [blame] | 4662 | |
Matt Menke | 577d3e9 | 2019-10-31 21:17:31 | [diff] [blame] | 4663 | if (use_kerberos) { |
| 4664 | sources += [ "http/http_auth_handler_negotiate_unittest.cc" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4665 | } |
| 4666 | |
jbudorick | 1273a84 | 2016-04-01 19:50:05 | [diff] [blame] | 4667 | if (enable_websockets) { |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4668 | sources += [ |
Adam Rice | d4596a8e | 2018-07-13 08:06:17 | [diff] [blame] | 4669 | "websockets/websocket_basic_handshake_stream_test.cc", |
Bence Béky | 7294fc2 | 2018-02-08 14:26:17 | [diff] [blame] | 4670 | "websockets/websocket_basic_stream_adapters_test.cc", |
ckrasic | 73f7240b | 2017-01-24 00:06:45 | [diff] [blame] | 4671 | "websockets/websocket_basic_stream_test.cc", |
| 4672 | "websockets/websocket_channel_test.cc", |
| 4673 | "websockets/websocket_deflate_parameters_test.cc", |
| 4674 | "websockets/websocket_deflate_predictor_impl_test.cc", |
| 4675 | "websockets/websocket_deflate_stream_test.cc", |
| 4676 | "websockets/websocket_deflater_test.cc", |
| 4677 | "websockets/websocket_end_to_end_test.cc", |
| 4678 | "websockets/websocket_errors_test.cc", |
| 4679 | "websockets/websocket_extension_parser_test.cc", |
| 4680 | "websockets/websocket_extension_test.cc", |
| 4681 | "websockets/websocket_frame_parser_test.cc", |
| 4682 | "websockets/websocket_frame_test.cc", |
| 4683 | "websockets/websocket_handshake_challenge_test.cc", |
| 4684 | "websockets/websocket_handshake_stream_create_helper_test.cc", |
| 4685 | "websockets/websocket_inflater_test.cc", |
| 4686 | "websockets/websocket_stream_cookie_test.cc", |
| 4687 | "websockets/websocket_stream_create_test_base.cc", |
| 4688 | "websockets/websocket_stream_create_test_base.h", |
| 4689 | "websockets/websocket_stream_test.cc", |
| 4690 | "websockets/websocket_test_util.cc", |
| 4691 | "websockets/websocket_test_util.h", |
| 4692 | ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4693 | } |
| 4694 | |
Matt Menke | 27e91ae4 | 2019-09-10 16:10:48 | [diff] [blame] | 4695 | if (!disable_file_support) { |
| 4696 | sources += [ |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4697 | "base/directory_lister_unittest.cc", |
Thiago Farina | d673bb12 | 2016-01-06 23:18:16 | [diff] [blame] | 4698 | "base/directory_listing_unittest.cc", |
Matt Menke | 27e91ae4 | 2019-09-10 16:10:48 | [diff] [blame] | 4699 | "test/url_request/url_request_test_job_backed_by_file_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4700 | ] |
| 4701 | } |
| 4702 | |
Brad Lassey | d44bd42 | 2018-05-31 22:45:23 | [diff] [blame] | 4703 | if (enable_built_in_dns) { |
| 4704 | sources += [ "url_request/http_with_dns_over_https_unittest.cc" ] |
| 4705 | } |
| 4706 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4707 | if (is_ios) { |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4708 | sources -= [ |
| 4709 | # TODO(droger): The following tests are disabled because the |
| 4710 | # implementation is missing or incomplete. |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4711 | "disk_cache/backend_unittest.cc", |
| 4712 | "disk_cache/blockfile/block_files_unittest.cc", |
| 4713 | |
| 4714 | # Need to read input data files. |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4715 | "socket/ssl_server_socket_unittest.cc", |
Victor Vasiliev | 802b8d0 | 2018-10-19 17:48:17 | [diff] [blame] | 4716 | "spdy/fuzzing/hpack_fuzz_util_test.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4717 | |
| 4718 | # Need TestServer. |
Matthew Denton | 8d91063 | 2019-11-22 23:54:53 | [diff] [blame] | 4719 | "cert_net/cert_net_fetcher_url_request_unittest.cc", |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 4720 | "proxy_resolution/pac_file_fetcher_impl_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4721 | "socket/ssl_client_socket_unittest.cc", |
| 4722 | "url_request/url_fetcher_impl_unittest.cc", |
| 4723 | "url_request/url_request_context_builder_unittest.cc", |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4724 | ] |
Matt Menke | cd0f6a4 | 2019-10-30 15:49:43 | [diff] [blame] | 4725 | sources += [ "cert/x509_util_ios_and_mac_unittest.cc" ] |
rsesek | 7d4ab4bc | 2016-07-22 17:35:13 | [diff] [blame] | 4726 | |
| 4727 | bundle_deps = [ ":net_unittests_bundle_data" ] |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4728 | } |
| 4729 | |
Sergey Ulanov | 21dea15 | 2017-09-13 00:50:50 | [diff] [blame] | 4730 | if (enable_unix_sockets) { |
| 4731 | sources += [ |
| 4732 | "socket/unix_domain_client_socket_posix_unittest.cc", |
| 4733 | "socket/unix_domain_server_socket_posix_unittest.cc", |
| 4734 | ] |
| 4735 | } |
| 4736 | |
Byoungchan Lee | 4cf6297 | 2022-02-14 05:35:12 | [diff] [blame] | 4737 | # Use getifaddrs() on POSIX platforms, except Linux. |
| 4738 | if (is_posix && !is_linux && !is_chromeos) { |
Fabrice de Gans-Riberi | 9fba3aff | 2018-04-12 19:00:48 | [diff] [blame] | 4739 | sources += [ "base/network_interfaces_getifaddrs_unittest.cc" ] |
Sergey Ulanov | 5c33235ae | 2017-07-06 23:55:07 | [diff] [blame] | 4740 | } |
| 4741 | |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 4742 | # Unit tests that aren't supported by the current ICU alternatives on Android. |
| 4743 | if (is_android && use_platform_icu_alternatives) { |
| 4744 | sources -= [ |
| 4745 | "base/filename_util_unittest.cc", |
| 4746 | "base/url_util_unittest.cc", |
| 4747 | "cert/x509_certificate_unittest.cc", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 4748 | "url_request/url_request_job_unittest.cc", |
| 4749 | ] |
Misha Efimov | 1722162 | 2018-01-30 23:36:02 | [diff] [blame] | 4750 | deps += [ "//url:url_java" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 4751 | } |
| 4752 | |
| 4753 | # Unit tests that are not supported by the current ICU alternatives on iOS. |
| 4754 | if (is_ios && use_platform_icu_alternatives) { |
| 4755 | sources -= [ |
| 4756 | "base/filename_util_unittest.cc", |
| 4757 | "base/url_util_unittest.cc", |
| 4758 | "cert/x509_certificate_unittest.cc", |
| 4759 | "http/http_auth_handler_basic_unittest.cc", |
| 4760 | "http/http_auth_handler_digest_unittest.cc", |
| 4761 | "http/http_auth_handler_factory_unittest.cc", |
| 4762 | "http/http_auth_unittest.cc", |
| 4763 | "http/http_content_disposition_unittest.cc", |
| 4764 | "http/http_network_transaction_unittest.cc", |
Bence Béky | 94658bf | 2018-05-11 19:22:58 | [diff] [blame] | 4765 | "spdy/spdy_network_transaction_unittest.cc", |
| 4766 | "spdy/spdy_proxy_client_socket_unittest.cc", |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 4767 | "url_request/url_request_job_unittest.cc", |
| 4768 | "url_request/url_request_unittest.cc", |
| 4769 | ] |
| 4770 | } |
| 4771 | |
Matt Menke | 577d3e9 | 2019-10-31 21:17:31 | [diff] [blame] | 4772 | if (!disable_brotli_filter) { |
| 4773 | sources += [ "filter/brotli_source_stream_unittest.cc" ] |
kapishnikov | abe280e | 2016-04-14 19:07:16 | [diff] [blame] | 4774 | } |
| 4775 | |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4776 | if (is_android) { |
agrieve | 732db3a | 2016-04-26 19:18:19 | [diff] [blame] | 4777 | data_deps += [ "//net/tools/testserver:testserver_py" ] |
agrieve | 9717636 | 2015-12-01 16:36:19 | [diff] [blame] | 4778 | deps += [ |
| 4779 | ":net_test_jni_headers", |
agrieve | a5517aa | 2015-10-23 03:03:45 | [diff] [blame] | 4780 | "//base:base_java_unittest_support", |
| 4781 | "//net/android:net_java", |
agrieve | a5517aa | 2015-10-23 03:03:45 | [diff] [blame] | 4782 | "//net/android:net_java_test_support", |
Yipeng Wang | ff2db2d | 2017-06-16 13:54:52 | [diff] [blame] | 4783 | "//net/android:net_java_test_support_provider", |
agrieve | 9717636 | 2015-12-01 16:36:19 | [diff] [blame] | 4784 | "//net/android:net_javatests", |
agrieve | a5517aa | 2015-10-23 03:03:45 | [diff] [blame] | 4785 | "//net/android:net_unittests_apk_resources", |
agrieve | 9717636 | 2015-12-01 16:36:19 | [diff] [blame] | 4786 | |
| 4787 | # TODO(mmenke): This depends on test_support_base, which depends on |
| 4788 | # icu. Figure out a way to remove that dependency. |
| 4789 | "//testing/android/native_test:native_test_native_code", |
agrieve | a5517aa | 2015-10-23 03:03:45 | [diff] [blame] | 4790 | ] |
| 4791 | android_manifest = "//net/android/unittest_support/AndroidManifest.xml" |
Andrew Grieve | b9539df | 2020-06-12 16:27:44 | [diff] [blame] | 4792 | |
Sergey Ulanov | 5bb07d3 | 2017-07-12 04:14:54 | [diff] [blame] | 4793 | sources += [ |
| 4794 | "base/address_tracker_linux_unittest.cc", |
| 4795 | "base/network_interfaces_linux_unittest.cc", |
| 4796 | ] |
agrieve | 3ac557f0 | 2016-04-12 15:52:00 | [diff] [blame] | 4797 | shard_timeout = 300 |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4798 | } |
| 4799 | |
maksim.sisov | c69619d | 2016-05-20 19:23:55 | [diff] [blame] | 4800 | if (is_win) { |
davidben | d6d1e4d | 2017-05-10 16:49:01 | [diff] [blame] | 4801 | libs = [ |
| 4802 | "iphlpapi.lib", |
| 4803 | "ncrypt.lib", |
| 4804 | ] |
maksim.sisov | c69619d | 2016-05-20 19:23:55 | [diff] [blame] | 4805 | } |
davidben | 983d610b | 2016-12-14 19:35:40 | [diff] [blame] | 4806 | |
Hubert Chao | 78114c5 | 2021-08-16 19:05:25 | [diff] [blame] | 4807 | if (chrome_root_store_supported) { |
| 4808 | sources += [ "cert/internal/trust_store_chrome_unittest.cc" ] |
| 4809 | deps += [ "//net/data/ssl/chrome_root_store:gen_root_store_test_inc" ] |
| 4810 | |
| 4811 | if (is_win) { |
| 4812 | sources += [ "cert/internal/trust_store_win_unittest.cc" ] |
| 4813 | libs += [ "crypt32.lib" ] |
| 4814 | } |
| 4815 | } |
| 4816 | |
Matt Mueller | dbc0aa7 | 2019-02-04 22:13:18 | [diff] [blame] | 4817 | if (trial_comparison_cert_verifier_supported) { |
| 4818 | sources += [ "cert/trial_comparison_cert_verifier_unittest.cc" ] |
| 4819 | } |
| 4820 | |
martijn | b9aca9d | 2017-03-31 19:56:15 | [diff] [blame] | 4821 | # Include transport_security_state_generator tests. |
| 4822 | if (host_toolchain == current_toolchain) { |
Mustafa Emre Acer | a7152b86 | 2018-06-14 20:57:47 | [diff] [blame] | 4823 | deps += [ |
| 4824 | "//net/tools/huffman_trie:huffman_trie_generator_test_sources", |
| 4825 | "//net/tools/transport_security_state_generator:transport_security_state_generator_test_sources", |
| 4826 | ] |
martijn | b9aca9d | 2017-03-31 19:56:15 | [diff] [blame] | 4827 | } |
dpranke | 64df283 | 2015-07-31 22:33:36 | [diff] [blame] | 4828 | } |
| 4829 | |
| 4830 | # !is_android && !is_win && !is_mac |
Victor Vasiliev | c0110d7 | 2019-07-21 19:29:46 | [diff] [blame] | 4831 | if (!is_ios) { |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 4832 | # TODO(crbug.com/594965): this should be converted to "app" template and |
| 4833 | # enabled on iOS too. |
Stephan Stross | 92fe507e | 2018-05-12 01:47:33 | [diff] [blame] | 4834 | test("net_perftests") { |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 4835 | sources = [ |
| 4836 | "base/mime_sniffer_perftest.cc", |
| 4837 | "cookies/cookie_monster_perftest.cc", |
gavinp | c28fe112 | 2016-05-13 17:49:05 | [diff] [blame] | 4838 | "disk_cache/disk_cache_perftest.cc", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 4839 | "extras/sqlite/sqlite_persistent_cookie_store_perftest.cc", |
tfarina | 5dd13c2 | 2016-11-16 12:08:26 | [diff] [blame] | 4840 | "socket/udp_socket_perftest.cc", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 4841 | "url_request/url_request_quic_perftest.cc", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 4842 | ] |
[email protected] | 8a3f824 | 2014-06-05 18:05:12 | [diff] [blame] | 4843 | |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 4844 | deps = [ |
| 4845 | ":extras", |
| 4846 | ":net", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 4847 | ":quic_test_tools", |
| 4848 | ":simple_quic_tools", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 4849 | ":test_support", |
| 4850 | "//base", |
| 4851 | "//base:i18n", |
| 4852 | "//base/test:test_support_perf", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 4853 | "//testing/gtest", |
xunjieli | cc6b1d0 | 2017-06-05 16:51:40 | [diff] [blame] | 4854 | "//testing/perf", |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 4855 | "//url", |
| 4856 | ] |
Emily Hanley | 87c264cc | 2018-04-13 17:58:45 | [diff] [blame] | 4857 | data_deps = [ |
xunjieli | 5a86684 | 2017-06-09 18:16:20 | [diff] [blame] | 4858 | # Needed for isolate script to execute. |
Emily Hanley | 87c264cc | 2018-04-13 17:58:45 | [diff] [blame] | 4859 | "//testing:run_perf_test", |
Benjamin Lerman | 5e3cb336 | 2022-01-25 16:46:28 | [diff] [blame] | 4860 | "//testing/buildbot/filters:net_perftests_filters", |
xunjieli | 5a86684 | 2017-06-09 18:16:20 | [diff] [blame] | 4861 | ] |
sdefresne | 3001f17 | 2016-03-16 10:30:03 | [diff] [blame] | 4862 | if (enable_websockets) { |
| 4863 | sources += [ "websockets/websocket_frame_perftest.cc" ] |
| 4864 | } |
Stephan Stross | 92fe507e | 2018-05-12 01:47:33 | [diff] [blame] | 4865 | if (is_win) { |
| 4866 | deps += [ "//build/win:default_exe_manifest" ] |
| 4867 | } |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 4868 | } |
rockot | 9c67e5f | 2015-03-12 20:01:21 | [diff] [blame] | 4869 | } |
mef | ff34b82 | 2016-01-11 15:28:08 | [diff] [blame] | 4870 | |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 4871 | # Fuzzers |
| 4872 | |
mmenke | 35a3001 | 2016-07-15 19:20:12 | [diff] [blame] | 4873 | # This has a global (InitGlobals) that must always be linked in, so |
| 4874 | # must be a source set instead of a static library. |
Max Moroz | c3dc6fc | 2019-08-29 20:04:28 | [diff] [blame] | 4875 | if (use_fuzzing_engine) { |
| 4876 | # fuzzer_test targets are no-op when |use_fuzzing_engine| is false. Fuzzer |
| 4877 | # support targets should be disabled too. |
Max Moroz | cef17a4a7 | 2019-08-29 15:50:37 | [diff] [blame] | 4878 | source_set("net_fuzzer_test_support") { |
| 4879 | testonly = true |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 4880 | |
Max Moroz | cef17a4a7 | 2019-08-29 15:50:37 | [diff] [blame] | 4881 | sources = [ |
| 4882 | "base/fuzzer_test_support.cc", |
| 4883 | "filter/fuzzed_source_stream.cc", |
| 4884 | "filter/fuzzed_source_stream.h", |
| 4885 | "socket/fuzzed_datagram_client_socket.cc", |
| 4886 | "socket/fuzzed_datagram_client_socket.h", |
| 4887 | "socket/fuzzed_server_socket.cc", |
| 4888 | "socket/fuzzed_server_socket.h", |
| 4889 | "socket/fuzzed_socket.cc", |
| 4890 | "socket/fuzzed_socket.h", |
| 4891 | "socket/fuzzed_socket_factory.cc", |
| 4892 | "socket/fuzzed_socket_factory.h", |
Max Moroz | cef17a4a7 | 2019-08-29 15:50:37 | [diff] [blame] | 4893 | ] |
| 4894 | public_deps = [ |
| 4895 | "//base/test:test_support", |
| 4896 | "//net/dns:fuzzer_test_support", |
| 4897 | ] |
| 4898 | deps = [ |
| 4899 | "//base", |
| 4900 | "//base:i18n", |
| 4901 | "//net", |
| 4902 | ] |
Kevin Marshall | c42a21c | 2022-02-24 22:37:53 | [diff] [blame] | 4903 | data = [ |
| 4904 | "fuzzer_data", |
| 4905 | "fuzzer_dictionaries", |
| 4906 | ] |
Max Moroz | cef17a4a7 | 2019-08-29 15:50:37 | [diff] [blame] | 4907 | allow_circular_includes_from = [ "//net/dns:fuzzer_test_support" ] |
| 4908 | } |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 4909 | } |
| 4910 | |
Matthew Denton | 29cbe0ee | 2019-03-27 00:10:41 | [diff] [blame] | 4911 | proto_library("disk_cache_lpm_fuzzer_proto") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 4912 | sources = [ "disk_cache/disk_cache_fuzzer.proto" ] |
Matthew Denton | 29cbe0ee | 2019-03-27 00:10:41 | [diff] [blame] | 4913 | } |
| 4914 | |
| 4915 | fuzzer_test("disk_cache_lpm_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 4916 | sources = [ "disk_cache/disk_cache_fuzzer.cc" ] |
Matthew Denton | 29cbe0ee | 2019-03-27 00:10:41 | [diff] [blame] | 4917 | deps = [ |
| 4918 | ":disk_cache_lpm_fuzzer_proto", |
| 4919 | ":test_support", |
| 4920 | "//base", |
| 4921 | "//net", |
| 4922 | "//third_party/libprotobuf-mutator", |
| 4923 | ] |
| 4924 | } |
| 4925 | |
Daniel McArdle | 72692a1 | 2020-05-11 16:47:16 | [diff] [blame] | 4926 | proto_library("backoff_entry_serializer_fuzzer_input") { |
| 4927 | proto_in_dir = "//" |
| 4928 | sources = [ "base/backoff_entry_serializer_fuzzer_input.proto" ] |
| 4929 | link_deps = [ "//testing/libfuzzer/proto:json_proto" ] |
| 4930 | } |
| 4931 | |
| 4932 | fuzzer_test("net_backoff_entry_serializer_fuzzer") { |
| 4933 | sources = [ "base/backoff_entry_serializer_fuzzer.cc" ] |
| 4934 | deps = [ |
| 4935 | ":backoff_entry_serializer_fuzzer_input", |
| 4936 | ":net_fuzzer_test_support", |
| 4937 | ":test_support", |
| 4938 | "//base", |
| 4939 | "//net", |
| 4940 | "//testing/libfuzzer/proto:json_proto", |
| 4941 | "//testing/libfuzzer/proto:json_proto_converter", |
| 4942 | "//third_party/libprotobuf-mutator", |
| 4943 | ] |
| 4944 | } |
| 4945 | |
Matt Menke | fd637c4 | 2019-10-22 23:17:42 | [diff] [blame] | 4946 | fuzzer_test("net_data_url_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 4947 | sources = [ "base/data_url_fuzzer.cc" ] |
csharrison | aa314dc | 2016-04-29 20:15:37 | [diff] [blame] | 4948 | deps = [ |
| 4949 | ":net_fuzzer_test_support", |
| 4950 | ":test_support", |
| 4951 | "//base", |
| 4952 | "//net", |
| 4953 | ] |
Matt Menke | fd637c4 | 2019-10-22 23:17:42 | [diff] [blame] | 4954 | dict = "data/fuzzer_dictionaries/net_data_url_fuzzer.dict" |
Matt Menke | 9efa8d6 | 2019-11-07 23:43:28 | [diff] [blame] | 4955 | |
| 4956 | # IsTokenChar() and ToLowerASCII() are surprisingly slow in instrumented builds. |
| 4957 | libfuzzer_options = [ "max_len=100000" ] |
csharrison | aa314dc | 2016-04-29 20:15:37 | [diff] [blame] | 4958 | } |
| 4959 | |
mmenke | 5552a6a | 2016-03-28 23:11:59 | [diff] [blame] | 4960 | fuzzer_test("net_mime_sniffer_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 4961 | sources = [ "base/mime_sniffer_fuzzer.cc" ] |
mmenke | 5552a6a | 2016-03-28 23:11:59 | [diff] [blame] | 4962 | deps = [ |
| 4963 | ":net_fuzzer_test_support", |
| 4964 | "//base", |
| 4965 | "//net", |
| 4966 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 4967 | dict = "data/fuzzer_dictionaries/net_mime_sniffer_fuzzer.dict" |
mmenke | 5552a6a | 2016-03-28 23:11:59 | [diff] [blame] | 4968 | } |
| 4969 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 4970 | fuzzer_test("net_parse_proxy_list_pac_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 4971 | sources = [ "proxy_resolution/parse_proxy_list_pac_fuzzer.cc" ] |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 4972 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 4973 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 4974 | "//net", |
| 4975 | ] |
| 4976 | } |
| 4977 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 4978 | fuzzer_test("net_parse_proxy_list_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 4979 | sources = [ "proxy_resolution/parse_proxy_list_fuzzer.cc" ] |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 4980 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 4981 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 4982 | "//net", |
| 4983 | ] |
| 4984 | } |
| 4985 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 4986 | fuzzer_test("net_parse_proxy_bypass_rules_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 4987 | sources = [ "proxy_resolution/parse_proxy_bypass_rules_fuzzer.cc" ] |
Eric Roman | b8522d6 | 2018-03-01 02:53:58 | [diff] [blame] | 4988 | |
| 4989 | libfuzzer_options = [ |
| 4990 | # The proxy bypass rules aren't very complicated, so this is more than |
| 4991 | # enough to explore the grammar. Allowing the length to become too large |
| 4992 | # can result in test timeouts (https://crbug.com/813619). |
| 4993 | "max_len=512", |
| 4994 | ] |
| 4995 | |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 4996 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 4997 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 4998 | "//net", |
| 4999 | ] |
| 5000 | } |
| 5001 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5002 | fuzzer_test("net_parse_proxy_rules_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5003 | sources = [ "proxy_resolution/parse_proxy_rules_fuzzer.cc" ] |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5004 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5005 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5006 | "//net", |
| 5007 | ] |
metzman | 31db75e | 2016-08-03 22:33:27 | [diff] [blame] | 5008 | dict = "data/fuzzer_dictionaries/net_parse_proxy_bypass_rules_fuzzer.dict" |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5009 | } |
| 5010 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5011 | fuzzer_test("net_get_domain_and_registry_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5012 | sources = |
| 5013 | [ "base/registry_controlled_domains/get_domain_and_registry_fuzzer.cc" ] |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5014 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5015 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5016 | "//base", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5017 | "//net", |
| 5018 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5019 | dict = "data/fuzzer_dictionaries/net_get_domain_and_registry_fuzzer.dict" |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5020 | } |
| 5021 | |
Olle Liljenzin | d4161ae | 2020-02-12 20:34:45 | [diff] [blame] | 5022 | fuzzer_test("net_lookup_string_in_fixed_set_fuzzer") { |
| 5023 | sources = [ "base/lookup_string_in_fixed_set_fuzzer.cc" ] |
| 5024 | deps = [ |
| 5025 | ":net_fuzzer_test_support", |
| 5026 | "//base", |
| 5027 | "//net", |
| 5028 | "//net/base/registry_controlled_domains:lookup_strings_test_sets", |
| 5029 | ] |
| 5030 | dict = "data/fuzzer_dictionaries/net_get_domain_and_registry_fuzzer.dict" |
| 5031 | } |
| 5032 | |
cfredric | b5d70634 | 2021-02-01 21:05:06 | [diff] [blame] | 5033 | fuzzer_test("net_base_schemeful_site_fuzzer") { |
| 5034 | sources = [ "base/schemeful_site_fuzzer.cc" ] |
| 5035 | deps = [ |
| 5036 | ":net_fuzzer_test_support", |
| 5037 | "//base", |
| 5038 | "//net", |
| 5039 | "//testing/libfuzzer/proto:url_proto", |
| 5040 | "//testing/libfuzzer/proto:url_proto_converter", |
| 5041 | "//third_party/libprotobuf-mutator", |
| 5042 | ] |
| 5043 | } |
| 5044 | |
Matthew Braithwaite | 02f33c867 | 2019-05-14 00:20:29 | [diff] [blame] | 5045 | fuzzer_test("net_cert_ct_decode_signed_certificate_timestamp_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5046 | sources = [ "cert/decode_signed_certificate_timestamp_fuzzer.cc" ] |
Matthew Braithwaite | 02f33c867 | 2019-05-14 00:20:29 | [diff] [blame] | 5047 | deps = [ |
| 5048 | ":net_fuzzer_test_support", |
| 5049 | "//base", |
| 5050 | "//net", |
| 5051 | ] |
| 5052 | } |
| 5053 | |
mattm | afe43b8 | 2016-04-28 20:40:54 | [diff] [blame] | 5054 | fuzzer_test("net_cert_verify_name_match_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5055 | sources = [ "cert/internal/verify_name_match_fuzzer.cc" ] |
mattm | afe43b8 | 2016-04-28 20:40:54 | [diff] [blame] | 5056 | deps = [ |
| 5057 | ":net_fuzzer_test_support", |
| 5058 | "//base", |
| 5059 | "//net", |
| 5060 | ] |
| 5061 | } |
| 5062 | |
mattm | 2c637da4 | 2016-04-28 02:55:59 | [diff] [blame] | 5063 | fuzzer_test("net_cert_normalize_name_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5064 | sources = [ "cert/internal/verify_name_match_normalizename_fuzzer.cc" ] |
mattm | 2c637da4 | 2016-04-28 02:55:59 | [diff] [blame] | 5065 | deps = [ |
| 5066 | "//base", |
| 5067 | "//net", |
| 5068 | ] |
| 5069 | } |
| 5070 | |
mattm | afe43b8 | 2016-04-28 20:40:54 | [diff] [blame] | 5071 | fuzzer_test("net_cert_verify_name_in_subtree_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5072 | sources = [ "cert/internal/verify_name_match_verifynameinsubtree_fuzzer.cc" ] |
mattm | afe43b8 | 2016-04-28 20:40:54 | [diff] [blame] | 5073 | deps = [ |
| 5074 | ":net_fuzzer_test_support", |
| 5075 | "//base", |
| 5076 | "//net", |
| 5077 | ] |
| 5078 | } |
| 5079 | |
Matt Mueller | e39d83d | 2019-06-11 21:25:24 | [diff] [blame] | 5080 | fuzzer_test("net_cert_crl_parse_crl_certificatelist_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5081 | sources = [ "cert/internal/crl_parse_crl_certificatelist_fuzzer.cc" ] |
Matt Mueller | e39d83d | 2019-06-11 21:25:24 | [diff] [blame] | 5082 | seed_corpus = "data/fuzzer_data/crl_parse_crl_certificatelist_fuzzer" |
| 5083 | deps = [ |
| 5084 | "//base", |
| 5085 | "//net", |
| 5086 | ] |
| 5087 | } |
| 5088 | |
| 5089 | fuzzer_test("net_cert_crl_parse_crl_tbscertlist_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5090 | sources = [ "cert/internal/crl_parse_crl_tbscertlist_fuzzer.cc" ] |
Matt Mueller | e39d83d | 2019-06-11 21:25:24 | [diff] [blame] | 5091 | seed_corpus = "data/fuzzer_data/crl_parse_crl_tbscertlist_fuzzer" |
| 5092 | deps = [ |
| 5093 | "//base", |
| 5094 | "//net", |
| 5095 | ] |
| 5096 | } |
| 5097 | |
Matt Mueller | e0065696 | 2019-06-22 00:10:36 | [diff] [blame] | 5098 | fuzzer_test("net_cert_crl_parse_issuing_distribution_point_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5099 | sources = [ "cert/internal/crl_parse_issuing_distribution_point_fuzzer.cc" ] |
Matt Mueller | e0065696 | 2019-06-22 00:10:36 | [diff] [blame] | 5100 | seed_corpus = "data/fuzzer_data/crl_parse_issuing_distribution_point_fuzzer" |
| 5101 | deps = [ |
| 5102 | "//base", |
| 5103 | "//net", |
| 5104 | ] |
| 5105 | } |
| 5106 | |
Matt Mueller | e39d83d | 2019-06-11 21:25:24 | [diff] [blame] | 5107 | fuzzer_test("net_cert_crl_getcrlstatusforcert_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5108 | sources = [ "cert/internal/crl_getcrlstatusforcert_fuzzer.cc" ] |
Matt Mueller | e39d83d | 2019-06-11 21:25:24 | [diff] [blame] | 5109 | seed_corpus = "data/fuzzer_data/crl_getcrlstatusforcert_fuzzer" |
| 5110 | deps = [ |
| 5111 | "//base", |
| 5112 | "//net", |
| 5113 | ] |
| 5114 | } |
| 5115 | |
Ryan Sleevi | 6cf36b48 | 2019-03-22 00:54:43 | [diff] [blame] | 5116 | fuzzer_test("net_cert_ocsp_parse_ocsp_cert_id_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5117 | sources = [ "cert/internal/ocsp_parse_ocsp_cert_id_fuzzer.cc" ] |
Ryan Sleevi | 6cf36b48 | 2019-03-22 00:54:43 | [diff] [blame] | 5118 | seed_corpus = "data/fuzzer_data/parse_ocsp_cert_id_fuzzer" |
| 5119 | deps = [ |
| 5120 | "//base", |
| 5121 | "//net", |
| 5122 | ] |
| 5123 | } |
| 5124 | |
| 5125 | fuzzer_test("net_cert_ocsp_parse_ocsp_single_response_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5126 | sources = [ "cert/internal/ocsp_parse_ocsp_single_response_fuzzer.cc" ] |
Ryan Sleevi | 6cf36b48 | 2019-03-22 00:54:43 | [diff] [blame] | 5127 | seed_corpus = "data/fuzzer_data/parse_ocsp_single_response_fuzzer" |
| 5128 | deps = [ |
| 5129 | "//base", |
| 5130 | "//net", |
| 5131 | ] |
| 5132 | } |
| 5133 | |
| 5134 | fuzzer_test("net_cert_ocsp_parse_ocsp_response_data_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5135 | sources = [ "cert/internal/ocsp_parse_ocsp_response_data_fuzzer.cc" ] |
Ryan Sleevi | 6cf36b48 | 2019-03-22 00:54:43 | [diff] [blame] | 5136 | seed_corpus = "data/fuzzer_data/parse_ocsp_response_data_fuzzer" |
| 5137 | deps = [ |
| 5138 | "//base", |
| 5139 | "//net", |
| 5140 | ] |
| 5141 | } |
| 5142 | |
| 5143 | fuzzer_test("net_cert_ocsp_parse_ocsp_response_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5144 | sources = [ "cert/internal/ocsp_parse_ocsp_response_fuzzer.cc" ] |
Ryan Sleevi | 6cf36b48 | 2019-03-22 00:54:43 | [diff] [blame] | 5145 | seed_corpus = "data/fuzzer_data/parse_ocsp_response_fuzzer" |
| 5146 | deps = [ |
| 5147 | "//base", |
| 5148 | "//net", |
| 5149 | ] |
| 5150 | } |
| 5151 | |
Matt Mueller | 7793d41 | 2019-11-01 01:43:08 | [diff] [blame] | 5152 | fuzzer_test("net_cert_parse_authority_key_identifier_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5153 | sources = [ "cert/internal/parse_authority_key_identifier_fuzzer.cc" ] |
Matt Mueller | 7793d41 | 2019-11-01 01:43:08 | [diff] [blame] | 5154 | seed_corpus = "data/fuzzer_data/parse_authority_key_identifier_fuzzer" |
| 5155 | deps = [ |
| 5156 | "//base", |
| 5157 | "//net", |
| 5158 | ] |
| 5159 | } |
| 5160 | |
nharper | 85d3b6f | 2016-04-28 20:58:19 | [diff] [blame] | 5161 | fuzzer_test("net_cert_parse_certificate_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5162 | sources = [ "cert/internal/parse_certificate_fuzzer.cc" ] |
nharper | 85d3b6f | 2016-04-28 20:58:19 | [diff] [blame] | 5163 | deps = [ |
| 5164 | "//base", |
| 5165 | "//net", |
| 5166 | ] |
| 5167 | } |
| 5168 | |
Daniel McArdle | 5917890 | 2019-07-02 13:19:01 | [diff] [blame] | 5169 | fuzzer_test("net_canonical_cookie_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5170 | sources = [ "cookies/canonical_cookie_fuzzer.cc" ] |
Daniel McArdle | 5917890 | 2019-07-02 13:19:01 | [diff] [blame] | 5171 | deps = [ |
| 5172 | ":net_fuzzer_test_support", |
| 5173 | "//net", |
| 5174 | ] |
Andrew Williams | 6e575e2c | 2021-11-09 19:45:01 | [diff] [blame] | 5175 | dict = "data/fuzzer_dictionaries/net_cookies_fuzzer.dict" |
Kirubel Aklilu | 4372535 | 2021-09-20 21:27:34 | [diff] [blame] | 5176 | seed_corpus = "data/fuzzer_data/cookies/" |
Daniel McArdle | 5917890 | 2019-07-02 13:19:01 | [diff] [blame] | 5177 | } |
| 5178 | |
Dylan Cutler | c8ebb37e | 2021-08-03 18:09:26 | [diff] [blame] | 5179 | fuzzer_test("net_cookie_partition_key_fuzzer") { |
| 5180 | sources = [ "cookies/cookie_partition_key_fuzzer.cc" ] |
| 5181 | deps = [ |
| 5182 | ":net_fuzzer_test_support", |
| 5183 | "//net", |
| 5184 | ] |
| 5185 | } |
| 5186 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5187 | fuzzer_test("net_parse_cookie_line_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5188 | sources = [ "cookies/parse_cookie_line_fuzzer.cc" ] |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5189 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5190 | ":net_fuzzer_test_support", |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5191 | "//net", |
| 5192 | ] |
Andrew Williams | 6e575e2c | 2021-11-09 19:45:01 | [diff] [blame] | 5193 | dict = "data/fuzzer_dictionaries/net_cookies_fuzzer.dict" |
Kirubel Aklilu | 4372535 | 2021-09-20 21:27:34 | [diff] [blame] | 5194 | seed_corpus = "data/fuzzer_data/cookies/" |
eroman | e6264fd | 2016-03-02 22:46:30 | [diff] [blame] | 5195 | } |
| 5196 | |
mmenke | 44e8e9c | 2016-03-29 18:38:57 | [diff] [blame] | 5197 | fuzzer_test("net_http_stream_parser_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5198 | sources = [ "http/http_stream_parser_fuzzer.cc" ] |
mmenke | 44e8e9c | 2016-03-29 18:38:57 | [diff] [blame] | 5199 | deps = [ |
| 5200 | ":net_fuzzer_test_support", |
| 5201 | ":test_support", |
| 5202 | "//base", |
| 5203 | "//net", |
| 5204 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5205 | dict = "data/fuzzer_dictionaries/net_http_stream_parser_fuzzer.dict" |
mmenke | 44e8e9c | 2016-03-29 18:38:57 | [diff] [blame] | 5206 | } |
| 5207 | |
Jonathan Metzman | 0e5e530f | 2018-10-04 19:29:57 | [diff] [blame] | 5208 | if (!is_win) { |
| 5209 | fuzzer_test("net_ntlm_ntlm_client_fuzzer") { |
| 5210 | sources = [ |
| 5211 | "ntlm/ntlm_client_fuzzer.cc", |
| 5212 | "ntlm/ntlm_test_data.h", |
| 5213 | ] |
| 5214 | deps = [ |
| 5215 | ":net_fuzzer_test_support", |
| 5216 | ":test_support", |
| 5217 | "//base", |
| 5218 | "//net", |
| 5219 | ] |
| 5220 | dict = "data/fuzzer_dictionaries/net_ntlm_ntlm_client_fuzzer.dict" |
| 5221 | seed_corpus = "data/fuzzer_data/ntlm_client_fuzzer/" |
| 5222 | } |
Zentaro Kavanagh | dd55661 | 2017-08-03 20:27:04 | [diff] [blame] | 5223 | } |
| 5224 | |
xunjieli | d5ffeaf | 2016-11-01 15:22:00 | [diff] [blame] | 5225 | if (!disable_brotli_filter) { |
| 5226 | fuzzer_test("net_brotli_source_stream_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5227 | sources = [ "filter/brotli_source_stream_fuzzer.cc" ] |
xunjieli | d5ffeaf | 2016-11-01 15:22:00 | [diff] [blame] | 5228 | deps = [ |
| 5229 | ":net_fuzzer_test_support", |
| 5230 | ":test_support", |
| 5231 | "//base", |
| 5232 | "//net", |
| 5233 | ] |
| 5234 | } |
| 5235 | } |
| 5236 | |
xunjieli | 7583733 | 2016-10-31 16:51:26 | [diff] [blame] | 5237 | fuzzer_test("net_gzip_source_stream_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5238 | sources = [ "filter/gzip_source_stream_fuzzer.cc" ] |
xunjieli | 7583733 | 2016-10-31 16:51:26 | [diff] [blame] | 5239 | deps = [ |
| 5240 | ":net_fuzzer_test_support", |
| 5241 | ":test_support", |
| 5242 | "//base", |
| 5243 | "//net", |
| 5244 | ] |
| 5245 | } |
| 5246 | |
Daniel McArdle | 9309426 | 2019-06-04 22:44:23 | [diff] [blame] | 5247 | fuzzer_test("net_crl_set_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5248 | sources = [ "cert/crl_set_fuzzer.cc" ] |
Daniel McArdle | 9309426 | 2019-06-04 22:44:23 | [diff] [blame] | 5249 | deps = [ |
| 5250 | ":net_fuzzer_test_support", |
| 5251 | ":test_support", |
| 5252 | "//base", |
| 5253 | "//net", |
| 5254 | ] |
| 5255 | seed_corpus = "data/fuzzer_data/net_crl_set_fuzzer/" |
| 5256 | } |
| 5257 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5258 | fuzzer_test("net_unescape_url_component_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5259 | sources = [ "base/unescape_url_component_fuzzer.cc" ] |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5260 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5261 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5262 | "//base", |
| 5263 | "//net", |
| 5264 | ] |
Asanka Herath | ca98523 | 2019-10-14 22:51:07 | [diff] [blame] | 5265 | dict = "data/fuzzer_dictionaries/unescape_url_component_fuzzer.dict" |
mmoroz | 062a4a6 | 2016-04-12 09:02:33 | [diff] [blame] | 5266 | libfuzzer_options = [ "max_len = 2048" ] |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5267 | } |
| 5268 | |
ricea | 7b870e7 | 2016-09-01 04:41:04 | [diff] [blame] | 5269 | fuzzer_test("net_websocket_deflate_stream_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5270 | sources = [ "websockets/websocket_deflate_stream_fuzzer.cc" ] |
ricea | 7b870e7 | 2016-09-01 04:41:04 | [diff] [blame] | 5271 | deps = [ |
| 5272 | ":net_fuzzer_test_support", |
| 5273 | "//net", |
| 5274 | ] |
| 5275 | dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict" |
| 5276 | libfuzzer_options = [ "max_len=512" ] |
| 5277 | } |
| 5278 | |
ricea | f9dcc09 | 2016-09-13 12:42:00 | [diff] [blame] | 5279 | fuzzer_test("net_websocket_extension_parser_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5280 | sources = [ "websockets/websocket_extension_parser_fuzzer.cc" ] |
ricea | f9dcc09 | 2016-09-13 12:42:00 | [diff] [blame] | 5281 | deps = [ |
| 5282 | ":net_fuzzer_test_support", |
| 5283 | "//net", |
| 5284 | ] |
| 5285 | dict = "data/fuzzer_dictionaries/net_websocket_extension_parser_fuzzer.dict" |
| 5286 | libfuzzer_options = [ "max_len = 256" ] |
| 5287 | } |
| 5288 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5289 | fuzzer_test("net_websocket_frame_parser_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5290 | sources = [ "websockets/websocket_frame_parser_fuzzer.cc" ] |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5291 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5292 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5293 | "//net", |
| 5294 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5295 | dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict" |
ricea | 105ae61 | 2016-09-08 08:00:07 | [diff] [blame] | 5296 | libfuzzer_options = [ "max_len=256" ] |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5297 | } |
| 5298 | |
Zhaoyang Li | ad83de4 | 2021-11-01 20:54:40 | [diff] [blame] | 5299 | if (use_fuzzing_engine) { |
| 5300 | # This is a separate target because //net/server:http_server |
| 5301 | # wants to limit its visibility to a select number of target, but the |
| 5302 | # "fuzzer_test" template expands on iOS to many targets that need to |
| 5303 | # have the "deps" information propagated in order to support "fat" |
| 5304 | # binaries. |
| 5305 | source_set("net_web_socket_encoder_fuzzer_deps") { |
| 5306 | testonly = true |
| 5307 | visibility = [ |
| 5308 | ":net_web_socket_encoder_fuzzer", |
| 5309 | ":net_web_socket_encoder_fuzzer_arch_executable", |
| 5310 | ":net_web_socket_encoder_fuzzer_arch_executable_sources", |
| 5311 | ":run_net_web_socket_encoder_fuzzer", |
| 5312 | ] |
| 5313 | public_deps = [ |
| 5314 | ":net_fuzzer_test_support", |
| 5315 | "//net", |
| 5316 | "//net/server:http_server", |
| 5317 | ] |
| 5318 | } |
| 5319 | |
| 5320 | fuzzer_test("net_web_socket_encoder_fuzzer") { |
| 5321 | sources = [ "server/web_socket_encoder_fuzzer.cc" ] |
| 5322 | deps = [ ":net_web_socket_encoder_fuzzer_deps" ] |
| 5323 | libfuzzer_options = [ "max_len=256" ] |
| 5324 | } |
Shiho Noda | 59af2cc | 2021-09-07 04:11:16 | [diff] [blame] | 5325 | } |
| 5326 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5327 | fuzzer_test("net_http_chunked_decoder_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5328 | sources = [ "http/http_chunked_decoder_fuzzer.cc" ] |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5329 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5330 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5331 | "//net", |
| 5332 | ] |
Asanka Herath | ca98523 | 2019-10-14 22:51:07 | [diff] [blame] | 5333 | dict = "data/fuzzer_dictionaries/http_chunked_decoder_fuzzer.dict" |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5334 | } |
| 5335 | |
Asanka Herath | e61626d1 | 2019-11-14 19:16:44 | [diff] [blame] | 5336 | fuzzer_test("net_http_auth_handler_basic_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5337 | sources = [ "http/http_auth_handler_basic_fuzzer.cc" ] |
Asanka Herath | e61626d1 | 2019-11-14 19:16:44 | [diff] [blame] | 5338 | dict = "data/fuzzer_dictionaries/net_http_auth_handler_basic_fuzzer.dict" |
| 5339 | deps = [ |
| 5340 | ":net_fuzzer_test_support", |
Eric Orth | af82b49a | 2020-02-01 01:48:50 | [diff] [blame] | 5341 | ":test_support", |
Asanka Herath | e61626d1 | 2019-11-14 19:16:44 | [diff] [blame] | 5342 | "//net", |
Asanka Herath | e61626d1 | 2019-11-14 19:16:44 | [diff] [blame] | 5343 | ] |
| 5344 | } |
| 5345 | |
Asanka Herath | 643b3b0 | 2019-11-14 21:30:49 | [diff] [blame] | 5346 | fuzzer_test("net_http_auth_handler_digest_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5347 | sources = [ "http/http_auth_handler_digest_fuzzer.cc" ] |
Asanka Herath | 643b3b0 | 2019-11-14 21:30:49 | [diff] [blame] | 5348 | dict = "data/fuzzer_dictionaries/net_http_auth_handler_digest_fuzzer.dict" |
| 5349 | deps = [ |
| 5350 | ":net_fuzzer_test_support", |
Eric Orth | af82b49a | 2020-02-01 01:48:50 | [diff] [blame] | 5351 | ":test_support", |
Asanka Herath | 643b3b0 | 2019-11-14 21:30:49 | [diff] [blame] | 5352 | "//net", |
Asanka Herath | 643b3b0 | 2019-11-14 21:30:49 | [diff] [blame] | 5353 | ] |
| 5354 | } |
| 5355 | |
Eric Orth | cb5b742 | 2020-08-13 20:22:41 | [diff] [blame] | 5356 | fuzzer_test("net_http_auth_handler_fuzzer") { |
| 5357 | sources = [ "http/http_auth_handler_fuzzer.cc" ] |
| 5358 | deps = [ |
| 5359 | ":net_fuzzer_test_support", |
| 5360 | ":test_support", |
| 5361 | "//base", |
| 5362 | "//net", |
| 5363 | ] |
| 5364 | } |
| 5365 | |
Asanka Herath | 1b55e89 | 2019-10-14 19:27:39 | [diff] [blame] | 5366 | fuzzer_test("net_http_content_disposition_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5367 | sources = [ "http/http_content_disposition_fuzzer.cc" ] |
Asanka Herath | 1b55e89 | 2019-10-14 19:27:39 | [diff] [blame] | 5368 | dict = "data/fuzzer_dictionaries/net_http_content_disposition_fuzzer.dict" |
| 5369 | deps = [ |
| 5370 | ":net_fuzzer_test_support", |
| 5371 | "//net", |
| 5372 | ] |
| 5373 | } |
| 5374 | |
mmenke | 8e9314bc | 2016-04-15 21:45:02 | [diff] [blame] | 5375 | fuzzer_test("net_http_proxy_client_socket_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5376 | sources = [ "http/http_proxy_client_socket_fuzzer.cc" ] |
mmenke | 8e9314bc | 2016-04-15 21:45:02 | [diff] [blame] | 5377 | deps = [ |
| 5378 | ":net_fuzzer_test_support", |
| 5379 | ":test_support", |
| 5380 | "//base", |
| 5381 | "//net", |
| 5382 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5383 | dict = "data/fuzzer_dictionaries/net_http_proxy_client_socket_fuzzer.dict" |
mmenke | 8e9314bc | 2016-04-15 21:45:02 | [diff] [blame] | 5384 | } |
| 5385 | |
Yutaka Hirano | 7babd26e | 2020-02-12 16:03:21 | [diff] [blame] | 5386 | fuzzer_test("net_structured_headers_fuzzer") { |
| 5387 | sources = [ "http/structured_headers_fuzzer.cc" ] |
| 5388 | deps = [ |
| 5389 | ":net_fuzzer_test_support", |
| 5390 | ":test_support", |
| 5391 | "//base", |
| 5392 | "//net", |
| 5393 | ] |
| 5394 | seed_corpus = "data/fuzzer_data/structured_headers_corpus" |
| 5395 | } |
| 5396 | |
mmoroz | 9299ef9b | 2016-09-01 17:37:09 | [diff] [blame] | 5397 | fuzzer_test("net_parse_url_hostname_to_address_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5398 | sources = [ "base/parse_url_hostname_to_address_fuzzer.cc" ] |
mmoroz | 9299ef9b | 2016-09-01 17:37:09 | [diff] [blame] | 5399 | deps = [ |
| 5400 | ":net_fuzzer_test_support", |
| 5401 | "//base", |
| 5402 | "//net", |
| 5403 | ] |
| 5404 | libfuzzer_options = [ "max_len=512" ] |
| 5405 | seed_corpus = "data/fuzzer_data/hostnames/" |
| 5406 | } |
| 5407 | |
mmoroz | 565e8df2 | 2016-03-04 18:17:20 | [diff] [blame] | 5408 | fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5409 | sources = [ "quic/quic_crypto_framer_parse_message_fuzzer.cc" ] |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5410 | deps = [ |
eroman | 02b4fe56 | 2016-03-04 12:15:16 | [diff] [blame] | 5411 | ":net_fuzzer_test_support", |
eroman | fe8659e | 2016-03-02 23:47:02 | [diff] [blame] | 5412 | "//base", |
| 5413 | "//net", |
| 5414 | ] |
| 5415 | } |
mmenke | 99b5717 | 2016-04-14 20:44:33 | [diff] [blame] | 5416 | |
btolsch | 7ebfd23c | 2018-11-16 00:05:10 | [diff] [blame] | 5417 | fuzzer_test("net_quic_transport_parameters_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5418 | sources = [ "quic/quic_transport_parameters_fuzzer.cc" ] |
btolsch | 7ebfd23c | 2018-11-16 00:05:10 | [diff] [blame] | 5419 | deps = [ |
| 5420 | ":net_fuzzer_test_support", |
| 5421 | "//base", |
| 5422 | "//net", |
| 5423 | ] |
| 5424 | } |
| 5425 | |
mmenke | 99b5717 | 2016-04-14 20:44:33 | [diff] [blame] | 5426 | fuzzer_test("net_socks_client_socket_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5427 | sources = [ "socket/socks_client_socket_fuzzer.cc" ] |
mmenke | 99b5717 | 2016-04-14 20:44:33 | [diff] [blame] | 5428 | deps = [ |
| 5429 | ":net_fuzzer_test_support", |
| 5430 | ":test_support", |
| 5431 | "//base", |
| 5432 | "//net", |
| 5433 | ] |
| 5434 | } |
| 5435 | |
| 5436 | fuzzer_test("net_socks5_client_socket_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5437 | sources = [ "socket/socks5_client_socket_fuzzer.cc" ] |
mmenke | 99b5717 | 2016-04-14 20:44:33 | [diff] [blame] | 5438 | deps = [ |
| 5439 | ":net_fuzzer_test_support", |
| 5440 | ":test_support", |
| 5441 | "//base", |
| 5442 | "//net", |
| 5443 | ] |
| 5444 | } |
mmenke | c951d41 | 2016-04-28 19:05:22 | [diff] [blame] | 5445 | |
| 5446 | fuzzer_test("net_url_request_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5447 | sources = [ "url_request/url_request_fuzzer.cc" ] |
mmenke | c951d41 | 2016-04-28 19:05:22 | [diff] [blame] | 5448 | deps = [ |
| 5449 | ":net_fuzzer_test_support", |
| 5450 | ":test_support", |
| 5451 | "//base", |
| 5452 | "//net", |
| 5453 | ] |
mmoroz | 4a561d3 | 2016-07-07 17:45:12 | [diff] [blame] | 5454 | dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" |
mmenke | c951d41 | 2016-04-28 19:05:22 | [diff] [blame] | 5455 | } |
csharrison | 88d2a61 | 2016-09-09 16:58:54 | [diff] [blame] | 5456 | |
| 5457 | fuzzer_test("net_auth_challenge_tokenizer_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5458 | sources = [ "http/http_auth_challenge_tokenizer_fuzzer.cc" ] |
csharrison | 88d2a61 | 2016-09-09 16:58:54 | [diff] [blame] | 5459 | deps = [ |
| 5460 | ":net_fuzzer_test_support", |
| 5461 | ":test_support", |
| 5462 | "//base", |
| 5463 | "//net", |
| 5464 | ] |
| 5465 | } |
martijn | db9ad4f | 2016-10-26 18:34:09 | [diff] [blame] | 5466 | |
estark | a57e816 | 2017-04-21 18:01:05 | [diff] [blame] | 5467 | fuzzer_test("net_http_security_headers_expect_ct_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5468 | sources = [ "http/http_security_headers_expect_ct_fuzzer.cc" ] |
estark | a57e816 | 2017-04-21 18:01:05 | [diff] [blame] | 5469 | deps = [ |
| 5470 | ":net_fuzzer_test_support", |
| 5471 | "//base", |
| 5472 | "//net", |
| 5473 | "//url", |
| 5474 | ] |
| 5475 | dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
| 5476 | seed_corpus = "data/fuzzer_data/http_security_headers/" |
| 5477 | } |
| 5478 | |
martijn | db9ad4f | 2016-10-26 18:34:09 | [diff] [blame] | 5479 | fuzzer_test("net_http_security_headers_hsts_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5480 | sources = [ "http/http_security_headers_hsts_fuzzer.cc" ] |
martijn | db9ad4f | 2016-10-26 18:34:09 | [diff] [blame] | 5481 | deps = [ |
| 5482 | "//base", |
| 5483 | "//net", |
| 5484 | ] |
| 5485 | dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
estark | a57e816 | 2017-04-21 18:01:05 | [diff] [blame] | 5486 | seed_corpus = "data/fuzzer_data/http_security_headers/" |
martijn | db9ad4f | 2016-10-26 18:34:09 | [diff] [blame] | 5487 | } |
| 5488 | |
martijn | da94079 | 2016-12-29 01:36:51 | [diff] [blame] | 5489 | fuzzer_test("net_http_transport_security_state_static_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5490 | sources = [ "http/transport_security_state_static_fuzzer.cc" ] |
martijn | da94079 | 2016-12-29 01:36:51 | [diff] [blame] | 5491 | deps = [ |
| 5492 | ":net_fuzzer_test_support", |
| 5493 | "//net", |
| 5494 | ] |
| 5495 | dict = |
| 5496 | "data/fuzzer_dictionaries/net_http_transport_security_state_fuzzer.dict" |
| 5497 | } |
| 5498 | |
morlovich | 833190ec | 2017-02-10 16:53:04 | [diff] [blame] | 5499 | fuzzer_test("net_spdy_session_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5500 | sources = [ "spdy/spdy_session_fuzzer.cc" ] |
morlovich | 833190ec | 2017-02-10 16:53:04 | [diff] [blame] | 5501 | deps = [ |
| 5502 | ":net_fuzzer_test_support", |
| 5503 | ":test_support", |
| 5504 | "//base", |
| 5505 | "//net", |
Ryan Hamilton | e3e592e | 2017-11-16 04:49:09 | [diff] [blame] | 5506 | "//net/data/ssl/certificates:generate_fuzzer_cert_includes", |
morlovich | 833190ec | 2017-02-10 16:53:04 | [diff] [blame] | 5507 | ] |
| 5508 | dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 5509 | seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 5510 | } |
Patrick Meenan | 6a970137 | 2017-10-03 21:33:41 | [diff] [blame] | 5511 | |
| 5512 | fuzzer_test("net_http2_frame_decoder_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5513 | sources = [ "spdy/fuzzing/http2_frame_decoder_fuzzer.cc" ] |
Patrick Meenan | 6a970137 | 2017-10-03 21:33:41 | [diff] [blame] | 5514 | deps = [ |
| 5515 | ":net_fuzzer_test_support", |
| 5516 | ":test_support", |
| 5517 | "//base", |
| 5518 | "//net", |
| 5519 | ] |
| 5520 | } |
Patrick Meenan | 73b497a | 2017-10-05 22:40:44 | [diff] [blame] | 5521 | |
| 5522 | fuzzer_test("net_hpack_decoder_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5523 | sources = [ "spdy/fuzzing/hpack_decoder_fuzzer.cc" ] |
Patrick Meenan | 73b497a | 2017-10-05 22:40:44 | [diff] [blame] | 5524 | deps = [ |
| 5525 | ":net_fuzzer_test_support", |
| 5526 | ":test_support", |
| 5527 | "//base", |
| 5528 | "//net", |
| 5529 | ] |
| 5530 | } |
Max Moroz | 592f4c6 | 2017-11-01 01:10:32 | [diff] [blame] | 5531 | |
| 5532 | proto_library("reporting_policy_proto") { |
Sky Malice | d0be570 | 2020-01-14 05:10:37 | [diff] [blame] | 5533 | proto_in_dir = "//" |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5534 | sources = [ "reporting/reporting_policy.proto" ] |
Takuto Ikuta | bb2fb35 | 2019-03-06 16:54:19 | [diff] [blame] | 5535 | link_deps = [ "//testing/libfuzzer/proto:json_proto" ] |
Max Moroz | 592f4c6 | 2017-11-01 01:10:32 | [diff] [blame] | 5536 | } |
| 5537 | |
| 5538 | fuzzer_test("net_reporting_header_parser_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5539 | sources = [ "reporting/reporting_header_parser_fuzzer.cc" ] |
Max Moroz | 592f4c6 | 2017-11-01 01:10:32 | [diff] [blame] | 5540 | |
| 5541 | deps = [ |
| 5542 | ":net_fuzzer_test_support", |
| 5543 | ":reporting_policy_proto", |
| 5544 | ":test_support", |
| 5545 | "//base", |
| 5546 | "//net", |
| 5547 | "//testing/libfuzzer/proto:json_proto", |
| 5548 | "//testing/libfuzzer/proto:json_proto_converter", |
| 5549 | "//third_party/libprotobuf-mutator", |
| 5550 | ] |
| 5551 | } |
Ned Williamson | 3d55bbb | 2017-11-07 22:58:13 | [diff] [blame] | 5552 | |
| 5553 | fuzzer_test("net_quic_stream_factory_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5554 | sources = [ "quic/quic_stream_factory_fuzzer.cc" ] |
Ned Williamson | 3d55bbb | 2017-11-07 22:58:13 | [diff] [blame] | 5555 | |
| 5556 | deps = [ |
| 5557 | ":net_fuzzer_test_support", |
| 5558 | ":quic_test_tools", |
| 5559 | ":test_support", |
| 5560 | "//net", |
Ryan Hamilton | e3e592e | 2017-11-16 04:49:09 | [diff] [blame] | 5561 | "//net/data/ssl/certificates:generate_fuzzer_cert_includes", |
Ned Williamson | 3d55bbb | 2017-11-07 22:58:13 | [diff] [blame] | 5562 | ] |
| 5563 | } |
dalyk | 6b82a025 | 2018-08-22 15:22:38 | [diff] [blame] | 5564 | |
| 5565 | fuzzer_test("net_uri_template_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5566 | sources = [ "third_party/uri_template/uri_template_fuzzer.cc" ] |
dalyk | 6b82a025 | 2018-08-22 15:22:38 | [diff] [blame] | 5567 | deps = [ |
| 5568 | ":net_fuzzer_test_support", |
| 5569 | "//base", |
| 5570 | "//net", |
| 5571 | ] |
| 5572 | dict = "data/fuzzer_dictionaries/net_uri_template_fuzzer.dict" |
| 5573 | } |
Victor Vasiliev | 27ca04a | 2019-03-09 01:28:00 | [diff] [blame] | 5574 | |
Sean McAllister | 9c0cdcf | 2020-07-31 16:24:20 | [diff] [blame] | 5575 | if (is_linux || is_chromeos) { |
Daniel McArdle | 9fb8369 | 2019-10-16 13:04:48 | [diff] [blame] | 5576 | fuzzer_test("net_base_address_tracker_linux_fuzzer") { |
Ian Swett | 25d3c3b3 | 2020-01-14 17:51:29 | [diff] [blame] | 5577 | sources = [ "base/address_tracker_linux_fuzzer.cc" ] |
Daniel McArdle | 9fb8369 | 2019-10-16 13:04:48 | [diff] [blame] | 5578 | deps = [ |
| 5579 | ":net_fuzzer_test_support", |
| 5580 | ":test_support", |
| 5581 | "//base", |
| 5582 | "//net", |
| 5583 | ] |
| 5584 | } |
| 5585 | } |