| 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") |
| (...skipping 18 matching lines...) Expand all Loading... |
| 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 ":tools_unittests", | 33 ":tools_unittests", |
| 34 ] | 34 ] |
| 35 if (rtc_enable_protobuf) { | 35 if (rtc_enable_protobuf) { |
| 36 public_deps += [ | 36 public_deps += [ |
| 37 ":event_log_visualizer", | 37 ":event_log_visualizer", |
| 38 ":rtp_analyzer", | 38 ":rtp_analyzer", |
| 39 "network_tester", |
| 39 ] | 40 ] |
| 40 } | 41 } |
| 41 } | 42 } |
| 42 } | 43 } |
| 43 | 44 |
| 44 rtc_static_library("command_line_parser") { | 45 rtc_static_library("command_line_parser") { |
| 45 sources = [ | 46 sources = [ |
| 46 "simple_command_line_parser.cc", | 47 "simple_command_line_parser.cc", |
| 47 "simple_command_line_parser.h", | 48 "simple_command_line_parser.h", |
| 48 ] | 49 ] |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 | 305 |
| 305 deps = [ | 306 deps = [ |
| 306 ":command_line_parser", | 307 ":command_line_parser", |
| 307 ":frame_editing_lib", | 308 ":frame_editing_lib", |
| 308 ":reference_less_video_analysis_lib", | 309 ":reference_less_video_analysis_lib", |
| 309 ":video_quality_analysis", | 310 ":video_quality_analysis", |
| 310 "../test:test_main", | 311 "../test:test_main", |
| 311 "//testing/gtest", | 312 "//testing/gtest", |
| 312 ] | 313 ] |
| 313 | 314 |
| 315 if (rtc_enable_protobuf) { |
| 316 deps += [ "network_tester:network_tester_unittests" ] |
| 317 } |
| 318 |
| 314 data = tools_unittests_resources | 319 data = tools_unittests_resources |
| 315 if (is_android) { | 320 if (is_android) { |
| 316 deps += [ "//testing/android/native_test:native_test_support" ] | 321 deps += [ "//testing/android/native_test:native_test_support" ] |
| 317 shard_timeout = 900 | 322 shard_timeout = 900 |
| 318 } | 323 } |
| 319 if (is_ios) { | 324 if (is_ios) { |
| 320 deps += [ ":tools_unittests_bundle_data" ] | 325 deps += [ ":tools_unittests_bundle_data" ] |
| 321 } | 326 } |
| 322 } | 327 } |
| 323 | 328 |
| 324 if (rtc_enable_protobuf) { | 329 if (rtc_enable_protobuf) { |
| 325 copy("rtp_analyzer") { | 330 copy("rtp_analyzer") { |
| 326 sources = [ | 331 sources = [ |
| 327 "py_event_log_analyzer/misc.py", | 332 "py_event_log_analyzer/misc.py", |
| 328 "py_event_log_analyzer/pb_parse.py", | 333 "py_event_log_analyzer/pb_parse.py", |
| 329 "py_event_log_analyzer/rtp_analyzer.py", | 334 "py_event_log_analyzer/rtp_analyzer.py", |
| 330 "py_event_log_analyzer/rtp_analyzer.sh", | 335 "py_event_log_analyzer/rtp_analyzer.sh", |
| 331 ] | 336 ] |
| 332 outputs = [ | 337 outputs = [ |
| 333 "$root_build_dir/{{source_file_part}}", | 338 "$root_build_dir/{{source_file_part}}", |
| 334 ] | 339 ] |
| 335 deps = [ | 340 deps = [ |
| 336 "../logging:rtc_event_log_proto", | 341 "../logging:rtc_event_log_proto", |
| 337 ] | 342 ] |
| 338 } | 343 } |
| 339 } | 344 } |
| 340 } | 345 } |
| OLD | NEW |