Index: webrtc/modules/audio_coding/BUILD.gn |
diff --git a/webrtc/modules/audio_coding/BUILD.gn b/webrtc/modules/audio_coding/BUILD.gn |
index 96dbd5b040f6a070f032611a4b8748de0e78dda2..b754a071ca9ec22e1c99eafdbf28334451f963d8 100644 |
--- a/webrtc/modules/audio_coding/BUILD.gn |
+++ b/webrtc/modules/audio_coding/BUILD.gn |
@@ -1539,4 +1539,25 @@ if (rtc_include_tests) { |
] |
} |
} |
+ |
+ executable("webrtc_opus_fec_test") { |
+ testonly = true |
+ |
+ sources = [ |
+ "codecs/opus/opus_fec_test.cc", |
+ ] |
+ |
+ deps = [ |
+ ":webrtc_opus", |
+ "../../common_audio", |
+ "../../test:test_support_main", |
+ "//testing/gtest", |
kjellander_webrtc
2016/08/23 08:54:45
Please add
"//build/config/sanitizers:deps",
to de
ivoc
2016/08/23 10:34:36
Done.
|
+ ] |
+ |
+ 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" ] |
+ } |
+ } |
} |