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

Side by Side Diff: webrtc/voice_engine/BUILD.gn

Issue 2361623004: GN: Change rtc_source_set targets --> rtc_static_library (Closed)
Patch Set: Restored accidental rebase errors. Created 4 years, 2 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 | « webrtc/video/BUILD.gn ('k') | no next file » | 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("../build/webrtc.gni") 9 import("../build/webrtc.gni")
10 10
11 rtc_source_set("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_audio_processing.h", 19 "include/voe_audio_processing.h",
20 "include/voe_base.h", 20 "include/voe_base.h",
21 "include/voe_codec.h", 21 "include/voe_codec.h",
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 "../modules/audio_processing", 99 "../modules/audio_processing",
100 "../modules/bitrate_controller", 100 "../modules/bitrate_controller",
101 "../modules/media_file", 101 "../modules/media_file",
102 "../modules/pacing", 102 "../modules/pacing",
103 "../modules/rtp_rtcp", 103 "../modules/rtp_rtcp",
104 "../modules/utility", 104 "../modules/utility",
105 "../system_wrappers", 105 "../system_wrappers",
106 ] 106 ]
107 } 107 }
108 108
109 rtc_source_set("level_indicator") { 109 rtc_static_library("level_indicator") {
110 sources = [ 110 sources = [
111 "level_indicator.cc", 111 "level_indicator.cc",
112 "level_indicator.h", 112 "level_indicator.h",
113 ] 113 ]
114 114
115 deps = [ 115 deps = [
116 "..:webrtc_common", 116 "..:webrtc_common",
117 "../base:rtc_base_approved", 117 "../base:rtc_base_approved",
118 "../common_audio", 118 "../common_audio",
119 ] 119 ]
(...skipping 15 matching lines...) Expand all
135 135
136 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=6268 136 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=6268
137 # for -Wno-thread-safety-analysis 137 # for -Wno-thread-safety-analysis
138 "-Wno-thread-safety-analysis", 138 "-Wno-thread-safety-analysis",
139 "-Wno-unused-private-field", 139 "-Wno-unused-private-field",
140 ] 140 ]
141 } 141 }
142 } 142 }
143 } 143 }
144 144
145 rtc_source_set("channel_transport") { 145 rtc_static_library("channel_transport") {
146 testonly = true 146 testonly = true
147 sources = [ 147 sources = [
148 "test/channel_transport/channel_transport.cc", 148 "test/channel_transport/channel_transport.cc",
149 "test/channel_transport/channel_transport.h", 149 "test/channel_transport/channel_transport.h",
150 "test/channel_transport/traffic_control_win.cc", 150 "test/channel_transport/traffic_control_win.cc",
151 "test/channel_transport/traffic_control_win.h", 151 "test/channel_transport/traffic_control_win.h",
152 "test/channel_transport/udp_socket2_manager_win.cc", 152 "test/channel_transport/udp_socket2_manager_win.cc",
153 "test/channel_transport/udp_socket2_manager_win.h", 153 "test/channel_transport/udp_socket2_manager_win.h",
154 "test/channel_transport/udp_socket2_win.cc", 154 "test/channel_transport/udp_socket2_win.cc",
155 "test/channel_transport/udp_socket2_win.h", 155 "test/channel_transport/udp_socket2_win.h",
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 } 348 }
349 349
350 if (is_clang) { 350 if (is_clang) {
351 # Suppress warnings from Chrome's Clang plugins. 351 # Suppress warnings from Chrome's Clang plugins.
352 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 352 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
353 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 353 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
354 } 354 }
355 } 355 }
356 } 356 }
357 } 357 }
OLDNEW
« no previous file with comments | « webrtc/video/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698