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 1673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1684 "i18n/streaming_utf8_validator.cc", | 1684 "i18n/streaming_utf8_validator.cc", |
1685 "i18n/streaming_utf8_validator.h", | 1685 "i18n/streaming_utf8_validator.h", |
1686 "i18n/string_compare.cc", | 1686 "i18n/string_compare.cc", |
1687 "i18n/string_compare.h", | 1687 "i18n/string_compare.h", |
1688 "i18n/string_search.cc", | 1688 "i18n/string_search.cc", |
1689 "i18n/string_search.h", | 1689 "i18n/string_search.h", |
1690 "i18n/time_formatting.cc", | 1690 "i18n/time_formatting.cc", |
1691 "i18n/time_formatting.h", | 1691 "i18n/time_formatting.h", |
1692 "i18n/timezone.cc", | 1692 "i18n/timezone.cc", |
1693 "i18n/timezone.h", | 1693 "i18n/timezone.h", |
| 1694 "i18n/unicodestring.h", |
1694 "i18n/utf8_validator_tables.cc", | 1695 "i18n/utf8_validator_tables.cc", |
1695 "i18n/utf8_validator_tables.h", | 1696 "i18n/utf8_validator_tables.h", |
1696 ] | 1697 ] |
1697 defines = [ "BASE_I18N_IMPLEMENTATION" ] | 1698 defines = [ "BASE_I18N_IMPLEMENTATION" ] |
1698 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 1699 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
1699 public_deps = [ | 1700 public_deps = [ |
1700 "//third_party/ced", | 1701 "//third_party/ced", |
1701 "//third_party/icu", | 1702 "//third_party/icu", |
1702 ] | 1703 ] |
1703 deps = [ | 1704 deps = [ |
(...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2656 } | 2657 } |
2657 | 2658 |
2658 fuzzer_test("base_json_correctness_fuzzer") { | 2659 fuzzer_test("base_json_correctness_fuzzer") { |
2659 sources = [ | 2660 sources = [ |
2660 "json/correctness_fuzzer.cc", | 2661 "json/correctness_fuzzer.cc", |
2661 ] | 2662 ] |
2662 deps = [ | 2663 deps = [ |
2663 ":base", | 2664 ":base", |
2664 ] | 2665 ] |
2665 } | 2666 } |
OLD | NEW |