| 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", | |
| 20 "dtmf_inband.h", | |
| 21 "include/voe_audio_processing.h", | 19 "include/voe_audio_processing.h", |
| 22 "include/voe_base.h", | 20 "include/voe_base.h", |
| 23 "include/voe_codec.h", | 21 "include/voe_codec.h", |
| 24 "include/voe_errors.h", | 22 "include/voe_errors.h", |
| 25 "include/voe_external_media.h", | 23 "include/voe_external_media.h", |
| 26 "include/voe_file.h", | 24 "include/voe_file.h", |
| 27 "include/voe_hardware.h", | 25 "include/voe_hardware.h", |
| 28 "include/voe_neteq_stats.h", | 26 "include/voe_neteq_stats.h", |
| 29 "include/voe_network.h", | 27 "include/voe_network.h", |
| 30 "include/voe_rtp_rtcp.h", | 28 "include/voe_rtp_rtcp.h", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 "../modules/audio_device", | 99 "../modules/audio_device", |
| 102 "../modules/audio_processing", | 100 "../modules/audio_processing", |
| 103 "../modules/bitrate_controller", | 101 "../modules/bitrate_controller", |
| 104 "../modules/media_file", | 102 "../modules/media_file", |
| 105 "../modules/pacing", | 103 "../modules/pacing", |
| 106 "../modules/rtp_rtcp", | 104 "../modules/rtp_rtcp", |
| 107 "../modules/utility", | 105 "../modules/utility", |
| 108 "../system_wrappers", | 106 "../system_wrappers", |
| 109 ] | 107 ] |
| 110 } | 108 } |
| OLD | NEW |