diff options
author | jshin@chromium.org <jshin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-25 00:58:56 +0000 |
---|---|---|
committer | jshin@chromium.org <jshin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-25 00:58:56 +0000 |
commit | b64886793bc15cf74eb55369fea1bc29fdccda79 (patch) | |
tree | 2e3407f27744165de77319babf176969bdd83f43 /chrome/installer | |
parent | 662626649fb422d8c1d33cf76774364e9307516a (diff) | |
download | chromium_src-b64886793bc15cf74eb55369fea1bc29fdccda79.zip chromium_src-b64886793bc15cf74eb55369fea1bc29fdccda79.tar.gz chromium_src-b64886793bc15cf74eb55369fea1bc29fdccda79.tar.bz2 |
Use the icu data file on Linux (but not on CrOS)
Set icu_use_data_file_flag to 1 for POSIX (other than Mac/iOS/Android).
Mac and Android will be handled in a separate CL.
This has to wait until https://codereview.chromium.org/111723007/ is rolled in.
(done by https://codereview.chromium.org/118313004/ )
BUG=72633
TEST=All linux builds go through and all tests pass and there's no perf (start-up etc) regression.
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=246678
R=mark@chromium.org, mmoss@chromium.org
Review URL: https://codereview.chromium.org/102413007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@247045 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer')
-rw-r--r-- | chrome/installer/linux/common/installer.include | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/installer/linux/common/installer.include b/chrome/installer/linux/common/installer.include index 962fd86..9123a6e 100644 --- a/chrome/installer/linux/common/installer.include +++ b/chrome/installer/linux/common/installer.include @@ -132,6 +132,10 @@ stage_install_common() { install -m 644 "${BUILDDIR}/ui_resources_100_percent.pak" "${STAGEDIR}/${INSTALLDIR}/" fi + # ICU data file; only necessary when icu_use_data_file_flag is set to 1 + # in build/common.gypi. + install -m 644 "${BUILDDIR}/icudtl.dat" "${STAGEDIR}/${INSTALLDIR}/" + # sandbox # Rename sandbox binary with hyphen instead of underscore because that's what # the code looks for, but the build targets can't use hyphens (scons bug?) |