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

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

Issue 2705093002: Injectable audio encoders: WebRtcVoiceEngine and company (Closed)
Patch Set: Channel::GetSendCodec asks both its acm and its codec manager. 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 98
99 deps += [ 99 deps += [
100 "..:webrtc_common", 100 "..:webrtc_common",
101 "../api:libjingle_peerconnection_api", 101 "../api:libjingle_peerconnection_api",
102 "../api:video_frame_api", 102 "../api:video_frame_api",
103 "../api/audio_codecs:audio_codecs_api", 103 "../api/audio_codecs:audio_codecs_api",
104 "../base:rtc_base", 104 "../base:rtc_base",
105 "../base:rtc_base_approved", 105 "../base:rtc_base_approved",
106 "../call:call_interfaces", 106 "../call:call_interfaces",
107 "../common_video:common_video", 107 "../common_video:common_video",
108 "../modules/audio_coding:audio_encoder_factory_interface",
109 "../modules/audio_coding:builtin_audio_encoder_factory",
108 "../p2p", 110 "../p2p",
109 ] 111 ]
110 112
111 if (is_nacl) { 113 if (is_nacl) {
112 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] 114 deps += [ "//native_client_sdk/src/libraries/nacl_io" ]
113 } 115 }
114 } 116 }
115 117
116 rtc_static_library("rtc_media") { 118 rtc_static_library("rtc_media") {
117 # TODO(kjellander): Remove (bugs.webrtc.org/6828) 119 # TODO(kjellander): Remove (bugs.webrtc.org/6828)
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
457 "../modules/video_coding:video_coding_utility", 459 "../modules/video_coding:video_coding_utility",
458 "../modules/video_coding:webrtc_vp8", 460 "../modules/video_coding:webrtc_vp8",
459 "../p2p:p2p_test_utils", 461 "../p2p:p2p_test_utils",
460 "../system_wrappers:metrics_default", 462 "../system_wrappers:metrics_default",
461 "../test:audio_codec_mocks", 463 "../test:audio_codec_mocks",
462 "../test:test_support", 464 "../test:test_support",
463 "../voice_engine:voice_engine", 465 "../voice_engine:voice_engine",
464 ] 466 ]
465 } 467 }
466 } 468 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698