Finally delete deprecated mac capturer.

Landing this CL will break video_loopback but cl 124827 fixes that.

Bug: webrtc:6898, webrtc:6333, webrtc:7861
Change-Id: Iecbbf75fab08570cc537784f7bbd11a841a2e5a6
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/124828
Commit-Queue: Kári Helgason <kthelgason@webrtc.org>
Reviewed-by: Anders Carlsson <andersc@webrtc.org>
Reviewed-by: Henrik Andreassson <henrika@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#27012}
This commit is contained in:
Kári Tristan Helgason
2019-03-07 10:44:26 +01:00
committed by Commit Bot
parent 87e2d785a0
commit 8a1e35c1c9
12 changed files with 18 additions and 926 deletions

View File

@ -306,6 +306,7 @@ if (is_ios || (is_mac && target_cpu != "x86")) {
":apprtc_common",
":socketrocket",
]
if (is_ios) {
# iOS must use WebRTC.framework which is dynamically linked.
deps += [
@ -315,7 +316,10 @@ if (is_ios || (is_mac && target_cpu != "x86")) {
} else {
deps += [ "../sdk:mac_framework_objc+link" ]
}
libs = [ "QuartzCore.framework" ]
libs = [
"CoreMedia.framework",
"QuartzCore.framework",
]
}
if (is_ios) {
@ -353,6 +357,8 @@ if (is_ios || (is_mac && target_cpu != "x86")) {
"../sdk:framework_objc+link",
"../sdk:ios_framework_bundle",
]
libs = [ "AVFoundation.framework" ]
}
ios_app_bundle("AppRTCMobile") {