Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(763)

Side by Side Diff: voice_engine/BUILD.gn

Issue 3006383002: Remove VoERTP_RTCP (Closed)
Patch Set: rebase+remove Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/mock_voice_engine.h ('k') | voice_engine/channel.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "include/voe_network.h", 21 "include/voe_network.h",
22 "include/voe_rtp_rtcp.h",
23 "monitor_module.h", 22 "monitor_module.h",
24 "output_mixer.cc", 23 "output_mixer.cc",
25 "output_mixer.h", 24 "output_mixer.h",
26 "shared_data.cc", 25 "shared_data.cc",
27 "shared_data.h", 26 "shared_data.h",
28 "statistics.cc", 27 "statistics.cc",
29 "statistics.h", 28 "statistics.h",
30 "transmit_mixer.cc", 29 "transmit_mixer.cc",
31 "transmit_mixer.h", 30 "transmit_mixer.h",
32 "transport_feedback_packet_loss_tracker.cc", 31 "transport_feedback_packet_loss_tracker.cc",
33 "transport_feedback_packet_loss_tracker.h", 32 "transport_feedback_packet_loss_tracker.h",
34 "utility.cc", 33 "utility.cc",
35 "utility.h", 34 "utility.h",
36 "voe_base_impl.cc", 35 "voe_base_impl.cc",
37 "voe_base_impl.h", 36 "voe_base_impl.h",
38 "voe_network_impl.cc", 37 "voe_network_impl.cc",
39 "voe_network_impl.h", 38 "voe_network_impl.h",
40 "voe_rtp_rtcp_impl.cc",
41 "voe_rtp_rtcp_impl.h",
42 "voice_engine_defines.h", 39 "voice_engine_defines.h",
43 "voice_engine_impl.cc", 40 "voice_engine_impl.cc",
44 "voice_engine_impl.h", 41 "voice_engine_impl.h",
45 ] 42 ]
46 43
47 if (is_win) { 44 if (is_win) {
48 defines = [ "WEBRTC_DRIFT_COMPENSATION_SUPPORTED" ] 45 defines = [ "WEBRTC_DRIFT_COMPENSATION_SUPPORTED" ]
49 46
50 cflags = [ 47 cflags = [
51 # TODO(kjellander): Bug 261: fix this warning. 48 # TODO(kjellander): Bug 261: fix this warning.
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 "/wd4373", # Virtual function override. 157 "/wd4373", # Virtual function override.
161 ] 158 ]
162 } 159 }
163 160
164 if (!build_with_chromium && is_clang) { 161 if (!build_with_chromium && is_clang) {
165 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 162 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
166 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 163 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
167 } 164 }
168 } 165 }
169 } 166 }
OLDNEW
« no previous file with comments | « test/mock_voice_engine.h ('k') | voice_engine/channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698