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("//testing/test.gni") | 9 import("//testing/test.gni") |
10 import("//third_party/protobuf/proto_library.gni") | 10 import("//third_party/protobuf/proto_library.gni") |
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 deps = [ | 343 deps = [ |
344 ":command_line_parser", | 344 ":command_line_parser", |
345 ":frame_editing_lib", | 345 ":frame_editing_lib", |
346 ":video_quality_analysis", | 346 ":video_quality_analysis", |
347 "../test:test_support_main", | 347 "../test:test_support_main", |
348 "//testing/gtest", | 348 "//testing/gtest", |
349 ] | 349 ] |
350 | 350 |
351 if (is_android) { | 351 if (is_android) { |
352 deps += [ "//testing/android/native_test:native_test_support" ] | 352 deps += [ "//testing/android/native_test:native_test_support" ] |
353 | 353 shard_timeout = 900 |
| 354 } |
| 355 if (is_android || is_ios) { |
354 data = [ | 356 data = [ |
355 "//resources/foreman_cif.yuv", | 357 "//resources/foreman_cif.yuv", |
356 ] | 358 ] |
357 | |
358 shard_timeout = 900 | |
359 } | 359 } |
360 } | 360 } |
361 | 361 |
362 if (rtc_enable_protobuf) { | 362 if (rtc_enable_protobuf) { |
363 copy("rtp_analyzer") { | 363 copy("rtp_analyzer") { |
364 sources = [ | 364 sources = [ |
365 "py_event_log_analyzer/misc.py", | 365 "py_event_log_analyzer/misc.py", |
366 "py_event_log_analyzer/pb_parse.py", | 366 "py_event_log_analyzer/pb_parse.py", |
367 "py_event_log_analyzer/rtp_analyzer.py", | 367 "py_event_log_analyzer/rtp_analyzer.py", |
368 "py_event_log_analyzer/rtp_analyzer.sh", | 368 "py_event_log_analyzer/rtp_analyzer.sh", |
369 ] | 369 ] |
370 outputs = [ | 370 outputs = [ |
371 "$root_build_dir/{{source_file_part}}", | 371 "$root_build_dir/{{source_file_part}}", |
372 ] | 372 ] |
373 deps = [ | 373 deps = [ |
374 "..:rtc_event_log_proto", | 374 "..:rtc_event_log_proto", |
375 ] | 375 ] |
376 } | 376 } |
377 } | 377 } |
378 } | 378 } |
OLD | NEW |