| Index: webrtc/modules/video_coding/BUILD.gn
|
| diff --git a/webrtc/modules/video_coding/BUILD.gn b/webrtc/modules/video_coding/BUILD.gn
|
| index 5750d1017848d4a64a12c23f3e4355b99a8d5410..fc4d3aff50b7120812871f64d4fa63d065cff112 100644
|
| --- a/webrtc/modules/video_coding/BUILD.gn
|
| +++ b/webrtc/modules/video_coding/BUILD.gn
|
| @@ -281,6 +281,32 @@ rtc_static_library("webrtc_vp9") {
|
| }
|
|
|
| if (rtc_include_tests) {
|
| + rtc_executable("video_quality_measurement") {
|
| + testonly = true
|
| +
|
| + sources = [
|
| + "codecs/tools/video_quality_measurement.cc",
|
| + ]
|
| +
|
| + 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" ]
|
| + }
|
| +
|
| + deps = [
|
| + ":video_codecs_test_framework",
|
| + ":video_coding",
|
| + ":webrtc_vp8",
|
| + "../..:webrtc_common",
|
| + "../../base:rtc_base_approved",
|
| + "../../system_wrappers:field_trial_default",
|
| + "../../system_wrappers:metrics_default",
|
| + "../../system_wrappers:system_wrappers",
|
| + "../../test:test_support",
|
| + "//third_party/gflags",
|
| + ]
|
| + } # video_quality_measurement
|
| +
|
| rtc_source_set("video_codecs_test_framework") {
|
| testonly = true
|
| sources = [
|
|
|