| Index: base/BUILD.gn
|
| diff --git a/base/BUILD.gn b/base/BUILD.gn
|
| index 6866707c2db4129ad517c1974d81357b6ced3f00..a5998638dbfd24d9208807729bde94ba59f56a0b 100644
|
| --- a/base/BUILD.gn
|
| +++ b/base/BUILD.gn
|
| @@ -966,6 +966,8 @@ component("i18n") {
|
| "i18n/icu_string_conversions.h",
|
| "i18n/icu_util.cc",
|
| "i18n/icu_util.h",
|
| + "i18n/message_formatter.cc",
|
| + "i18n/message_formatter.h",
|
| "i18n/number_formatting.cc",
|
| "i18n/number_formatting.h",
|
| "i18n/rtl.cc",
|
| @@ -985,10 +987,12 @@ component("i18n") {
|
| ]
|
| defines = [ "BASE_I18N_IMPLEMENTATION" ]
|
| configs += [ "//build/config/compiler:wexit_time_destructors" ]
|
| + public_deps = [
|
| + "//third_party/icu",
|
| + ]
|
| deps = [
|
| ":base",
|
| "//base/third_party/dynamic_annotations",
|
| - "//third_party/icu",
|
| ]
|
|
|
| if (!is_debug) {
|
| @@ -1236,6 +1240,7 @@ test("base_unittests") {
|
| "i18n/char_iterator_unittest.cc",
|
| "i18n/file_util_icu_unittest.cc",
|
| "i18n/icu_string_conversions_unittest.cc",
|
| + "i18n/message_formatter_unittest.cc",
|
| "i18n/number_formatting_unittest.cc",
|
| "i18n/rtl_unittest.cc",
|
| "i18n/streaming_utf8_validator_unittest.cc",
|
|
|