Moved force_volume_max to its own gyp file to avoid a circular dependency.

BUG=
TBR=tlegrand@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/1489004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@4046 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
phoglund@webrtc.org 2013-05-16 13:59:19 +00:00
parent 61d3c552a1
commit 5c1948dfaf
3 changed files with 25 additions and 10 deletions

View File

@ -34,6 +34,7 @@
'webrtc/test/metrics.gyp:*',
'webrtc/test/test.gyp:*',
'webrtc/tools/tools.gyp:*',
'webrtc/tools/force_mic_volume_max.gyp:*',
'tools/e2e_quality/e2e_quality.gyp:*',
],
}],

View File

@ -0,0 +1,24 @@
# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
#
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file in the root of the source
# tree. An additional intellectual property rights grant can be found
# in the file PATENTS. All contributing project authors may
# be found in the AUTHORS file in the root of the source tree.
{
'includes': [
'../build/common.gypi',
],
'targets': [
{
'target_name': 'force_mic_volume_max',
'type': 'executable',
'dependencies': [
'<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine_core',
],
'sources': [
'force_mic_volume_max/force_mic_volume_max.cc',
],
}, # force_mic_volume_max
]
}

View File

@ -102,16 +102,6 @@
'frame_editing/frame_editing.cc',
],
}, # frame_editing
{
'target_name': 'force_mic_volume_max',
'type': 'executable',
'dependencies': [
'<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine_core',
],
'sources': [
'force_mic_volume_max/force_mic_volume_max.cc',
],
}, # force_mic_volume_max
],
'conditions': [
['include_tests==1', {