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 1106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1117 ":neteq_speed_test", | 1117 ":neteq_speed_test", |
1118 ":rtp_analyze", | 1118 ":rtp_analyze", |
1119 ":rtpcat", | 1119 ":rtpcat", |
1120 ":webrtc_opus_fec_test", | 1120 ":webrtc_opus_fec_test", |
1121 ] | 1121 ] |
1122 if (rtc_enable_protobuf) { | 1122 if (rtc_enable_protobuf) { |
1123 public_deps += [ ":neteq_rtpplay" ] | 1123 public_deps += [ ":neteq_rtpplay" ] |
1124 } | 1124 } |
1125 } | 1125 } |
1126 | 1126 |
| 1127 rtc_source_set("audio_coding_modules_tests") { |
| 1128 testonly = true |
| 1129 sources = [ |
| 1130 "test/APITest.cc", |
| 1131 "test/Channel.cc", |
| 1132 "test/EncodeDecodeTest.cc", |
| 1133 "test/PCMFile.cc", |
| 1134 "test/PacketLossTest.cc", |
| 1135 "test/RTPFile.cc", |
| 1136 "test/TestAllCodecs.cc", |
| 1137 "test/TestRedFec.cc", |
| 1138 "test/TestStereo.cc", |
| 1139 "test/TestVADDTX.cc", |
| 1140 "test/Tester.cc", |
| 1141 "test/TwoWayCommunication.cc", |
| 1142 "test/iSACTest.cc", |
| 1143 "test/opus_test.cc", |
| 1144 "test/target_delay_unittest.cc", |
| 1145 "test/utility.cc", |
| 1146 ] |
| 1147 deps = [ |
| 1148 ":audio_coding", |
| 1149 ":audio_format_conversion", |
| 1150 ":builtin_audio_decoder_factory", |
| 1151 ":pcm16b_c", |
| 1152 "../..:webrtc_common", |
| 1153 "../../base:rtc_base_approved", |
| 1154 "../../system_wrappers:system_wrappers", |
| 1155 "../../test:fileutils", |
| 1156 "../../test:test_support", |
| 1157 ] |
| 1158 defines = audio_coding_defines |
| 1159 if (is_win) { |
| 1160 cflags = [ |
| 1161 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. |
| 1162 "/wd4373", # virtual function override. |
| 1163 ] |
| 1164 } |
| 1165 if (!build_with_chromium && is_clang) { |
| 1166 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 1167 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 1168 } |
| 1169 } |
| 1170 |
1127 rtc_source_set("audio_coding_perf_tests") { | 1171 rtc_source_set("audio_coding_perf_tests") { |
1128 testonly = true | 1172 testonly = true |
1129 sources = [ | 1173 sources = [ |
1130 "codecs/opus/opus_complexity_unittest.cc", | 1174 "codecs/opus/opus_complexity_unittest.cc", |
1131 "neteq/test/neteq_performance_unittest.cc", | 1175 "neteq/test/neteq_performance_unittest.cc", |
1132 ] | 1176 ] |
1133 deps = [ | 1177 deps = [ |
1134 ":neteq_test_support", | 1178 ":neteq_test_support", |
1135 ":neteq_unittest_tools", | 1179 ":neteq_unittest_tools", |
1136 ":webrtc_opus", | 1180 ":webrtc_opus", |
(...skipping 910 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2047 ":neteq_unittest_proto", | 2091 ":neteq_unittest_proto", |
2048 ] | 2092 ] |
2049 } | 2093 } |
2050 | 2094 |
2051 if (!build_with_chromium && is_clang) { | 2095 if (!build_with_chromium && is_clang) { |
2052 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 2096 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
2053 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 2097 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
2054 } | 2098 } |
2055 } | 2099 } |
2056 } | 2100 } |
OLD | NEW |