aboutsummaryrefslogtreecommitdiff
path: root/webrtc/voice_engine/voice_engine.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'webrtc/voice_engine/voice_engine.gyp')
-rw-r--r--webrtc/voice_engine/voice_engine.gyp168
1 files changed, 90 insertions, 78 deletions
diff --git a/webrtc/voice_engine/voice_engine.gyp b/webrtc/voice_engine/voice_engine.gyp
index 221b2aa681..ff588d8ead 100644
--- a/webrtc/voice_engine/voice_engine.gyp
+++ b/webrtc/voice_engine/voice_engine.gyp
@@ -23,11 +23,15 @@
'<(webrtc_root)/modules/modules.gyp:audio_processing',
'<(webrtc_root)/modules/modules.gyp:bitrate_controller',
'<(webrtc_root)/modules/modules.gyp:media_file',
+ '<(webrtc_root)/modules/modules.gyp:paced_sender',
'<(webrtc_root)/modules/modules.gyp:rtp_rtcp',
'<(webrtc_root)/modules/modules.gyp:webrtc_utility',
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
'<(webrtc_root)/webrtc.gyp:rtc_event_log',
],
+ 'export_dependent_settings': [
+ '<(webrtc_root)/modules/modules.gyp:audio_coding_module',
+ ],
'sources': [
'include/voe_audio_processing.h',
'include/voe_base.h',
@@ -46,6 +50,8 @@
'channel.h',
'channel_manager.cc',
'channel_manager.h',
+ 'channel_proxy.cc',
+ 'channel_proxy.h',
'dtmf_inband.cc',
'dtmf_inband.h',
'dtmf_inband_queue.cc',
@@ -143,83 +149,6 @@
],
},
{
- 'target_name': 'voe_auto_test',
- 'type': 'executable',
- 'dependencies': [
- 'voice_engine',
- '<(DEPTH)/testing/gmock.gyp:gmock',
- '<(DEPTH)/testing/gtest.gyp:gtest',
- '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
- '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
- '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_default',
- '<(webrtc_root)/test/test.gyp:channel_transport',
- '<(webrtc_root)/test/test.gyp:test_support',
- '<(webrtc_root)/webrtc.gyp:rtc_event_log',
- ],
- 'sources': [
- 'test/auto_test/automated_mode.cc',
- 'test/auto_test/extended/agc_config_test.cc',
- 'test/auto_test/extended/ec_metrics_test.cc',
- 'test/auto_test/fakes/conference_transport.cc',
- 'test/auto_test/fakes/conference_transport.h',
- 'test/auto_test/fakes/loudest_filter.cc',
- 'test/auto_test/fakes/loudest_filter.h',
- 'test/auto_test/fixtures/after_initialization_fixture.cc',
- 'test/auto_test/fixtures/after_initialization_fixture.h',
- 'test/auto_test/fixtures/after_streaming_fixture.cc',
- 'test/auto_test/fixtures/after_streaming_fixture.h',
- 'test/auto_test/fixtures/before_initialization_fixture.cc',
- 'test/auto_test/fixtures/before_initialization_fixture.h',
- 'test/auto_test/fixtures/before_streaming_fixture.cc',
- 'test/auto_test/fixtures/before_streaming_fixture.h',
- 'test/auto_test/standard/audio_processing_test.cc',
- 'test/auto_test/standard/codec_before_streaming_test.cc',
- 'test/auto_test/standard/codec_test.cc',
- 'test/auto_test/standard/dtmf_test.cc',
- 'test/auto_test/standard/external_media_test.cc',
- 'test/auto_test/standard/file_before_streaming_test.cc',
- 'test/auto_test/standard/file_test.cc',
- 'test/auto_test/standard/hardware_before_initializing_test.cc',
- 'test/auto_test/standard/hardware_before_streaming_test.cc',
- 'test/auto_test/standard/hardware_test.cc',
- 'test/auto_test/standard/mixing_test.cc',
- 'test/auto_test/standard/neteq_stats_test.cc',
- 'test/auto_test/standard/rtp_rtcp_before_streaming_test.cc',
- 'test/auto_test/standard/rtp_rtcp_extensions.cc',
- 'test/auto_test/standard/rtp_rtcp_test.cc',
- 'test/auto_test/standard/voe_base_misc_test.cc',
- 'test/auto_test/standard/video_sync_test.cc',
- 'test/auto_test/standard/volume_test.cc',
- 'test/auto_test/resource_manager.cc',
- 'test/auto_test/voe_conference_test.cc',
- 'test/auto_test/voe_cpu_test.cc',
- 'test/auto_test/voe_cpu_test.h',
- 'test/auto_test/voe_standard_test.cc',
- 'test/auto_test/voe_standard_test.h',
- 'test/auto_test/voe_stress_test.cc',
- 'test/auto_test/voe_stress_test.h',
- 'test/auto_test/voe_test_defines.h',
- 'test/auto_test/voe_test_interface.h',
- ],
- 'conditions': [
- ['OS=="android"', {
- # some tests are not supported on android yet, exclude these tests.
- 'sources!': [
- 'test/auto_test/standard/hardware_before_streaming_test.cc',
- ],
- }],
- ['enable_protobuf==1', {
- 'defines': [
- 'ENABLE_RTC_EVENT_LOG',
- ],
- }],
- ],
- # Disable warnings to enable Win64 build, issue 1323.
- 'msvs_disabled_warnings': [
- 4267, # size_t to int truncation.
- ],
- },
- {
# command line test that should work on linux/mac/win
'target_name': 'voe_cmd_test',
'type': 'executable',
@@ -239,6 +168,89 @@
},
], # targets
'conditions': [
+ ['OS!="ios"', {
+ 'targets': [
+ {
+ 'target_name': 'voe_auto_test',
+ 'type': 'executable',
+ 'dependencies': [
+ 'voice_engine',
+ '<(DEPTH)/testing/gmock.gyp:gmock',
+ '<(DEPTH)/testing/gtest.gyp:gtest',
+ '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
+ '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
+ '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_default',
+ '<(webrtc_root)/test/test.gyp:channel_transport',
+ '<(webrtc_root)/test/test.gyp:test_support',
+ '<(webrtc_root)/test/webrtc_test_common.gyp:webrtc_test_common',
+ '<(webrtc_root)/webrtc.gyp:rtc_event_log',
+ ],
+ 'sources': [
+ 'test/auto_test/automated_mode.cc',
+ 'test/auto_test/extended/agc_config_test.cc',
+ 'test/auto_test/extended/ec_metrics_test.cc',
+ 'test/auto_test/fakes/conference_transport.cc',
+ 'test/auto_test/fakes/conference_transport.h',
+ 'test/auto_test/fakes/loudest_filter.cc',
+ 'test/auto_test/fakes/loudest_filter.h',
+ 'test/auto_test/fixtures/after_initialization_fixture.cc',
+ 'test/auto_test/fixtures/after_initialization_fixture.h',
+ 'test/auto_test/fixtures/after_streaming_fixture.cc',
+ 'test/auto_test/fixtures/after_streaming_fixture.h',
+ 'test/auto_test/fixtures/before_initialization_fixture.cc',
+ 'test/auto_test/fixtures/before_initialization_fixture.h',
+ 'test/auto_test/fixtures/before_streaming_fixture.cc',
+ 'test/auto_test/fixtures/before_streaming_fixture.h',
+ 'test/auto_test/standard/audio_processing_test.cc',
+ 'test/auto_test/standard/codec_before_streaming_test.cc',
+ 'test/auto_test/standard/codec_test.cc',
+ 'test/auto_test/standard/dtmf_test.cc',
+ 'test/auto_test/standard/external_media_test.cc',
+ 'test/auto_test/standard/file_before_streaming_test.cc',
+ 'test/auto_test/standard/file_test.cc',
+ 'test/auto_test/standard/hardware_before_initializing_test.cc',
+ 'test/auto_test/standard/hardware_before_streaming_test.cc',
+ 'test/auto_test/standard/hardware_test.cc',
+ 'test/auto_test/standard/mixing_test.cc',
+ 'test/auto_test/standard/neteq_stats_test.cc',
+ 'test/auto_test/standard/rtp_rtcp_before_streaming_test.cc',
+ 'test/auto_test/standard/rtp_rtcp_extensions.cc',
+ 'test/auto_test/standard/rtp_rtcp_test.cc',
+ 'test/auto_test/standard/voe_base_misc_test.cc',
+ 'test/auto_test/standard/video_sync_test.cc',
+ 'test/auto_test/standard/volume_test.cc',
+ 'test/auto_test/resource_manager.cc',
+ 'test/auto_test/voe_conference_test.cc',
+ 'test/auto_test/voe_cpu_test.cc',
+ 'test/auto_test/voe_cpu_test.h',
+ 'test/auto_test/voe_output_test.cc',
+ 'test/auto_test/voe_standard_test.cc',
+ 'test/auto_test/voe_standard_test.h',
+ 'test/auto_test/voe_stress_test.cc',
+ 'test/auto_test/voe_stress_test.h',
+ 'test/auto_test/voe_test_defines.h',
+ 'test/auto_test/voe_test_interface.h',
+ ],
+ 'conditions': [
+ ['OS=="android"', {
+ # some tests are not supported on android yet, exclude these tests.
+ 'sources!': [
+ 'test/auto_test/standard/hardware_before_streaming_test.cc',
+ ],
+ }],
+ ['enable_protobuf==1', {
+ 'defines': [
+ 'ENABLE_RTC_EVENT_LOG',
+ ],
+ }],
+ ],
+ # Disable warnings to enable Win64 build, issue 1323.
+ 'msvs_disabled_warnings': [
+ 4267, # size_t to int truncation.
+ ],
+ },
+ ],
+ }],
['OS=="android"', {
'targets': [
{
@@ -281,6 +293,6 @@
],
}],
], # conditions
- }], # include_tests
+ }], # include_tests==1
], # conditions
}