diff options
author | bradnelson@chromium.org <bradnelson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-19 19:28:51 +0000 |
---|---|---|
committer | bradnelson@chromium.org <bradnelson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-19 19:28:51 +0000 |
commit | 3a41a4a57beaf79e1c2a00a0738e918b4f138f7a (patch) | |
tree | a724d8ae2ff0f80bd8fca13ab1aa3dd4a3377105 /chrome | |
parent | aa712f33f1299c2086e7b385637885b8759c0488 (diff) | |
download | chromium_src-3a41a4a57beaf79e1c2a00a0738e918b4f138f7a.zip chromium_src-3a41a4a57beaf79e1c2a00a0738e918b4f138f7a.tar.gz chromium_src-3a41a4a57beaf79e1c2a00a0738e918b4f138f7a.tar.bz2 |
We recently learned that loadable_modules should have the IgnoreImportLibrary
setting turned on to prevent their dependencies from assuming they emit an
import libary. This implies that these two targets should be loadable_module,
rather than manually setting IgnoreImportLibrary.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/132080
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18839 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/app/locales/locales.gyp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/app/locales/locales.gyp b/chrome/app/locales/locales.gyp index c2f0ed7..0fbffd8 100644 --- a/chrome/app/locales/locales.gyp +++ b/chrome/app/locales/locales.gyp @@ -12,7 +12,7 @@ '../../../build/common.gypi', ], 'target_defaults': { - 'type': 'shared_library', + 'type': 'loadable_module', 'dependencies': [ '../../chrome.gyp:chrome_strings', '../../../webkit/webkit.gyp:webkit_strings', @@ -22,7 +22,6 @@ 'VCLinkerTool': { 'BaseAddress': '0x3CF00000', 'OutputFile': '$(OutDir)\\locales\\$(ProjectName).dll', - 'IgnoreImportLibrary': 'true', 'LinkIncremental': '1', # 1 == No 'LinkTimeCodeGeneration': '0', 'ResourceOnlyDLL': 'true', |