| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
| 4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
| 5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 import("../build/webrtc.gni") | 10 import("../build/webrtc.gni") |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 "psnr_ssim_analyzer/psnr_ssim_analyzer.cc", | 80 "psnr_ssim_analyzer/psnr_ssim_analyzer.cc", |
| 81 ] | 81 ] |
| 82 | 82 |
| 83 deps = [ | 83 deps = [ |
| 84 ":command_line_parser", | 84 ":command_line_parser", |
| 85 ":video_quality_analysis", | 85 ":video_quality_analysis", |
| 86 "//build/win:default_exe_manifest", | 86 "//build/win:default_exe_manifest", |
| 87 ] | 87 ] |
| 88 } | 88 } |
| 89 | 89 |
| 90 rtc_executable("reference_less_video_analysis") { |
| 91 sources = [ |
| 92 "frame_analyzer/reference_less_video_analysis.cc", |
| 93 ] |
| 94 |
| 95 deps = [ |
| 96 ":command_line_parser", |
| 97 ":video_quality_analysis", |
| 98 "//build/win:default_exe_manifest", |
| 99 ] |
| 100 } |
| 101 |
| 90 rtc_executable("rgba_to_i420_converter") { | 102 rtc_executable("rgba_to_i420_converter") { |
| 91 sources = [ | 103 sources = [ |
| 92 "converter/converter.cc", | 104 "converter/converter.cc", |
| 93 "converter/converter.h", | 105 "converter/converter.h", |
| 94 "converter/rgba_to_i420_converter.cc", | 106 "converter/rgba_to_i420_converter.cc", |
| 95 ] | 107 ] |
| 96 | 108 |
| 97 deps = [ | 109 deps = [ |
| 98 ":command_line_parser", | 110 ":command_line_parser", |
| 99 "../common_video", | 111 "../common_video", |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 ] | 303 ] |
| 292 outputs = [ | 304 outputs = [ |
| 293 "$root_build_dir/{{source_file_part}}", | 305 "$root_build_dir/{{source_file_part}}", |
| 294 ] | 306 ] |
| 295 deps = [ | 307 deps = [ |
| 296 "../logging:rtc_event_log_proto", | 308 "../logging:rtc_event_log_proto", |
| 297 ] | 309 ] |
| 298 } | 310 } |
| 299 } | 311 } |
| 300 } | 312 } |
| OLD | NEW |