From b0730108a2ad17f0ed49153cbfbfad0f132a505f Mon Sep 17 00:00:00 2001 From: "andrew@webrtc.org" Date: Mon, 11 Nov 2013 17:20:27 +0000 Subject: [PATCH] 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@5108 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/modules/audio_processing/audio_processing.gypi | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/webrtc/modules/audio_processing/audio_processing.gypi b/webrtc/modules/audio_processing/audio_processing.gypi index 6ff623f1a4..4d9988aec4 100644 --- a/webrtc/modules/audio_processing/audio_processing.gypi +++ b/webrtc/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',