Skip to content
Snippets Groups Projects
  1. Oct 21, 2016
    • Jungshik Shin's avatar
      Delete source/test · 2e57f555
      Jungshik Shin authored
      We don't use source/test. It's kept to give API usage examples, but
      it got in the way of a version update (git cl upload keeps timing out).
      
      Also, update update.sh to delete source/test after downloading a new
      version from the upstream.
      
      BUG=637001
      TEST=None
      
      Review URL: https://codereview.chromium.org/2435373002 .
      2e57f555
  2. Sep 13, 2016
  3. Aug 17, 2016
  4. Aug 09, 2016
  5. Aug 08, 2016
  6. Aug 02, 2016
    • Jungshik Shin's avatar
      List header files explicitly in BUILD.gn · 56680aaa
      Jungshik Shin authored
      Private headers are listed in source[] while public headers are listed
      in public[] for icuuc and icu18n targets.
      
      This change is to let trybot analyze step recompile icuuc or icu18n even
      when the only change in CL is in a header file (public or private).
      
      BUG=632438
      TEST=`gn check <out_dir>` does not complain.
      TEST=`gn ref <out_dir> third_party/icu/source/common/umutex.h` matches icuuc.
      TEST=`gn ref <out_dir> third_party/icu/source/common/unicode/unistr.h`
           matches icuuc.
      
      R=brettw@chromium.org
      
      Review URL: https://codereview.chromium.org/2186343002 .
      56680aaa
  7. Jul 29, 2016
    • Jungshik Shin's avatar
      Fix isolate_tests/clean isolate step · ef5c7353
      Jungshik Shin authored
      Add 'data' to copy() to for swarm-testing to work on trybots.
      Otherwise, the ICU data bundle would not be copied in isolate_tests step and
      all the tests requiring the ICU data would fail on trybots.
      
      BUG=v8:4828
      TEST=base_unittests and many other tests pass on trybots (with test isolation)
      R=machenbach@chromium.org
      
      Review URL: https://codereview.chromium.org/2197523002 .
      ef5c7353
  8. Jul 27, 2016
    • Jungshik Shin's avatar
      Update IANA timezone db to 2016f from 2016d · 4ba0bcf3
      Jungshik Shin authored
      The only change affecting the current and future time stamp
      is that Asia/Novosibirsk swiches from +06 to +07. The Egyptian
      change in 2016f cancelled out the Egyptian change in 2016e.
      
      http://mm.icann.org/pipermail/tz-announce/2016-July/000040.html
      
      All the pre-built data files are updated except for icudt.dll
      for Windows (non-default build configuration. The default build
      configuration on Windows is covered by this CL).
      
      BUG=473288
      TEST=Try the following in d8 or Chrome's JS console:
      > (new Date("07/23/2016 12:00Z")).toLocaleString("en", {timeZone:
      "Asia/Novosibirsk"})
      7/23/2016, 6:00:00 PM
      > (new Date("07/24/2016 12:00Z")).toLocaleString("en", {timeZone:
      "Asia/Novosibirsk"})
      7/24/2016, 7:00:00 PM
      
      Review URL: https://codereview.chromium.org/2183313002 .
      4ba0bcf3
    • Jungshik Shin's avatar
      Big Endian support part 4 · 3655cfba
      Jungshik Shin authored
      Delete three pre-built assembly source files because they're now
      generated at build-time.
      
      Update data build scripts and README.chromium accordingly.
      
      Update copy_data.sh and copy_data_android.sh so that the assembly
      source files are not copied. Besides, convert the little endian
      data bundle to the big endian data bundle for non-Android platforms.
      
      BUG=v8:4828
      TEST=Rebuild icu data following the procedure in README.chromium
      TEST='gn args <builddir>' with icu_use_data_file set to true or false
      TEST=build base_unittests and run with --gtest_filter=ICU*
      TEST=build base_unittests and run with --gtest_filter=Message*ormat*
      TEST=build 'd8' (v8) and try `(new Date()).toLocaleString("de")`
      
      Review URL: https://codereview.chromium.org/2182883004 .
      3655cfba
  9. Jul 26, 2016
  10. Jul 22, 2016
  11. Jul 21, 2016
    • Miran Karic's avatar
      Add big endian support · e7d37b69
      Miran Karic authored
      Add a script that generates an assembly file from a .dat file. This is
      needed for generating big endian assembly file after using icupkg to
      convert little endian icudtl.dat to big endian icudtb.dat. Also the
      icu.gyp file is modified so big endian architectures use appropriate
      files.
      
      Patch by miran.karic@  ( https://codereview.chromium.org/1967523002/)
      with a couple of fixes:
      
      1. Two errors mentioned against PS#9 in the above CL.
      2. Support copying icu data file for Big Endian targets.
      
      Besides, icudtb.dat was added to common. icudtb.dat was created by
      running 'icupkg -tb icudt56l.dat icudt56b.dat' and renaming icudt56b.dat
      to icudtb.dat.
      
      BUG=v8:4828
      TEST='d8' is built correct with icu_use_data_file set to either 0 or 1.
      TEST=run `GYP_DEFINES="target_arch=mips" ./gypfiles/gyp_v8` and make sure
      that ninja files use 'b' data/assembly file for Big Endian.
      
      Review URL: https://codereview.chromium.org/2162393003 .
      
      Patch from Miran Karic <miran.karic@imgtec.com>.
      e7d37b69
  12. Jul 08, 2016
  13. Jun 24, 2016
  14. Jun 02, 2016
  15. May 26, 2016
  16. May 23, 2016
  17. May 20, 2016
    • Jungshik Shin's avatar
      Update IANA timezone DB to 2016d · 54f86bb1
      Jungshik Shin authored
      What's new in 2016d is found at
      
        http://mm.icann.org/pipermail/tz-announce/2016-April/000038.html
      
      Rebuilt ICU data/assembly files are checked in (not shown in the
      codereview due to their sizes).
      
      While I'm at it, add scripts/LICENSE file that is identical to
      LICENSE at the top of the Chromium tree. Because LICENSE in
      third_party/icu is for ICU and is not applicable to files in scripts/.
      
      BUG=473288
      TBR=mark
      TEST=In JavaScript console, run the following.
            apr30_2016_1200 = new Date("04/30/2016 12:00Z")
            may01_2016_1200 = new Date("05/01/2016 12:00Z")
            apr30_2016_1200.toLocaleString("en", {timeZone: "America/Caracas"})
            may01_2016_1200.toLocaleString("en", {timeZone: "America/Caracas"})
      
        On April 30, 2016, Caracas is 4:30 behind UTC. On May 1, it's 4:00 behind.
      
      Review URL: https://codereview.chromium.org/1985243002 .
      54f86bb1
  18. May 19, 2016
  19. May 18, 2016
  20. Apr 05, 2016
  21. Mar 30, 2016
  22. Mar 25, 2016
  23. Mar 20, 2016
  24. Mar 18, 2016
  25. Mar 11, 2016
  26. Feb 19, 2016
  27. Feb 08, 2016
  28. Feb 04, 2016
  29. Feb 03, 2016
    • Jungshik Shin's avatar
      Apply an overlooked patch to brkitr/word.txt · 452b580a
      Jungshik Shin authored
      patches/wordbrk.patch was not applied by mistake while updating ICU
      to 56.1.
      
      This affects how we break domain names (separated by full stop). We want
      them to be split at full stop at the cost of 'breaking' cases like
      "e.g." and "i.e.".
      
      All the ICU data files were rebuilt for the change.
      
      BUG=575007
      TEST=gfx_unittests --gtest_filter=RenderText*Word*
      TEST=layout tests: css1/text_properties/text_transform.html fast/text/window-find.html editing/text-iterator/findString.html css2.1/t1605-c545-txttrans-00-b-ag.html
      
      Review URL: https://codereview.chromium.org/1659833002 .
      452b580a
  30. Feb 02, 2016
  31. Jan 29, 2016
    • Jungshik Shin's avatar
      ICU 56 step 6:Check in the pre-built ICU data · d2c18300
      Jungshik Shin authored
      * Update the pre-built ICU data files for all platforms
      
        source/data/in/icudtl.dat for non-Android platforms
        {linux,mac}/icudt*.S for linux/mac
        android/icudtl.dat and android/icudt*.S for Android
        windows/icudt.dll for Windows
      
      * Update Android data trimming script
      
        1. Make sure that 'default' calendar is kept in locales where it's relevant
          : root, th, fa, ar_SA, etc.
        2. Add a minimal region data to work around a bug in ICU with pool.res
           handling
      
      * Update gn and gyp files
      * And add a TODO comment to update.sh to automate the build file update.
      * Add it_CH to the locale list.
      * Add sr_Latn to unit/reslocal.mk (required by sh) and
        line_normal_fi to brkitr/brklocal.mk (referred to in brkitr/fi.txt) in
        place of line_fi.
      
      * Update and add scripts for data building
      * Completely rewrite README.chromium
      * Check-in the prebuilt ICU data files/assembly sources for
        Linux,Mac,Windows,Chrome OS and Android.
      
      BUG=575007
      TEST=Blink layout tests, webkit unittests
      TEST=All bots can build successfully
      TEST=net_unittests --gtest_filter="*ilenameUtil*"
      TEST=net_unittests --gtest_filter="*IDN*" (pending bug 336973)
      TEST=base_unittests --gtest_filter="*Conv*"
      TEST=browser_tests --gtest_filter="*ncoding*"
      TEST=base_unittests --gtest_filter="*essage*"
      TEST=ui_base_unittests --gtest_filter="*ormat*"
      TEST=ui_base_unittests --gtest_filter="L10n*"
      R=mark@chromium.org
      
      Review URL: https://codereview.chromium.org/1639543006 .
      d2c18300
Loading