diff options
author | apatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-10 23:30:23 +0000 |
---|---|---|
committer | apatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-10 23:30:23 +0000 |
commit | 1eef1c588c77f15b47f4e3c177dfd2542e7c4bde (patch) | |
tree | b1a76571792a53f9883bdaf299e2a5301b149285 /content/content_gpu.gypi | |
parent | 1555122720ea4f0bbc17e28ae6ab12954782ceaa (diff) | |
download | chromium_src-1eef1c588c77f15b47f4e3c177dfd2542e7c4bde.zip chromium_src-1eef1c588c77f15b47f4e3c177dfd2542e7c4bde.tar.gz chromium_src-1eef1c588c77f15b47f4e3c177dfd2542e7c4bde.tar.bz2 |
Win: content/gpu has hard dependency on setupapi.dll.
For some reason it was loaded dynamically but it has been supported since Win 2000:
http://msdn.microsoft.com/en-us/library/windows/hardware/ff551963(v=vs.85).aspx
This is to address an issue whereby the DLL cannot be loaded once the sandbox is enabled on some systems.
BUG=112205
Review URL: https://chromiumcodereview.appspot.com/9382019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121565 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/content_gpu.gypi')
-rw-r--r-- | content/content_gpu.gypi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/content/content_gpu.gypi b/content/content_gpu.gypi index 6afa7e2..c31b081 100644 --- a/content/content_gpu.gypi +++ b/content/content_gpu.gypi @@ -39,6 +39,11 @@ '../third_party/angle/src/build_angle.gyp:libEGL', '../third_party/angle/src/build_angle.gyp:libGLESv2', ], + 'link_settings': { + 'libraries': [ + '-lsetupapi.lib', + ], + }, }], ['OS=="win" and directxsdk_exists=="True"', { 'actions': [ |