xians@google.com | d3185fe | 2011-09-12 12:24:39 +0000 | [diff] [blame] | 1 | # 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.org | 3ce62fc | 2011-10-06 01:03:18 +0000 | [diff] [blame] | 11 | '../build/common.gypi', |
xians@google.com | d3185fe | 2011-09-12 12:24:39 +0000 | [diff] [blame] | 12 | ], |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 13 | 'targets': [ |
| 14 | { |
| 15 | 'target_name': 'voice_engine', |
| 16 | 'type': 'static_library', |
| 17 | 'dependencies': [ |
kjellander | a69d973 | 2016-08-31 07:33:05 -0700 | [diff] [blame] | 18 | '<(webrtc_root)/api/api.gyp:call_api', |
kjellander@webrtc.org | 7ffeab5 | 2016-02-26 22:46:09 +0100 | [diff] [blame] | 19 | '<(webrtc_root)/base/base.gyp:rtc_base_approved', |
kwiberg@webrtc.org | ac2d27d | 2015-02-26 13:59:22 +0000 | [diff] [blame] | 20 | '<(webrtc_root)/common.gyp:webrtc_common', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 21 | '<(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.org | c1a40a7 | 2014-05-28 09:52:06 +0000 | [diff] [blame] | 26 | '<(webrtc_root)/modules/modules.gyp:bitrate_controller', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 27 | '<(webrtc_root)/modules/modules.gyp:media_file', |
Stefan Holmer | b86d4e4 | 2015-12-07 10:26:18 +0100 | [diff] [blame] | 28 | '<(webrtc_root)/modules/modules.gyp:paced_sender', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 29 | '<(webrtc_root)/modules/modules.gyp:rtp_rtcp', |
| 30 | '<(webrtc_root)/modules/modules.gyp:webrtc_utility', |
andresp@webrtc.org | 86e1e48 | 2015-01-14 09:30:52 +0000 | [diff] [blame] | 31 | '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
skvlad | cc91d28 | 2016-10-03 18:31:22 -0700 | [diff] [blame^] | 32 | '<(webrtc_root)/webrtc.gyp:rtc_event_log_api', |
aleloi | e6ca9ec | 2016-08-10 05:01:51 -0700 | [diff] [blame] | 33 | 'level_indicator', |
andrew@webrtc.org | 3ce62fc | 2011-10-06 01:03:18 +0000 | [diff] [blame] | 34 | ], |
minyue | 3cea256 | 2015-11-10 03:49:26 -0800 | [diff] [blame] | 35 | 'export_dependent_settings': [ |
| 36 | '<(webrtc_root)/modules/modules.gyp:audio_coding_module', |
| 37 | ], |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 38 | 'sources': [ |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 39 | 'include/voe_audio_processing.h', |
| 40 | 'include/voe_base.h', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 41 | 'include/voe_codec.h', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 42 | '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', |
solenberg | 1372508 | 2015-11-25 08:16:52 -0800 | [diff] [blame] | 55 | 'channel_proxy.cc', |
| 56 | 'channel_proxy.h', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 57 | 'monitor_module.cc', |
| 58 | 'monitor_module.h', |
minyue@webrtc.org | 74aaf29 | 2014-07-16 21:28:26 +0000 | [diff] [blame] | 59 | 'network_predictor.cc', |
| 60 | 'network_predictor.h', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 61 | 'output_mixer.cc', |
| 62 | 'output_mixer.h', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 63 | '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.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 75 | 'voe_codec_impl.cc', |
| 76 | 'voe_codec_impl.h', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 77 | '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 | }, |
aleloi | e6ca9ec | 2016-08-10 05:01:51 -0700 | [diff] [blame] | 98 | { |
| 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 | ] |
solenberg | ba56b6c | 2016-09-13 07:29:12 -0700 | [diff] [blame] | 110 | }, |
andrew@webrtc.org | 3ce62fc | 2011-10-06 01:03:18 +0000 | [diff] [blame] | 111 | ], |
xians@google.com | d3185fe | 2011-09-12 12:24:39 +0000 | [diff] [blame] | 112 | } |