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", | |
59 #"objc/RTCPeerConnectionDelegate.h", | |
tkchin_webrtc
2016/02/01 10:00:01
Remove Delegate/Observer.
Delegate should be decla
hjon_webrtc
2016/02/04 00:58:37
Done.
Am I also understanding/guessing correctly
tkchin_webrtc
2016/02/05 16:15:15
Yep
| |
56 #"objc/RTCPeerConnectionFactory+Private.h", | 60 #"objc/RTCPeerConnectionFactory+Private.h", |
57 #"objc/RTCPeerConnectionFactory.h", | 61 #"objc/RTCPeerConnectionFactory.h", |
58 #"objc/RTCPeerConnectionFactory.mm", | 62 #"objc/RTCPeerConnectionFactory.mm", |
63 #"objc/RTCPeerConnectionObserver.h", | |
64 #"objc/RTCPeerConnectionObserver.mm", | |
59 #"objc/RTCVideoSource+Private.h", | 65 #"objc/RTCVideoSource+Private.h", |
60 #"objc/RTCVideoSource.h", | 66 #"objc/RTCVideoSource.h", |
61 #"objc/RTCVideoSource.mm", | 67 #"objc/RTCVideoSource.mm", |
62 #"objc/RTCVideoTrack+Private.h", | 68 #"objc/RTCVideoTrack+Private.h", |
63 #"objc/RTCVideoTrack.h", | 69 #"objc/RTCVideoTrack.h", |
64 #"objc/RTCVideoTrack.mm", | 70 #"objc/RTCVideoTrack.mm", |
65 "objc/RTCIceServer+Private.h", | 71 "objc/RTCIceServer+Private.h", |
66 "objc/RTCIceServer.h", | 72 "objc/RTCIceServer.h", |
67 "objc/RTCIceServer.mm", | 73 "objc/RTCIceServer.mm", |
68 "objc/RTCMediaConstraints+Private.h", | 74 "objc/RTCMediaConstraints+Private.h", |
(...skipping 27 matching lines...) Expand all Loading... | |
96 } | 102 } |
97 | 103 |
98 if (is_mac) { | 104 if (is_mac) { |
99 sources += [ | 105 sources += [ |
100 "objc/RTCNSGLVideoView.h", | 106 "objc/RTCNSGLVideoView.h", |
101 "objc/RTCNSGLVideoView.m", | 107 "objc/RTCNSGLVideoView.m", |
102 ] | 108 ] |
103 } | 109 } |
104 } | 110 } |
105 } | 111 } |
OLD | NEW |