Index: webrtc/modules/audio_coding/BUILD.gn |
diff --git a/webrtc/modules/audio_coding/BUILD.gn b/webrtc/modules/audio_coding/BUILD.gn |
index ce8ab6f73b3e751428b22292cee461edb98b8f6f..945ebd24c35630317cbe0b43b97dbf8d8d8cc933 100644 |
--- a/webrtc/modules/audio_coding/BUILD.gn |
+++ b/webrtc/modules/audio_coding/BUILD.gn |
@@ -1599,4 +1599,28 @@ if (rtc_include_tests) { |
"../..:webrtc_common", |
] |
} |
+ |
+ executable("webrtc_opus_fec_test") { |
+ testonly = true |
+ |
+ sources = [ |
+ "codecs/opus/opus_fec_test.cc", |
+ ] |
+ |
+ deps = [ |
+ ":webrtc_opus", |
+ "../../base:rtc_base", |
+ "../../common_audio", |
+ "../../test:test_support", |
+ "../../test:test_support_main", |
+ "//build/config/sanitizers:deps", |
+ "//testing/gtest", |
+ ] |
+ |
+ if (is_clang) { |
+ # Suppress warnings from Chrome's Clang plugins. |
+ # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
+ configs -= [ "//build/config/clang:find_bad_constructs" ] |
+ } |
+ } |
} |