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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 #"objc/RTCMediaStreamTrack.h", | 54 #"objc/RTCMediaStreamTrack.h", |
55 #"objc/RTCMediaStreamTrack.mm", | 55 #"objc/RTCMediaStreamTrack.mm", |
56 #"objc/RTCPeerConnection+DataChannel.h", | 56 #"objc/RTCPeerConnection+DataChannel.h", |
57 #"objc/RTCPeerConnection+Private.h", | 57 #"objc/RTCPeerConnection+Private.h", |
58 #"objc/RTCPeerConnection+Stats.h", | 58 #"objc/RTCPeerConnection+Stats.h", |
59 #"objc/RTCPeerConnection.h", | 59 #"objc/RTCPeerConnection.h", |
60 #"objc/RTCPeerConnection.mm", | 60 #"objc/RTCPeerConnection.mm", |
61 #"objc/RTCPeerConnectionFactory+Private.h", | 61 #"objc/RTCPeerConnectionFactory+Private.h", |
62 #"objc/RTCPeerConnectionFactory.h", | 62 #"objc/RTCPeerConnectionFactory.h", |
63 #"objc/RTCPeerConnectionFactory.mm", | 63 #"objc/RTCPeerConnectionFactory.mm", |
| 64 #"objc/RTCRtpCodecParameters+Private.h", |
| 65 #"objc/RTCRtpCodecParameters.h", |
| 66 #"objc/RTCRtpCodecParameters.mm", |
64 #"objc/RTCRtpEncodingParameters+Private.h", | 67 #"objc/RTCRtpEncodingParameters+Private.h", |
65 #"objc/RTCRtpEncodingParameters.h", | 68 #"objc/RTCRtpEncodingParameters.h", |
66 #"objc/RTCRtpEncodingParameters.mm", | 69 #"objc/RTCRtpEncodingParameters.mm", |
67 #"objc/RTCRtpParameters+Private.h", | 70 #"objc/RTCRtpParameters+Private.h", |
68 #"objc/RTCRtpParameters.h", | 71 #"objc/RTCRtpParameters.h", |
69 #"objc/RTCRtpParameters.mm", | 72 #"objc/RTCRtpParameters.mm", |
70 #"objc/RTCRtpSender+Private.h", | 73 #"objc/RTCRtpSender+Private.h", |
71 #"objc/RTCRtpSender.h", | 74 #"objc/RTCRtpSender.h", |
72 #"objc/RTCRtpSender.mm", | 75 #"objc/RTCRtpSender.mm", |
73 #"objc/RTCVideoSource+Private.h", | 76 #"objc/RTCVideoSource+Private.h", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 } | 113 } |
111 | 114 |
112 if (is_mac) { | 115 if (is_mac) { |
113 sources += [ | 116 sources += [ |
114 "objc/RTCNSGLVideoView.h", | 117 "objc/RTCNSGLVideoView.h", |
115 "objc/RTCNSGLVideoView.m", | 118 "objc/RTCNSGLVideoView.m", |
116 ] | 119 ] |
117 } | 120 } |
118 } | 121 } |
119 } | 122 } |
OLD | NEW |