Move AudioOptions to its own header file and target.
It is part of our api.
With the intention to later delete the inclusion of mediachannel.h from
api/peerconnectioninterface.h, and eliminate circular dependencies.
Bug: webrtc:7504
Change-Id: If44efd14d85675530e457760a1c4a1d338f931b7
Reviewed-on: https://webrtc-review.googlesource.com/41281
Reviewed-by: Fredrik Solenberg <solenberg@webrtc.org>
Reviewed-by: Patrik Höglund <phoglund@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#21694}
diff --git a/api/BUILD.gn b/api/BUILD.gn
index e3af7bb..59efbf8 100644
--- a/api/BUILD.gn
+++ b/api/BUILD.gn
@@ -91,6 +91,7 @@
deps = [
":array_view",
+ ":audio_options_api",
":optional",
":peerconnection_and_implicit_call_api",
":rtc_stats_api",
@@ -197,6 +198,18 @@
]
}
+rtc_source_set("audio_options_api") {
+ visibility = [ "*" ]
+ sources = [
+ "audio_options.h",
+ ]
+
+ deps = [
+ ":optional",
+ "../rtc_base:rtc_base_approved",
+ ]
+}
+
rtc_source_set("transport_api") {
visibility = [ "*" ]
sources = [