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("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 # This needs to be kept in sync with the test_support_unittests.isolate file
. | 318 # This needs to be kept in sync with the test_support_unittests.isolate file
. |
319 # TODO(kjellander); Move this to android_assets targets instead. | 319 # TODO(kjellander); Move this to android_assets targets instead. |
320 data = [ | 320 data = [ |
321 "//resources/video_coding/frame-ethernet-ii.pcap", | 321 "//resources/video_coding/frame-ethernet-ii.pcap", |
322 "//resources/video_coding/frame-loopback.pcap", | 322 "//resources/video_coding/frame-loopback.pcap", |
323 "//resources/video_coding/pltype103.rtp", | 323 "//resources/video_coding/pltype103.rtp", |
324 "//resources/video_coding/pltype103_header_only.rtp", | 324 "//resources/video_coding/pltype103_header_only.rtp", |
325 "//resources/video_coding/ssrcs-2.pcap", | 325 "//resources/video_coding/ssrcs-2.pcap", |
326 "//resources/video_coding/ssrcs-3.pcap", | 326 "//resources/video_coding/ssrcs-3.pcap", |
327 ] | 327 ] |
| 328 |
| 329 shard_timeout = 900 |
328 } | 330 } |
329 deps += [ | 331 deps += [ |
330 ":channel_transport", | 332 ":channel_transport", |
331 ":test_common", | 333 ":test_common", |
332 ":test_support_main", | 334 ":test_support_main", |
333 "../modules/video_capture", | 335 "../modules/video_capture", |
334 "//testing/gmock", | 336 "//testing/gmock", |
335 "//testing/gtest", | 337 "//testing/gtest", |
336 ] | 338 ] |
337 } | 339 } |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
479 configs -= [ "//build/config/clang:find_bad_constructs" ] | 481 configs -= [ "//build/config/clang:find_bad_constructs" ] |
480 } | 482 } |
481 | 483 |
482 deps = [ | 484 deps = [ |
483 ":test_support", | 485 ":test_support", |
484 ":video_test_common", | 486 ":video_test_common", |
485 "../modules/media_file", | 487 "../modules/media_file", |
486 "//testing/gtest", | 488 "//testing/gtest", |
487 ] | 489 ] |
488 } | 490 } |
OLD | NEW |