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

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

Issue 2776703002: New RTCCameraVideoCapturer. (Closed)
Patch Set: Address denicija's comments. Created 3 years, 8 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
OLDNEW
1 # Copyright 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright 2016 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("../webrtc.gni") 9 import("../webrtc.gni")
10 if (is_ios) { 10 if (is_ios) {
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 sources = [ 96 sources = [
97 "objc/Framework/Classes/Metal/RTCMTLNV12Renderer.h", 97 "objc/Framework/Classes/Metal/RTCMTLNV12Renderer.h",
98 "objc/Framework/Classes/RTCAVFoundationVideoCapturerInternal.h", 98 "objc/Framework/Classes/RTCAVFoundationVideoCapturerInternal.h",
99 "objc/Framework/Classes/RTCAVFoundationVideoCapturerInternal.mm", 99 "objc/Framework/Classes/RTCAVFoundationVideoCapturerInternal.mm",
100 "objc/Framework/Classes/RTCAVFoundationVideoSource+Private.h", 100 "objc/Framework/Classes/RTCAVFoundationVideoSource+Private.h",
101 "objc/Framework/Classes/RTCAVFoundationVideoSource.mm", 101 "objc/Framework/Classes/RTCAVFoundationVideoSource.mm",
102 "objc/Framework/Classes/RTCAudioSource+Private.h", 102 "objc/Framework/Classes/RTCAudioSource+Private.h",
103 "objc/Framework/Classes/RTCAudioSource.mm", 103 "objc/Framework/Classes/RTCAudioSource.mm",
104 "objc/Framework/Classes/RTCAudioTrack+Private.h", 104 "objc/Framework/Classes/RTCAudioTrack+Private.h",
105 "objc/Framework/Classes/RTCAudioTrack.mm", 105 "objc/Framework/Classes/RTCAudioTrack.mm",
106 "objc/Framework/Classes/RTCCameraVideoCapturer.m",
106 "objc/Framework/Classes/RTCConfiguration+Private.h", 107 "objc/Framework/Classes/RTCConfiguration+Private.h",
107 "objc/Framework/Classes/RTCConfiguration.mm", 108 "objc/Framework/Classes/RTCConfiguration.mm",
108 "objc/Framework/Classes/RTCDataChannel+Private.h", 109 "objc/Framework/Classes/RTCDataChannel+Private.h",
109 "objc/Framework/Classes/RTCDataChannel.mm", 110 "objc/Framework/Classes/RTCDataChannel.mm",
110 "objc/Framework/Classes/RTCDataChannelConfiguration+Private.h", 111 "objc/Framework/Classes/RTCDataChannelConfiguration+Private.h",
111 "objc/Framework/Classes/RTCDataChannelConfiguration.mm", 112 "objc/Framework/Classes/RTCDataChannelConfiguration.mm",
112 "objc/Framework/Classes/RTCI420Shader.mm", 113 "objc/Framework/Classes/RTCI420Shader.mm",
113 "objc/Framework/Classes/RTCIceCandidate+Private.h", 114 "objc/Framework/Classes/RTCIceCandidate+Private.h",
114 "objc/Framework/Classes/RTCIceCandidate.mm", 115 "objc/Framework/Classes/RTCIceCandidate.mm",
115 "objc/Framework/Classes/RTCIceServer+Private.h", 116 "objc/Framework/Classes/RTCIceServer+Private.h",
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 "objc/Framework/Classes/avfoundationformatmapper.mm", 163 "objc/Framework/Classes/avfoundationformatmapper.mm",
163 "objc/Framework/Classes/avfoundationvideocapturer.h", 164 "objc/Framework/Classes/avfoundationvideocapturer.h",
164 "objc/Framework/Classes/avfoundationvideocapturer.mm", 165 "objc/Framework/Classes/avfoundationvideocapturer.mm",
165 "objc/Framework/Classes/objcvideotracksource.h", 166 "objc/Framework/Classes/objcvideotracksource.h",
166 "objc/Framework/Classes/objcvideotracksource.mm", 167 "objc/Framework/Classes/objcvideotracksource.mm",
167 "objc/Framework/Classes/videotoolboxvideocodecfactory.cc", 168 "objc/Framework/Classes/videotoolboxvideocodecfactory.cc",
168 "objc/Framework/Classes/videotoolboxvideocodecfactory.h", 169 "objc/Framework/Classes/videotoolboxvideocodecfactory.h",
169 "objc/Framework/Headers/WebRTC/RTCAVFoundationVideoSource.h", 170 "objc/Framework/Headers/WebRTC/RTCAVFoundationVideoSource.h",
170 "objc/Framework/Headers/WebRTC/RTCAudioSource.h", 171 "objc/Framework/Headers/WebRTC/RTCAudioSource.h",
171 "objc/Framework/Headers/WebRTC/RTCAudioTrack.h", 172 "objc/Framework/Headers/WebRTC/RTCAudioTrack.h",
173 "objc/Framework/Headers/WebRTC/RTCCameraVideoCapturer.h",
172 "objc/Framework/Headers/WebRTC/RTCConfiguration.h", 174 "objc/Framework/Headers/WebRTC/RTCConfiguration.h",
173 "objc/Framework/Headers/WebRTC/RTCDataChannel.h", 175 "objc/Framework/Headers/WebRTC/RTCDataChannel.h",
174 "objc/Framework/Headers/WebRTC/RTCDataChannelConfiguration.h", 176 "objc/Framework/Headers/WebRTC/RTCDataChannelConfiguration.h",
175 "objc/Framework/Headers/WebRTC/RTCIceCandidate.h", 177 "objc/Framework/Headers/WebRTC/RTCIceCandidate.h",
176 "objc/Framework/Headers/WebRTC/RTCIceServer.h", 178 "objc/Framework/Headers/WebRTC/RTCIceServer.h",
177 "objc/Framework/Headers/WebRTC/RTCLegacyStatsReport.h", 179 "objc/Framework/Headers/WebRTC/RTCLegacyStatsReport.h",
178 "objc/Framework/Headers/WebRTC/RTCMediaConstraints.h", 180 "objc/Framework/Headers/WebRTC/RTCMediaConstraints.h",
179 "objc/Framework/Headers/WebRTC/RTCMediaSource.h", 181 "objc/Framework/Headers/WebRTC/RTCMediaSource.h",
180 "objc/Framework/Headers/WebRTC/RTCMediaStream.h", 182 "objc/Framework/Headers/WebRTC/RTCMediaStream.h",
181 "objc/Framework/Headers/WebRTC/RTCMediaStreamTrack.h", 183 "objc/Framework/Headers/WebRTC/RTCMediaStreamTrack.h",
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 deps += [ "$rtc_libyuv_dir" ] 425 deps += [ "$rtc_libyuv_dir" ]
424 public_deps = [ 426 public_deps = [
425 "$rtc_libyuv_dir", 427 "$rtc_libyuv_dir",
426 ] 428 ]
427 } else { 429 } else {
428 # Need to add a directory normally exported by libyuv. 430 # Need to add a directory normally exported by libyuv.
429 include_dirs = [ "$rtc_libyuv_dir/include" ] 431 include_dirs = [ "$rtc_libyuv_dir/include" ]
430 } 432 }
431 } 433 }
432 } 434 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698