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

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

Issue 2705093002: Injectable audio encoders: WebRtcVoiceEngine and company (Closed)
Patch Set: Created 3 years, 10 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
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 17 matching lines...) Expand all
28 # adds these flags so to cancel them out they need to come from a config and 28 # adds these flags so to cancel them out they need to come from a config and
29 # cannot be on the target directly. 29 # cannot be on the target directly.
30 if (!is_win) { 30 if (!is_win) {
31 cflags = [ "-Wno-deprecated-declarations" ] 31 cflags = [ "-Wno-deprecated-declarations" ]
32 } 32 }
33 } 33 }
34 34
35 rtc_static_library("rtc_media_base") { 35 rtc_static_library("rtc_media_base") {
36 defines = [] 36 defines = []
37 libs = [] 37 libs = []
38 deps = [] 38 deps = [
39 "../modules/audio_coding:audio_encoder_factory_interface",
40 "../modules/audio_coding:builtin_audio_encoder_factory",
41 ]
39 sources = [ 42 sources = [
40 "base/adaptedvideotracksource.cc", 43 "base/adaptedvideotracksource.cc",
41 "base/adaptedvideotracksource.h", 44 "base/adaptedvideotracksource.h",
42 "base/audiosource.h", 45 "base/audiosource.h",
43 "base/codec.cc", 46 "base/codec.cc",
44 "base/codec.h", 47 "base/codec.h",
45 "base/cryptoparams.h", 48 "base/cryptoparams.h",
46 "base/device.h", 49 "base/device.h",
47 "base/mediachannel.h", 50 "base/mediachannel.h",
48 "base/mediaconstants.cc", 51 "base/mediaconstants.cc",
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. 383 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243.
381 ":rtc_media", 384 ":rtc_media",
382 ":rtc_unittest_main", 385 ":rtc_unittest_main",
383 "../audio", 386 "../audio",
384 "../base:rtc_base_tests_utils", 387 "../base:rtc_base_tests_utils",
385 "../modules/audio_device:mock_audio_device", 388 "../modules/audio_device:mock_audio_device",
386 "../system_wrappers:metrics_default", 389 "../system_wrappers:metrics_default",
387 ] 390 ]
388 } 391 }
389 } 392 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698