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

Unified Diff: webrtc/api/BUILD.gn

Issue 2059703002: Move webrtc/audio_*.h to webrtc/api/call (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased on top of d565b73121b1b7672fb7d1f115bbbbb137a838eb Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/DEPS ('k') | webrtc/api/api.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/BUILD.gn
diff --git a/webrtc/api/BUILD.gn b/webrtc/api/BUILD.gn
index 68c6c8eb7aed1c1f619add16d022cbc331f7d91c..f4b1e0f3ac6d82922538f9faca973ef80f5c6927 100644
--- a/webrtc/api/BUILD.gn
+++ b/webrtc/api/BUILD.gn
@@ -19,6 +19,25 @@ group("api") {
]
}
+source_set("call_api") {
+ sources = [
+ "call/audio_receive_stream.h",
+ "call/audio_send_stream.h",
+ "call/audio_sink.h",
+ "call/audio_state.h",
+ ]
+
+ configs += [ "..:common_config" ]
+ public_configs = [ "..:common_inherited_config" ]
+
+ deps = [
+ # TODO(kjellander): Add remaining dependencies when webrtc:4243 is done.
+ "..:webrtc_common",
+ "../base:rtc_base_approved",
+ "../modules/audio_coding:audio_encoder_interface",
+ ]
+}
+
config("libjingle_peerconnection_warnings_config") {
# GN orders flags on a target before flags from configs. The default config
# adds these flags so to cancel them out they need to come from a config and
@@ -113,6 +132,7 @@ source_set("libjingle_peerconnection") {
}
deps = [
+ ":call_api",
"../call",
"../media",
"../pc",
« no previous file with comments | « webrtc/DEPS ('k') | webrtc/api/api.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698