Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Unified Diff: webrtc/modules/video_coding/BUILD.gn

Issue 2651543008: Make video_quality_measurement buildable again. (Closed)
Patch Set: Make iOS happy. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/modules/video_coding/codecs/tools/video_quality_measurement.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 = [
« no previous file with comments | « no previous file | webrtc/modules/video_coding/codecs/tools/video_quality_measurement.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698