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 import("../../build/webrtc.gni") | 9 import("../../build/webrtc.gni") |
10 import("audio_coding.gni") | 10 import("audio_coding.gni") |
(...skipping 1122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1133 sources = [ | 1133 sources = [ |
1134 "neteq/tools/neteq_external_decoder_test.cc", | 1134 "neteq/tools/neteq_external_decoder_test.cc", |
1135 "neteq/tools/neteq_external_decoder_test.h", | 1135 "neteq/tools/neteq_external_decoder_test.h", |
1136 "neteq/tools/neteq_performance_test.cc", | 1136 "neteq/tools/neteq_performance_test.cc", |
1137 "neteq/tools/neteq_performance_test.h", | 1137 "neteq/tools/neteq_performance_test.h", |
1138 ] | 1138 ] |
1139 | 1139 |
1140 configs += [ "../..:common_config" ] | 1140 configs += [ "../..:common_config" ] |
1141 public_configs = [ "../..:common_inherited_config" ] | 1141 public_configs = [ "../..:common_inherited_config" ] |
1142 | 1142 |
| 1143 if (!is_debug) { |
| 1144 configs -= [ "//build/config/compiler:default_optimization" ] |
| 1145 configs += [ "//build/config/compiler:optimize_max" ] |
| 1146 } |
| 1147 |
1143 if (is_clang) { | 1148 if (is_clang) { |
1144 # Suppress warnings from the Chromium Clang plugins (bugs.webrtc.org/163). | 1149 # Suppress warnings from the Chromium Clang plugins (bugs.webrtc.org/163). |
1145 configs -= [ "//build/config/clang:find_bad_constructs" ] | 1150 configs -= [ "//build/config/clang:find_bad_constructs" ] |
1146 } | 1151 } |
1147 | 1152 |
1148 deps = [ | 1153 deps = [ |
1149 ":neteq", | 1154 ":neteq", |
1150 ":neteq_unittest_tools", | 1155 ":neteq_unittest_tools", |
1151 ":pcm16b", | 1156 ":pcm16b", |
1152 "//testing/gtest", | 1157 "//testing/gtest", |
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1679 "//testing/gtest", | 1684 "//testing/gtest", |
1680 ] | 1685 ] |
1681 | 1686 |
1682 if (is_clang) { | 1687 if (is_clang) { |
1683 # Suppress warnings from Chrome's Clang plugins. | 1688 # Suppress warnings from Chrome's Clang plugins. |
1684 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 1689 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
1685 configs -= [ "//build/config/clang:find_bad_constructs" ] | 1690 configs -= [ "//build/config/clang:find_bad_constructs" ] |
1686 } | 1691 } |
1687 } | 1692 } |
1688 } | 1693 } |
OLD | NEW |