| 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) {
|
|
|