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

Side by Side Diff: webrtc/BUILD.gn

Issue 3005253002: Add full stack tests for MediaCodec. (Closed)
Patch Set: Created 3 years, 3 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 | « no previous file | webrtc/call/call_perf_tests.cc » ('j') | webrtc/modules/video_coding/BUILD.gn » ('J')
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 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. 9 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330.
10 10
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 deps += [ ":video_engine_tests_bundle_data" ] 462 deps += [ ":video_engine_tests_bundle_data" ]
463 } 463 }
464 } 464 }
465 465
466 webrtc_perf_tests_resources = [ 466 webrtc_perf_tests_resources = [
467 "../resources/audio_coding/speech_mono_16kHz.pcm", 467 "../resources/audio_coding/speech_mono_16kHz.pcm",
468 "../resources/audio_coding/speech_mono_32_48kHz.pcm", 468 "../resources/audio_coding/speech_mono_32_48kHz.pcm",
469 "../resources/audio_coding/testfile32kHz.pcm", 469 "../resources/audio_coding/testfile32kHz.pcm",
470 "../resources/ConferenceMotion_1280_720_50.yuv", 470 "../resources/ConferenceMotion_1280_720_50.yuv",
471 "../resources/difficult_photo_1850_1110.yuv", 471 "../resources/difficult_photo_1850_1110.yuv",
472 "../resources/foreman_128x96.yuv",
473 "../resources/foreman_320x240.yuv",
472 "../resources/foreman_cif.yuv", 474 "../resources/foreman_cif.yuv",
473 "../resources/google-wifi-3mbps.rx", 475 "../resources/google-wifi-3mbps.rx",
474 "../resources/paris_qcif.yuv", 476 "../resources/paris_qcif.yuv",
475 "../resources/photo_1850_1110.yuv", 477 "../resources/photo_1850_1110.yuv",
476 "../resources/presentation_1850_1110.yuv", 478 "../resources/presentation_1850_1110.yuv",
477 "../resources/verizon4g-downlink.rx", 479 "../resources/verizon4g-downlink.rx",
478 "../resources/voice_engine/audio_long16.pcm", 480 "../resources/voice_engine/audio_long16.pcm",
479 "../resources/web_screenshot_1850_1110.yuv", 481 "../resources/web_screenshot_1850_1110.yuv",
480 ] 482 ]
481 483
(...skipping 16 matching lines...) Expand all
498 "call:call_perf_tests", 500 "call:call_perf_tests",
499 "modules/audio_coding:audio_coding_perf_tests", 501 "modules/audio_coding:audio_coding_perf_tests",
500 "modules/audio_processing:audio_processing_perf_tests", 502 "modules/audio_processing:audio_processing_perf_tests",
501 "modules/remote_bitrate_estimator:remote_bitrate_estimator_perf_tests", 503 "modules/remote_bitrate_estimator:remote_bitrate_estimator_perf_tests",
502 "test:test_main", 504 "test:test_main",
503 "video:video_full_stack_tests", 505 "video:video_full_stack_tests",
504 ] 506 ]
505 507
506 data = webrtc_perf_tests_resources 508 data = webrtc_perf_tests_resources
507 if (is_android) { 509 if (is_android) {
508 deps += [ "//testing/android/native_test:native_test_native_code" ] 510 deps += [
511 # Including Java classes seems only to be possible from rtc_test
512 # targets. Therefore we include this target here, instead of
513 # in video_full_stack_tests, where it is actually used.
514 "sdk/android:libjingle_peerconnection_java",
515 "//testing/android/native_test:native_test_native_code",
516 ]
509 shard_timeout = 2700 517 shard_timeout = 2700
510 } 518 }
511 if (is_ios) { 519 if (is_ios) {
512 deps += [ ":webrtc_perf_tests_bundle_data" ] 520 deps += [ ":webrtc_perf_tests_bundle_data" ]
513 } 521 }
514 } 522 }
515 523
516 rtc_test("webrtc_nonparallel_tests") { 524 rtc_test("webrtc_nonparallel_tests") {
517 testonly = true 525 testonly = true
518 deps = [ 526 deps = [
(...skipping 15 matching lines...) Expand all
534 ] 542 ]
535 543
536 deps = [ 544 deps = [
537 "examples:AppRTCMobile_javalib", 545 "examples:AppRTCMobile_javalib",
538 "sdk/android:libjingle_peerconnection_java", 546 "sdk/android:libjingle_peerconnection_java",
539 "//base:base_java_test_support", 547 "//base:base_java_test_support",
540 ] 548 ]
541 } 549 }
542 } 550 }
543 } 551 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/call/call_perf_tests.cc » ('j') | webrtc/modules/video_coding/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698