summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorbradnelson@chromium.org <bradnelson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-19 19:28:51 +0000
committerbradnelson@chromium.org <bradnelson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-19 19:28:51 +0000
commit3a41a4a57beaf79e1c2a00a0738e918b4f138f7a (patch)
treea724d8ae2ff0f80bd8fca13ab1aa3dd4a3377105 /chrome
parentaa712f33f1299c2086e7b385637885b8759c0488 (diff)
downloadchromium_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.gyp3
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',