BUG= Review URL: https://codereview.webrtc.org/1640993002 Cr-Commit-Position: refs/heads/master@{#11590}
111 lines
3.4 KiB
Plaintext
111 lines
3.4 KiB
Plaintext
# Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license
|
|
# that can be found in the LICENSE file in the root of the source
|
|
# tree. An additional intellectual property rights grant can be found
|
|
# in the file PATENTS. All contributing project authors may
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
import("../build/webrtc.gni")
|
|
|
|
config("ios_config") {
|
|
libs = [
|
|
"CoreGraphics.framework",
|
|
"GLKit.framework",
|
|
"OpenGLES.framework",
|
|
"QuartzCore.framework",
|
|
]
|
|
}
|
|
|
|
if (is_ios) {
|
|
source_set("rtc_api_objc") {
|
|
deps = [
|
|
"../base:rtc_base_objc",
|
|
#"../../talk/libjingle:libjingle_peerconnection",
|
|
]
|
|
cflags = [
|
|
"-fobjc-arc",
|
|
"-Wobjc-missing-property-synthesis",
|
|
]
|
|
sources = [
|
|
# Add these when there's a BUILD.gn for peer connection APIs
|
|
#"objc/RTCAVFoundationVideoSource+Private.h",
|
|
#"objc/RTCAVFoundationVideoSource.h",
|
|
#"objc/RTCAVFoundationVideoSource.mm",
|
|
#"objc/RTCAudioTrack+Private.h",
|
|
#"objc/RTCAudioTrack.h",
|
|
#"objc/RTCAudioTrack.mm",
|
|
#"objc/RTCConfiguration+Private.h",
|
|
#"objc/RTCConfiguration.h",
|
|
#"objc/RTCConfiguration.mm",
|
|
#"objc/RTCDataChannel+Private.h",
|
|
#"objc/RTCDataChannel.h",
|
|
#"objc/RTCDataChannel.mm",
|
|
#"objc/RTCDataChannelConfiguration+Private.h",
|
|
#"objc/RTCDataChannelConfiguration.h",
|
|
#"objc/RTCDataChannelConfiguration.mm",
|
|
#"objc/RTCIceCandidate+Private.h",
|
|
#"objc/RTCIceCandidate.h",
|
|
#"objc/RTCIceCandidate.mm",
|
|
#"objc/RTCMediaStream+Private.h",
|
|
#"objc/RTCMediaStream.h",
|
|
#"objc/RTCMediaStream.mm",
|
|
#"objc/RTCMediaStreamTrack+Private.h",
|
|
#"objc/RTCMediaStreamTrack.h",
|
|
#"objc/RTCMediaStreamTrack.mm",
|
|
#"objc/RTCPeerConnection+DataChannel.h",
|
|
#"objc/RTCPeerConnection+Private.h",
|
|
#"objc/RTCPeerConnection+Stats.h",
|
|
#"objc/RTCPeerConnection.h",
|
|
#"objc/RTCPeerConnection.mm",
|
|
#"objc/RTCPeerConnectionFactory+Private.h",
|
|
#"objc/RTCPeerConnectionFactory.h",
|
|
#"objc/RTCPeerConnectionFactory.mm",
|
|
#"objc/RTCVideoSource+Private.h",
|
|
#"objc/RTCVideoSource.h",
|
|
#"objc/RTCVideoSource.mm",
|
|
#"objc/RTCVideoTrack+Private.h",
|
|
#"objc/RTCVideoTrack.h",
|
|
#"objc/RTCVideoTrack.mm",
|
|
"objc/RTCIceServer+Private.h",
|
|
"objc/RTCIceServer.h",
|
|
"objc/RTCIceServer.mm",
|
|
"objc/RTCMediaConstraints+Private.h",
|
|
"objc/RTCMediaConstraints.h",
|
|
"objc/RTCMediaConstraints.mm",
|
|
"objc/RTCOpenGLVideoRenderer.h",
|
|
"objc/RTCOpenGLVideoRenderer.mm",
|
|
"objc/RTCSessionDescription+Private.h",
|
|
"objc/RTCSessionDescription.h",
|
|
"objc/RTCSessionDescription.mm",
|
|
"objc/RTCStatsReport+Private.h",
|
|
"objc/RTCStatsReport.h",
|
|
"objc/RTCStatsReport.mm",
|
|
"objc/RTCVideoFrame+Private.h",
|
|
"objc/RTCVideoFrame.h",
|
|
"objc/RTCVideoFrame.mm",
|
|
"objc/RTCVideoRenderer.h",
|
|
"objc/RTCVideoRendererAdapter+Private.h",
|
|
"objc/RTCVideoRendererAdapter.h",
|
|
"objc/RTCVideoRendererAdapter.mm",
|
|
"objc/WebRTC-Prefix.pch",
|
|
"objc/avfoundationvideocapturer.h",
|
|
"objc/avfoundationvideocapturer.mm",
|
|
]
|
|
|
|
if (is_ios) {
|
|
sources += [
|
|
"objc/RTCEAGLVideoView.h",
|
|
"objc/RTCEAGLVideoView.m",
|
|
]
|
|
}
|
|
|
|
if (is_mac) {
|
|
sources += [
|
|
"objc/RTCNSGLVideoView.h",
|
|
"objc/RTCNSGLVideoView.m",
|
|
]
|
|
}
|
|
}
|
|
}
|