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 23 matching lines...) Expand all Loading... |
34 #"objc/RTCAVFoundationVideoSource.mm", | 34 #"objc/RTCAVFoundationVideoSource.mm", |
35 #"objc/RTCAudioTrack+Private.h", | 35 #"objc/RTCAudioTrack+Private.h", |
36 #"objc/RTCAudioTrack.h", | 36 #"objc/RTCAudioTrack.h", |
37 #"objc/RTCAudioTrack.mm", | 37 #"objc/RTCAudioTrack.mm", |
38 #"objc/RTCConfiguration+Private.h", | 38 #"objc/RTCConfiguration+Private.h", |
39 #"objc/RTCConfiguration.h", | 39 #"objc/RTCConfiguration.h", |
40 #"objc/RTCConfiguration.mm", | 40 #"objc/RTCConfiguration.mm", |
41 #"objc/RTCDataChannel+Private.h", | 41 #"objc/RTCDataChannel+Private.h", |
42 #"objc/RTCDataChannel.h", | 42 #"objc/RTCDataChannel.h", |
43 #"objc/RTCDataChannel.mm", | 43 #"objc/RTCDataChannel.mm", |
| 44 #"objc/RTCDataChannelConfiguration+Private.h", |
| 45 #"objc/RTCDataChannelConfiguration.h", |
| 46 #"objc/RTCDataChannelConfiguration.mm", |
44 #"objc/RTCIceCandidate+Private.h", | 47 #"objc/RTCIceCandidate+Private.h", |
45 #"objc/RTCIceCandidate.h", | 48 #"objc/RTCIceCandidate.h", |
46 #"objc/RTCIceCandidate.mm", | 49 #"objc/RTCIceCandidate.mm", |
47 #"objc/RTCMediaStream+Private.h", | 50 #"objc/RTCMediaStream+Private.h", |
48 #"objc/RTCMediaStream.h", | 51 #"objc/RTCMediaStream.h", |
49 #"objc/RTCMediaStream.mm", | 52 #"objc/RTCMediaStream.mm", |
50 #"objc/RTCMediaStreamTrack+Private.h", | 53 #"objc/RTCMediaStreamTrack+Private.h", |
51 #"objc/RTCMediaStreamTrack.h", | 54 #"objc/RTCMediaStreamTrack.h", |
52 #"objc/RTCMediaStreamTrack.mm", | 55 #"objc/RTCMediaStreamTrack.mm", |
53 #"objc/RTCPeerConnectionFactory+Private.h", | 56 #"objc/RTCPeerConnectionFactory+Private.h", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 } | 96 } |
94 | 97 |
95 if (is_mac) { | 98 if (is_mac) { |
96 sources += [ | 99 sources += [ |
97 "objc/RTCNSGLVideoView.h", | 100 "objc/RTCNSGLVideoView.h", |
98 "objc/RTCNSGLVideoView.m", | 101 "objc/RTCNSGLVideoView.m", |
99 ] | 102 ] |
100 } | 103 } |
101 } | 104 } |
102 } | 105 } |
OLD | NEW |