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

Unified Diff: media/media.gyp

Issue 10952006: [MIPS] Add support in media.gyp for building on MIPS architecture. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Minor update. Created 8 years, 3 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 | « media/base/yuv_convert.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/media.gyp
diff --git a/media/media.gyp b/media/media.gyp
index 0d23796dc2568fb53894542ab8f092ce14316637..5d60aa22e76a1bbcc59cec4c8b3b3561f14ce91f 100644
--- a/media/media.gyp
+++ b/media/media.gyp
@@ -804,9 +804,9 @@
'yuv_convert_simd_x86',
],
}],
- [ 'target_arch == "arm"', {
+ [ 'target_arch == "arm" or target_arch == "mipsel"', {
'dependencies': [
- 'yuv_convert_simd_arm',
+ 'yuv_convert_simd_c',
],
}],
],
@@ -929,7 +929,7 @@
],
},
{
- 'target_name': 'yuv_convert_simd_arm',
+ 'target_name': 'yuv_convert_simd_c',
'type': 'static_library',
'include_dirs': [
'..',
@@ -1064,7 +1064,7 @@
},
],
}],
- ['OS == "linux" and target_arch != "arm"', {
+ ['OS == "linux" and target_arch != "arm" and target_arch != "mipsel"', {
'targets': [
{
'target_name': 'tile_render_bench',
« no previous file with comments | « media/base/yuv_convert.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698