| 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 895 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 906 "audio_network_adaptor/fec_controller_rplr_based.h", | 906 "audio_network_adaptor/fec_controller_rplr_based.h", |
| 907 "audio_network_adaptor/frame_length_controller.cc", | 907 "audio_network_adaptor/frame_length_controller.cc", |
| 908 "audio_network_adaptor/frame_length_controller.h", | 908 "audio_network_adaptor/frame_length_controller.h", |
| 909 "audio_network_adaptor/include/audio_network_adaptor.h", | 909 "audio_network_adaptor/include/audio_network_adaptor.h", |
| 910 "audio_network_adaptor/util/threshold_curve.h", | 910 "audio_network_adaptor/util/threshold_curve.h", |
| 911 ] | 911 ] |
| 912 | 912 |
| 913 deps = [ | 913 deps = [ |
| 914 "../..:webrtc_common", | 914 "../..:webrtc_common", |
| 915 "../../api:optional", | 915 "../../api:optional", |
| 916 "../../api/audio_codecs:audio_codecs_api", |
| 916 "../../common_audio", | 917 "../../common_audio", |
| 917 "../../logging:rtc_event_log_api", | 918 "../../logging:rtc_event_log_api", |
| 918 "../../rtc_base:protobuf_utils", | 919 "../../rtc_base:protobuf_utils", |
| 919 "../../rtc_base:rtc_base_approved", | 920 "../../rtc_base:rtc_base_approved", |
| 920 "../../system_wrappers", | 921 "../../system_wrappers", |
| 921 ] | 922 ] |
| 922 | 923 |
| 923 if (rtc_enable_protobuf) { | 924 if (rtc_enable_protobuf) { |
| 924 deps += [ | 925 deps += [ |
| 925 ":ana_config_proto", | 926 ":ana_config_proto", |
| (...skipping 1333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2259 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. | 2260 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. |
| 2260 # TODO(ossu): Remove this. | 2261 # TODO(ossu): Remove this. |
| 2261 rtc_source_set("builtin_audio_encoder_factory") { | 2262 rtc_source_set("builtin_audio_encoder_factory") { |
| 2262 sources = [ | 2263 sources = [ |
| 2263 "codecs/builtin_audio_encoder_factory.h", | 2264 "codecs/builtin_audio_encoder_factory.h", |
| 2264 ] | 2265 ] |
| 2265 deps = [ | 2266 deps = [ |
| 2266 "../../api/audio_codecs:builtin_audio_encoder_factory", | 2267 "../../api/audio_codecs:builtin_audio_encoder_factory", |
| 2267 ] | 2268 ] |
| 2268 } | 2269 } |
| OLD | NEW |