diff options
author | pinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-22 16:29:35 +0000 |
---|---|---|
committer | pinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-22 16:29:35 +0000 |
commit | ee86cb81cde66cbf53704d643440c3b71376de13 (patch) | |
tree | 61a7510448c6d1a1948553a7b7f63a3c5ef5eebc /chrome | |
parent | 06cb170aa53aa7b59e3dc5e96bc6245d7d1a547a (diff) | |
download | chromium_src-ee86cb81cde66cbf53704d643440c3b71376de13.zip chromium_src-ee86cb81cde66cbf53704d643440c3b71376de13.tar.gz chromium_src-ee86cb81cde66cbf53704d643440c3b71376de13.tar.bz2 |
On Mac, don't emit locale-specific string packs into locale dirs in app bundle for ui_tests. Without the correstponding nibs, it breaks running the app in those languages. Commenting out output files for now until we have a full strategy for building the l10n bundle.
BUG=12471.
TEST=Test launching app with OS locale set to german, chinese, hebrew.
Review URL: http://codereview.chromium.org/113766
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16745 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/chrome.gyp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index 5d76731..b53df23 100644 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -2296,7 +2296,12 @@ 'conditions': [ ['OS=="mac"', { 'outputs': [ - '<(INTERMEDIATE_DIR)/repack/da.lproj/locale.pak', + # TODO(port): We can't simply emit the strings file without + # the nibs too, or the app fails to launch in this language. + # Currently, this is only for ui_tests, which won't work on + # the Mac anyway, so temporarily disable until we have the + # full strategy figured out. This goes for he and zh below. + # '<(INTERMEDIATE_DIR)/repack/da.lproj/locale.pak', ], }, { # else: OS!="mac" 'outputs': [ @@ -2375,7 +2380,7 @@ 'conditions': [ ['OS=="mac"', { 'outputs': [ - '<(INTERMEDIATE_DIR)/repack/he.lproj/locale.pak', + # '<(INTERMEDIATE_DIR)/repack/he.lproj/locale.pak', ], }, { # else: OS!="mac" 'outputs': [ @@ -2414,7 +2419,7 @@ 'conditions': [ ['OS=="mac"', { 'outputs': [ - '<(INTERMEDIATE_DIR)/repack/zh.lproj/locale.pak', + # '<(INTERMEDIATE_DIR)/repack/zh.lproj/locale.pak', ], }, { # else: OS!="mac" 'outputs': [ |