| Index: webrtc/BUILD.gn
|
| diff --git a/webrtc/BUILD.gn b/webrtc/BUILD.gn
|
| index e2eeb7f96ea3ddbf809ccb5ee56494a11dc3c3d9..650409b15f19bea223c7dff380562bab09986a51 100644
|
| --- a/webrtc/BUILD.gn
|
| +++ b/webrtc/BUILD.gn
|
| @@ -602,4 +602,22 @@ if (rtc_include_tests) {
|
| ldflags = [ "-ObjC" ]
|
| }
|
| }
|
| +
|
| + # TODO(pbos): Rename test suite, this is no longer "just" for video targets.
|
| + test("video_engine_tests") {
|
| + testonly = true
|
| + deps = [
|
| + "audio:audio_tests",
|
| + "call:call_tests",
|
| + "modules/video_capture",
|
| + "test:test_common",
|
| + "test:test_main",
|
| + "video:video_tests",
|
| + ]
|
| + if (is_clang) {
|
| + # Suppress warnings from the Chromium Clang plugin.
|
| + # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
|
| + configs -= [ "//build/config/clang:find_bad_constructs" ]
|
| + }
|
| + }
|
| }
|
|
|