summaryrefslogtreecommitdiffstats
path: root/third_party/widevine/cdm
diff options
context:
space:
mode:
authorxhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-04 05:28:25 +0000
committerxhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-04 05:28:25 +0000
commit6a6be6400f963fba527e12b3b6abad67345f0edb (patch)
tree043010576fb365dcfc24b51ee9fcbd1f67125190 /third_party/widevine/cdm
parent59d274203a288e5e81c639afff2aa74ea2c8ad66 (diff)
downloadchromium_src-6a6be6400f963fba527e12b3b6abad67345f0edb.zip
chromium_src-6a6be6400f963fba527e12b3b6abad67345f0edb.tar.gz
chromium_src-6a6be6400f963fba527e12b3b6abad67345f0edb.tar.bz2
Build the Widevine CDM adapter on Win.
When building the adapter we'll see LNK2019 error and LNK4075/LNK4088 warnings. These are expected. The linking will succeed regardless and the adapter will be generated. These errors/warnings will be resolved later. BUG=180260,237636 R=ddorwin@chromium.org Review URL: https://codereview.chromium.org/14789015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@198300 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/widevine/cdm')
-rw-r--r--third_party/widevine/cdm/widevine_cdm.gyp10
1 files changed, 9 insertions, 1 deletions
diff --git a/third_party/widevine/cdm/widevine_cdm.gyp b/third_party/widevine/cdm/widevine_cdm.gyp
index 67efd99..2df98b2 100644
--- a/third_party/widevine/cdm/widevine_cdm.gyp
+++ b/third_party/widevine/cdm/widevine_cdm.gyp
@@ -70,8 +70,16 @@
'<(PRODUCT_DIR)/libwidevinecdm.so',
],
}],
- [ 'OS == "win" and 0', {
+ [ 'OS == "win"', {
'type': 'shared_library',
+ # See http://crbug.com/237636.
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'AdditionalOptions': [
+ '/FORCE:UNRESOLVED',
+ ],
+ },
+ },
}],
[ 'OS == "mac"', {
'type': 'loadable_module',