| 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 # 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 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 759 "test:channel_transport", | 759 "test:channel_transport", |
| 760 "test:test_common", | 760 "test:test_common", |
| 761 "test:test_main", | 761 "test:test_main", |
| 762 "test:test_renderer", | 762 "test:test_renderer", |
| 763 "voice_engine", | 763 "voice_engine", |
| 764 "//testing/gmock", | 764 "//testing/gmock", |
| 765 "//testing/gtest", | 765 "//testing/gtest", |
| 766 ] | 766 ] |
| 767 if (is_android) { | 767 if (is_android) { |
| 768 deps += [ "//testing/android/native_test:native_test_native_code" ] | 768 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 769 data = [ |
| 770 "//resources/audio_coding/speech_mono_16kHz.pcm", |
| 771 "//resources/audio_coding/testfile32kHz.pcm", |
| 772 "//resources/ConferenceMotion_1280_720_50.yuv", |
| 773 "//resources/difficult_photo_1850_1110.yuv", |
| 774 "//resources/foreman_cif.yuv", |
| 775 "//resources/google-wifi-3mbps.rx", |
| 776 "//resources/paris_qcif.yuv", |
| 777 "//resources/photo_1850_1110.yuv", |
| 778 "//resources/presentation_1850_1110.yuv", |
| 779 "//resources/verizon4g-downlink.rx", |
| 780 "//resources/voice_engine/audio_long16.pcm", |
| 781 "//resources/web_screenshot_1850_1110.yuv", |
| 782 ] |
| 769 shard_timeout = 2700 | 783 shard_timeout = 2700 |
| 770 } | 784 } |
| 771 if (is_clang) { | 785 if (is_clang) { |
| 772 # Suppress warnings from the Chromium Clang plugin. | 786 # Suppress warnings from the Chromium Clang plugin. |
| 773 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 787 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 774 configs -= [ "//build/config/clang:find_bad_constructs" ] | 788 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 775 } | 789 } |
| 776 } | 790 } |
| 777 | 791 |
| 778 test("webrtc_nonparallel_tests") { | 792 test("webrtc_nonparallel_tests") { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 809 if (is_ios || (is_mac && target_cpu != "x86")) { | 823 if (is_ios || (is_mac && target_cpu != "x86")) { |
| 810 defines = [ "CARBON_DEPRECATED=YES" ] | 824 defines = [ "CARBON_DEPRECATED=YES" ] |
| 811 } | 825 } |
| 812 if (is_clang) { | 826 if (is_clang) { |
| 813 # Suppress warnings from the Chromium Clang plugin. | 827 # Suppress warnings from the Chromium Clang plugin. |
| 814 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 828 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 815 configs -= [ "//build/config/clang:find_bad_constructs" ] | 829 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 816 } | 830 } |
| 817 } | 831 } |
| 818 } | 832 } |
| OLD | NEW |