blob: ded468fb5999688606ad5299ccfc24f2d0d33ec5 [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': [
18 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
19 '<(webrtc_root)/modules/modules.gyp:audio_coding_module',
20 '<(webrtc_root)/modules/modules.gyp:audio_conference_mixer',
21 '<(webrtc_root)/modules/modules.gyp:audio_device',
22 '<(webrtc_root)/modules/modules.gyp:audio_processing',
minyue@webrtc.orgc1a40a72014-05-28 09:52:06 +000023 '<(webrtc_root)/modules/modules.gyp:bitrate_controller',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000024 '<(webrtc_root)/modules/modules.gyp:media_file',
25 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp',
26 '<(webrtc_root)/modules/modules.gyp:webrtc_utility',
27 '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
andrew@webrtc.org3ce62fc2011-10-06 01:03:18 +000028 ],
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000029 'sources': [
30 '../common_types.h',
31 '../engine_configurations.h',
32 '../typedefs.h',
33 'include/voe_audio_processing.h',
34 'include/voe_base.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000035 'include/voe_codec.h',
36 'include/voe_dtmf.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000037 'include/voe_errors.h',
38 'include/voe_external_media.h',
39 'include/voe_file.h',
40 'include/voe_hardware.h',
41 'include/voe_neteq_stats.h',
42 'include/voe_network.h',
43 'include/voe_rtp_rtcp.h',
44 'include/voe_video_sync.h',
45 'include/voe_volume_control.h',
46 'channel.cc',
47 'channel.h',
48 'channel_manager.cc',
49 'channel_manager.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000050 'dtmf_inband.cc',
51 'dtmf_inband.h',
52 'dtmf_inband_queue.cc',
53 'dtmf_inband_queue.h',
54 'level_indicator.cc',
55 'level_indicator.h',
56 'monitor_module.cc',
57 'monitor_module.h',
58 'output_mixer.cc',
59 'output_mixer.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000060 'shared_data.cc',
61 'shared_data.h',
62 'statistics.cc',
63 'statistics.h',
64 'transmit_mixer.cc',
65 'transmit_mixer.h',
66 'utility.cc',
67 'utility.h',
68 'voe_audio_processing_impl.cc',
69 'voe_audio_processing_impl.h',
70 'voe_base_impl.cc',
71 'voe_base_impl.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000072 'voe_codec_impl.cc',
73 'voe_codec_impl.h',
74 'voe_dtmf_impl.cc',
75 'voe_dtmf_impl.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000076 'voe_external_media_impl.cc',
77 'voe_external_media_impl.h',
78 'voe_file_impl.cc',
79 'voe_file_impl.h',
80 'voe_hardware_impl.cc',
81 'voe_hardware_impl.h',
82 'voe_neteq_stats_impl.cc',
83 'voe_neteq_stats_impl.h',
84 'voe_network_impl.cc',
85 'voe_network_impl.h',
86 'voe_rtp_rtcp_impl.cc',
87 'voe_rtp_rtcp_impl.h',
88 'voe_video_sync_impl.cc',
89 'voe_video_sync_impl.h',
90 'voe_volume_control_impl.cc',
91 'voe_volume_control_impl.h',
92 'voice_engine_defines.h',
93 'voice_engine_impl.cc',
94 'voice_engine_impl.h',
95 ],
96 },
andrew@webrtc.org3ce62fc2011-10-06 01:03:18 +000097 ],
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +000098 'conditions': [
99 ['OS=="win"', {
100 'defines': ['WEBRTC_DRIFT_COMPENSATION_SUPPORTED',],
101 }],
102 ['include_tests==1', {
103 'targets': [
104 {
105 'target_name': 'voice_engine_unittests',
henrike@webrtc.org89c67402013-08-02 16:53:47 +0000106 'type': '<(gtest_target_type)',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000107 'dependencies': [
108 'voice_engine',
109 '<(DEPTH)/testing/gtest.gyp:gtest',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000110 # The rest are to satisfy the unittests' include chain.
111 # This would be unnecessary if we used qualified includes.
112 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
113 '<(webrtc_root)/modules/modules.gyp:audio_device',
114 '<(webrtc_root)/modules/modules.gyp:audio_processing',
115 '<(webrtc_root)/modules/modules.gyp:audio_coding_module',
116 '<(webrtc_root)/modules/modules.gyp:audio_conference_mixer',
117 '<(webrtc_root)/modules/modules.gyp:media_file',
118 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp',
119 '<(webrtc_root)/modules/modules.gyp:webrtc_utility',
120 '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
kjellander@webrtc.org6c35e0b2013-06-11 08:29:17 +0000121 '<(webrtc_root)/test/test.gyp:test_support_main',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000122 ],
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000123 'sources': [
124 'channel_unittest.cc',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000125 'transmit_mixer_unittest.cc',
andrew@webrtc.orga78a41f2014-04-08 23:09:28 +0000126 'utility_unittest.cc',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000127 'voe_audio_processing_unittest.cc',
128 'voe_base_unittest.cc',
129 'voe_codec_unittest.cc',
130 ],
henrike@webrtc.org89c67402013-08-02 16:53:47 +0000131 'conditions': [
132 # TODO(henrike): remove build_with_chromium==1 when the bots are
133 # using Chromium's buildbots.
134 ['build_with_chromium==1 and OS=="android" and gtest_target_type=="shared_library"', {
135 'dependencies': [
136 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
137 ],
138 }],
139 ],
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000140 },
141 {
142 'target_name': 'voe_auto_test',
143 'type': 'executable',
144 'dependencies': [
145 'voice_engine',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000146 '<(DEPTH)/testing/gmock.gyp:gmock',
kjellander@webrtc.org6c35e0b2013-06-11 08:29:17 +0000147 '<(DEPTH)/testing/gtest.gyp:gtest',
fischman@webrtc.orgdde7d4c2013-08-15 23:31:30 +0000148 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
kjellander@webrtc.org6c35e0b2013-06-11 08:29:17 +0000149 '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
andresp@webrtc.orga36ad692014-05-14 12:24:04 +0000150 '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:field_trial_default',
kjellander@webrtc.org6c35e0b2013-06-11 08:29:17 +0000151 '<(webrtc_root)/test/test.gyp:channel_transport',
152 '<(webrtc_root)/test/test.gyp:test_support',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000153 ],
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000154 'sources': [
155 'test/auto_test/automated_mode.cc',
156 'test/auto_test/extended/agc_config_test.cc',
157 'test/auto_test/extended/ec_metrics_test.cc',
158 'test/auto_test/fakes/fake_external_transport.cc',
159 'test/auto_test/fakes/fake_external_transport.h',
160 'test/auto_test/fixtures/after_initialization_fixture.cc',
161 'test/auto_test/fixtures/after_initialization_fixture.h',
162 'test/auto_test/fixtures/after_streaming_fixture.cc',
163 'test/auto_test/fixtures/after_streaming_fixture.h',
164 'test/auto_test/fixtures/before_initialization_fixture.cc',
165 'test/auto_test/fixtures/before_initialization_fixture.h',
solenberg@webrtc.org57e06022014-05-16 11:27:09 +0000166 'test/auto_test/fixtures/before_streaming_fixture.cc',
167 'test/auto_test/fixtures/before_streaming_fixture.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000168 'test/auto_test/standard/audio_processing_test.cc',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000169 'test/auto_test/standard/codec_before_streaming_test.cc',
170 'test/auto_test/standard/codec_test.cc',
171 'test/auto_test/standard/dtmf_test.cc',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000172 'test/auto_test/standard/external_media_test.cc',
173 'test/auto_test/standard/file_before_streaming_test.cc',
174 'test/auto_test/standard/file_test.cc',
175 'test/auto_test/standard/hardware_before_initializing_test.cc',
176 'test/auto_test/standard/hardware_before_streaming_test.cc',
177 'test/auto_test/standard/hardware_test.cc',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000178 'test/auto_test/standard/mixing_test.cc',
179 'test/auto_test/standard/neteq_stats_test.cc',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000180 'test/auto_test/standard/rtp_rtcp_before_streaming_test.cc',
wu@webrtc.orgebdb0e32014-03-06 23:49:08 +0000181 'test/auto_test/standard/rtp_rtcp_extensions.cc',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000182 'test/auto_test/standard/rtp_rtcp_test.cc',
183 'test/auto_test/standard/voe_base_misc_test.cc',
184 'test/auto_test/standard/video_sync_test.cc',
185 'test/auto_test/standard/volume_test.cc',
186 'test/auto_test/resource_manager.cc',
187 'test/auto_test/voe_cpu_test.cc',
188 'test/auto_test/voe_cpu_test.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000189 'test/auto_test/voe_standard_test.cc',
190 'test/auto_test/voe_standard_test.h',
191 'test/auto_test/voe_stress_test.cc',
192 'test/auto_test/voe_stress_test.h',
193 'test/auto_test/voe_test_defines.h',
194 'test/auto_test/voe_test_interface.h',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000195 ],
196 'conditions': [
197 ['OS=="android"', {
198 # some tests are not supported on android yet, exclude these tests.
199 'sources!': [
200 'test/auto_test/standard/hardware_before_streaming_test.cc',
201 ],
202 }],
203 ],
204 # Disable warnings to enable Win64 build, issue 1323.
205 'msvs_disabled_warnings': [
206 4267, # size_t to int truncation.
207 ],
208 },
209 {
210 # command line test that should work on linux/mac/win
211 'target_name': 'voe_cmd_test',
212 'type': 'executable',
213 'dependencies': [
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000214 'voice_engine',
kjellander@webrtc.org6c35e0b2013-06-11 08:29:17 +0000215 '<(DEPTH)/testing/gtest.gyp:gtest',
minyue@webrtc.orgcc92e002013-09-30 08:43:50 +0000216 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000217 '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
andresp@webrtc.orga36ad692014-05-14 12:24:04 +0000218 '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:field_trial_default',
kjellander@webrtc.org6c35e0b2013-06-11 08:29:17 +0000219 '<(webrtc_root)/test/test.gyp:channel_transport',
220 '<(webrtc_root)/test/test.gyp:test_support',
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000221 ],
222 'sources': [
223 'test/cmd_test/voe_cmd_test.cc',
224 ],
225 },
226 ], # targets
227 'conditions': [
228 # TODO(kjellander): Support UseoFMFC on VS2010.
229 # http://code.google.com/p/webrtc/issues/detail?id=709
230 ['OS=="win" and MSVS_VERSION < "2010"', {
231 'targets': [
232 # WinTest - GUI test for Windows
233 {
234 'target_name': 'voe_ui_win_test',
235 'type': 'executable',
236 'dependencies': [
237 'voice_engine',
238 '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
239 '<(webrtc_root)/test/test.gyp:test_support',
240 ],
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000241 'sources': [
242 'test/win_test/Resource.h',
243 'test/win_test/WinTest.cc',
244 'test/win_test/WinTest.h',
245 'test/win_test/WinTest.rc',
246 'test/win_test/WinTestDlg.cc',
247 'test/win_test/WinTestDlg.h',
248 'test/win_test/res/WinTest.ico',
249 'test/win_test/res/WinTest.rc2',
250 'test/win_test/stdafx.cc',
251 'test/win_test/stdafx.h',
252 ],
253 'configurations': {
254 'Common_Base': {
255 'msvs_configuration_attributes': {
256 'conditions': [
257 ['component=="shared_library"', {
258 'UseOfMFC': '2', # Shared DLL
259 },{
260 'UseOfMFC': '1', # Static
261 }],
262 ],
263 },
264 },
265 },
266 'msvs_settings': {
267 'VCLinkerTool': {
268 'SubSystem': '2', # Windows
269 },
270 },
271 },
272 ], # targets
273 }],
henrike@webrtc.org89c67402013-08-02 16:53:47 +0000274 # TODO(henrike): remove build_with_chromium==1 when the bots are using
275 # Chromium's buildbots.
276 ['build_with_chromium==1 and OS=="android" and gtest_target_type=="shared_library"', {
277 'targets': [
278 {
279 'target_name': 'voice_engine_unittests_apk_target',
280 'type': 'none',
281 'dependencies': [
282 '<(apk_tests_path):voice_engine_unittests_apk',
283 ],
284 },
285 ],
286 }],
kjellander@webrtc.org33654222013-08-22 07:57:00 +0000287 ['test_isolation_mode != "noop"', {
288 'targets': [
289 {
290 'target_name': 'voice_engine_unittests_run',
291 'type': 'none',
292 'dependencies': [
kjellander@webrtc.org33654222013-08-22 07:57:00 +0000293 'voice_engine_unittests',
294 ],
295 'includes': [
kjellander@webrtc.org2a973172013-10-02 19:31:16 +0000296 '../build/isolate.gypi',
kjellander@webrtc.org33654222013-08-22 07:57:00 +0000297 'voice_engine_unittests.isolate',
298 ],
299 'sources': [
300 'voice_engine_unittests.isolate',
301 ],
302 },
303 {
304 'target_name': 'voe_auto_test_run',
305 'type': 'none',
306 'dependencies': [
kjellander@webrtc.org33654222013-08-22 07:57:00 +0000307 'voe_auto_test',
308 ],
309 'includes': [
kjellander@webrtc.org2a973172013-10-02 19:31:16 +0000310 '../build/isolate.gypi',
kjellander@webrtc.org33654222013-08-22 07:57:00 +0000311 'voe_auto_test.isolate',
312 ],
313 'sources': [
314 'voe_auto_test.isolate',
315 ],
316 },
317 ],
318 }],
andrew@webrtc.orgf791b1c2013-05-29 00:38:02 +0000319 ], # conditions
320 }], # include_tests
321 ], # conditions
xians@google.comd3185fe2011-09-12 12:24:39 +0000322}