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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 298 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
298 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 299 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
299 } | 300 } |
300 | 301 |
301 deps = [ | 302 deps = [ |
302 ":command_line_parser", | 303 ":command_line_parser", |
303 ":frame_editing_lib", | 304 ":frame_editing_lib", |
304 ":reference_less_video_analysis_lib", | 305 ":reference_less_video_analysis_lib", |
305 ":video_quality_analysis", | 306 ":video_quality_analysis", |
306 "../test:test_main", | 307 "../test:test_main", |
| 308 "network_tester:network_tester_unittests", |
307 "//testing/gtest", | 309 "//testing/gtest", |
308 ] | 310 ] |
309 | 311 |
310 data = tools_unittests_resources | 312 data = tools_unittests_resources |
311 if (is_android) { | 313 if (is_android) { |
312 deps += [ "//testing/android/native_test:native_test_support" ] | 314 deps += [ "//testing/android/native_test:native_test_support" ] |
313 shard_timeout = 900 | 315 shard_timeout = 900 |
314 } | 316 } |
315 if (is_ios) { | 317 if (is_ios) { |
316 deps += [ ":tools_unittests_bundle_data" ] | 318 deps += [ ":tools_unittests_bundle_data" ] |
(...skipping 10 matching lines...) Expand all Loading... |
327 ] | 329 ] |
328 outputs = [ | 330 outputs = [ |
329 "$root_build_dir/{{source_file_part}}", | 331 "$root_build_dir/{{source_file_part}}", |
330 ] | 332 ] |
331 deps = [ | 333 deps = [ |
332 "../logging:rtc_event_log_proto", | 334 "../logging:rtc_event_log_proto", |
333 ] | 335 ] |
334 } | 336 } |
335 } | 337 } |
336 } | 338 } |
OLD | NEW |