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 14 matching lines...) Expand all Loading... |
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/RTCIceCandidate+Private.h", | 32 #"objc/RTCIceCandidate+Private.h", |
33 #"objc/RTCIceCandidate.h", | 33 #"objc/RTCIceCandidate.h", |
34 #"objc/RTCIceCandidate.mm", | 34 #"objc/RTCIceCandidate.mm", |
| 35 #"objc/RTCMediaSource+Private.h", |
| 36 #"objc/RTCMediaSource.h", |
| 37 #"objc/RTCMediaSource.mm", |
35 #"objc/RTCMediaStreamTrack+Private.h", | 38 #"objc/RTCMediaStreamTrack+Private.h", |
36 #"objc/RTCMediaStreamTrack.h", | 39 #"objc/RTCMediaStreamTrack.h", |
37 #"objc/RTCMediaStreamTrack.mm", | 40 #"objc/RTCMediaStreamTrack.mm", |
38 "objc/RTCIceServer+Private.h", | 41 "objc/RTCIceServer+Private.h", |
39 "objc/RTCIceServer.h", | 42 "objc/RTCIceServer.h", |
40 "objc/RTCIceServer.mm", | 43 "objc/RTCIceServer.mm", |
41 "objc/RTCMediaConstraints+Private.h", | 44 "objc/RTCMediaConstraints+Private.h", |
42 "objc/RTCMediaConstraints.h", | 45 "objc/RTCMediaConstraints.h", |
43 "objc/RTCMediaConstraints.mm", | 46 "objc/RTCMediaConstraints.mm", |
44 "objc/RTCOpenGLVideoRenderer.h", | 47 "objc/RTCOpenGLVideoRenderer.h", |
(...skipping 19 matching lines...) Expand all Loading... |
64 } | 67 } |
65 | 68 |
66 if (is_mac) { | 69 if (is_mac) { |
67 sources += [ | 70 sources += [ |
68 "objc/RTCNSGLVideoView.h", | 71 "objc/RTCNSGLVideoView.h", |
69 "objc/RTCNSGLVideoView.m", | 72 "objc/RTCNSGLVideoView.m", |
70 ] | 73 ] |
71 } | 74 } |
72 } | 75 } |
73 } | 76 } |
OLD | NEW |