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

Side by Side Diff: webrtc/webrtc_tests.gypi

Issue 1299143003: Remove AgcManager. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 4 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
OLDNEW
1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2013 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 ], 139 ],
140 }, 140 },
141 { 141 {
142 # TODO(pbos): Rename target to webrtc_tests or rtc_tests, this target is 142 # TODO(pbos): Rename target to webrtc_tests or rtc_tests, this target is
143 # not meant to only include video. 143 # not meant to only include video.
144 'target_name': 'video_engine_tests', 144 'target_name': 'video_engine_tests',
145 'type': '<(gtest_target_type)', 145 'type': '<(gtest_target_type)',
146 'sources': [ 146 'sources': [
147 'test/common_unittest.cc', 147 'test/common_unittest.cc',
148 'test/testsupport/metrics/video_metrics_unittest.cc', 148 'test/testsupport/metrics/video_metrics_unittest.cc',
149 'tools/agc/agc_manager_unittest.cc',
150 'video/bitrate_estimator_tests.cc', 149 'video/bitrate_estimator_tests.cc',
151 'video/end_to_end_tests.cc', 150 'video/end_to_end_tests.cc',
152 'video/packet_injection_tests.cc', 151 'video/packet_injection_tests.cc',
153 'video/send_statistics_proxy_unittest.cc', 152 'video/send_statistics_proxy_unittest.cc',
154 'video/video_capture_input_unittest.cc', 153 'video/video_capture_input_unittest.cc',
155 'video/video_decoder_unittest.cc', 154 'video/video_decoder_unittest.cc',
156 'video/video_encoder_unittest.cc', 155 'video/video_encoder_unittest.cc',
157 'video/video_send_stream_tests.cc', 156 'video/video_send_stream_tests.cc',
158 ], 157 ],
159 'dependencies': [ 158 'dependencies': [
160 '<(DEPTH)/testing/gmock.gyp:gmock', 159 '<(DEPTH)/testing/gmock.gyp:gmock',
161 '<(DEPTH)/testing/gtest.gyp:gtest', 160 '<(DEPTH)/testing/gtest.gyp:gtest',
162 '<(webrtc_root)/common.gyp:webrtc_common', 161 '<(webrtc_root)/common.gyp:webrtc_common',
163 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp', 162 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp',
164 '<(webrtc_root)/modules/modules.gyp:video_capture', 163 '<(webrtc_root)/modules/modules.gyp:video_capture',
165 '<(webrtc_root)/modules/modules.gyp:video_render', 164 '<(webrtc_root)/modules/modules.gyp:video_render',
166 '<(webrtc_root)/test/test.gyp:channel_transport', 165 '<(webrtc_root)/test/test.gyp:channel_transport',
167 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine', 166 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine',
168 'test/metrics.gyp:metrics', 167 'test/metrics.gyp:metrics',
169 'test/test.gyp:test_main', 168 'test/test.gyp:test_main',
170 'test/webrtc_test_common.gyp:webrtc_test_common', 169 'test/webrtc_test_common.gyp:webrtc_test_common',
171 'tools/tools.gyp:agc_manager',
172 'webrtc', 170 'webrtc',
173 ], 171 ],
174 'conditions': [ 172 'conditions': [
175 ['OS=="android"', { 173 ['OS=="android"', {
176 'dependencies': [ 174 'dependencies': [
177 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', 175 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
178 ], 176 ],
179 }], 177 }],
180 ['enable_protobuf==1', { 178 ['enable_protobuf==1', {
181 'defines': [ 179 'defines': [
182 'ENABLE_RTC_EVENT_LOG', 180 'ENABLE_RTC_EVENT_LOG',
183 ], 181 ],
184 'dependencies': [ 182 'dependencies': [
185 'webrtc.gyp:rtc_event_log', 183 'webrtc.gyp:rtc_event_log',
186 'webrtc.gyp:rtc_event_log_proto', 184 'webrtc.gyp:rtc_event_log_proto',
187 ], 185 ],
188 'sources': [ 186 'sources': [
189 'video/rtc_event_log_unittest.cc', 187 'video/rtc_event_log_unittest.cc',
190 ], 188 ],
191 }], 189 }],
192 ], 190 ],
193 }, 191 },
194 { 192 {
195 'target_name': 'webrtc_perf_tests', 193 'target_name': 'webrtc_perf_tests',
196 'type': '<(gtest_target_type)', 194 'type': '<(gtest_target_type)',
197 'sources': [ 195 'sources': [
198 'modules/audio_coding/neteq/test/neteq_performance_unittest.cc', 196 'modules/audio_coding/neteq/test/neteq_performance_unittest.cc',
199 'modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc', 197 'modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc',
200
201 'tools/agc/agc_manager_integrationtest.cc',
202 'video/call_perf_tests.cc', 198 'video/call_perf_tests.cc',
203 'video/full_stack.cc', 199 'video/full_stack.cc',
204 'video/rampup_tests.cc', 200 'video/rampup_tests.cc',
205 'video/rampup_tests.h', 201 'video/rampup_tests.h',
206 ], 202 ],
207 'dependencies': [ 203 'dependencies': [
208 '<(DEPTH)/testing/gmock.gyp:gmock', 204 '<(DEPTH)/testing/gmock.gyp:gmock',
209 '<(DEPTH)/testing/gtest.gyp:gtest', 205 '<(DEPTH)/testing/gtest.gyp:gtest',
210 '<(webrtc_root)/modules/modules.gyp:video_capture', 206 '<(webrtc_root)/modules/modules.gyp:video_capture',
211 '<(webrtc_root)/test/test.gyp:channel_transport', 207 '<(webrtc_root)/test/test.gyp:channel_transport',
212 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine', 208 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine',
213 'modules/modules.gyp:neteq_test_support', 209 'modules/modules.gyp:neteq_test_support',
214 'modules/modules.gyp:bwe_simulator', 210 'modules/modules.gyp:bwe_simulator',
215 'modules/modules.gyp:rtp_rtcp', 211 'modules/modules.gyp:rtp_rtcp',
216 'test/test.gyp:test_main', 212 'test/test.gyp:test_main',
217 'test/webrtc_test_common.gyp:webrtc_test_common', 213 'test/webrtc_test_common.gyp:webrtc_test_common',
218 'tools/tools.gyp:agc_manager',
219 'webrtc', 214 'webrtc',
220 ], 215 ],
221 'conditions': [ 216 'conditions': [
222 ['OS=="android"', { 217 ['OS=="android"', {
223 'dependencies': [ 218 'dependencies': [
224 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', 219 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
225 ], 220 ],
226 }], 221 }],
227 ], 222 ],
228 }, 223 },
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 'build/isolate.gypi', 286 'build/isolate.gypi',
292 ], 287 ],
293 'sources': [ 288 'sources': [
294 'webrtc_perf_tests.isolate', 289 'webrtc_perf_tests.isolate',
295 ], 290 ],
296 }, 291 },
297 ], 292 ],
298 }], 293 }],
299 ], 294 ],
300 } 295 }
OLDNEW
« webrtc/tools/agc/agc_manager_unittest.cc ('K') | « webrtc/tools/tools.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698