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 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1050 deps += [ | 1050 deps += [ |
1051 ":neteq", | 1051 ":neteq", |
1052 ":neteq_unittest_tools", | 1052 ":neteq_unittest_tools", |
1053 "../../system_wrappers:system_wrappers_default", | 1053 "../../system_wrappers:system_wrappers_default", |
1054 "../../test:test_support", | 1054 "../../test:test_support", |
1055 "//third_party/gflags", | 1055 "//third_party/gflags", |
1056 ] | 1056 ] |
1057 } | 1057 } |
1058 } | 1058 } |
1059 | 1059 |
1060 test("audio_codec_speed_tests") { | |
1061 testonly = true | |
1062 defines = [] | |
1063 deps = [] | |
1064 sources = [ | |
1065 "codecs/isac/fix/test/isac_speed_test.cc", | |
1066 "codecs/opus/opus_speed_test.cc", | |
1067 "codecs/tools/audio_codec_speed_test.cc", | |
1068 "codecs/tools/audio_codec_speed_test.h", | |
1069 ] | |
1070 | |
1071 if (is_clang) { | |
1072 # Suppress warnings from the Chromium Clang plugins | |
1073 # (bugs.webrtc.org/163). | |
1074 configs -= [ "//build/config/clang:find_bad_constructs" ] | |
1075 } | |
1076 | |
1077 # if (is_win) { | |
phoglund
2016/07/28 07:31:20
Remove this.
| |
1078 # cflags = [ | |
1079 # # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. | |
1080 # "/wd4373", # virtual function override. | |
1081 # ] | |
1082 # } | |
1083 | |
1084 if (is_android) { | |
1085 deps += [ "//testing/android/native_test:native_test_native_code" ] | |
1086 } | |
1087 | |
1088 deps += [ | |
1089 ":isac_fix", | |
1090 ":webrtc_opus", | |
1091 "../../system_wrappers:system_wrappers_default", | |
1092 "../../test:test_support_main", | |
1093 "../audio_processing/", | |
1094 "//testing/gtest", | |
1095 ] | |
1096 } | |
1097 | |
1060 source_set("neteq_test_support") { | 1098 source_set("neteq_test_support") { |
1061 testonly = true | 1099 testonly = true |
1062 sources = [ | 1100 sources = [ |
1063 "neteq/tools/neteq_external_decoder_test.cc", | 1101 "neteq/tools/neteq_external_decoder_test.cc", |
1064 "neteq/tools/neteq_external_decoder_test.h", | 1102 "neteq/tools/neteq_external_decoder_test.h", |
1065 "neteq/tools/neteq_performance_test.cc", | 1103 "neteq/tools/neteq_performance_test.cc", |
1066 "neteq/tools/neteq_performance_test.h", | 1104 "neteq/tools/neteq_performance_test.h", |
1067 "neteq/tools/neteq_quality_test.cc", | 1105 "neteq/tools/neteq_quality_test.cc", |
1068 "neteq/tools/neteq_quality_test.h", | 1106 "neteq/tools/neteq_quality_test.h", |
1069 ] | 1107 ] |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1194 "//third_party/gflags:gflags", | 1232 "//third_party/gflags:gflags", |
1195 ] | 1233 ] |
1196 | 1234 |
1197 if (is_clang) { | 1235 if (is_clang) { |
1198 # Suppress warnings from Chrome's Clang plugins. | 1236 # Suppress warnings from Chrome's Clang plugins. |
1199 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 1237 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
1200 configs -= [ "//build/config/clang:find_bad_constructs" ] | 1238 configs -= [ "//build/config/clang:find_bad_constructs" ] |
1201 } | 1239 } |
1202 } | 1240 } |
1203 } | 1241 } |
OLD | NEW |