Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(169)

Side by Side Diff: net/BUILD.gn

Issue 2784933002: Mitigate spoofing attempt using Latin letters. (Closed)
Patch Set: add similarity check unittests Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 "base/interval.h", 118 "base/interval.h",
119 "base/interval_set.h", 119 "base/interval_set.h",
120 "base/io_buffer.cc", 120 "base/io_buffer.cc",
121 "base/io_buffer.h", 121 "base/io_buffer.h",
122 "base/ip_address.cc", 122 "base/ip_address.cc",
123 "base/ip_address.h", 123 "base/ip_address.h",
124 "base/ip_endpoint.cc", 124 "base/ip_endpoint.cc",
125 "base/ip_endpoint.h", 125 "base/ip_endpoint.h",
126 "base/load_timing_info.cc", 126 "base/load_timing_info.cc",
127 "base/load_timing_info.h", 127 "base/load_timing_info.h",
128 "base/lookup_string_in_fixed_set.cc",
129 "base/lookup_string_in_fixed_set.h",
130 "base/net_error_details.h", 128 "base/net_error_details.h",
131 "base/net_error_list.h", 129 "base/net_error_list.h",
132 "base/net_errors.cc", 130 "base/net_errors.cc",
133 "base/net_errors.h", 131 "base/net_errors.h",
134 "base/net_errors_posix.cc", 132 "base/net_errors_posix.cc",
135 "base/net_export.h", 133 "base/net_export.h",
136 "base/net_module.cc", 134 "base/net_module.cc",
137 "base/net_module.h", 135 "base/net_module.h",
138 "base/net_string_util.h", 136 "base/net_string_util.h",
139 "base/network_interfaces.cc", 137 "base/network_interfaces.cc",
(...skipping 4011 matching lines...) Expand 10 before | Expand all | Expand 10 after
4151 "base/filename_util_unittest.cc", 4149 "base/filename_util_unittest.cc",
4152 "base/host_mapping_rules_unittest.cc", 4150 "base/host_mapping_rules_unittest.cc",
4153 "base/host_port_pair_unittest.cc", 4151 "base/host_port_pair_unittest.cc",
4154 "base/int128_unittest.cc", 4152 "base/int128_unittest.cc",
4155 "base/interval_set_test.cc", 4153 "base/interval_set_test.cc",
4156 "base/interval_test.cc", 4154 "base/interval_test.cc",
4157 "base/ip_address_unittest.cc", 4155 "base/ip_address_unittest.cc",
4158 "base/ip_endpoint_unittest.cc", 4156 "base/ip_endpoint_unittest.cc",
4159 "base/ip_pattern_unittest.cc", 4157 "base/ip_pattern_unittest.cc",
4160 "base/layered_network_delegate_unittest.cc", 4158 "base/layered_network_delegate_unittest.cc",
4161 "base/lookup_string_in_fixed_set_unittest.cc",
4162 "base/mime_sniffer_unittest.cc", 4159 "base/mime_sniffer_unittest.cc",
4163 "base/mime_util_unittest.cc", 4160 "base/mime_util_unittest.cc",
4164 "base/network_activity_monitor_unittest.cc", 4161 "base/network_activity_monitor_unittest.cc",
4165 "base/network_change_notifier_unittest.cc", 4162 "base/network_change_notifier_unittest.cc",
4166 "base/network_change_notifier_win_unittest.cc", 4163 "base/network_change_notifier_win_unittest.cc",
4167 "base/network_interfaces_unittest.cc", 4164 "base/network_interfaces_unittest.cc",
4168 "base/network_throttle_manager_impl_unittest.cc", 4165 "base/network_throttle_manager_impl_unittest.cc",
4169 "base/parse_number_unittest.cc", 4166 "base/parse_number_unittest.cc",
4170 "base/percentile_estimator_unittest.cc", 4167 "base/percentile_estimator_unittest.cc",
4171 "base/port_util_unittest.cc", 4168 "base/port_util_unittest.cc",
(...skipping 1073 matching lines...) Expand 10 before | Expand all | Expand 10 after
5245 # Some linker failures have been observed for this target on the Win64 5242 # Some linker failures have been observed for this target on the Win64
5246 # continuous builder, see crbug.com/659369. 5243 # continuous builder, see crbug.com/659369.
5247 # TODO(sebmarchand): Remove this once we have some data. 5244 # TODO(sebmarchand): Remove this once we have some data.
5248 if (is_win && linkrepro_root_dir != "") { 5245 if (is_win && linkrepro_root_dir != "") {
5249 ldflags = [ "/LINKREPRO:" + linkrepro_root_dir + "/" + target_name ] 5246 ldflags = [ "/LINKREPRO:" + linkrepro_root_dir + "/" + target_name ]
5250 } 5247 }
5251 } 5248 }
5252 } 5249 }
5253 5250
5254 action_foreach("cert_verify_proc_whitelist_unittest_data") { 5251 action_foreach("cert_verify_proc_whitelist_unittest_data") {
5255 script = "//net/tools/dafsa/make_dafsa.py" 5252 script = "//base/dafsa/make_dafsa.py"
5256 sources = [ 5253 sources = [
5257 "//net/cert/cert_verify_proc_whitelist_unittest1.gperf", 5254 "//net/cert/cert_verify_proc_whitelist_unittest1.gperf",
5258 ] 5255 ]
5259 outputs = [ 5256 outputs = [
5260 "${target_gen_dir}/cert/{{source_name_part}}-inc.cc", 5257 "${target_gen_dir}/cert/{{source_name_part}}-inc.cc",
5261 ] 5258 ]
5262 args = [ 5259 args = [
5263 "{{source}}", 5260 "{{source}}",
5264 rebase_path("${target_gen_dir}/cert/{{source_name_part}}-inc.cc", 5261 rebase_path("${target_gen_dir}/cert/{{source_name_part}}-inc.cc",
5265 root_build_dir), 5262 root_build_dir),
(...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after
5776 ] 5773 ]
5777 deps = [ 5774 deps = [
5778 ":net_fuzzer_test_support", 5775 ":net_fuzzer_test_support",
5779 ":test_support", 5776 ":test_support",
5780 "//base", 5777 "//base",
5781 "//net", 5778 "//net",
5782 ] 5779 ]
5783 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 5780 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
5784 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 5781 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
5785 } 5782 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698