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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 | 286 |
287 defines = audio_coding_defines | 287 defines = audio_coding_defines |
288 deps = [] | 288 deps = [] |
289 sources = [ | 289 sources = [ |
290 "audio_coding/acm2/acm_receiver_unittest.cc", | 290 "audio_coding/acm2/acm_receiver_unittest.cc", |
291 "audio_coding/acm2/audio_coding_module_unittest.cc", | 291 "audio_coding/acm2/audio_coding_module_unittest.cc", |
292 "audio_coding/acm2/call_statistics_unittest.cc", | 292 "audio_coding/acm2/call_statistics_unittest.cc", |
293 "audio_coding/acm2/codec_manager_unittest.cc", | 293 "audio_coding/acm2/codec_manager_unittest.cc", |
294 "audio_coding/acm2/rent_a_codec_unittest.cc", | 294 "audio_coding/acm2/rent_a_codec_unittest.cc", |
295 "audio_coding/codecs/audio_decoder_factory_unittest.cc", | 295 "audio_coding/codecs/audio_decoder_factory_unittest.cc", |
| 296 "audio_coding/codecs/audio_encoder_unittest.cc", |
296 "audio_coding/codecs/cng/audio_encoder_cng_unittest.cc", | 297 "audio_coding/codecs/cng/audio_encoder_cng_unittest.cc", |
297 "audio_coding/codecs/cng/cng_unittest.cc", | 298 "audio_coding/codecs/cng/cng_unittest.cc", |
298 "audio_coding/codecs/ilbc/ilbc_unittest.cc", | 299 "audio_coding/codecs/ilbc/ilbc_unittest.cc", |
299 "audio_coding/codecs/isac/fix/source/filterbanks_unittest.cc", | 300 "audio_coding/codecs/isac/fix/source/filterbanks_unittest.cc", |
300 "audio_coding/codecs/isac/fix/source/filters_unittest.cc", | 301 "audio_coding/codecs/isac/fix/source/filters_unittest.cc", |
301 "audio_coding/codecs/isac/fix/source/lpc_masking_model_unittest.cc", | 302 "audio_coding/codecs/isac/fix/source/lpc_masking_model_unittest.cc", |
302 "audio_coding/codecs/isac/fix/source/transform_unittest.cc", | 303 "audio_coding/codecs/isac/fix/source/transform_unittest.cc", |
303 "audio_coding/codecs/isac/main/source/audio_encoder_isac_unittest.cc", | 304 "audio_coding/codecs/isac/main/source/audio_encoder_isac_unittest.cc", |
304 "audio_coding/codecs/isac/main/source/isac_unittest.cc", | 305 "audio_coding/codecs/isac/main/source/isac_unittest.cc", |
305 "audio_coding/codecs/isac/unittest.cc", | 306 "audio_coding/codecs/isac/unittest.cc", |
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
746 "../test:test_common", | 747 "../test:test_common", |
747 "../test:test_support_main", | 748 "../test:test_support_main", |
748 "remote_bitrate_estimator:bwe_simulator_lib", | 749 "remote_bitrate_estimator:bwe_simulator_lib", |
749 "video_capture", | 750 "video_capture", |
750 "//testing/gmock", | 751 "//testing/gmock", |
751 "//testing/gtest", | 752 "//testing/gtest", |
752 "//third_party/gflags", | 753 "//third_party/gflags", |
753 ] | 754 ] |
754 } | 755 } |
755 } | 756 } |
OLD | NEW |