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 17 matching lines...) Expand all Loading... | |
28 "-Wobjc-missing-property-synthesis", | 28 "-Wobjc-missing-property-synthesis", |
29 ] | 29 ] |
30 sources = [ | 30 sources = [ |
31 # Add these when there's a BUILD.gn for peer connection APIs | 31 # Add these when there's a BUILD.gn for peer connection APIs |
32 #"objc/RTCAVFoundationVideoSource+Private.h", | 32 #"objc/RTCAVFoundationVideoSource+Private.h", |
33 #"objc/RTCAVFoundationVideoSource.h", | 33 #"objc/RTCAVFoundationVideoSource.h", |
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", | |
39 #"objc/RTCConfiguration.h", | |
40 #"objc/RTCConfiguration.mm", | |
38 #"objc/RTCDataChannel+Private.h", | 41 #"objc/RTCDataChannel+Private.h", |
39 #"objc/RTCDataChannel.h", | 42 #"objc/RTCDataChannel.h", |
40 #"objc/RTCDataChannel.mm", | 43 #"objc/RTCDataChannel.mm", |
41 #"objc/RTCIceCandidate+Private.h", | 44 #"objc/RTCIceCandidate+Private.h", |
42 #"objc/RTCIceCandidate.h", | 45 #"objc/RTCIceCandidate.h", |
43 #"objc/RTCIceCandidate.mm", | 46 #"objc/RTCIceCandidate.mm", |
47 #"objc/RTCMediaSource+Private.h", | |
tkchin_webrtc
2016/01/22 22:49:56
? some duplication going on here
hjon_webrtc
2016/01/25 19:25:03
Done.
| |
48 #"objc/RTCMediaSource.h", | |
49 #"objc/RTCMediaSource+Private.h", | |
50 #"objc/RTCMediaSource.h", | |
51 #"objc/RTCMediaSource+Private.h", | |
52 #"objc/RTCMediaSource.h", | |
53 #"objc/RTCMediaSource.mm", | |
44 #"objc/RTCMediaStream+Private.h", | 54 #"objc/RTCMediaStream+Private.h", |
45 #"objc/RTCMediaStream.h", | 55 #"objc/RTCMediaStream.h", |
46 #"objc/RTCMediaStream.mm", | 56 #"objc/RTCMediaStream.mm", |
47 #"objc/RTCMediaStreamTrack+Private.h", | 57 #"objc/RTCMediaStreamTrack+Private.h", |
48 #"objc/RTCMediaStreamTrack.h", | 58 #"objc/RTCMediaStreamTrack.h", |
49 #"objc/RTCMediaStreamTrack.mm", | 59 #"objc/RTCMediaStreamTrack.mm", |
50 #"objc/RTCPeerConnectionFactory+Private.h", | 60 #"objc/RTCPeerConnectionFactory+Private.h", |
51 #"objc/RTCPeerConnectionFactory.h", | 61 #"objc/RTCPeerConnectionFactory.h", |
52 #"objc/RTCPeerConnectionFactory.mm", | 62 #"objc/RTCPeerConnectionFactory.mm", |
53 #"objc/RTCVideoSource+Private.h", | 63 #"objc/RTCVideoSource+Private.h", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
90 } | 100 } |
91 | 101 |
92 if (is_mac) { | 102 if (is_mac) { |
93 sources += [ | 103 sources += [ |
94 "objc/RTCNSGLVideoView.h", | 104 "objc/RTCNSGLVideoView.h", |
95 "objc/RTCNSGLVideoView.m", | 105 "objc/RTCNSGLVideoView.m", |
96 ] | 106 ] |
97 } | 107 } |
98 } | 108 } |
99 } | 109 } |
OLD | NEW |