OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 import("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
10 | 10 |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 } | 85 } |
86 | 86 |
87 public_deps = [ | 87 public_deps = [ |
88 "../modules/audio_coding", | 88 "../modules/audio_coding", |
89 ] | 89 ] |
90 deps = [ | 90 deps = [ |
91 ":level_indicator", | 91 ":level_indicator", |
92 "..:webrtc_common", | 92 "..:webrtc_common", |
93 "../api:call_api", | 93 "../api:call_api", |
94 "../base:rtc_base_approved", | 94 "../base:rtc_base_approved", |
95 "../call:rtc_event_log", | |
96 "../common_audio", | 95 "../common_audio", |
| 96 "../logging:rtc_event_log_api", |
97 "../modules/audio_conference_mixer", | 97 "../modules/audio_conference_mixer", |
98 "../modules/audio_device", | 98 "../modules/audio_device", |
99 "../modules/audio_processing", | 99 "../modules/audio_processing", |
100 "../modules/bitrate_controller", | 100 "../modules/bitrate_controller", |
101 "../modules/media_file", | 101 "../modules/media_file", |
102 "../modules/pacing", | 102 "../modules/pacing", |
103 "../modules/rtp_rtcp", | 103 "../modules/rtp_rtcp", |
104 "../modules/utility", | 104 "../modules/utility", |
105 "../system_wrappers", | 105 "../system_wrappers", |
106 ] | 106 ] |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 } | 237 } |
238 | 238 |
239 rtc_executable("voe_cmd_test") { | 239 rtc_executable("voe_cmd_test") { |
240 testonly = true | 240 testonly = true |
241 | 241 |
242 deps = [ | 242 deps = [ |
243 ":channel_transport", | 243 ":channel_transport", |
244 ":voice_engine", | 244 ":voice_engine", |
245 "//testing/gtest", | 245 "//testing/gtest", |
246 "//third_party/gflags", | 246 "//third_party/gflags", |
247 "//webrtc/call:rtc_event_log", | 247 "//webrtc/logging:rtc_event_log_api", |
248 "//webrtc/system_wrappers", | 248 "//webrtc/system_wrappers", |
249 "//webrtc/system_wrappers:system_wrappers_default", | 249 "//webrtc/system_wrappers:system_wrappers_default", |
250 "//webrtc/test:test_support", | 250 "//webrtc/test:test_support", |
251 ] | 251 ] |
252 | 252 |
253 sources = [ | 253 sources = [ |
254 "test/cmd_test/voe_cmd_test.cc", | 254 "test/cmd_test/voe_cmd_test.cc", |
255 ] | 255 ] |
256 | 256 |
257 if (is_clang) { | 257 if (is_clang) { |
258 # Suppress warnings from Chrome's Clang plugins. | 258 # Suppress warnings from Chrome's Clang plugins. |
259 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 259 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
260 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 260 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
261 } | 261 } |
262 } | 262 } |
263 | 263 |
264 if (!is_ios) { | 264 if (!is_ios) { |
265 rtc_executable("voe_auto_test") { | 265 rtc_executable("voe_auto_test") { |
266 testonly = true | 266 testonly = true |
267 | 267 |
268 deps = [ | 268 deps = [ |
269 ":channel_transport", | 269 ":channel_transport", |
270 ":voice_engine", | 270 ":voice_engine", |
271 "//testing/gmock", | 271 "//testing/gmock", |
272 "//testing/gtest", | 272 "//testing/gtest", |
273 "//third_party/gflags", | 273 "//third_party/gflags", |
274 "//webrtc/call:rtc_event_log", | 274 "//webrtc/logging:rtc_event_log_api", |
275 "//webrtc/modules/video_capture", | 275 "//webrtc/modules/video_capture", |
276 "//webrtc/system_wrappers", | 276 "//webrtc/system_wrappers", |
277 "//webrtc/system_wrappers/:system_wrappers_default", | 277 "//webrtc/system_wrappers/:system_wrappers_default", |
278 "//webrtc/test/:test_common", | 278 "//webrtc/test/:test_common", |
279 "//webrtc/test/:test_support", | 279 "//webrtc/test/:test_support", |
280 ] | 280 ] |
281 | 281 |
282 sources = [ | 282 sources = [ |
283 "test/auto_test/automated_mode.cc", | 283 "test/auto_test/automated_mode.cc", |
284 "test/auto_test/extended/agc_config_test.cc", | 284 "test/auto_test/extended/agc_config_test.cc", |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 } | 348 } |
349 | 349 |
350 if (is_clang) { | 350 if (is_clang) { |
351 # Suppress warnings from Chrome's Clang plugins. | 351 # Suppress warnings from Chrome's Clang plugins. |
352 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 352 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
353 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 353 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
354 } | 354 } |
355 } | 355 } |
356 } | 356 } |
357 } | 357 } |
OLD | NEW |