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:
parent
61d3c552a1
commit
5c1948dfaf
@ -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:*',
|
||||
],
|
||||
}],
|
||||
|
24
webrtc/tools/force_mic_volume_max.gyp
Normal file
24
webrtc/tools/force_mic_volume_max.gyp
Normal 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
|
||||
]
|
||||
}
|
@ -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', {
|
||||
|
Loading…
Reference in New Issue
Block a user