diff options
author | battre@chromium.org <battre@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-26 16:20:21 +0000 |
---|---|---|
committer | battre@chromium.org <battre@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-26 16:20:21 +0000 |
commit | 4ea09f19e7e3223022ddc8023679a39c6be9d72d (patch) | |
tree | 6aa710de30ea1075215a134a56dfbd3fea50a8d2 /build | |
parent | 4a0eaee250e932c453dcff65e4c8874a38321c29 (diff) | |
download | chromium_src-4ea09f19e7e3223022ddc8023679a39c6be9d72d.zip chromium_src-4ea09f19e7e3223022ddc8023679a39c6be9d72d.tar.gz chromium_src-4ea09f19e7e3223022ddc8023679a39c6be9d72d.tar.bz2 |
Revert 98103 - Switch to using .pak files for locale data on Windows.
We were using .dlls, but the .pak files are smaller and this will
allow us to share more code across platforms.
- Remove app/locales.gyp (used on win to generate the locale
dlls) and references to it in other gyp(i) files.
- Update various packaging scripts.
- Move functions from resource_bundle_posix.cc to
resource_bundle.cc (LoadResourcesDataPak, UnloadLocaleResources,
GetLocalizedString, LoadLocaleResources) and delete the
corresponding functions from resource_bundle_win.cc.
Fixes from previous patch:
- Made dependencies of packed_resources explicit (MSVS can't figure
it out from the inputs).
- Removed a couple cases where we were looking for dlls on Windows
(in l10n_util.cc and l10n_util_unittest.cc).
BUG=92724
TBR=cpu
Review URL: http://codereview.chromium.org/7714028
TBR=tony@chromium.org
Review URL: http://codereview.chromium.org/7744053
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98426 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/all.gyp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build/all.gyp b/build/all.gyp index cc8e292..d93347c 100644 --- a/build/all.gyp +++ b/build/all.gyp @@ -115,6 +115,7 @@ 'dependencies': [ '../aura/aura.gyp:*', '../breakpad/breakpad.gyp:*', + '../chrome/app/locales/locales.gyp:*', '../chrome_frame/chrome_frame.gyp:*', '../cloud_print/virtual_driver/virtual_driver.gyp:*', '../courgette/courgette.gyp:*', @@ -524,6 +525,7 @@ 'target_name': 'chrome_official_builder', 'type': 'none', 'dependencies': [ + '../chrome/app/locales/locales.gyp:*', '../chrome/chrome.gyp:chromedriver', '../chrome/chrome.gyp:crash_service', '../chrome/chrome.gyp:crash_service_win64', |