| OLD | NEW |
| 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 1684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1695 "i18n/streaming_utf8_validator.cc", | 1695 "i18n/streaming_utf8_validator.cc", |
| 1696 "i18n/streaming_utf8_validator.h", | 1696 "i18n/streaming_utf8_validator.h", |
| 1697 "i18n/string_compare.cc", | 1697 "i18n/string_compare.cc", |
| 1698 "i18n/string_compare.h", | 1698 "i18n/string_compare.h", |
| 1699 "i18n/string_search.cc", | 1699 "i18n/string_search.cc", |
| 1700 "i18n/string_search.h", | 1700 "i18n/string_search.h", |
| 1701 "i18n/time_formatting.cc", | 1701 "i18n/time_formatting.cc", |
| 1702 "i18n/time_formatting.h", | 1702 "i18n/time_formatting.h", |
| 1703 "i18n/timezone.cc", | 1703 "i18n/timezone.cc", |
| 1704 "i18n/timezone.h", | 1704 "i18n/timezone.h", |
| 1705 "i18n/unicodestring.h", |
| 1705 "i18n/utf8_validator_tables.cc", | 1706 "i18n/utf8_validator_tables.cc", |
| 1706 "i18n/utf8_validator_tables.h", | 1707 "i18n/utf8_validator_tables.h", |
| 1707 ] | 1708 ] |
| 1708 defines = [ "BASE_I18N_IMPLEMENTATION" ] | 1709 defines = [ "BASE_I18N_IMPLEMENTATION" ] |
| 1709 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 1710 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 1710 public_deps = [ | 1711 public_deps = [ |
| 1711 "//third_party/ced", | 1712 "//third_party/ced", |
| 1712 "//third_party/icu", | 1713 "//third_party/icu", |
| 1713 ] | 1714 ] |
| 1714 deps = [ | 1715 deps = [ |
| (...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2675 } | 2676 } |
| 2676 | 2677 |
| 2677 fuzzer_test("base_json_correctness_fuzzer") { | 2678 fuzzer_test("base_json_correctness_fuzzer") { |
| 2678 sources = [ | 2679 sources = [ |
| 2679 "json/correctness_fuzzer.cc", | 2680 "json/correctness_fuzzer.cc", |
| 2680 ] | 2681 ] |
| 2681 deps = [ | 2682 deps = [ |
| 2682 ":base", | 2683 ":base", |
| 2683 ] | 2684 ] |
| 2684 } | 2685 } |
| OLD | NEW |