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 767 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
778 } | 778 } |
779 } | 779 } |
780 | 780 |
781 test("webrtc_perf_tests") { | 781 test("webrtc_perf_tests") { |
782 testonly = true | 782 testonly = true |
783 configs += [ | 783 configs += [ |
784 ":common_config", | 784 ":common_config", |
785 ":rtc_unittests_config", | 785 ":rtc_unittests_config", |
786 ] | 786 ] |
787 public_configs = [ ":common_inherited_config" ] | 787 public_configs = [ ":common_inherited_config" ] |
| 788 |
| 789 if (!is_debug) { |
| 790 configs -= [ "//build/config/compiler:default_optimization" ] |
| 791 configs += [ "//build/config/compiler:optimize_max" ] |
| 792 } |
| 793 |
788 sources = [ | 794 sources = [ |
789 "call/call_perf_tests.cc", | 795 "call/call_perf_tests.cc", |
790 "call/rampup_tests.cc", | 796 "call/rampup_tests.cc", |
791 "call/rampup_tests.h", | 797 "call/rampup_tests.h", |
792 "modules/audio_coding/neteq/test/neteq_performance_unittest.cc", | 798 "modules/audio_coding/neteq/test/neteq_performance_unittest.cc", |
793 "modules/audio_processing/audio_processing_performance_unittest.cc", | 799 "modules/audio_processing/audio_processing_performance_unittest.cc", |
794 "modules/audio_processing/level_controller/level_controller_complexity_uni
ttest.cc", | 800 "modules/audio_processing/level_controller/level_controller_complexity_uni
ttest.cc", |
795 "modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc", | 801 "modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc", |
796 "video/full_stack.cc", | 802 "video/full_stack.cc", |
797 ] | 803 ] |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
860 if (is_ios || (is_mac && target_cpu != "x86")) { | 866 if (is_ios || (is_mac && target_cpu != "x86")) { |
861 defines = [ "CARBON_DEPRECATED=YES" ] | 867 defines = [ "CARBON_DEPRECATED=YES" ] |
862 } | 868 } |
863 if (is_clang) { | 869 if (is_clang) { |
864 # Suppress warnings from the Chromium Clang plugin. | 870 # Suppress warnings from the Chromium Clang plugin. |
865 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 871 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
866 configs -= [ "//build/config/clang:find_bad_constructs" ] | 872 configs -= [ "//build/config/clang:find_bad_constructs" ] |
867 } | 873 } |
868 } | 874 } |
869 } | 875 } |
OLD | NEW |