| 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("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 | 10 |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 "/wd4373", # Virtual function override. | 301 "/wd4373", # Virtual function override. |
| 302 ] | 302 ] |
| 303 } | 303 } |
| 304 | 304 |
| 305 if (!build_with_chromium && is_clang) { | 305 if (!build_with_chromium && is_clang) { |
| 306 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 306 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 307 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 307 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 308 } | 308 } |
| 309 } | 309 } |
| 310 | 310 |
| 311 rtc_executable("voe_cmd_test") { | |
| 312 testonly = true | |
| 313 | |
| 314 deps = [ | |
| 315 ":channel_transport", | |
| 316 ":voice_engine", | |
| 317 "..:webrtc_common", | |
| 318 "../base:rtc_base_approved", | |
| 319 "//testing/gtest", | |
| 320 "//third_party/gflags", | |
| 321 "//webrtc/logging:rtc_event_log_api", | |
| 322 "//webrtc/modules/audio_processing", | |
| 323 "//webrtc/system_wrappers", | |
| 324 "//webrtc/system_wrappers:system_wrappers_default", | |
| 325 "//webrtc/test:test_support", | |
| 326 ] | |
| 327 | |
| 328 sources = [ | |
| 329 "test/cmd_test/voe_cmd_test.cc", | |
| 330 ] | |
| 331 | |
| 332 if (!build_with_chromium && is_clang) { | |
| 333 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | |
| 334 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | |
| 335 } | |
| 336 } | |
| 337 | |
| 338 if (!is_ios) { | 311 if (!is_ios) { |
| 339 rtc_executable("voe_auto_test") { | 312 rtc_executable("voe_auto_test") { |
| 340 testonly = true | 313 testonly = true |
| 341 | 314 |
| 342 deps = [ | 315 deps = [ |
| 343 ":channel_transport", | 316 ":channel_transport", |
| 344 ":voice_engine", | 317 ":voice_engine", |
| 345 "..:webrtc_common", | 318 "..:webrtc_common", |
| 346 "../base:rtc_base_approved", | 319 "../base:rtc_base_approved", |
| 347 "../modules/audio_device:audio_device", | 320 "../modules/audio_device:audio_device", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 ] | 391 ] |
| 419 } | 392 } |
| 420 | 393 |
| 421 if (!build_with_chromium && is_clang) { | 394 if (!build_with_chromium && is_clang) { |
| 422 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. | 395 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. |
| 423 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 396 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 424 } | 397 } |
| 425 } | 398 } |
| 426 } | 399 } |
| 427 } | 400 } |
| OLD | NEW |