Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(261)

Side by Side Diff: webrtc/api/BUILD.gn

Issue 1559753002: Move RTCAVFoundationCapturer to webrtc/api/objc. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@updateRTCVideoSource
Patch Set: Updates from upstream Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/api/api.gyp » ('j') | webrtc/api/objc/RTCAVFoundationVideoSource.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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/RTCAVFoundationVideoSource+Private.h",
33 #"objc/RTCAVFoundationVideoSource.h",
34 #"objc/RTCAVFoundationVideoSource.mm",
32 #"objc/RTCIceCandidate+Private.h", 35 #"objc/RTCIceCandidate+Private.h",
33 #"objc/RTCIceCandidate.h", 36 #"objc/RTCIceCandidate.h",
34 #"objc/RTCIceCandidate.mm", 37 #"objc/RTCIceCandidate.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/RTCVideoSource+Private.h", 41 #"objc/RTCVideoSource+Private.h",
39 #"objc/RTCVideoSource.h", 42 #"objc/RTCVideoSource.h",
40 #"objc/RTCVideoSource.mm", 43 #"objc/RTCVideoSource.mm",
41 "objc/RTCIceServer+Private.h", 44 "objc/RTCIceServer+Private.h",
42 "objc/RTCIceServer.h", 45 "objc/RTCIceServer.h",
43 "objc/RTCIceServer.mm", 46 "objc/RTCIceServer.mm",
44 "objc/RTCMediaConstraints+Private.h", 47 "objc/RTCMediaConstraints+Private.h",
45 "objc/RTCMediaConstraints.h", 48 "objc/RTCMediaConstraints.h",
46 "objc/RTCMediaConstraints.mm", 49 "objc/RTCMediaConstraints.mm",
47 "objc/RTCOpenGLVideoRenderer.h", 50 "objc/RTCOpenGLVideoRenderer.h",
48 "objc/RTCOpenGLVideoRenderer.mm", 51 "objc/RTCOpenGLVideoRenderer.mm",
49 "objc/RTCSessionDescription+Private.h", 52 "objc/RTCSessionDescription+Private.h",
50 "objc/RTCSessionDescription.h", 53 "objc/RTCSessionDescription.h",
51 "objc/RTCSessionDescription.mm", 54 "objc/RTCSessionDescription.mm",
52 "objc/RTCStatsReport+Private.h", 55 "objc/RTCStatsReport+Private.h",
53 "objc/RTCStatsReport.h", 56 "objc/RTCStatsReport.h",
54 "objc/RTCStatsReport.mm", 57 "objc/RTCStatsReport.mm",
55 "objc/RTCVideoFrame+Private.h", 58 "objc/RTCVideoFrame+Private.h",
56 "objc/RTCVideoFrame.h", 59 "objc/RTCVideoFrame.h",
57 "objc/RTCVideoFrame.mm", 60 "objc/RTCVideoFrame.mm",
58 "objc/RTCVideoRenderer.h", 61 "objc/RTCVideoRenderer.h",
59 "objc/WebRTC-Prefix.pch", 62 "objc/WebRTC-Prefix.pch",
63 "objc/avfoundationvideocapturer.h",
64 "objc/avfoundationvideocapturer.mm",
60 ] 65 ]
61 66
62 if (is_ios) { 67 if (is_ios) {
63 sources += [ 68 sources += [
64 "objc/RTCEAGLVideoView.h", 69 "objc/RTCEAGLVideoView.h",
65 "objc/RTCEAGLVideoView.m", 70 "objc/RTCEAGLVideoView.m",
66 ] 71 ]
67 } 72 }
68 73
69 if (is_mac) { 74 if (is_mac) {
70 sources += [ 75 sources += [
71 "objc/RTCNSGLVideoView.h", 76 "objc/RTCNSGLVideoView.h",
72 "objc/RTCNSGLVideoView.m", 77 "objc/RTCNSGLVideoView.m",
73 ] 78 ]
74 } 79 }
75 } 80 }
76 } 81 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/api/api.gyp » ('j') | webrtc/api/objc/RTCAVFoundationVideoSource.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698