Index: voice_engine/BUILD.gn |
diff --git a/voice_engine/BUILD.gn b/voice_engine/BUILD.gn |
index 482197a9a61c62e2aa9dcf2c509a61ac8060f6f6..b61f909b6ff8779fbaf22a6d0f1e1c5c80907169 100644 |
--- a/voice_engine/BUILD.gn |
+++ b/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" ] |
- } |
- } |
- } |
} |