From 2b75ccc8c2aa3efb93ea3a294d0cdb6563b939e4 Mon Sep 17 00:00:00 2001 From: klzgrad Date: Wed, 18 Nov 2020 22:51:53 +0800 Subject: [PATCH] base: Don't fix Y2038 problem with icu --- src/base/BUILD.gn | 2 +- src/base/time/time.h | 2 ++ src/base/time/time_exploded_posix.cc | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/base/BUILD.gn b/src/base/BUILD.gn index b4a70724bb..f7151ce013 100644 --- a/src/base/BUILD.gn +++ b/src/base/BUILD.gn @@ -2281,7 +2281,7 @@ component("base") { # TODO(b/167763382) Find an alternate solution for Chromecast devices, since # adding the icui18n and icuuc deps significantly increases the binary size. - if (!is_castos && !is_cast_android) { + if (false) { sources += [ "time/time_exploded_icu.cc" ] # The ICU dependency is only needed on systems with a 32-bit time_t. diff --git a/src/base/time/time.h b/src/base/time/time.h index 6f435bcb25..8779b6d9a6 100644 --- a/src/base/time/time.h +++ b/src/base/time/time.h @@ -828,6 +828,7 @@ class BASE_EXPORT Time : public time_internal::TimeBase