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

Side by Side Diff: webrtc/tools/tools.gyp

Issue 1299143003: Remove AgcManager. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Initialize volume Created 5 years, 2 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 unified diff | Download patch
« no previous file with comments | « webrtc/tools/agc/agc_test.cc ('k') | webrtc/voice_engine/mock/fake_voe_external_media.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 ], 95 ],
96 'sources': [ 96 'sources': [
97 'force_mic_volume_max/force_mic_volume_max.cc', 97 'force_mic_volume_max/force_mic_volume_max.cc',
98 ], 98 ],
99 }, # force_mic_volume_max 99 }, # force_mic_volume_max
100 ], 100 ],
101 'conditions': [ 101 'conditions': [
102 ['include_tests==1', { 102 ['include_tests==1', {
103 'targets' : [ 103 'targets' : [
104 { 104 {
105 'target_name': 'agc_manager',
106 'type': 'static_library',
107 'dependencies': [
108 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
109 '<(webrtc_root)/modules/modules.gyp:audio_processing',
110 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine',
111 ],
112 'sources': [
113 'agc/agc_manager.cc',
114 'agc/agc_manager.h',
115 ],
116 },
117 {
118 'target_name': 'agc_test_utils', 105 'target_name': 'agc_test_utils',
119 'type': 'static_library', 106 'type': 'static_library',
120 'sources': [ 107 'sources': [
121 'agc/test_utils.cc', 108 'agc/test_utils.cc',
122 'agc/test_utils.h', 109 'agc/test_utils.h',
123 ], 110 ],
124 }, 111 },
125 { 112 {
126 'target_name': 'agc_harness', 113 'target_name': 'agc_harness',
127 'type': 'executable', 114 'type': 'executable',
128 'dependencies': [ 115 'dependencies': [
129 '<(DEPTH)/testing/gtest.gyp:gtest', 116 '<(DEPTH)/testing/gtest.gyp:gtest',
130 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', 117 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
131 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_ default', 118 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_ default',
132 '<(webrtc_root)/test/test.gyp:channel_transport', 119 '<(webrtc_root)/test/test.gyp:channel_transport',
133 '<(webrtc_root)/test/test.gyp:test_support', 120 '<(webrtc_root)/test/test.gyp:test_support',
134 'agc_manager', 121 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine',
135 ], 122 ],
136 'sources': [ 123 'sources': [
137 'agc/agc_harness.cc', 124 'agc/agc_harness.cc',
138 ], 125 ],
139 }, # agc_harness 126 }, # agc_harness
140 { 127 {
141 'target_name': 'agc_proc',
142 'type': 'executable',
143 'dependencies': [
144 '<(DEPTH)/testing/gmock.gyp:gmock',
145 '<(DEPTH)/testing/gtest.gyp:gtest',
146 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
147 '<(webrtc_root)/test/test.gyp:test_support',
148 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_ default',
149 'agc_manager',
150 'agc_test_utils',
151 ],
152 'sources': [
153 'agc/agc_test.cc',
154 ],
155 }, # agc_proc
156 {
157 'target_name': 'activity_metric', 128 'target_name': 'activity_metric',
158 'type': 'executable', 129 'type': 'executable',
159 'dependencies': [ 130 'dependencies': [
160 '<(DEPTH)/testing/gtest.gyp:gtest', 131 '<(DEPTH)/testing/gtest.gyp:gtest',
161 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', 132 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
162 'agc_manager', 133 '<(webrtc_root)/modules/modules.gyp:audio_processing',
163 ], 134 ],
164 'sources': [ 135 'sources': [
165 'agc/activity_metric.cc', 136 'agc/activity_metric.cc',
166 ], 137 ],
167 }, # activity_metric 138 }, # activity_metric
168 { 139 {
169 'target_name': 'audio_e2e_harness', 140 'target_name': 'audio_e2e_harness',
170 'type': 'executable', 141 'type': 'executable',
171 'dependencies': [ 142 'dependencies': [
172 '<(webrtc_root)/test/test.gyp:channel_transport', 143 '<(webrtc_root)/test/test.gyp:channel_transport',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 'sources': [ 204 'sources': [
234 'tools_unittests.isolate', 205 'tools_unittests.isolate',
235 ], 206 ],
236 }, 207 },
237 ], 208 ],
238 }], 209 }],
239 ], 210 ],
240 }], # include_tests 211 }], # include_tests
241 ], # conditions 212 ], # conditions
242 } 213 }
OLDNEW
« no previous file with comments | « webrtc/tools/agc/agc_test.cc ('k') | webrtc/voice_engine/mock/fake_voe_external_media.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698