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

Unified Diff: media/media.gyp

Issue 13726011: Add vector_math::FMUL. Replace audio_util::AdjustVolume. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix volume == 1 case. Created 7 years, 8 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/vector_math_unittest.cc ('k') | media/shared_memory_support.gypi » ('j') | 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 6afd4f5e4bc8d62c7b92b5cd57fc6863228b011e..843f89e053639a4d610d64a323b1e3fe3f9aee72 100644
--- a/media/media.gyp
+++ b/media/media.gyp
@@ -283,8 +283,6 @@
'base/stream_parser.h',
'base/stream_parser_buffer.cc',
'base/stream_parser_buffer.h',
- 'base/vector_math.cc',
- 'base/vector_math.h',
'base/video_decoder.cc',
'base/video_decoder.h',
'base/video_decoder_config.cc',
@@ -551,6 +549,7 @@
['include', '^base/audio_bus\\.'],
['include', '^base/channel_layout\\.'],
['include', '^base/media_stub\\.cc$'],
+ ['include', '^base/vector_math\\.'],
],
'link_settings': {
'libraries': [
@@ -888,7 +887,6 @@
'audio/audio_output_proxy_unittest.cc',
'audio/audio_parameters_unittest.cc',
'audio/audio_silence_detector_unittest.cc',
- 'audio/audio_util_unittest.cc',
'audio/cross_process_notification_unittest.cc',
'audio/fake_audio_consumer_unittest.cc',
'audio/ios/audio_manager_ios_unittest.cc',
@@ -1264,6 +1262,13 @@
'sources': [
'<@(shared_memory_support_sources)',
],
+ 'conditions': [
+ [ 'target_arch == "ia32" or target_arch == "x64"', {
+ 'dependencies': [
+ 'media_sse',
+ ],
+ }],
+ ],
},
{
'target_name': 'yuv_convert',
« no previous file with comments | « media/base/vector_math_unittest.cc ('k') | media/shared_memory_support.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698