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("../webrtc.gni") | 10 import("../webrtc.gni") |
11 | 11 |
12 group("tools") { | 12 group("rtc_tools") { |
13 # This target shall build all targets in tools/. | 13 # This target shall build all targets in tools/. |
14 testonly = true | 14 testonly = true |
15 | 15 |
16 public_deps = [ | 16 public_deps = [ |
17 ":command_line_parser", | 17 ":command_line_parser", |
18 ":frame_analyzer", | 18 ":frame_analyzer", |
19 ":frame_editor", | 19 ":frame_editor", |
20 ":psnr_ssim_analyzer", | 20 ":psnr_ssim_analyzer", |
21 ":rgba_to_i420_converter", | 21 ":rgba_to_i420_converter", |
22 ] | 22 ] |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 "//build/win:default_exe_manifest", | 178 "//build/win:default_exe_manifest", |
179 ] | 179 ] |
180 } | 180 } |
181 } | 181 } |
182 | 182 |
183 if (rtc_enable_protobuf) { | 183 if (rtc_enable_protobuf) { |
184 proto_library("chart_proto") { | 184 proto_library("chart_proto") { |
185 sources = [ | 185 sources = [ |
186 "event_log_visualizer/chart.proto", | 186 "event_log_visualizer/chart.proto", |
187 ] | 187 ] |
188 proto_out_dir = "webrtc/tools/event_log_visualizer" | 188 proto_out_dir = "webrtc/rtc_tools/event_log_visualizer" |
189 } | 189 } |
190 | 190 |
191 rtc_static_library("event_log_visualizer_utils") { | 191 rtc_static_library("event_log_visualizer_utils") { |
192 sources = [ | 192 sources = [ |
193 "event_log_visualizer/analyzer.cc", | 193 "event_log_visualizer/analyzer.cc", |
194 "event_log_visualizer/analyzer.h", | 194 "event_log_visualizer/analyzer.h", |
195 "event_log_visualizer/plot_base.cc", | 195 "event_log_visualizer/plot_base.cc", |
196 "event_log_visualizer/plot_base.h", | 196 "event_log_visualizer/plot_base.h", |
197 "event_log_visualizer/plot_protobuf.cc", | 197 "event_log_visualizer/plot_protobuf.cc", |
198 "event_log_visualizer/plot_protobuf.h", | 198 "event_log_visualizer/plot_protobuf.h", |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
341 ] | 341 ] |
342 outputs = [ | 342 outputs = [ |
343 "$root_build_dir/{{source_file_part}}", | 343 "$root_build_dir/{{source_file_part}}", |
344 ] | 344 ] |
345 deps = [ | 345 deps = [ |
346 "../logging:rtc_event_log_proto", | 346 "../logging:rtc_event_log_proto", |
347 ] | 347 ] |
348 } | 348 } |
349 } | 349 } |
350 } | 350 } |
OLD | NEW |