| Index: webrtc/voice_engine/BUILD.gn
|
| diff --git a/webrtc/voice_engine/BUILD.gn b/webrtc/voice_engine/BUILD.gn
|
| index 627f412cf35d8ebe92e8e64e1cdd6e55ca78c2f1..481a29158ab9912bf89175b22898e317bc5a0f47 100644
|
| --- a/webrtc/voice_engine/BUILD.gn
|
| +++ b/webrtc/voice_engine/BUILD.gn
|
| @@ -240,71 +240,4 @@ if (rtc_include_tests) {
|
| suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
| }
|
| }
|
| -
|
| - if (!is_ios) {
|
| - rtc_executable("voe_auto_test") {
|
| - testonly = true
|
| -
|
| - deps = [
|
| - ":voice_engine",
|
| - "..:webrtc_common",
|
| - "../logging:rtc_event_log_api",
|
| - "../modules:module_api",
|
| - "../modules/audio_device:audio_device",
|
| - "../modules/audio_processing:audio_processing",
|
| - "../modules/rtp_rtcp:rtp_rtcp",
|
| - "../modules/video_capture",
|
| - "../rtc_base:rtc_base_approved",
|
| - "../system_wrappers",
|
| - "../system_wrappers/:system_wrappers_default",
|
| - "../test/:test_common",
|
| - "../test/:test_support",
|
| - "../test/:video_test_common",
|
| - "//testing/gmock",
|
| - "//testing/gtest",
|
| - ]
|
| -
|
| - sources = [
|
| - "test/auto_test/automated_mode.cc",
|
| - "test/auto_test/fixtures/after_initialization_fixture.cc",
|
| - "test/auto_test/fixtures/after_initialization_fixture.h",
|
| - "test/auto_test/fixtures/after_streaming_fixture.cc",
|
| - "test/auto_test/fixtures/after_streaming_fixture.h",
|
| - "test/auto_test/fixtures/before_initialization_fixture.cc",
|
| - "test/auto_test/fixtures/before_initialization_fixture.h",
|
| - "test/auto_test/fixtures/before_streaming_fixture.cc",
|
| - "test/auto_test/fixtures/before_streaming_fixture.h",
|
| - "test/auto_test/standard/codec_before_streaming_test.cc",
|
| - "test/auto_test/standard/codec_test.cc",
|
| - "test/auto_test/standard/dtmf_test.cc",
|
| - "test/auto_test/standard/rtp_rtcp_before_streaming_test.cc",
|
| - "test/auto_test/standard/rtp_rtcp_extensions.cc",
|
| - "test/auto_test/standard/rtp_rtcp_test.cc",
|
| - "test/auto_test/voe_standard_test.cc",
|
| - "test/auto_test/voe_standard_test.h",
|
| - "test/auto_test/voe_test_defines.h",
|
| - ]
|
| -
|
| - defines = []
|
| -
|
| - if (rtc_enable_protobuf) {
|
| - defines = [ "ENABLE_RTC_EVENT_LOG" ]
|
| - }
|
| -
|
| - if (is_win) {
|
| - defines += [ "WEBRTC_DRIFT_COMPENSATION_SUPPORTED" ]
|
| -
|
| - cflags = [
|
| - "/wd4267", # size_t to int truncation.
|
| - "/wd4373", # Virtual function override.
|
| - # TODO(kjellander): Bug 261: fix this warning.
|
| - ]
|
| - }
|
| -
|
| - if (!build_with_chromium && is_clang) {
|
| - # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
|
| - suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
| - }
|
| - }
|
| - }
|
| }
|
|
|