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

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

Issue 2976293002: Remove remains of webrtc/base (Closed)
Patch Set: Add README.md Created 3 years, 5 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("../webrtc.gni") 9 import("../webrtc.gni")
10 10
(...skipping 19 matching lines...) Expand all
30 } 30 }
31 31
32 rtc_static_library("file_player") { 32 rtc_static_library("file_player") {
33 sources = [ 33 sources = [
34 "file_player.cc", 34 "file_player.cc",
35 "file_player.h", 35 "file_player.h",
36 ] 36 ]
37 deps = [ 37 deps = [
38 ":audio_coder", 38 ":audio_coder",
39 "..:webrtc_common", 39 "..:webrtc_common",
40 "../base:rtc_base_approved",
41 "../common_audio", 40 "../common_audio",
42 "../modules:module_api", 41 "../modules:module_api",
43 "../modules/media_file", 42 "../modules/media_file",
43 "../rtc_base:rtc_base_approved",
44 ] 44 ]
45 45
46 if (!build_with_chromium && is_clang) { 46 if (!build_with_chromium && is_clang) {
47 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 47 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
48 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 48 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
49 } 49 }
50 } 50 }
51 51
52 rtc_static_library("file_recorder") { 52 rtc_static_library("file_recorder") {
53 sources = [ 53 sources = [
54 "file_recorder.cc", 54 "file_recorder.cc",
55 "file_recorder.h", 55 "file_recorder.h",
56 ] 56 ]
57 deps = [ 57 deps = [
58 ":audio_coder", 58 ":audio_coder",
59 "..:webrtc_common", 59 "..:webrtc_common",
60 "../audio/utility:audio_frame_operations", 60 "../audio/utility:audio_frame_operations",
61 "../base:rtc_base_approved",
62 "../common_audio", 61 "../common_audio",
63 "../modules:module_api", 62 "../modules:module_api",
64 "../modules/media_file:media_file", 63 "../modules/media_file:media_file",
64 "../rtc_base:rtc_base_approved",
65 "../system_wrappers", 65 "../system_wrappers",
66 ] 66 ]
67 67
68 if (!build_with_chromium && is_clang) { 68 if (!build_with_chromium && is_clang) {
69 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 69 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
70 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 70 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
71 } 71 }
72 } 72 }
73 73
74 rtc_static_library("voice_engine") { 74 rtc_static_library("voice_engine") {
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 ":file_recorder", 136 ":file_recorder",
137 "..:webrtc_common", 137 "..:webrtc_common",
138 "../api:audio_mixer_api", 138 "../api:audio_mixer_api",
139 "../api:call_api", 139 "../api:call_api",
140 "../api:libjingle_peerconnection_api", 140 "../api:libjingle_peerconnection_api",
141 "../api:transport_api", 141 "../api:transport_api",
142 "../api/audio_codecs:audio_codecs_api", 142 "../api/audio_codecs:audio_codecs_api",
143 "../api/audio_codecs:builtin_audio_decoder_factory", 143 "../api/audio_codecs:builtin_audio_decoder_factory",
144 "../api/audio_codecs:builtin_audio_encoder_factory", 144 "../api/audio_codecs:builtin_audio_encoder_factory",
145 "../audio/utility:audio_frame_operations", 145 "../audio/utility:audio_frame_operations",
146 "../base:rtc_base_approved",
147 "../base:rtc_task_queue",
148 "../call:rtp_interfaces", 146 "../call:rtp_interfaces",
149 "../common_audio", 147 "../common_audio",
150 "../logging:rtc_event_log_api", 148 "../logging:rtc_event_log_api",
151 "../modules:module_api", 149 "../modules:module_api",
152 "../modules/audio_coding:audio_format_conversion", 150 "../modules/audio_coding:audio_format_conversion",
153 "../modules/audio_coding:rent_a_codec", 151 "../modules/audio_coding:rent_a_codec",
154 "../modules/audio_conference_mixer", 152 "../modules/audio_conference_mixer",
155 "../modules/audio_device", 153 "../modules/audio_device",
156 "../modules/audio_processing", 154 "../modules/audio_processing",
157 "../modules/bitrate_controller", 155 "../modules/bitrate_controller",
158 "../modules/media_file", 156 "../modules/media_file",
159 "../modules/pacing", 157 "../modules/pacing",
160 "../modules/rtp_rtcp", 158 "../modules/rtp_rtcp",
161 "../modules/utility", 159 "../modules/utility",
160 "../rtc_base:rtc_base_approved",
161 "../rtc_base:rtc_task_queue",
162 "../system_wrappers", 162 "../system_wrappers",
163 ] 163 ]
164 } 164 }
165 165
166 rtc_static_library("audio_level") { 166 rtc_static_library("audio_level") {
167 sources = [ 167 sources = [
168 "audio_level.cc", 168 "audio_level.cc",
169 "audio_level.h", 169 "audio_level.h",
170 ] 170 ]
171 171
172 deps = [ 172 deps = [
173 "..:webrtc_common", 173 "..:webrtc_common",
174 "../base:rtc_base_approved",
175 "../common_audio", 174 "../common_audio",
176 "../modules:module_api", 175 "../modules:module_api",
176 "../rtc_base:rtc_base_approved",
177 ] 177 ]
178 } 178 }
179 179
180 if (rtc_include_tests) { 180 if (rtc_include_tests) {
181 rtc_test("voice_engine_unittests") { 181 rtc_test("voice_engine_unittests") {
182 deps = [ 182 deps = [
183 ":file_player", 183 ":file_player",
184 ":voice_engine", 184 ":voice_engine",
185 "../base:rtc_base_approved",
186 "../base:rtc_base_tests_utils",
187 "../common_audio", 185 "../common_audio",
188 "../modules:module_api", 186 "../modules:module_api",
189 "../modules/audio_coding", 187 "../modules/audio_coding",
190 "../modules/audio_conference_mixer", 188 "../modules/audio_conference_mixer",
191 "../modules/audio_device", 189 "../modules/audio_device",
192 "../modules/audio_processing", 190 "../modules/audio_processing",
193 "../modules/media_file", 191 "../modules/media_file",
194 "../modules/rtp_rtcp", 192 "../modules/rtp_rtcp",
195 "../modules/utility", 193 "../modules/utility",
196 "../modules/video_capture:video_capture", 194 "../modules/video_capture:video_capture",
195 "../rtc_base:rtc_base_approved",
196 "../rtc_base:rtc_base_tests_utils",
197 "../system_wrappers", 197 "../system_wrappers",
198 "../test:test_common", 198 "../test:test_common",
199 "../test:test_main", 199 "../test:test_main",
200 "../test:video_test_common", 200 "../test:video_test_common",
201 "//testing/gmock", 201 "//testing/gmock",
202 "//testing/gtest", 202 "//testing/gtest",
203 "//third_party/gflags", 203 "//third_party/gflags",
204 ] 204 ]
205 205
206 if (is_android) { 206 if (is_android) {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 } 240 }
241 } 241 }
242 242
243 if (!is_ios) { 243 if (!is_ios) {
244 rtc_executable("voe_auto_test") { 244 rtc_executable("voe_auto_test") {
245 testonly = true 245 testonly = true
246 246
247 deps = [ 247 deps = [
248 ":voice_engine", 248 ":voice_engine",
249 "..:webrtc_common", 249 "..:webrtc_common",
250 "../base:rtc_base_approved",
251 "../logging:rtc_event_log_api", 250 "../logging:rtc_event_log_api",
252 "../modules:module_api", 251 "../modules:module_api",
253 "../modules/audio_device:audio_device", 252 "../modules/audio_device:audio_device",
254 "../modules/audio_processing:audio_processing", 253 "../modules/audio_processing:audio_processing",
255 "../modules/rtp_rtcp:rtp_rtcp", 254 "../modules/rtp_rtcp:rtp_rtcp",
256 "../modules/video_capture", 255 "../modules/video_capture",
256 "../rtc_base:rtc_base_approved",
257 "../system_wrappers", 257 "../system_wrappers",
258 "../system_wrappers/:system_wrappers_default", 258 "../system_wrappers/:system_wrappers_default",
259 "../test/:test_common", 259 "../test/:test_common",
260 "../test/:test_support", 260 "../test/:test_support",
261 "../test/:video_test_common", 261 "../test/:video_test_common",
262 "//testing/gmock", 262 "//testing/gmock",
263 "//testing/gtest", 263 "//testing/gtest",
264 "//third_party/gflags", 264 "//third_party/gflags",
265 ] 265 ]
266 266
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 ] 306 ]
307 } 307 }
308 308
309 if (!build_with_chromium && is_clang) { 309 if (!build_with_chromium && is_clang) {
310 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) . 310 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) .
311 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 311 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
312 } 312 }
313 } 313 }
314 } 314 }
315 } 315 }
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