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

Side by Side Diff: BUILD.gn

Issue 3019593002: Reland of Add full stack tests for MediaCodec.
Patch Set: Created 3 years, 2 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 | call/call_perf_tests.cc » ('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("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("//build/config/sanitizers/sanitizers.gni") 10 import("//build/config/sanitizers/sanitizers.gni")
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 deps += [ ":video_engine_tests_bundle_data" ] 470 deps += [ ":video_engine_tests_bundle_data" ]
471 } 471 }
472 } 472 }
473 473
474 webrtc_perf_tests_resources = [ 474 webrtc_perf_tests_resources = [
475 "resources/audio_coding/speech_mono_16kHz.pcm", 475 "resources/audio_coding/speech_mono_16kHz.pcm",
476 "resources/audio_coding/speech_mono_32_48kHz.pcm", 476 "resources/audio_coding/speech_mono_32_48kHz.pcm",
477 "resources/audio_coding/testfile32kHz.pcm", 477 "resources/audio_coding/testfile32kHz.pcm",
478 "resources/ConferenceMotion_1280_720_50.yuv", 478 "resources/ConferenceMotion_1280_720_50.yuv",
479 "resources/difficult_photo_1850_1110.yuv", 479 "resources/difficult_photo_1850_1110.yuv",
480 "resources/foreman_128x96.yuv",
481 "resources/foreman_320x240.yuv",
480 "resources/foreman_cif.yuv", 482 "resources/foreman_cif.yuv",
481 "resources/google-wifi-3mbps.rx", 483 "resources/google-wifi-3mbps.rx",
482 "resources/paris_qcif.yuv", 484 "resources/paris_qcif.yuv",
483 "resources/photo_1850_1110.yuv", 485 "resources/photo_1850_1110.yuv",
484 "resources/presentation_1850_1110.yuv", 486 "resources/presentation_1850_1110.yuv",
485 "resources/verizon4g-downlink.rx", 487 "resources/verizon4g-downlink.rx",
486 "resources/voice_engine/audio_long16.pcm", 488 "resources/voice_engine/audio_long16.pcm",
487 "resources/web_screenshot_1850_1110.yuv", 489 "resources/web_screenshot_1850_1110.yuv",
488 ] 490 ]
489 491
(...skipping 16 matching lines...) Expand all
506 "call:call_perf_tests", 508 "call:call_perf_tests",
507 "modules/audio_coding:audio_coding_perf_tests", 509 "modules/audio_coding:audio_coding_perf_tests",
508 "modules/audio_processing:audio_processing_perf_tests", 510 "modules/audio_processing:audio_processing_perf_tests",
509 "modules/remote_bitrate_estimator:remote_bitrate_estimator_perf_tests", 511 "modules/remote_bitrate_estimator:remote_bitrate_estimator_perf_tests",
510 "test:test_main", 512 "test:test_main",
511 "video:video_full_stack_tests", 513 "video:video_full_stack_tests",
512 ] 514 ]
513 515
514 data = webrtc_perf_tests_resources 516 data = webrtc_perf_tests_resources
515 if (is_android) { 517 if (is_android) {
516 deps += [ "//testing/android/native_test:native_test_native_code" ] 518 deps += [
519 # Including Java classes seems only to be possible from rtc_test
520 # targets. Therefore we include this target here, instead of
521 # in video_full_stack_tests, where it is actually used.
522 "sdk/android:libjingle_peerconnection_java",
523 "//testing/android/native_test:native_test_native_code",
524 ]
517 shard_timeout = 2700 525 shard_timeout = 2700
518 } 526 }
519 if (is_ios) { 527 if (is_ios) {
520 deps += [ ":webrtc_perf_tests_bundle_data" ] 528 deps += [ ":webrtc_perf_tests_bundle_data" ]
521 } 529 }
522 } 530 }
523 531
524 rtc_test("webrtc_nonparallel_tests") { 532 rtc_test("webrtc_nonparallel_tests") {
525 testonly = true 533 testonly = true
526 deps = [ 534 deps = [
(...skipping 15 matching lines...) Expand all
542 ] 550 ]
543 551
544 deps = [ 552 deps = [
545 "examples:AppRTCMobile_javalib", 553 "examples:AppRTCMobile_javalib",
546 "sdk/android:libjingle_peerconnection_java", 554 "sdk/android:libjingle_peerconnection_java",
547 "//base:base_java_test_support", 555 "//base:base_java_test_support",
548 ] 556 ]
549 } 557 }
550 } 558 }
551 } 559 }
OLDNEW
« no previous file with comments | « no previous file | call/call_perf_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698