summaryrefslogtreecommitdiff
path: root/libvpx.gyp
diff options
context:
space:
mode:
authorfgalligan@chromium.org <fgalligan@chromium.org@4ff67af0-8c30-449e-8e8b-ad334ec8d88c>2014-05-04 21:10:14 +0000
committerfgalligan@chromium.org <fgalligan@chromium.org@4ff67af0-8c30-449e-8e8b-ad334ec8d88c>2014-05-04 21:10:14 +0000
commit55bd50b97c91b87f9c5a99b2a076293951903478 (patch)
tree884d316194bcc05e0658ab17c9a10f7dd3e517e2 /libvpx.gyp
parent77496404dc182c2f4a5f86ebabffe1d1ceb81e7e (diff)
downloadlibvpx-55bd50b97c91b87f9c5a99b2a076293951903478.tar.gz
Fix win64 builds for vp8.
Setting optimize to 'size' results in an error for vp8 on win64. Must be set to 'speed'. BUG=366025 TBR=tomfinegan@chromium.org Review URL: https://codereview.chromium.org/261253002 git-svn-id: http://src.chromium.org/svn/trunk/deps/third_party/libvpx@268125 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
Diffstat (limited to 'libvpx.gyp')
-rw-r--r--libvpx.gyp6
1 files changed, 2 insertions, 4 deletions
diff --git a/libvpx.gyp b/libvpx.gyp
index 1d2c0b8..3e93783 100644
--- a/libvpx.gyp
+++ b/libvpx.gyp
@@ -53,10 +53,8 @@
'variables': {
'conditions': [
['OS=="win" and buildtype=="Official"', {
- # Setting the optimizations to 'speed' or to 'max' results in a lot of
- # unresolved symbols. The only supported mode is 'size' (see
- # crbug.com/352476).
- 'optimize' :'size',
+ # Do not set to 'size', as it results in an error on win64.
+ 'optimize' :'speed',
}],
],
},