OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 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 | 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 | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 import("../webrtc.gni") | 9 import("../webrtc.gni") |
10 | 10 |
11 rtc_static_library("voice_engine") { | 11 rtc_static_library("voice_engine") { |
12 sources = [ | 12 sources = [ |
13 "channel.cc", | 13 "channel.cc", |
14 "channel.h", | 14 "channel.h", |
15 "channel_manager.cc", | 15 "channel_manager.cc", |
16 "channel_manager.h", | 16 "channel_manager.h", |
17 "channel_proxy.cc", | 17 "channel_proxy.cc", |
18 "channel_proxy.h", | 18 "channel_proxy.h", |
19 "include/voe_base.h", | 19 "include/voe_base.h", |
20 "include/voe_errors.h", | 20 "include/voe_errors.h", |
21 "shared_data.cc", | 21 "shared_data.cc", |
22 "shared_data.h", | 22 "shared_data.h", |
23 "statistics.cc", | |
24 "statistics.h", | |
25 "transmit_mixer.cc", | 23 "transmit_mixer.cc", |
26 "transmit_mixer.h", | 24 "transmit_mixer.h", |
27 "transport_feedback_packet_loss_tracker.cc", | 25 "transport_feedback_packet_loss_tracker.cc", |
28 "transport_feedback_packet_loss_tracker.h", | 26 "transport_feedback_packet_loss_tracker.h", |
29 "utility.cc", | 27 "utility.cc", |
30 "utility.h", | 28 "utility.h", |
31 "voe_base_impl.cc", | 29 "voe_base_impl.cc", |
32 "voe_base_impl.h", | 30 "voe_base_impl.h", |
33 "voice_engine_defines.h", | 31 "voice_engine_defines.h", |
34 "voice_engine_impl.cc", | 32 "voice_engine_impl.cc", |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 "/wd4373", # Virtual function override. | 144 "/wd4373", # Virtual function override. |
147 ] | 145 ] |
148 } | 146 } |
149 | 147 |
150 if (!build_with_chromium && is_clang) { | 148 if (!build_with_chromium && is_clang) { |
151 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 149 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
152 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 150 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
153 } | 151 } |
154 } | 152 } |
155 } | 153 } |
OLD | NEW |