| 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 "//webrtc/base:rtc_base_objc", | 23 "//webrtc/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/RTCAudioTrack+Private.h", |
| 33 #"objc/RTCAudioTrack.h", |
| 34 #"objc/RTCAudioTrack.mm",s |
| 32 #"objc/RTCAVFoundationVideoSource+Private.h", | 35 #"objc/RTCAVFoundationVideoSource+Private.h", |
| 33 #"objc/RTCAVFoundationVideoSource.h", | 36 #"objc/RTCAVFoundationVideoSource.h", |
| 34 #"objc/RTCAVFoundationVideoSource.mm", | 37 #"objc/RTCAVFoundationVideoSource.mm", |
| 35 #"objc/RTCIceCandidate+Private.h", | 38 #"objc/RTCIceCandidate+Private.h", |
| 36 #"objc/RTCIceCandidate.h", | 39 #"objc/RTCIceCandidate.h", |
| 37 #"objc/RTCIceCandidate.mm", | 40 #"objc/RTCIceCandidate.mm", |
| 38 #"objc/RTCMediaStreamTrack+Private.h", | 41 #"objc/RTCMediaStreamTrack+Private.h", |
| 39 #"objc/RTCMediaStreamTrack.h", | 42 #"objc/RTCMediaStreamTrack.h", |
| 40 #"objc/RTCMediaStreamTrack.mm", | 43 #"objc/RTCMediaStreamTrack.mm", |
| 41 #"objc/RTCPeerConnectionFactory+Private.h", | 44 #"objc/RTCPeerConnectionFactory+Private.h", |
| 42 #"objc/RTCPeerConnectionFactory.h", | 45 #"objc/RTCPeerConnectionFactory.h", |
| 43 #"objc/RTCPeerConnectionFactory.mm", | 46 #"objc/RTCPeerConnectionFactory.mm", |
| 44 #"objc/RTCVideoSource+Private.h", | 47 #"objc/RTCVideoSource+Private.h", |
| 45 #"objc/RTCVideoSource.h", | 48 #"objc/RTCVideoSource.h", |
| 46 #"objc/RTCVideoSource.mm", | 49 #"objc/RTCVideoSource.mm", |
| 50 #"objc/RTCVideoTrack+Private.h", |
| 51 #"objc/RTCVideoTrack.h", |
| 52 #"objc/RTCVideoTrack.mm", |
| 47 "objc/RTCIceServer+Private.h", | 53 "objc/RTCIceServer+Private.h", |
| 48 "objc/RTCIceServer.h", | 54 "objc/RTCIceServer.h", |
| 49 "objc/RTCIceServer.mm", | 55 "objc/RTCIceServer.mm", |
| 50 "objc/RTCMediaConstraints+Private.h", | 56 "objc/RTCMediaConstraints+Private.h", |
| 51 "objc/RTCMediaConstraints.h", | 57 "objc/RTCMediaConstraints.h", |
| 52 "objc/RTCMediaConstraints.mm", | 58 "objc/RTCMediaConstraints.mm", |
| 53 "objc/RTCOpenGLVideoRenderer.h", | 59 "objc/RTCOpenGLVideoRenderer.h", |
| 54 "objc/RTCOpenGLVideoRenderer.mm", | 60 "objc/RTCOpenGLVideoRenderer.mm", |
| 55 "objc/RTCSessionDescription+Private.h", | 61 "objc/RTCSessionDescription+Private.h", |
| 56 "objc/RTCSessionDescription.h", | 62 "objc/RTCSessionDescription.h", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 78 } | 84 } |
| 79 | 85 |
| 80 if (is_mac) { | 86 if (is_mac) { |
| 81 sources += [ | 87 sources += [ |
| 82 "objc/RTCNSGLVideoView.h", | 88 "objc/RTCNSGLVideoView.h", |
| 83 "objc/RTCNSGLVideoView.m", | 89 "objc/RTCNSGLVideoView.m", |
| 84 ] | 90 ] |
| 85 } | 91 } |
| 86 } | 92 } |
| 87 } | 93 } |
| OLD | NEW |