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

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

Issue 2747123007: Test submission of complete AEC-dump refactoring. (Closed)
Patch Set: Changed interface and build structure after reviewer comments. Created 3 years, 8 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 | « no previous file | webrtc/media/engine/webrtcvoiceengine.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) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("../webrtc.gni") 10 import("../webrtc.gni")
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 "../api:call_api", 224 "../api:call_api",
225 "../api:transport_api", 225 "../api:transport_api",
226 "../api:video_frame_api", 226 "../api:video_frame_api",
227 "../api/audio_codecs:audio_codecs_api", 227 "../api/audio_codecs:audio_codecs_api",
228 "../api/audio_codecs:builtin_audio_decoder_factory", 228 "../api/audio_codecs:builtin_audio_decoder_factory",
229 "../base:rtc_base", 229 "../base:rtc_base",
230 "../base:rtc_base_approved", 230 "../base:rtc_base_approved",
231 "../call", 231 "../call",
232 "../common_video:common_video", 232 "../common_video:common_video",
233 "../modules/audio_coding:rent_a_codec", 233 "../modules/audio_coding:rent_a_codec",
234 "../modules/audio_device:audio_device", 234 "../modules/audio_device",
235 "../modules/audio_mixer:audio_mixer_impl", 235 "../modules/audio_mixer",
236 "../modules/audio_processing:audio_processing", 236 "../modules/audio_processing",
237 "../modules/audio_processing/aec_dump",
237 "../modules/video_capture:video_capture_module", 238 "../modules/video_capture:video_capture_module",
238 "../modules/video_coding", 239 "../modules/video_coding",
239 "../modules/video_coding:webrtc_h264", 240 "../modules/video_coding:webrtc_h264",
240 "../modules/video_coding:webrtc_vp8", 241 "../modules/video_coding:webrtc_vp8",
241 "../modules/video_coding:webrtc_vp9", 242 "../modules/video_coding:webrtc_vp9",
242 "../p2p:rtc_p2p", 243 "../p2p:rtc_p2p",
243 "../system_wrappers", 244 "../system_wrappers",
244 "../video", 245 "../video",
245 "../voice_engine", 246 "../voice_engine",
246 ] 247 ]
248
249 if (rtc_enable_protobuf) {
250 deps += [ "../modules/audio_processing/aec_dump:aec_dump_impl" ]
251 } else {
252 deps += [ "../modules/audio_processing/aec_dump:null_aec_dump_factory" ]
253 }
247 } 254 }
248 255
249 if (rtc_include_tests) { 256 if (rtc_include_tests) {
250 config("rtc_unittest_main_config") { 257 config("rtc_unittest_main_config") {
251 # GN orders flags on a target before flags from configs. The default config 258 # GN orders flags on a target before flags from configs. The default config
252 # adds -Wall, and this flag have to be after -Wall -- so they need to 259 # adds -Wall, and this flag have to be after -Wall -- so they need to
253 # come from a config and can"t be on the target directly. 260 # come from a config and can"t be on the target directly.
254 if (is_clang && is_ios) { 261 if (is_clang && is_ios) {
255 cflags = [ "-Wno-unused-variable" ] 262 cflags = [ "-Wno-unused-variable" ]
256 } 263 }
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
449 "../modules/audio_processing:audio_processing", 456 "../modules/audio_processing:audio_processing",
450 "../modules/video_coding:video_coding_utility", 457 "../modules/video_coding:video_coding_utility",
451 "../modules/video_coding:webrtc_vp8", 458 "../modules/video_coding:webrtc_vp8",
452 "../p2p:rtc_p2p_unittests", 459 "../p2p:rtc_p2p_unittests",
453 "../system_wrappers:metrics_default", 460 "../system_wrappers:metrics_default",
454 "../test:test_support", 461 "../test:test_support",
455 "../voice_engine:voice_engine", 462 "../voice_engine:voice_engine",
456 ] 463 ]
457 } 464 }
458 } 465 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/media/engine/webrtcvoiceengine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698