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

Unified Diff: webrtc/tools/BUILD.gn

Issue 1387243002: GN: Port frame_analyzer and rgba_to_i420_converter targets (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 2 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/tools/frame_analyzer/video_quality_analysis.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/tools/BUILD.gn
diff --git a/webrtc/tools/BUILD.gn b/webrtc/tools/BUILD.gn
index 1378e189133d50642325042bcab456ec4a36f43b..0daba4d6c8eff04a28fdfaad99fe993a916a9a76 100644
--- a/webrtc/tools/BUILD.gn
+++ b/webrtc/tools/BUILD.gn
@@ -19,11 +19,48 @@ source_set("command_line_parser") {
"simple_command_line_parser.cc",
"simple_command_line_parser.h",
]
-
+ deps = [
+ "..:gtest_prod",
+ ]
configs += [ "..:common_config" ]
public_configs = [ "..:common_inherited_config" ]
}
+source_set("video_quality_analysis") {
+ sources = [
+ "frame_analyzer/video_quality_analysis.cc",
+ "frame_analyzer/video_quality_analysis.h",
+ ]
+ deps = [
+ "../common_video",
+ ]
+ public_deps = [
+ "../common_video",
+ ]
+}
+
+executable("frame_analyzer") {
+ sources = [
+ "frame_analyzer/frame_analyzer.cc",
+ ]
+ deps = [
+ ":command_line_parser",
+ ":video_quality_analysis",
+ ]
+}
+
+executable("rgba_to_i420_converter") {
+ sources = [
+ "converter/converter.cc",
+ "converter/converter.h",
+ "converter/rgba_to_i420_converter.cc",
+ ]
+ deps = [
+ ":command_line_parser",
+ "../common_video",
+ ]
+}
+
# TODO(kjellander): Convert all of tools.gyp into GN here.
if (!build_with_chromium) {
« no previous file with comments | « no previous file | webrtc/tools/frame_analyzer/video_quality_analysis.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698