| OLD | NEW |
| (Empty) |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | |
| 2 # | |
| 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 | |
| 5 # tree. An additional intellectual property rights grant can be found | |
| 6 # in the file PATENTS. All contributing project authors may | |
| 7 # be found in the AUTHORS file in the root of the source tree. | |
| 8 | |
| 9 # TODO(kjellander): Remove when bugs.webrtc.org/7855 is completed. | |
| 10 import("../webrtc.gni") | |
| 11 | |
| 12 group("tools") { | |
| 13 # This target shall build all targets in tools/. | |
| 14 testonly = true | |
| 15 | |
| 16 public_deps = [ | |
| 17 "../rtc_tools", | |
| 18 ] | |
| 19 } | |
| 20 | |
| 21 group("command_line_parser") { | |
| 22 public_deps = [ "../rtc_tools:command_line_parser" ] | |
| 23 } | |
| 24 | |
| 25 group("video_quality_analysis") { | |
| 26 public_deps = [ "../rtc_tools:video_quality_analysis" ] | |
| 27 } | |
| 28 | |
| 29 group("frame_analyzer") { | |
| 30 public_deps = [ "../rtc_tools:frame_analyzer" ] | |
| 31 } | |
| 32 | |
| 33 group("psnr_ssim_analyzer") { | |
| 34 public_deps = [ "../rtc_tools:psnr_ssim_analyzer" ] | |
| 35 } | |
| 36 | |
| 37 group("reference_less_video_analysis_lib") { | |
| 38 public_deps = [ "../rtc_tools:reference_less_video_analysis_lib" ] | |
| 39 } | |
| 40 | |
| 41 group("reference_less_video_analysis") { | |
| 42 public_deps = [ "../rtc_tools:reference_less_video_analysis" ] | |
| 43 } | |
| 44 | |
| 45 group("rgba_to_i420_converter") { | |
| 46 public_deps = [ "../rtc_tools:rgba_to_i420_converter" ] | |
| 47 } | |
| 48 | |
| 49 group("frame_editing_lib") { | |
| 50 public_deps = [ "../rtc_tools:frame_editing_lib" ] | |
| 51 } | |
| 52 | |
| 53 group("frame_editor") { | |
| 54 public_deps = [ "../rtc_tools:frame_editor" ] | |
| 55 } | |
| 56 | |
| 57 if (rtc_include_internal_audio_device) { | |
| 58 group("force_mic_volume_max") { | |
| 59 public_deps = [ "../rtc_tools:force_mic_volume_max" ] | |
| 60 } | |
| 61 } | |
| 62 | |
| 63 if (rtc_enable_protobuf) { | |
| 64 group("chart_proto") { | |
| 65 public_deps = [ "../rtc_tools:chart_proto" ] | |
| 66 } | |
| 67 | |
| 68 group("event_log_visualizer_utils") { | |
| 69 public_deps = [ "../rtc_tools:event_log_visualizer_utils" ] | |
| 70 } | |
| 71 } | |
| OLD | NEW |