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_android) { |
| 1078 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1079 } |
| 1080 |
| 1081 deps += [ |
| 1082 ":isac_fix", |
| 1083 ":webrtc_opus", |
| 1084 "../../system_wrappers:system_wrappers_default", |
| 1085 "../../test:test_support_main", |
| 1086 "../audio_processing/", |
| 1087 "//testing/gtest", |
| 1088 ] |
| 1089 } |
| 1090 |
1060 source_set("neteq_test_support") { | 1091 source_set("neteq_test_support") { |
1061 testonly = true | 1092 testonly = true |
1062 sources = [ | 1093 sources = [ |
1063 "neteq/tools/neteq_external_decoder_test.cc", | 1094 "neteq/tools/neteq_external_decoder_test.cc", |
1064 "neteq/tools/neteq_external_decoder_test.h", | 1095 "neteq/tools/neteq_external_decoder_test.h", |
1065 "neteq/tools/neteq_performance_test.cc", | 1096 "neteq/tools/neteq_performance_test.cc", |
1066 "neteq/tools/neteq_performance_test.h", | 1097 "neteq/tools/neteq_performance_test.h", |
1067 "neteq/tools/neteq_quality_test.cc", | 1098 "neteq/tools/neteq_quality_test.cc", |
1068 "neteq/tools/neteq_quality_test.h", | 1099 "neteq/tools/neteq_quality_test.h", |
1069 ] | 1100 ] |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1194 "//third_party/gflags:gflags", | 1225 "//third_party/gflags:gflags", |
1195 ] | 1226 ] |
1196 | 1227 |
1197 if (is_clang) { | 1228 if (is_clang) { |
1198 # Suppress warnings from Chrome's Clang plugins. | 1229 # Suppress warnings from Chrome's Clang plugins. |
1199 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 1230 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
1200 configs -= [ "//build/config/clang:find_bad_constructs" ] | 1231 configs -= [ "//build/config/clang:find_bad_constructs" ] |
1201 } | 1232 } |
1202 } | 1233 } |
1203 } | 1234 } |
OLD | NEW |