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

Unified Diff: BUILD.gn

Issue 2515253004: Added tool for reference less video analysis (Closed)
Patch Set: Added newline character Created 4 years 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/tools/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 62e06ad4ac9804dd364ca41f81dd531d3f738daa..1f8e0d891c84f0b1e03e152afb6c81a2a60ad88d 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -19,3 +19,14 @@ group("default") {
deps += [ "//webrtc:webrtc_tests" ]
}
}
+
+# This needs to be on the top-level to avoid violating the PRESUBMIT rule that
+# disallows including sources in higher-level directory levels.
+rtc_source_set("libvpx_y4minput") {
phoglund 2016/12/02 09:51:41 I'm not sure about the decision to create a rule r
kjellander_webrtc 2016/12/02 09:58:06 Patrik you're right. My obsession with not duplica
+ sources = [
+ "third_party/libvpx/source/libvpx/y4minput.c",
+ ]
+ deps = [
+ "//third_party/libvpx",
+ ]
+}
« no previous file with comments | « no previous file | webrtc/tools/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698