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 /webkit/activex_shim_dll/activex_shim_dll.gyp | |
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 'webkit/activex_shim_dll/activex_shim_dll.gyp')
-rw-r--r-- | webkit/activex_shim_dll/activex_shim_dll.gyp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/webkit/activex_shim_dll/activex_shim_dll.gyp b/webkit/activex_shim_dll/activex_shim_dll.gyp index 5ba9b67..c8e6948 100644 --- a/webkit/activex_shim_dll/activex_shim_dll.gyp +++ b/webkit/activex_shim_dll/activex_shim_dll.gyp @@ -14,7 +14,7 @@ 'targets': [ { 'target_name': 'activex_shim_dll', - 'type': 'shared_library', + 'type': 'loadable_module', 'dependencies': [ '../../base/base.gyp:base', '../../third_party/npapi/npapi.gyp:npapi', @@ -25,7 +25,6 @@ 'msvs_settings': { 'VCLinkerTool': { 'RegisterOutput': 'false', - 'IgnoreImportLibrary': 'true', }, }, 'sources': [ |