| 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 | 10 |
| 11 source_set("voice_engine") { | 11 source_set("voice_engine") { |
| 12 sources = [ | 12 sources = [ |
| 13 "channel.cc", | 13 "channel.cc", |
| 14 "channel.h", | 14 "channel.h", |
| 15 "channel_manager.cc", | 15 "channel_manager.cc", |
| 16 "channel_manager.h", | 16 "channel_manager.h", |
| 17 "channel_proxy.cc", | 17 "channel_proxy.cc", |
| 18 "channel_proxy.h", | 18 "channel_proxy.h", |
| 19 "dtmf_inband.cc", | 19 "dtmf_inband.cc", |
| 20 "dtmf_inband.h", | 20 "dtmf_inband.h", |
| 21 "dtmf_inband_queue.cc", | 21 "dtmf_inband_queue.cc", |
| 22 "dtmf_inband_queue.h", | 22 "dtmf_inband_queue.h", |
| 23 "include/voe_audio_processing.h", | 23 "include/voe_audio_processing.h", |
| 24 "include/voe_base.h", | 24 "include/voe_base.h", |
| 25 "include/voe_codec.h", | 25 "include/voe_codec.h", |
| 26 "include/voe_dtmf.h", | |
| 27 "include/voe_errors.h", | 26 "include/voe_errors.h", |
| 28 "include/voe_external_media.h", | 27 "include/voe_external_media.h", |
| 29 "include/voe_file.h", | 28 "include/voe_file.h", |
| 30 "include/voe_hardware.h", | 29 "include/voe_hardware.h", |
| 31 "include/voe_neteq_stats.h", | 30 "include/voe_neteq_stats.h", |
| 32 "include/voe_network.h", | 31 "include/voe_network.h", |
| 33 "include/voe_rtp_rtcp.h", | 32 "include/voe_rtp_rtcp.h", |
| 34 "include/voe_video_sync.h", | 33 "include/voe_video_sync.h", |
| 35 "include/voe_volume_control.h", | 34 "include/voe_volume_control.h", |
| 36 "level_indicator.cc", | 35 "level_indicator.cc", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 48 "transmit_mixer.cc", | 47 "transmit_mixer.cc", |
| 49 "transmit_mixer.h", | 48 "transmit_mixer.h", |
| 50 "utility.cc", | 49 "utility.cc", |
| 51 "utility.h", | 50 "utility.h", |
| 52 "voe_audio_processing_impl.cc", | 51 "voe_audio_processing_impl.cc", |
| 53 "voe_audio_processing_impl.h", | 52 "voe_audio_processing_impl.h", |
| 54 "voe_base_impl.cc", | 53 "voe_base_impl.cc", |
| 55 "voe_base_impl.h", | 54 "voe_base_impl.h", |
| 56 "voe_codec_impl.cc", | 55 "voe_codec_impl.cc", |
| 57 "voe_codec_impl.h", | 56 "voe_codec_impl.h", |
| 58 "voe_dtmf_impl.cc", | |
| 59 "voe_dtmf_impl.h", | |
| 60 "voe_external_media_impl.cc", | 57 "voe_external_media_impl.cc", |
| 61 "voe_external_media_impl.h", | 58 "voe_external_media_impl.h", |
| 62 "voe_file_impl.cc", | 59 "voe_file_impl.cc", |
| 63 "voe_file_impl.h", | 60 "voe_file_impl.h", |
| 64 "voe_hardware_impl.cc", | 61 "voe_hardware_impl.cc", |
| 65 "voe_hardware_impl.h", | 62 "voe_hardware_impl.h", |
| 66 "voe_neteq_stats_impl.cc", | 63 "voe_neteq_stats_impl.cc", |
| 67 "voe_neteq_stats_impl.h", | 64 "voe_neteq_stats_impl.h", |
| 68 "voe_network_impl.cc", | 65 "voe_network_impl.cc", |
| 69 "voe_network_impl.h", | 66 "voe_network_impl.h", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "../modules/audio_device", | 103 "../modules/audio_device", |
| 107 "../modules/audio_processing", | 104 "../modules/audio_processing", |
| 108 "../modules/bitrate_controller", | 105 "../modules/bitrate_controller", |
| 109 "../modules/media_file", | 106 "../modules/media_file", |
| 110 "../modules/pacing", | 107 "../modules/pacing", |
| 111 "../modules/rtp_rtcp", | 108 "../modules/rtp_rtcp", |
| 112 "../modules/utility", | 109 "../modules/utility", |
| 113 "../system_wrappers", | 110 "../system_wrappers", |
| 114 ] | 111 ] |
| 115 } | 112 } |
| OLD | NEW |