Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(660)

Unified Diff: media/media.gyp

Issue 12183011: Exclude filter_yuv_mmx.cc from x64 on MSVC prior to 2012 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/media.gyp
===================================================================
--- media/media.gyp (revision 180280)
+++ media/media.gyp (working copy)
@@ -1044,7 +1044,6 @@
'base/simd/empty_register_state_mmx.asm',
'base/simd/filter_yuv.h',
'base/simd/filter_yuv_c.cc',
- 'base/simd/filter_yuv_mmx.cc',
'base/simd/filter_yuv_sse2.cc',
'base/simd/linear_scale_yuv_to_rgb_mmx.asm',
'base/simd/linear_scale_yuv_to_rgb_mmx.inc',
@@ -1056,6 +1055,11 @@
'base/simd/yuv_to_rgb_table.h',
],
'conditions': [
+ [ 'OS!="win" or target_arch=="ia32" or MSVS_VERSION>="2012"', {
+ 'sources': [
+ 'base/simd/filter_yuv_mmx.cc',
+ ],
+ }],
[ 'target_arch == "x64"', {
# Source files optimized for X64 systems.
'sources': [
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698