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

Side by Side Diff: base/BUILD.gn

Issue 2740673002: Prepare Chromium and Blink for ICU 59 (Closed)
Patch Set: TimeFormat... in base:: Created 3 years, 9 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 # 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 1682 matching lines...) Expand 10 before | Expand all | Expand 10 after
1693 "i18n/streaming_utf8_validator.cc", 1693 "i18n/streaming_utf8_validator.cc",
1694 "i18n/streaming_utf8_validator.h", 1694 "i18n/streaming_utf8_validator.h",
1695 "i18n/string_compare.cc", 1695 "i18n/string_compare.cc",
1696 "i18n/string_compare.h", 1696 "i18n/string_compare.h",
1697 "i18n/string_search.cc", 1697 "i18n/string_search.cc",
1698 "i18n/string_search.h", 1698 "i18n/string_search.h",
1699 "i18n/time_formatting.cc", 1699 "i18n/time_formatting.cc",
1700 "i18n/time_formatting.h", 1700 "i18n/time_formatting.h",
1701 "i18n/timezone.cc", 1701 "i18n/timezone.cc",
1702 "i18n/timezone.h", 1702 "i18n/timezone.h",
1703 "i18n/unicodestring.h",
1703 "i18n/utf8_validator_tables.cc", 1704 "i18n/utf8_validator_tables.cc",
1704 "i18n/utf8_validator_tables.h", 1705 "i18n/utf8_validator_tables.h",
1705 ] 1706 ]
1706 defines = [ "BASE_I18N_IMPLEMENTATION" ] 1707 defines = [ "BASE_I18N_IMPLEMENTATION" ]
1707 configs += [ "//build/config/compiler:wexit_time_destructors" ] 1708 configs += [ "//build/config/compiler:wexit_time_destructors" ]
1708 public_deps = [ 1709 public_deps = [
1709 "//third_party/ced", 1710 "//third_party/ced",
1710 "//third_party/icu", 1711 "//third_party/icu",
1711 ] 1712 ]
1712 deps = [ 1713 deps = [
(...skipping 954 matching lines...) Expand 10 before | Expand all | Expand 10 after
2667 } 2668 }
2668 2669
2669 fuzzer_test("base_json_correctness_fuzzer") { 2670 fuzzer_test("base_json_correctness_fuzzer") {
2670 sources = [ 2671 sources = [
2671 "json/correctness_fuzzer.cc", 2672 "json/correctness_fuzzer.cc",
2672 ] 2673 ]
2673 deps = [ 2674 deps = [
2674 ":base", 2675 ":base",
2675 ] 2676 ]
2676 } 2677 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698