| 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 "monitor_module.h", | |
| 22 "shared_data.cc", | 21 "shared_data.cc", |
| 23 "shared_data.h", | 22 "shared_data.h", |
| 24 "statistics.cc", | 23 "statistics.cc", |
| 25 "statistics.h", | 24 "statistics.h", |
| 26 "transmit_mixer.cc", | 25 "transmit_mixer.cc", |
| 27 "transmit_mixer.h", | 26 "transmit_mixer.h", |
| 28 "transport_feedback_packet_loss_tracker.cc", | 27 "transport_feedback_packet_loss_tracker.cc", |
| 29 "transport_feedback_packet_loss_tracker.h", | 28 "transport_feedback_packet_loss_tracker.h", |
| 30 "utility.cc", | 29 "utility.cc", |
| 31 "utility.h", | 30 "utility.h", |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 "/wd4373", # Virtual function override. | 146 "/wd4373", # Virtual function override. |
| 148 ] | 147 ] |
| 149 } | 148 } |
| 150 | 149 |
| 151 if (!build_with_chromium && is_clang) { | 150 if (!build_with_chromium && is_clang) { |
| 152 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 151 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 153 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 152 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 154 } | 153 } |
| 155 } | 154 } |
| 156 } | 155 } |
| OLD | NEW |