| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 #"objc/RTCDataChannelConfiguration.mm", | 46 #"objc/RTCDataChannelConfiguration.mm", |
| 47 #"objc/RTCIceCandidate+Private.h", | 47 #"objc/RTCIceCandidate+Private.h", |
| 48 #"objc/RTCIceCandidate.h", | 48 #"objc/RTCIceCandidate.h", |
| 49 #"objc/RTCIceCandidate.mm", | 49 #"objc/RTCIceCandidate.mm", |
| 50 #"objc/RTCMediaStream+Private.h", | 50 #"objc/RTCMediaStream+Private.h", |
| 51 #"objc/RTCMediaStream.h", | 51 #"objc/RTCMediaStream.h", |
| 52 #"objc/RTCMediaStream.mm", | 52 #"objc/RTCMediaStream.mm", |
| 53 #"objc/RTCMediaStreamTrack+Private.h", | 53 #"objc/RTCMediaStreamTrack+Private.h", |
| 54 #"objc/RTCMediaStreamTrack.h", | 54 #"objc/RTCMediaStreamTrack.h", |
| 55 #"objc/RTCMediaStreamTrack.mm", | 55 #"objc/RTCMediaStreamTrack.mm", |
| 56 #"objc/RTCPeerConnection+Private.h", |
| 57 #"objc/RTCPeerConnection.h", |
| 58 #"objc/RTCPeerConnection.mm", |
| 56 #"objc/RTCPeerConnectionFactory+Private.h", | 59 #"objc/RTCPeerConnectionFactory+Private.h", |
| 57 #"objc/RTCPeerConnectionFactory.h", | 60 #"objc/RTCPeerConnectionFactory.h", |
| 58 #"objc/RTCPeerConnectionFactory.mm", | 61 #"objc/RTCPeerConnectionFactory.mm", |
| 59 #"objc/RTCVideoSource+Private.h", | 62 #"objc/RTCVideoSource+Private.h", |
| 60 #"objc/RTCVideoSource.h", | 63 #"objc/RTCVideoSource.h", |
| 61 #"objc/RTCVideoSource.mm", | 64 #"objc/RTCVideoSource.mm", |
| 62 #"objc/RTCVideoTrack+Private.h", | 65 #"objc/RTCVideoTrack+Private.h", |
| 63 #"objc/RTCVideoTrack.h", | 66 #"objc/RTCVideoTrack.h", |
| 64 #"objc/RTCVideoTrack.mm", | 67 #"objc/RTCVideoTrack.mm", |
| 65 "objc/RTCIceServer+Private.h", | 68 "objc/RTCIceServer+Private.h", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 96 } | 99 } |
| 97 | 100 |
| 98 if (is_mac) { | 101 if (is_mac) { |
| 99 sources += [ | 102 sources += [ |
| 100 "objc/RTCNSGLVideoView.h", | 103 "objc/RTCNSGLVideoView.h", |
| 101 "objc/RTCNSGLVideoView.m", | 104 "objc/RTCNSGLVideoView.m", |
| 102 ] | 105 ] |
| 103 } | 106 } |
| 104 } | 107 } |
| 105 } | 108 } |
| OLD | NEW |