Move MediaConstraintsInterface to sdk/, and make it a concrete class
Bug: webrtc:9239
Change-Id: I545ebf59b078dd94bc466886616dd374e4b2e226
Reviewed-on: https://webrtc-review.googlesource.com/c/122502
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Reviewed-by: Magnus Jedvert <magjed@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#26682}
diff --git a/sdk/BUILD.gn b/sdk/BUILD.gn
index 77d3c43..7963405 100644
--- a/sdk/BUILD.gn
+++ b/sdk/BUILD.gn
@@ -27,6 +27,29 @@
}
}
+rtc_source_set("media_constraints") {
+ sources = [
+ "media_constraints.cc",
+ "media_constraints.h",
+ ]
+ deps = [
+ "../api:audio_options_api",
+ "../api:libjingle_peerconnection_api",
+ "//third_party/abseil-cpp/absl/types:optional",
+ ]
+}
+
+rtc_source_set("sdk_tests") {
+ testonly = true
+ sources = [
+ "media_constraints_unittest.cc",
+ ]
+ deps = [
+ ":media_constraints",
+ "../test:test_support",
+ ]
+}
+
if (is_ios || is_mac) {
config("common_config_objc") {
include_dirs = [
@@ -668,7 +691,7 @@
deps = [
":base_objc",
":helpers_objc",
- "../api:libjingle_peerconnection_api",
+ ":media_constraints",
]
}