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

Side by Side Diff: base/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
« no previous file with comments | « no previous file | base/dafsa/PRESUBMIT.py » ('j') | components/url_formatter/top_domains/README » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # HOW TO WRITE CONDITIONALS IN THIS FILE 5 # HOW TO WRITE CONDITIONALS IN THIS FILE
6 # ====================================== 6 # ======================================
7 # 7 #
8 # In many other places, one would write a conditional that expresses all the 8 # In many other places, one would write a conditional that expresses all the
9 # cases when a source file is used or unused, and then either add or subtract 9 # cases when a source file is used or unused, and then either add or subtract
10 # it from the sources list in that case 10 # it from the sources list in that case
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 "lazy_instance.cc", 401 "lazy_instance.cc",
402 "lazy_instance.h", 402 "lazy_instance.h",
403 "linux_util.cc", 403 "linux_util.cc",
404 "linux_util.h", 404 "linux_util.h",
405 "location.cc", 405 "location.cc",
406 "location.h", 406 "location.h",
407 "logging.cc", 407 "logging.cc",
408 "logging.h", 408 "logging.h",
409 "logging_win.cc", 409 "logging_win.cc",
410 "logging_win.h", 410 "logging_win.h",
411 "lookup_string_in_fixed_set.cc",
412 "lookup_string_in_fixed_set.h",
411 "mac/authorization_util.h", 413 "mac/authorization_util.h",
412 "mac/authorization_util.mm", 414 "mac/authorization_util.mm",
413 "mac/bind_objc_block.h", 415 "mac/bind_objc_block.h",
414 "mac/bundle_locations.h", 416 "mac/bundle_locations.h",
415 "mac/bundle_locations.mm", 417 "mac/bundle_locations.mm",
416 "mac/call_with_eh_frame.cc", 418 "mac/call_with_eh_frame.cc",
417 "mac/call_with_eh_frame.h", 419 "mac/call_with_eh_frame.h",
418 "mac/call_with_eh_frame_asm.S", 420 "mac/call_with_eh_frame_asm.S",
419 "mac/close_nocancel.cc", 421 "mac/close_nocancel.cc",
420 "mac/cocoa_protocols.h", 422 "mac/cocoa_protocols.h",
(...skipping 1559 matching lines...) Expand 10 before | Expand all | Expand 10 after
1980 "ios/device_util_unittest.mm", 1982 "ios/device_util_unittest.mm",
1981 "ios/weak_nsobject_unittest.mm", 1983 "ios/weak_nsobject_unittest.mm",
1982 "json/json_parser_unittest.cc", 1984 "json/json_parser_unittest.cc",
1983 "json/json_reader_unittest.cc", 1985 "json/json_reader_unittest.cc",
1984 "json/json_value_converter_unittest.cc", 1986 "json/json_value_converter_unittest.cc",
1985 "json/json_value_serializer_unittest.cc", 1987 "json/json_value_serializer_unittest.cc",
1986 "json/json_writer_unittest.cc", 1988 "json/json_writer_unittest.cc",
1987 "json/string_escape_unittest.cc", 1989 "json/string_escape_unittest.cc",
1988 "lazy_instance_unittest.cc", 1990 "lazy_instance_unittest.cc",
1989 "logging_unittest.cc", 1991 "logging_unittest.cc",
1992 "lookup_string_in_fixed_set_unittest.cc",
1990 "mac/bind_objc_block_unittest.mm", 1993 "mac/bind_objc_block_unittest.mm",
1991 "mac/call_with_eh_frame_unittest.mm", 1994 "mac/call_with_eh_frame_unittest.mm",
1992 "mac/dispatch_source_mach_unittest.cc", 1995 "mac/dispatch_source_mach_unittest.cc",
1993 "mac/foundation_util_unittest.mm", 1996 "mac/foundation_util_unittest.mm",
1994 "mac/mac_util_unittest.mm", 1997 "mac/mac_util_unittest.mm",
1995 "mac/mach_port_broker_unittest.cc", 1998 "mac/mach_port_broker_unittest.cc",
1996 "mac/objc_property_releaser_unittest.mm", 1999 "mac/objc_property_releaser_unittest.mm",
1997 "mac/objc_release_properties_unittest.mm", 2000 "mac/objc_release_properties_unittest.mm",
1998 "mac/scoped_nsobject_unittest.mm", 2001 "mac/scoped_nsobject_unittest.mm",
1999 "mac/scoped_objc_class_swizzler_unittest.mm", 2002 "mac/scoped_objc_class_swizzler_unittest.mm",
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
2205 defines = [] 2208 defines = []
2206 2209
2207 deps = [ 2210 deps = [
2208 ":base", 2211 ":base",
2209 ":i18n", 2212 ":i18n",
2210 ":message_loop_tests", 2213 ":message_loop_tests",
2211 "//base/allocator:features", 2214 "//base/allocator:features",
2212 "//base/test:native_library_test_utils", 2215 "//base/test:native_library_test_utils",
2213 "//base/test:run_all_base_unittests", 2216 "//base/test:run_all_base_unittests",
2214 "//base/test:test_support", 2217 "//base/test:test_support",
2218 "//base/test/dafsa",
2215 "//base/third_party/dynamic_annotations", 2219 "//base/third_party/dynamic_annotations",
2216 "//testing/gmock", 2220 "//testing/gmock",
2217 "//testing/gtest", 2221 "//testing/gtest",
2218 "//third_party/icu", 2222 "//third_party/icu",
2219 ] 2223 ]
2220 2224
2221 data_deps = [ 2225 data_deps = [
2222 "//base/test:test_shared_library", 2226 "//base/test:test_shared_library",
2223 ] 2227 ]
2224 2228
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
2688 } 2692 }
2689 2693
2690 fuzzer_test("base_json_correctness_fuzzer") { 2694 fuzzer_test("base_json_correctness_fuzzer") {
2691 sources = [ 2695 sources = [
2692 "json/correctness_fuzzer.cc", 2696 "json/correctness_fuzzer.cc",
2693 ] 2697 ]
2694 deps = [ 2698 deps = [
2695 ":base", 2699 ":base",
2696 ] 2700 ]
2697 } 2701 }
OLDNEW
« no previous file with comments | « no previous file | base/dafsa/PRESUBMIT.py » ('j') | components/url_formatter/top_domains/README » ('J')

Powered by Google App Engine
This is Rietveld 408576698