| OLD | NEW |
| 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
| 4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
| 5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 import("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
| 10 | 10 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 #"objc/RTCMediaStreamTrack.h", | 54 #"objc/RTCMediaStreamTrack.h", |
| 55 #"objc/RTCMediaStreamTrack.mm", | 55 #"objc/RTCMediaStreamTrack.mm", |
| 56 #"objc/RTCPeerConnection+DataChannel.h", | 56 #"objc/RTCPeerConnection+DataChannel.h", |
| 57 #"objc/RTCPeerConnection+Private.h", | 57 #"objc/RTCPeerConnection+Private.h", |
| 58 #"objc/RTCPeerConnection+Stats.h", | 58 #"objc/RTCPeerConnection+Stats.h", |
| 59 #"objc/RTCPeerConnection.h", | 59 #"objc/RTCPeerConnection.h", |
| 60 #"objc/RTCPeerConnection.mm", | 60 #"objc/RTCPeerConnection.mm", |
| 61 #"objc/RTCPeerConnectionFactory+Private.h", | 61 #"objc/RTCPeerConnectionFactory+Private.h", |
| 62 #"objc/RTCPeerConnectionFactory.h", | 62 #"objc/RTCPeerConnectionFactory.h", |
| 63 #"objc/RTCPeerConnectionFactory.mm", | 63 #"objc/RTCPeerConnectionFactory.mm", |
| 64 #"objc/RTCRtpEncodingParameters+Private.h", |
| 65 #"objc/RTCRtpEncodingParameters.h", |
| 66 #"objc/RTCRtpEncodingParameters.mm", |
| 67 #"objc/RTCRtpParameters+Private.h", |
| 68 #"objc/RTCRtpParameters.h", |
| 69 #"objc/RTCRtpParameters.mm", |
| 70 #"objc/RTCRtpSender+Private.h", |
| 71 #"objc/RTCRtpSender.h", |
| 72 #"objc/RTCRtpSender.mm", |
| 64 #"objc/RTCVideoSource+Private.h", | 73 #"objc/RTCVideoSource+Private.h", |
| 65 #"objc/RTCVideoSource.h", | 74 #"objc/RTCVideoSource.h", |
| 66 #"objc/RTCVideoSource.mm", | 75 #"objc/RTCVideoSource.mm", |
| 67 #"objc/RTCVideoTrack+Private.h", | 76 #"objc/RTCVideoTrack+Private.h", |
| 68 #"objc/RTCVideoTrack.h", | 77 #"objc/RTCVideoTrack.h", |
| 69 #"objc/RTCVideoTrack.mm", | 78 #"objc/RTCVideoTrack.mm", |
| 70 "objc/RTCIceServer+Private.h", | 79 "objc/RTCIceServer+Private.h", |
| 71 "objc/RTCIceServer.h", | 80 "objc/RTCIceServer.h", |
| 72 "objc/RTCIceServer.mm", | 81 "objc/RTCIceServer.mm", |
| 73 "objc/RTCMediaConstraints+Private.h", | 82 "objc/RTCMediaConstraints+Private.h", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 101 } | 110 } |
| 102 | 111 |
| 103 if (is_mac) { | 112 if (is_mac) { |
| 104 sources += [ | 113 sources += [ |
| 105 "objc/RTCNSGLVideoView.h", | 114 "objc/RTCNSGLVideoView.h", |
| 106 "objc/RTCNSGLVideoView.m", | 115 "objc/RTCNSGLVideoView.m", |
| 107 ] | 116 ] |
| 108 } | 117 } |
| 109 } | 118 } |
| 110 } | 119 } |
| OLD | NEW |