| Index: webrtc/modules/video_coding/BUILD.gn
|
| diff --git a/webrtc/modules/video_coding/BUILD.gn b/webrtc/modules/video_coding/BUILD.gn
|
| index 12f2f366be7d1e16b1150b977bc42e75b287660b..c956a96162cf76e5af7fa7b89853681670c2c91a 100644
|
| --- a/webrtc/modules/video_coding/BUILD.gn
|
| +++ b/webrtc/modules/video_coding/BUILD.gn
|
| @@ -396,6 +396,7 @@ if (rtc_include_tests) {
|
| testonly = true
|
|
|
| sources = [
|
| + "codecs/test/videoprocessor_integrationtest.cc",
|
| "codecs/test/videoprocessor_integrationtest.h",
|
| ]
|
|
|
| @@ -436,6 +437,11 @@ if (rtc_include_tests) {
|
| "../../sdk:videotoolbox_objc",
|
| ]
|
| }
|
| +
|
| + 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" ]
|
| + }
|
| }
|
|
|
| rtc_source_set("video_coding_modules_tests") {
|
| @@ -449,7 +455,8 @@ if (rtc_include_tests) {
|
| }
|
| sources = [
|
| "codecs/h264/test/h264_impl_unittest.cc",
|
| - "codecs/test/videoprocessor_integrationtest.cc",
|
| + "codecs/test/videoprocessor_integrationtest_libvpx.cc",
|
| + "codecs/test/videoprocessor_integrationtest_openh264.cc",
|
| "codecs/vp8/test/vp8_impl_unittest.cc",
|
| "codecs/vp9/test/vp9_impl_unittest.cc",
|
| ]
|
|
|