blob: 3521a8d662ab8be23e2e69c355e74fc9ed42851b [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',
aleloi9ae585d2016-10-13 06:57:16 -070024 '<(webrtc_root)/modules/modules.gyp:audio_decoder_factory_interface',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000025 '<(webrtc_root)/modules/modules.gyp:audio_device',
26 '<(webrtc_root)/modules/modules.gyp:audio_processing',
minyue@webrtc.orgc1a40a72014-05-28 09:52:06 +000027 '<(webrtc_root)/modules/modules.gyp:bitrate_controller',
aleloi9ae585d2016-10-13 06:57:16 -070028 '<(webrtc_root)/modules/modules.gyp:builtin_audio_decoder_factory',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000029 '<(webrtc_root)/modules/modules.gyp:media_file',
Stefan Holmerb86d4e42015-12-07 10:26:18 +010030 '<(webrtc_root)/modules/modules.gyp:paced_sender',
aleloi9ae585d2016-10-13 06:57:16 -070031 '<(webrtc_root)/modules/modules.gyp:rent_a_codec',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000032 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp',
33 '<(webrtc_root)/modules/modules.gyp:webrtc_utility',
andresp@webrtc.org86e1e482015-01-14 09:30:52 +000034 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
skvladcc91d282016-10-03 18:31:22 -070035 '<(webrtc_root)/webrtc.gyp:rtc_event_log_api',
aleloie6ca9ec2016-08-10 05:01:51 -070036 'level_indicator',
andrew@webrtc.org3ce62fc2011-10-06 01:03:18 +000037 ],
minyue3cea2562015-11-10 03:49:26 -080038 'export_dependent_settings': [
39 '<(webrtc_root)/modules/modules.gyp:audio_coding_module',
40 ],
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000041 'sources': [
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000042 'include/voe_audio_processing.h',
43 'include/voe_base.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000044 'include/voe_codec.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000045 'include/voe_errors.h',
46 'include/voe_external_media.h',
47 'include/voe_file.h',
48 'include/voe_hardware.h',
49 'include/voe_neteq_stats.h',
50 'include/voe_network.h',
51 'include/voe_rtp_rtcp.h',
52 'include/voe_video_sync.h',
53 'include/voe_volume_control.h',
54 'channel.cc',
55 'channel.h',
56 'channel_manager.cc',
57 'channel_manager.h',
solenberg13725082015-11-25 08:16:52 -080058 'channel_proxy.cc',
59 'channel_proxy.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000060 'monitor_module.cc',
61 'monitor_module.h',
62 'output_mixer.cc',
63 'output_mixer.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000064 'shared_data.cc',
65 'shared_data.h',
66 'statistics.cc',
67 'statistics.h',
68 'transmit_mixer.cc',
69 'transmit_mixer.h',
70 'utility.cc',
71 'utility.h',
72 'voe_audio_processing_impl.cc',
73 'voe_audio_processing_impl.h',
74 'voe_base_impl.cc',
75 'voe_base_impl.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000076 'voe_codec_impl.cc',
77 'voe_codec_impl.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000078 'voe_external_media_impl.cc',
79 'voe_external_media_impl.h',
80 'voe_file_impl.cc',
81 'voe_file_impl.h',
82 'voe_hardware_impl.cc',
83 'voe_hardware_impl.h',
84 'voe_neteq_stats_impl.cc',
85 'voe_neteq_stats_impl.h',
86 'voe_network_impl.cc',
87 'voe_network_impl.h',
88 'voe_rtp_rtcp_impl.cc',
89 'voe_rtp_rtcp_impl.h',
90 'voe_video_sync_impl.cc',
91 'voe_video_sync_impl.h',
92 'voe_volume_control_impl.cc',
93 'voe_volume_control_impl.h',
94 'voice_engine_defines.h',
95 'voice_engine_impl.cc',
96 'voice_engine_impl.h',
97 ],
98 },
aleloie6ca9ec2016-08-10 05:01:51 -070099 {
100 'target_name': 'level_indicator',
101 'type': 'static_library',
102 'dependencies': [
103 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
104 '<(webrtc_root)/common.gyp:webrtc_common',
105 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
106 ],
107 'sources': [
108 'level_indicator.cc',
109 'level_indicator.h',
110 ]
solenbergba56b6c2016-09-13 07:29:12 -0700111 },
andrew@webrtc.org3ce62fc2011-10-06 01:03:18 +0000112 ],
xians@google.comd3185fe2011-09-12 12:24:39 +0000113}