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

Unified Diff: webrtc/audio/BUILD.gn

Issue 2556943003: Refactor webrtc/{api,audio} and modules/audio_coding for GN check (Closed)
Patch Set: More Android fixes Created 4 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/api/BUILD.gn ('k') | webrtc/modules/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/audio/BUILD.gn
diff --git a/webrtc/audio/BUILD.gn b/webrtc/audio/BUILD.gn
index bfc2372dd6414f3042efee728c6639eca3106df8..0669c603c024256d5e6fcec9dbc251fad0d50da2 100644
--- a/webrtc/audio/BUILD.gn
+++ b/webrtc/audio/BUILD.gn
@@ -30,11 +30,17 @@ rtc_static_library("audio") {
deps = [
"..:webrtc_common",
"../api:audio_mixer_api",
+ "../api:call_api",
"../base:rtc_base_approved",
+ "../base:rtc_task_queue",
"../call:call_interfaces",
"../common_audio",
"../modules/audio_device",
"../modules/audio_processing",
+ "../modules/congestion_controller:congestion_controller",
+ "../modules/pacing:pacing",
+ "../modules/remote_bitrate_estimator:remote_bitrate_estimator",
+ "../modules/rtp_rtcp:rtp_rtcp",
"../system_wrappers",
"../voice_engine",
]
@@ -42,6 +48,11 @@ rtc_static_library("audio") {
if (rtc_include_tests) {
rtc_source_set("audio_tests") {
testonly = true
+
+ # TODO(kjellander): Remove (bugs.webrtc.org/6828)
+ # This needs remote_bitrate_estimator to be moved to webrtc/api first.
+ check_includes = false
+
sources = [
"audio_receive_stream_unittest.cc",
"audio_send_stream_unittest.cc",
@@ -52,8 +63,11 @@ if (rtc_include_tests) {
":audio",
"../api:mock_audio_mixer",
"../base:rtc_base_approved",
+ "../base:rtc_task_queue",
"../modules/audio_device:mock_audio_device",
"../modules/audio_mixer:audio_mixer_impl",
+ "../modules/congestion_controller:congestion_controller",
+ "../modules/pacing:pacing",
"../test:test_common",
"../test:test_support",
"utility:audio_frame_operations",
« no previous file with comments | « webrtc/api/BUILD.gn ('k') | webrtc/modules/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698