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 11 matching lines...) Expand all Loading... |
22 deps = [ | 22 deps = [ |
23 "../base:rtc_base_objc", | 23 "../base:rtc_base_objc", |
24 #"../../talk/libjingle:libjingle_peerconnection", | 24 #"../../talk/libjingle:libjingle_peerconnection", |
25 ] | 25 ] |
26 cflags = [ | 26 cflags = [ |
27 "-fobjc-arc", | 27 "-fobjc-arc", |
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", | |
33 #"objc/RTCAVFoundationVideoSource.h", | |
34 #"objc/RTCAVFoundationVideoSource.mm", | |
35 #"objc/RTCAudioTrack+Private.h", | 32 #"objc/RTCAudioTrack+Private.h", |
36 #"objc/RTCAudioTrack.h", | 33 #"objc/RTCAudioTrack.h", |
37 #"objc/RTCAudioTrack.mm", | 34 #"objc/RTCAudioTrack.mm", |
38 #"objc/RTCConfiguration+Private.h", | 35 #"objc/RTCConfiguration+Private.h", |
39 #"objc/RTCConfiguration.h", | 36 #"objc/RTCConfiguration.h", |
40 #"objc/RTCConfiguration.mm", | 37 #"objc/RTCConfiguration.mm", |
41 #"objc/RTCDataChannel+Private.h", | 38 #"objc/RTCDataChannel+Private.h", |
42 #"objc/RTCDataChannel.h", | 39 #"objc/RTCDataChannel.h", |
43 #"objc/RTCDataChannel.mm", | 40 #"objc/RTCDataChannel.mm", |
44 #"objc/RTCDataChannelConfiguration+Private.h", | 41 #"objc/RTCDataChannelConfiguration+Private.h", |
(...skipping 15 matching lines...) Expand all Loading... |
60 #"objc/RTCPeerConnection.mm", | 57 #"objc/RTCPeerConnection.mm", |
61 #"objc/RTCPeerConnectionFactory+Private.h", | 58 #"objc/RTCPeerConnectionFactory+Private.h", |
62 #"objc/RTCPeerConnectionFactory.h", | 59 #"objc/RTCPeerConnectionFactory.h", |
63 #"objc/RTCPeerConnectionFactory.mm", | 60 #"objc/RTCPeerConnectionFactory.mm", |
64 #"objc/RTCVideoSource+Private.h", | 61 #"objc/RTCVideoSource+Private.h", |
65 #"objc/RTCVideoSource.h", | 62 #"objc/RTCVideoSource.h", |
66 #"objc/RTCVideoSource.mm", | 63 #"objc/RTCVideoSource.mm", |
67 #"objc/RTCVideoTrack+Private.h", | 64 #"objc/RTCVideoTrack+Private.h", |
68 #"objc/RTCVideoTrack.h", | 65 #"objc/RTCVideoTrack.h", |
69 #"objc/RTCVideoTrack.mm", | 66 #"objc/RTCVideoTrack.mm", |
| 67 # TODO(hjon): Fix prefix headers (see webrtc:5477 for details). |
| 68 "../build/WebRTC-Prefix.pch", |
70 "objc/RTCIceServer+Private.h", | 69 "objc/RTCIceServer+Private.h", |
71 "objc/RTCIceServer.h", | 70 "objc/RTCIceServer.h", |
72 "objc/RTCIceServer.mm", | 71 "objc/RTCIceServer.mm", |
73 "objc/RTCMediaConstraints+Private.h", | 72 "objc/RTCMediaConstraints+Private.h", |
74 "objc/RTCMediaConstraints.h", | 73 "objc/RTCMediaConstraints.h", |
75 "objc/RTCMediaConstraints.mm", | 74 "objc/RTCMediaConstraints.mm", |
76 "objc/RTCOpenGLVideoRenderer.h", | 75 "objc/RTCOpenGLVideoRenderer.h", |
77 "objc/RTCOpenGLVideoRenderer.mm", | 76 "objc/RTCOpenGLVideoRenderer.mm", |
78 "objc/RTCSessionDescription+Private.h", | 77 "objc/RTCSessionDescription+Private.h", |
79 "objc/RTCSessionDescription.h", | 78 "objc/RTCSessionDescription.h", |
80 "objc/RTCSessionDescription.mm", | 79 "objc/RTCSessionDescription.mm", |
81 "objc/RTCStatsReport+Private.h", | 80 "objc/RTCStatsReport+Private.h", |
82 "objc/RTCStatsReport.h", | 81 "objc/RTCStatsReport.h", |
83 "objc/RTCStatsReport.mm", | 82 "objc/RTCStatsReport.mm", |
84 "objc/RTCVideoFrame+Private.h", | 83 "objc/RTCVideoFrame+Private.h", |
85 "objc/RTCVideoFrame.h", | 84 "objc/RTCVideoFrame.h", |
86 "objc/RTCVideoFrame.mm", | 85 "objc/RTCVideoFrame.mm", |
87 "objc/RTCVideoRenderer.h", | 86 "objc/RTCVideoRenderer.h", |
88 "objc/RTCVideoRendererAdapter+Private.h", | 87 "objc/RTCVideoRendererAdapter+Private.h", |
89 "objc/RTCVideoRendererAdapter.h", | 88 "objc/RTCVideoRendererAdapter.h", |
90 "objc/RTCVideoRendererAdapter.mm", | 89 "objc/RTCVideoRendererAdapter.mm", |
91 "objc/WebRTC-Prefix.pch", | |
92 "objc/avfoundationvideocapturer.h", | |
93 "objc/avfoundationvideocapturer.mm", | |
94 ] | 90 ] |
95 | 91 |
96 if (is_ios) { | 92 if (is_ios) { |
97 sources += [ | 93 sources += [ |
| 94 # Add these when there's a BUILD.gn for peer connection APIs |
| 95 #"objc/RTCAVFoundationVideoSource+Private.h", |
| 96 #"objc/RTCAVFoundationVideoSource.h", |
| 97 #"objc/RTCAVFoundationVideoSource.mm", |
98 "objc/RTCEAGLVideoView.h", | 98 "objc/RTCEAGLVideoView.h", |
99 "objc/RTCEAGLVideoView.m", | 99 "objc/RTCEAGLVideoView.m", |
| 100 "objc/avfoundationvideocapturer.h", |
| 101 "objc/avfoundationvideocapturer.mm", |
100 ] | 102 ] |
101 } | 103 } |
102 | 104 |
103 if (is_mac) { | 105 if (is_mac) { |
104 sources += [ | 106 sources += [ |
105 "objc/RTCNSGLVideoView.h", | 107 "objc/RTCNSGLVideoView.h", |
106 "objc/RTCNSGLVideoView.m", | 108 "objc/RTCNSGLVideoView.m", |
107 ] | 109 ] |
108 } | 110 } |
109 } | 111 } |
110 } | 112 } |
OLD | NEW |