diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-14 20:09:53 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-14 20:09:53 +0000 |
commit | 0751ddc6d5451dbc6a80392b22d24deda93e0e79 (patch) | |
tree | f0a89d279d2ec62d9f75f63d68b76fb3e2a9a75a /webkit | |
parent | 4982f883ca59b89e031bbbd3458fa5085d6fb137 (diff) | |
download | chromium_src-0751ddc6d5451dbc6a80392b22d24deda93e0e79.zip chromium_src-0751ddc6d5451dbc6a80392b22d24deda93e0e79.tar.gz chromium_src-0751ddc6d5451dbc6a80392b22d24deda93e0e79.tar.bz2 |
Wean activex_shim from urlmon.lib:
Remove urlmon.lib from activex_shim's AdditionalDependencies.
Add urlmon.lib to AdditionalDependencies in chrome_dll.vcproj
and unittests.vcproj.
Add activex_shim as a dependency of default_plugin, so the things
that link against default_plugin get urlmon.lib from the
activex_shim link_settings.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/126103
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18366 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/activex_shim/activex_shim.gyp | 6 | ||||
-rw-r--r-- | webkit/default_plugin/default_plugin.gyp | 5 |
2 files changed, 3 insertions, 8 deletions
diff --git a/webkit/activex_shim/activex_shim.gyp b/webkit/activex_shim/activex_shim.gyp index 7f08aaf..585be5b 100644 --- a/webkit/activex_shim/activex_shim.gyp +++ b/webkit/activex_shim/activex_shim.gyp @@ -42,12 +42,6 @@ 'web_activex_site.cc', 'web_activex_site.h', ], - # TODO(bradnelson): Add direct support for this kind of thing to gyp. - 'msvs_settings': { - 'VCLibrarianTool': { - 'AdditionalDependencies': 'urlmon.lib', - }, - }, 'link_settings': { 'libraries': [ '-lurlmon.lib', diff --git a/webkit/default_plugin/default_plugin.gyp b/webkit/default_plugin/default_plugin.gyp index dd4ca16..2aeac4e 100644 --- a/webkit/default_plugin/default_plugin.gyp +++ b/webkit/default_plugin/default_plugin.gyp @@ -15,13 +15,14 @@ 'target_name': 'default_plugin', 'type': '<(library)', 'dependencies': [ - '../../third_party/libxml/libxml.gyp:libxml', + '../../net/net.gyp:net_resources', '../../third_party/icu38/icu38.gyp:icui18n', '../../third_party/icu38/icu38.gyp:icuuc', + '../../third_party/libxml/libxml.gyp:libxml', '../../third_party/npapi/npapi.gyp:npapi', + '../activex_shim/activex_shim.gyp:activex_shim', '../webkit.gyp:webkit_resources', '../webkit.gyp:webkit_strings', - '../../net/net.gyp:net_resources', ], 'include_dirs': [ '../..', |