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

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

Issue 2705093002: Injectable audio encoders: WebRtcVoiceEngine and company (Closed)
Patch Set: Rebase (and removed 'virtual' from Channel::ModifyEncoder) 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
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 24 matching lines...) Expand all
35 rtc_static_library("rtc_media_base") { 35 rtc_static_library("rtc_media_base") {
36 # TODO(kjellander): Remove (bugs.webrtc.org/6828) 36 # TODO(kjellander): Remove (bugs.webrtc.org/6828)
37 # Enabling GN check triggers cyclic dependency error: 37 # Enabling GN check triggers cyclic dependency error:
38 # //webrtc/media:rtc_media_base -> 38 # //webrtc/media:rtc_media_base ->
39 # //webrtc/pc:rtc_pc -> 39 # //webrtc/pc:rtc_pc ->
40 # //webrtc/media:media -> 40 # //webrtc/media:media ->
41 # //webrtc/media:rtc_media_base 41 # //webrtc/media:rtc_media_base
42 check_includes = false 42 check_includes = false
43 defines = [] 43 defines = []
44 libs = [] 44 libs = []
45 deps = [] 45 deps = [
46 "../modules/audio_coding:audio_encoder_factory_interface",
the sun 2017/04/07 11:52:56 Why isn't there anything else in this deps array?
ossu 2017/04/10 10:18:39 Probably an ocular failure on my behalf. I'll move
47 "../modules/audio_coding:builtin_audio_encoder_factory",
48 ]
46 sources = [ 49 sources = [
47 "base/adaptedvideotracksource.cc", 50 "base/adaptedvideotracksource.cc",
48 "base/adaptedvideotracksource.h", 51 "base/adaptedvideotracksource.h",
49 "base/audiosource.h", 52 "base/audiosource.h",
50 "base/codec.cc", 53 "base/codec.cc",
51 "base/codec.h", 54 "base/codec.h",
52 "base/cryptoparams.h", 55 "base/cryptoparams.h",
53 "base/device.h", 56 "base/device.h",
54 "base/mediachannel.h", 57 "base/mediachannel.h",
55 "base/mediaconstants.cc", 58 "base/mediaconstants.cc",
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 "../modules/audio_processing:audio_processing", 455 "../modules/audio_processing:audio_processing",
453 "../modules/video_coding:video_coding_utility", 456 "../modules/video_coding:video_coding_utility",
454 "../modules/video_coding:webrtc_vp8", 457 "../modules/video_coding:webrtc_vp8",
455 "../p2p:rtc_p2p_unittests", 458 "../p2p:rtc_p2p_unittests",
456 "../system_wrappers:metrics_default", 459 "../system_wrappers:metrics_default",
457 "../test:test_support", 460 "../test:test_support",
458 "../voice_engine:voice_engine", 461 "../voice_engine:voice_engine",
459 ] 462 ]
460 } 463 }
461 } 464 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698