| 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 12 matching lines...) Expand all Loading... |
| 23 if (rtc_include_internal_audio_device) { | 23 if (rtc_include_internal_audio_device) { |
| 24 public_deps += [ ":force_mic_volume_max" ] | 24 public_deps += [ ":force_mic_volume_max" ] |
| 25 } | 25 } |
| 26 if (rtc_enable_protobuf) { | 26 if (rtc_enable_protobuf) { |
| 27 public_deps += [ ":chart_proto" ] | 27 public_deps += [ ":chart_proto" ] |
| 28 } | 28 } |
| 29 | 29 |
| 30 if (rtc_include_tests) { | 30 if (rtc_include_tests) { |
| 31 public_deps += [ | 31 public_deps += [ |
| 32 ":activity_metric", | 32 ":activity_metric", |
| 33 ":rtp_analyzer", | |
| 34 ":tools_unittests", | 33 ":tools_unittests", |
| 35 ] | 34 ] |
| 36 if (rtc_enable_protobuf) { | 35 if (rtc_enable_protobuf) { |
| 37 public_deps += [ ":event_log_visualizer" ] | 36 public_deps += [ |
| 37 ":event_log_visualizer", |
| 38 ":rtp_analyzer", |
| 39 ] |
| 38 } | 40 } |
| 39 } | 41 } |
| 40 } | 42 } |
| 41 | 43 |
| 42 rtc_static_library("command_line_parser") { | 44 rtc_static_library("command_line_parser") { |
| 43 sources = [ | 45 sources = [ |
| 44 "simple_command_line_parser.cc", | 46 "simple_command_line_parser.cc", |
| 45 "simple_command_line_parser.h", | 47 "simple_command_line_parser.h", |
| 46 ] | 48 ] |
| 47 deps = [ | 49 deps = [ |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 ] | 323 ] |
| 322 outputs = [ | 324 outputs = [ |
| 323 "$root_build_dir/{{source_file_part}}", | 325 "$root_build_dir/{{source_file_part}}", |
| 324 ] | 326 ] |
| 325 deps = [ | 327 deps = [ |
| 326 "../logging:rtc_event_log_proto", | 328 "../logging:rtc_event_log_proto", |
| 327 ] | 329 ] |
| 328 } | 330 } |
| 329 } | 331 } |
| 330 } | 332 } |
| OLD | NEW |