Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: webrtc/tools/BUILD.gn

Issue 2813193002: Revert of Reland "Add first part of the network_tester functionality" (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « resources/network_tester/server_config.dat.sha1 ('k') | webrtc/tools/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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",
40 ] 39 ]
41 } 40 }
42 } 41 }
43 } 42 }
44 43
45 rtc_static_library("command_line_parser") { 44 rtc_static_library("command_line_parser") {
46 sources = [ 45 sources = [
47 "simple_command_line_parser.cc", 46 "simple_command_line_parser.cc",
48 "simple_command_line_parser.h", 47 "simple_command_line_parser.h",
49 ] 48 ]
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 304
306 deps = [ 305 deps = [
307 ":command_line_parser", 306 ":command_line_parser",
308 ":frame_editing_lib", 307 ":frame_editing_lib",
309 ":reference_less_video_analysis_lib", 308 ":reference_less_video_analysis_lib",
310 ":video_quality_analysis", 309 ":video_quality_analysis",
311 "../test:test_main", 310 "../test:test_main",
312 "//testing/gtest", 311 "//testing/gtest",
313 ] 312 ]
314 313
315 if (rtc_enable_protobuf) {
316 deps += [ "network_tester:network_tester_unittests" ]
317 }
318
319 data = tools_unittests_resources 314 data = tools_unittests_resources
320 if (is_android) { 315 if (is_android) {
321 deps += [ "//testing/android/native_test:native_test_support" ] 316 deps += [ "//testing/android/native_test:native_test_support" ]
322 shard_timeout = 900 317 shard_timeout = 900
323 } 318 }
324 if (is_ios) { 319 if (is_ios) {
325 deps += [ ":tools_unittests_bundle_data" ] 320 deps += [ ":tools_unittests_bundle_data" ]
326 } 321 }
327 } 322 }
328 323
329 if (rtc_enable_protobuf) { 324 if (rtc_enable_protobuf) {
330 copy("rtp_analyzer") { 325 copy("rtp_analyzer") {
331 sources = [ 326 sources = [
332 "py_event_log_analyzer/misc.py", 327 "py_event_log_analyzer/misc.py",
333 "py_event_log_analyzer/pb_parse.py", 328 "py_event_log_analyzer/pb_parse.py",
334 "py_event_log_analyzer/rtp_analyzer.py", 329 "py_event_log_analyzer/rtp_analyzer.py",
335 "py_event_log_analyzer/rtp_analyzer.sh", 330 "py_event_log_analyzer/rtp_analyzer.sh",
336 ] 331 ]
337 outputs = [ 332 outputs = [
338 "$root_build_dir/{{source_file_part}}", 333 "$root_build_dir/{{source_file_part}}",
339 ] 334 ]
340 deps = [ 335 deps = [
341 "../logging:rtc_event_log_proto", 336 "../logging:rtc_event_log_proto",
342 ] 337 ]
343 } 338 }
344 } 339 }
345 } 340 }
OLDNEW
« no previous file with comments | « resources/network_tester/server_config.dat.sha1 ('k') | webrtc/tools/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698