| 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 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 "modules/remote_bitrate_estimator:bwe_simulator", | 772 "modules/remote_bitrate_estimator:bwe_simulator", |
| 773 "modules/rtp_rtcp", | 773 "modules/rtp_rtcp", |
| 774 "test:channel_transport", | 774 "test:channel_transport", |
| 775 "test:test_common", | 775 "test:test_common", |
| 776 "test:test_main", | 776 "test:test_main", |
| 777 "test:test_renderer", | 777 "test:test_renderer", |
| 778 "voice_engine", | 778 "voice_engine", |
| 779 "//testing/gmock", | 779 "//testing/gmock", |
| 780 "//testing/gtest", | 780 "//testing/gtest", |
| 781 ] | 781 ] |
| 782 |
| 783 if (rtc_enable_intelligibility_enhancer) { |
| 784 defines = [ "WEBRTC_INTELLIGIBILITY_ENHANCER=1" ] |
| 785 } else { |
| 786 defines = [ "WEBRTC_INTELLIGIBILITY_ENHANCER=0" ] |
| 787 } |
| 788 |
| 782 if (is_android) { | 789 if (is_android) { |
| 783 deps += [ "//testing/android/native_test:native_test_native_code" ] | 790 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 784 data = webrtc_perf_tests_resources | 791 data = webrtc_perf_tests_resources |
| 785 shard_timeout = 2700 | 792 shard_timeout = 2700 |
| 786 } | 793 } |
| 787 if (is_ios) { | 794 if (is_ios) { |
| 788 deps += [ ":webrtc_perf_tests_bundle_data" ] | 795 deps += [ ":webrtc_perf_tests_bundle_data" ] |
| 789 } | 796 } |
| 790 if (is_clang) { | 797 if (is_clang) { |
| 791 # Suppress warnings from the Chromium Clang plugin. | 798 # Suppress warnings from the Chromium Clang plugin. |
| (...skipping 29 matching lines...) Expand all Loading... |
| 821 if (is_mac) { | 828 if (is_mac) { |
| 822 sources += [ "base/macsocketserver_unittest.cc" ] | 829 sources += [ "base/macsocketserver_unittest.cc" ] |
| 823 } | 830 } |
| 824 if (is_clang) { | 831 if (is_clang) { |
| 825 # Suppress warnings from the Chromium Clang plugin. | 832 # Suppress warnings from the Chromium Clang plugin. |
| 826 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 833 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 827 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 834 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 828 } | 835 } |
| 829 } | 836 } |
| 830 } | 837 } |
| OLD | NEW |