summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandrew@webrtc.org <andrew@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-11-11 17:20:27 +0000
committerandrew@webrtc.org <andrew@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-11-11 17:20:27 +0000
commit731a87bebc79db3d5b721f92f1e69f5075ee658e (patch)
treeea84e5963fd0fb269b4e1217c36c48447f54a58b
parent9965e3a3af371325c85c3f740dd9b3547f67a4ea (diff)
downloadwebrtc-731a87bebc79db3d5b721f92f1e69f5075ee658e.tar.gz
Move audio_processing dependencies to a variable.
R=aluebs@webrtc.org Review URL: https://webrtc-codereview.appspot.com/3679004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5108 4adac7df-926f-26a2-2b94-8c16560cd09d
-rw-r--r--modules/audio_processing/audio_processing.gypi9
1 files changed, 7 insertions, 2 deletions
diff --git a/modules/audio_processing/audio_processing.gypi b/modules/audio_processing/audio_processing.gypi
index 6ff623f1..4d9988ae 100644
--- a/modules/audio_processing/audio_processing.gypi
+++ b/modules/audio_processing/audio_processing.gypi
@@ -7,6 +7,12 @@
# be found in the AUTHORS file in the root of the source tree.
{
+ 'variables': {
+ 'audio_processing_dependencies': [
+ '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
+ '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
+ ],
+ },
'targets': [
{
'target_name': 'audio_processing',
@@ -21,8 +27,7 @@
'aec_untrusted_delay_for_testing%': 0,
},
'dependencies': [
- '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
- '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
+ '<@(audio_processing_dependencies)',
],
'sources': [
'aec/include/echo_cancellation.h',