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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « media/base/yuv_convert.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # Override to dynamically link the PulseAudio library. 8 # Override to dynamically link the PulseAudio library.
9 'use_pulseaudio%': 0, 9 'use_pulseaudio%': 0,
10 # Override to dynamically link the cras (ChromeOS audio) library. 10 # Override to dynamically link the cras (ChromeOS audio) library.
(...skipping 786 matching lines...) Expand 10 before | Expand all | Expand 10 after
797 ['_toolset=="target"', { 797 ['_toolset=="target"', {
798 'cflags!': [ '-finstrument-functions' ], 798 'cflags!': [ '-finstrument-functions' ],
799 }], 799 }],
800 ], 800 ],
801 }], 801 }],
802 [ 'target_arch == "ia32" or target_arch == "x64"', { 802 [ 'target_arch == "ia32" or target_arch == "x64"', {
803 'dependencies': [ 803 'dependencies': [
804 'yuv_convert_simd_x86', 804 'yuv_convert_simd_x86',
805 ], 805 ],
806 }], 806 }],
807 [ 'target_arch == "arm"', { 807 [ 'target_arch == "arm" or target_arch == "mipsel"', {
808 'dependencies': [ 808 'dependencies': [
809 'yuv_convert_simd_arm', 809 'yuv_convert_simd_c',
810 ], 810 ],
811 }], 811 }],
812 ], 812 ],
813 'sources': [ 813 'sources': [
814 'base/yuv_convert.cc', 814 'base/yuv_convert.cc',
815 'base/yuv_convert.h', 815 'base/yuv_convert.h',
816 ], 816 ],
817 }, 817 },
818 { 818 {
819 'target_name': 'yuv_convert_simd_x86', 819 'target_name': 'yuv_convert_simd_x86',
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
922 ], 922 ],
923 'variables': { 923 'variables': {
924 'yasm_output_path': '<(SHARED_INTERMEDIATE_DIR)/media', 924 'yasm_output_path': '<(SHARED_INTERMEDIATE_DIR)/media',
925 }, 925 },
926 'msvs_2010_disable_uldi_when_referenced': 1, 926 'msvs_2010_disable_uldi_when_referenced': 1,
927 'includes': [ 927 'includes': [
928 '../third_party/yasm/yasm_compile.gypi', 928 '../third_party/yasm/yasm_compile.gypi',
929 ], 929 ],
930 }, 930 },
931 { 931 {
932 'target_name': 'yuv_convert_simd_arm', 932 'target_name': 'yuv_convert_simd_c',
933 'type': 'static_library', 933 'type': 'static_library',
934 'include_dirs': [ 934 'include_dirs': [
935 '..', 935 '..',
936 ], 936 ],
937 'sources': [ 937 'sources': [
938 'base/simd/convert_rgb_to_yuv.h', 938 'base/simd/convert_rgb_to_yuv.h',
939 'base/simd/convert_rgb_to_yuv_c.cc', 939 'base/simd/convert_rgb_to_yuv_c.cc',
940 'base/simd/convert_yuv_to_rgb.h', 940 'base/simd/convert_yuv_to_rgb.h',
941 'base/simd/convert_yuv_to_rgb_c.cc', 941 'base/simd/convert_yuv_to_rgb_c.cc',
942 'base/simd/filter_yuv.h', 942 'base/simd/filter_yuv.h',
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
1057 '../third_party/angle/src/build_angle.gyp:libGLESv2', 1057 '../third_party/angle/src/build_angle.gyp:libGLESv2',
1058 ], 1058 ],
1059 'sources': [ 1059 'sources': [
1060 'tools/shader_bench/window_win.cc', 1060 'tools/shader_bench/window_win.cc',
1061 ], 1061 ],
1062 }], 1062 }],
1063 ], 1063 ],
1064 }, 1064 },
1065 ], 1065 ],
1066 }], 1066 }],
1067 ['OS == "linux" and target_arch != "arm"', { 1067 ['OS == "linux" and target_arch != "arm" and target_arch != "mipsel"', {
1068 'targets': [ 1068 'targets': [
1069 { 1069 {
1070 'target_name': 'tile_render_bench', 1070 'target_name': 'tile_render_bench',
1071 'type': 'executable', 1071 'type': 'executable',
1072 'dependencies': [ 1072 'dependencies': [
1073 '../base/base.gyp:base', 1073 '../base/base.gyp:base',
1074 '../ui/gl/gl.gyp:gl', 1074 '../ui/gl/gl.gyp:gl',
1075 ], 1075 ],
1076 'libraries': [ 1076 'libraries': [
1077 '-lGL', 1077 '-lGL',
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
1269 'media', 1269 'media',
1270 ], 1270 ],
1271 'sources': [ 1271 'sources': [
1272 'tools/media_bench/media_bench.cc', 1272 'tools/media_bench/media_bench.cc',
1273 ], 1273 ],
1274 }, 1274 },
1275 ], 1275 ],
1276 }] 1276 }]
1277 ], 1277 ],
1278 } 1278 }
OLDNEW
« 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