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

Side by Side Diff: media/media.gyp

Issue 11045021: Honor mmintrin.h intrinics when instrumenting Chrome with cygprofiler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « build/common.gypi ('k') | skia/skia.gyp » ('j') | 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 788 matching lines...) Expand 10 before | Expand all | Expand 10 after
799 '<@(shared_memory_support_sources)', 799 '<@(shared_memory_support_sources)',
800 ], 800 ],
801 }, 801 },
802 { 802 {
803 'target_name': 'yuv_convert', 803 'target_name': 'yuv_convert',
804 'type': 'static_library', 804 'type': 'static_library',
805 'include_dirs': [ 805 'include_dirs': [
806 '..', 806 '..',
807 ], 807 ],
808 'conditions': [ 808 'conditions': [
809 ['order_profiling != 0', {
810 'target_conditions' : [
811 ['_toolset=="target"', {
812 'cflags!': [ '-finstrument-functions' ],
813 }],
814 ],
815 }],
816 [ 'target_arch == "ia32" or target_arch == "x64"', { 809 [ 'target_arch == "ia32" or target_arch == "x64"', {
817 'dependencies': [ 810 'dependencies': [
818 'yuv_convert_simd_x86', 811 'yuv_convert_simd_x86',
819 ], 812 ],
820 }], 813 }],
821 [ 'target_arch == "arm" or target_arch == "mipsel"', { 814 [ 'target_arch == "arm" or target_arch == "mipsel"', {
822 'dependencies': [ 815 'dependencies': [
823 'yuv_convert_simd_c', 816 'yuv_convert_simd_c',
824 ], 817 ],
825 }], 818 }],
(...skipping 27 matching lines...) Expand all
853 'base/simd/linear_scale_yuv_to_rgb_mmx.asm', 846 'base/simd/linear_scale_yuv_to_rgb_mmx.asm',
854 'base/simd/linear_scale_yuv_to_rgb_mmx.inc', 847 'base/simd/linear_scale_yuv_to_rgb_mmx.inc',
855 'base/simd/linear_scale_yuv_to_rgb_sse.asm', 848 'base/simd/linear_scale_yuv_to_rgb_sse.asm',
856 'base/simd/scale_yuv_to_rgb_mmx.asm', 849 'base/simd/scale_yuv_to_rgb_mmx.asm',
857 'base/simd/scale_yuv_to_rgb_mmx.inc', 850 'base/simd/scale_yuv_to_rgb_mmx.inc',
858 'base/simd/scale_yuv_to_rgb_sse.asm', 851 'base/simd/scale_yuv_to_rgb_sse.asm',
859 'base/simd/yuv_to_rgb_table.cc', 852 'base/simd/yuv_to_rgb_table.cc',
860 'base/simd/yuv_to_rgb_table.h', 853 'base/simd/yuv_to_rgb_table.h',
861 ], 854 ],
862 'conditions': [ 855 'conditions': [
863 ['order_profiling != 0', {
864 'target_conditions' : [
865 ['_toolset=="target"', {
866 'cflags!': [ '-finstrument-functions' ],
867 }],
868 ],
869 }],
870 [ 'target_arch == "x64"', { 856 [ 'target_arch == "x64"', {
871 # Source files optimized for X64 systems. 857 # Source files optimized for X64 systems.
872 'sources': [ 858 'sources': [
873 'base/simd/linear_scale_yuv_to_rgb_mmx_x64.asm', 859 'base/simd/linear_scale_yuv_to_rgb_mmx_x64.asm',
874 'base/simd/scale_yuv_to_rgb_sse2_x64.asm', 860 'base/simd/scale_yuv_to_rgb_sse2_x64.asm',
875 ], 861 ],
876 }], 862 }],
877 [ 'os_posix == 1 and OS != "mac" and OS != "android"', { 863 [ 'os_posix == 1 and OS != "mac" and OS != "android"', {
878 'cflags': [ 864 'cflags': [
879 '-msse2', 865 '-msse2',
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
1311 'media', 1297 'media',
1312 ], 1298 ],
1313 'sources': [ 1299 'sources': [
1314 'tools/media_bench/media_bench.cc', 1300 'tools/media_bench/media_bench.cc',
1315 ], 1301 ],
1316 }, 1302 },
1317 ], 1303 ],
1318 }] 1304 }]
1319 ], 1305 ],
1320 } 1306 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | skia/skia.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698