blob: c264fe79cd4d111f842b7c312a99f4fc38db8da8 [file] [log] [blame]
xians@google.comd3185fe2011-09-12 12:24:39 +00001# Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
2#
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
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS. All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8
9{
10 'includes': [
andrew@webrtc.org3ce62fc2011-10-06 01:03:18 +000011 '../build/common.gypi',
xians@google.comd3185fe2011-09-12 12:24:39 +000012 ],
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000013 'targets': [
14 {
15 'target_name': 'voice_engine',
16 'type': 'static_library',
17 'dependencies': [
kjellandera69d9732016-08-31 07:33:05 -070018 '<(webrtc_root)/api/api.gyp:call_api',
kjellander@webrtc.org7ffeab52016-02-26 22:46:09 +010019 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
kwiberg@webrtc.orgac2d27d2015-02-26 13:59:22 +000020 '<(webrtc_root)/common.gyp:webrtc_common',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000021 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
22 '<(webrtc_root)/modules/modules.gyp:audio_coding_module',
23 '<(webrtc_root)/modules/modules.gyp:audio_conference_mixer',
24 '<(webrtc_root)/modules/modules.gyp:audio_device',
25 '<(webrtc_root)/modules/modules.gyp:audio_processing',
minyue@webrtc.orgc1a40a72014-05-28 09:52:06 +000026 '<(webrtc_root)/modules/modules.gyp:bitrate_controller',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000027 '<(webrtc_root)/modules/modules.gyp:media_file',
Stefan Holmerb86d4e42015-12-07 10:26:18 +010028 '<(webrtc_root)/modules/modules.gyp:paced_sender',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000029 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp',
30 '<(webrtc_root)/modules/modules.gyp:webrtc_utility',
andresp@webrtc.org86e1e482015-01-14 09:30:52 +000031 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
skvladcc91d282016-10-03 18:31:22 -070032 '<(webrtc_root)/webrtc.gyp:rtc_event_log_api',
aleloie6ca9ec2016-08-10 05:01:51 -070033 'level_indicator',
andrew@webrtc.org3ce62fc2011-10-06 01:03:18 +000034 ],
minyue3cea2562015-11-10 03:49:26 -080035 'export_dependent_settings': [
36 '<(webrtc_root)/modules/modules.gyp:audio_coding_module',
37 ],
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000038 'sources': [
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000039 'include/voe_audio_processing.h',
40 'include/voe_base.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000041 'include/voe_codec.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000042 'include/voe_errors.h',
43 'include/voe_external_media.h',
44 'include/voe_file.h',
45 'include/voe_hardware.h',
46 'include/voe_neteq_stats.h',
47 'include/voe_network.h',
48 'include/voe_rtp_rtcp.h',
49 'include/voe_video_sync.h',
50 'include/voe_volume_control.h',
51 'channel.cc',
52 'channel.h',
53 'channel_manager.cc',
54 'channel_manager.h',
solenberg13725082015-11-25 08:16:52 -080055 'channel_proxy.cc',
56 'channel_proxy.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000057 'monitor_module.cc',
58 'monitor_module.h',
minyue@webrtc.org74aaf292014-07-16 21:28:26 +000059 'network_predictor.cc',
60 'network_predictor.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000061 'output_mixer.cc',
62 'output_mixer.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000063 'shared_data.cc',
64 'shared_data.h',
65 'statistics.cc',
66 'statistics.h',
67 'transmit_mixer.cc',
68 'transmit_mixer.h',
69 'utility.cc',
70 'utility.h',
71 'voe_audio_processing_impl.cc',
72 'voe_audio_processing_impl.h',
73 'voe_base_impl.cc',
74 'voe_base_impl.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000075 'voe_codec_impl.cc',
76 'voe_codec_impl.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000077 'voe_external_media_impl.cc',
78 'voe_external_media_impl.h',
79 'voe_file_impl.cc',
80 'voe_file_impl.h',
81 'voe_hardware_impl.cc',
82 'voe_hardware_impl.h',
83 'voe_neteq_stats_impl.cc',
84 'voe_neteq_stats_impl.h',
85 'voe_network_impl.cc',
86 'voe_network_impl.h',
87 'voe_rtp_rtcp_impl.cc',
88 'voe_rtp_rtcp_impl.h',
89 'voe_video_sync_impl.cc',
90 'voe_video_sync_impl.h',
91 'voe_volume_control_impl.cc',
92 'voe_volume_control_impl.h',
93 'voice_engine_defines.h',
94 'voice_engine_impl.cc',
95 'voice_engine_impl.h',
96 ],
97 },
aleloie6ca9ec2016-08-10 05:01:51 -070098 {
99 'target_name': 'level_indicator',
100 'type': 'static_library',
101 'dependencies': [
102 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
103 '<(webrtc_root)/common.gyp:webrtc_common',
104 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
105 ],
106 'sources': [
107 'level_indicator.cc',
108 'level_indicator.h',
109 ]
solenbergba56b6c2016-09-13 07:29:12 -0700110 },
andrew@webrtc.org3ce62fc2011-10-06 01:03:18 +0000111 ],
xians@google.comd3185fe2011-09-12 12:24:39 +0000112}