OLD | NEW |
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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/audio_coding.gni") | 10 import("audio_coding/audio_coding.gni") |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 263 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
264 } | 264 } |
265 } | 265 } |
266 | 266 |
267 rtc_test("modules_unittests") { | 267 rtc_test("modules_unittests") { |
268 testonly = true | 268 testonly = true |
269 | 269 |
270 defines = audio_coding_defines | 270 defines = audio_coding_defines |
271 deps = [] | 271 deps = [] |
272 sources = [ | 272 sources = [ |
273 "audio_coding/acm2/acm_receiver_unittest_oldapi.cc", | 273 "audio_coding/acm2/acm_receiver_unittest.cc", |
274 "audio_coding/acm2/audio_coding_module_unittest_oldapi.cc", | 274 "audio_coding/acm2/audio_coding_module_unittest.cc", |
275 "audio_coding/acm2/call_statistics_unittest.cc", | 275 "audio_coding/acm2/call_statistics_unittest.cc", |
276 "audio_coding/acm2/codec_manager_unittest.cc", | 276 "audio_coding/acm2/codec_manager_unittest.cc", |
277 "audio_coding/acm2/rent_a_codec_unittest.cc", | 277 "audio_coding/acm2/rent_a_codec_unittest.cc", |
278 "audio_coding/codecs/audio_decoder_factory_unittest.cc", | 278 "audio_coding/codecs/audio_decoder_factory_unittest.cc", |
279 "audio_coding/codecs/cng/audio_encoder_cng_unittest.cc", | 279 "audio_coding/codecs/cng/audio_encoder_cng_unittest.cc", |
280 "audio_coding/codecs/cng/cng_unittest.cc", | 280 "audio_coding/codecs/cng/cng_unittest.cc", |
281 "audio_coding/codecs/ilbc/ilbc_unittest.cc", | 281 "audio_coding/codecs/ilbc/ilbc_unittest.cc", |
282 "audio_coding/codecs/isac/fix/source/filterbanks_unittest.cc", | 282 "audio_coding/codecs/isac/fix/source/filterbanks_unittest.cc", |
283 "audio_coding/codecs/isac/fix/source/filters_unittest.cc", | 283 "audio_coding/codecs/isac/fix/source/filters_unittest.cc", |
284 "audio_coding/codecs/isac/fix/source/lpc_masking_model_unittest.cc", | 284 "audio_coding/codecs/isac/fix/source/lpc_masking_model_unittest.cc", |
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
699 ] | 699 ] |
700 | 700 |
701 if (target_cpu != "x64") { | 701 if (target_cpu != "x64") { |
702 sources += [ "audio_device/ios/audio_device_unittest_ios.cc" ] | 702 sources += [ "audio_device/ios/audio_device_unittest_ios.cc" ] |
703 } | 703 } |
704 | 704 |
705 ldflags = [ "-ObjC" ] | 705 ldflags = [ "-ObjC" ] |
706 } | 706 } |
707 } | 707 } |
708 } | 708 } |
OLD | NEW |