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

Side by Side Diff: webrtc/modules/modules.gyp

Issue 1882963003: Add isolate files for Android tests (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 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
OLDNEW
1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2011 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 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after
619 # Disable warnings to enable Win64 build, issue 1323. 619 # Disable warnings to enable Win64 build, issue 1323.
620 'msvs_disabled_warnings': [ 620 'msvs_disabled_warnings': [
621 4267, # size_t to int truncation. 621 4267, # size_t to int truncation.
622 ], 622 ],
623 }, 623 },
624 ], 624 ],
625 'conditions': [ 625 'conditions': [
626 ['OS=="android"', { 626 ['OS=="android"', {
627 'targets': [ 627 'targets': [
628 { 628 {
629 'target_name': 'modules_unittests_apk_target', 629 'target_name': 'audio_codec_speed_tests_apk_target',
630 'type': 'none', 630 'type': 'none',
631 'dependencies': [ 631 'dependencies': [
632 '<(apk_tests_path):modules_unittests_apk', 632 '<(apk_tests_path):audio_codec_speed_tests_apk',
633 ], 633 ],
634 }, 634 },
635 { 635 {
636 'target_name': 'audio_decoder_unittests_apk_target',
637 'type': 'none',
638 'dependencies': [
639 '<(apk_tests_path):audio_decoder_unittests_apk',
640 ],
641 },
642 {
636 'target_name': 'modules_tests_apk_target', 643 'target_name': 'modules_tests_apk_target',
637 'type': 'none', 644 'type': 'none',
638 'dependencies': [ 645 'dependencies': [
639 '<(apk_tests_path):modules_tests_apk', 646 '<(apk_tests_path):modules_tests_apk',
640 ], 647 ],
641 }, 648 },
649 {
650 'target_name': 'modules_unittests_apk_target',
651 'type': 'none',
652 'dependencies': [
653 '<(apk_tests_path):modules_unittests_apk',
654 ],
655 },
642 ], 656 ],
643 }], 657 'conditions': [
658 ['test_isolation_mode != "noop"',
659 {
660 'targets': [
661 {
662 'target_name': 'audio_codec_speed_tests_apk_run',
663 'type': 'none',
664 'dependencies': [
665 '<(apk_tests_path):audio_codec_speed_tests_apk',
666 ],
667 'includes': [
668 '../build/isolate.gypi',
669 ],
670 'sources': [
671 'audio_codec_speed_tests_apk.isolate',
672 ],
673 },
674 {
675 'target_name': 'audio_decoder_unittests_apk_run',
676 'type': 'none',
677 'dependencies': [
678 '<(apk_tests_path):audio_decoder_unittests_apk',
679 ],
680 'includes': [
681 '../build/isolate.gypi',
682 ],
683 'sources': [
684 'audio_decoder_unittests_apk.isolate',
685 ],
686 },
687 {
688 'target_name': 'modules_tests_apk_run',
689 'type': 'none',
690 'dependencies': [
691 '<(apk_tests_path):modules_tests_apk',
692 ],
693 'includes': [
694 '../build/isolate.gypi',
695 ],
696 'sources': [
697 'modules_tests_apk.isolate',
698 ],
699 },
700 {
701 'target_name': 'modules_unittests_apk_run',
702 'type': 'none',
703 'dependencies': [
704 '<(apk_tests_path):modules_unittests_apk',
705 ],
706 'includes': [
707 '../build/isolate.gypi',
708 ],
709 'sources': [
710 'modules_unittests_apk.isolate',
711 ],
712 },
713 ],
714 },
715 ],
716 ],
717 }], # OS=="android"
644 ['test_isolation_mode != "noop"', { 718 ['test_isolation_mode != "noop"', {
645 'targets': [ 719 'targets': [
646 { 720 {
647 'target_name': 'audio_codec_speed_tests_run', 721 'target_name': 'audio_codec_speed_tests_run',
648 'type': 'none', 722 'type': 'none',
649 'dependencies': [ 723 'dependencies': [
650 'audio_codec_speed_tests', 724 'audio_codec_speed_tests',
651 ], 725 ],
652 'includes': [ 726 'includes': [
653 '../build/isolate.gypi', 727 '../build/isolate.gypi',
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
720 'sources': [ 794 'sources': [
721 'video_render_tests.isolate', 795 'video_render_tests.isolate',
722 ], 796 ],
723 }, 797 },
724 ], 798 ],
725 }], 799 }],
726 ], 800 ],
727 }], # include_tests 801 }], # include_tests
728 ], # conditions 802 ], # conditions
729 } 803 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698