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("../../webrtc.gni") | 9 import("../../webrtc.gni") |
10 import("audio_coding.gni") | 10 import("audio_coding.gni") |
(...skipping 2009 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2020 "neteq/comfort_noise_unittest.cc", | 2020 "neteq/comfort_noise_unittest.cc", |
2021 "neteq/decision_logic_unittest.cc", | 2021 "neteq/decision_logic_unittest.cc", |
2022 "neteq/decoder_database_unittest.cc", | 2022 "neteq/decoder_database_unittest.cc", |
2023 "neteq/delay_manager_unittest.cc", | 2023 "neteq/delay_manager_unittest.cc", |
2024 "neteq/delay_peak_detector_unittest.cc", | 2024 "neteq/delay_peak_detector_unittest.cc", |
2025 "neteq/dsp_helper_unittest.cc", | 2025 "neteq/dsp_helper_unittest.cc", |
2026 "neteq/dtmf_buffer_unittest.cc", | 2026 "neteq/dtmf_buffer_unittest.cc", |
2027 "neteq/dtmf_tone_generator_unittest.cc", | 2027 "neteq/dtmf_tone_generator_unittest.cc", |
2028 "neteq/expand_unittest.cc", | 2028 "neteq/expand_unittest.cc", |
2029 "neteq/merge_unittest.cc", | 2029 "neteq/merge_unittest.cc", |
2030 "neteq/mock/mock_audio_decoder.h", | |
2031 "neteq/mock/mock_buffer_level_filter.h", | 2030 "neteq/mock/mock_buffer_level_filter.h", |
2032 "neteq/mock/mock_decoder_database.h", | 2031 "neteq/mock/mock_decoder_database.h", |
2033 "neteq/mock/mock_delay_manager.h", | 2032 "neteq/mock/mock_delay_manager.h", |
2034 "neteq/mock/mock_delay_peak_detector.h", | 2033 "neteq/mock/mock_delay_peak_detector.h", |
2035 "neteq/mock/mock_dtmf_buffer.h", | 2034 "neteq/mock/mock_dtmf_buffer.h", |
2036 "neteq/mock/mock_dtmf_tone_generator.h", | 2035 "neteq/mock/mock_dtmf_tone_generator.h", |
2037 "neteq/mock/mock_expand.h", | 2036 "neteq/mock/mock_expand.h", |
2038 "neteq/mock/mock_external_decoder_pcm16b.h", | 2037 "neteq/mock/mock_external_decoder_pcm16b.h", |
2039 "neteq/mock/mock_packet_buffer.h", | 2038 "neteq/mock/mock_packet_buffer.h", |
2040 "neteq/mock/mock_red_payload_splitter.h", | 2039 "neteq/mock/mock_red_payload_splitter.h", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2080 ":rent_a_codec", | 2079 ":rent_a_codec", |
2081 ":webrtc_opus", | 2080 ":webrtc_opus", |
2082 "../..:webrtc_common", | 2081 "../..:webrtc_common", |
2083 "../../api/audio_codecs:audio_codecs_api", | 2082 "../../api/audio_codecs:audio_codecs_api", |
2084 "../../api/audio_codecs:builtin_audio_decoder_factory", | 2083 "../../api/audio_codecs:builtin_audio_decoder_factory", |
2085 "../../base:rtc_base", | 2084 "../../base:rtc_base", |
2086 "../../base:rtc_base_approved", | 2085 "../../base:rtc_base_approved", |
2087 "../../base:rtc_base_tests_utils", | 2086 "../../base:rtc_base_tests_utils", |
2088 "../../common_audio", | 2087 "../../common_audio", |
2089 "../../system_wrappers:system_wrappers", | 2088 "../../system_wrappers:system_wrappers", |
| 2089 "../../test:audio_codec_mocks", |
2090 "../../test:field_trial", | 2090 "../../test:field_trial", |
2091 "../../test:rtp_test_utils", | 2091 "../../test:rtp_test_utils", |
2092 "../../test:test_common", | 2092 "../../test:test_common", |
2093 "../../test:test_support", | 2093 "../../test:test_support", |
2094 "//testing/gmock", | 2094 "//testing/gmock", |
2095 "//testing/gtest", | 2095 "//testing/gtest", |
2096 "//third_party/gflags", | 2096 "//third_party/gflags", |
2097 ] | 2097 ] |
2098 | 2098 |
2099 defines = audio_coding_defines | 2099 defines = audio_coding_defines |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2132 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. | 2132 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. |
2133 # TODO(kwiberg): Remove this. | 2133 # TODO(kwiberg): Remove this. |
2134 rtc_source_set("builtin_audio_decoder_factory") { | 2134 rtc_source_set("builtin_audio_decoder_factory") { |
2135 sources = [ | 2135 sources = [ |
2136 "codecs/builtin_audio_decoder_factory.h", | 2136 "codecs/builtin_audio_decoder_factory.h", |
2137 ] | 2137 ] |
2138 deps = [ | 2138 deps = [ |
2139 "../../api/audio_codecs:builtin_audio_decoder_factory", | 2139 "../../api/audio_codecs:builtin_audio_decoder_factory", |
2140 ] | 2140 ] |
2141 } | 2141 } |
OLD | NEW |