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

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

Issue 2887673002: Add RTCFileVideoCapturer class. (Closed)
Patch Set: Rebase Created 3 years, 6 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/sdk/objc/Framework/Classes/PeerConnection/RTCFileVideoCapturer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 "objc/Framework/Headers/WebRTC/RTCSSLAdapter.h", 284 "objc/Framework/Headers/WebRTC/RTCSSLAdapter.h",
285 "objc/Framework/Headers/WebRTC/RTCSessionDescription.h", 285 "objc/Framework/Headers/WebRTC/RTCSessionDescription.h",
286 "objc/Framework/Headers/WebRTC/RTCTracing.h", 286 "objc/Framework/Headers/WebRTC/RTCTracing.h",
287 "objc/Framework/Headers/WebRTC/RTCVideoCapturer.h", 287 "objc/Framework/Headers/WebRTC/RTCVideoCapturer.h",
288 "objc/Framework/Headers/WebRTC/RTCVideoFrame.h", 288 "objc/Framework/Headers/WebRTC/RTCVideoFrame.h",
289 "objc/Framework/Headers/WebRTC/RTCVideoRenderer.h", 289 "objc/Framework/Headers/WebRTC/RTCVideoRenderer.h",
290 "objc/Framework/Headers/WebRTC/RTCVideoSource.h", 290 "objc/Framework/Headers/WebRTC/RTCVideoSource.h",
291 "objc/Framework/Headers/WebRTC/RTCVideoTrack.h", 291 "objc/Framework/Headers/WebRTC/RTCVideoTrack.h",
292 "objc/Framework/Headers/WebRTC/RTCVideoViewShading.h", 292 "objc/Framework/Headers/WebRTC/RTCVideoViewShading.h",
293 ] 293 ]
294 294 if (is_ios) {
295 sources += [
296 "objc/Framework/Classes/PeerConnection/RTCFileVideoCapturer.h",
297 "objc/Framework/Classes/PeerConnection/RTCFileVideoCapturer.m",
298 ]
299 }
295 libs = [ "AVFoundation.framework" ] 300 libs = [ "AVFoundation.framework" ]
296 301
297 if (is_ios) { 302 if (is_ios) {
298 libs += [ "CoreGraphics.framework" ] 303 libs += [ "CoreGraphics.framework" ]
299 } 304 }
300 305
301 configs += [ "..:common_objc" ] 306 configs += [ "..:common_objc" ]
302 307
303 public_configs = [ ":objc_common_config" ] 308 public_configs = [ ":objc_common_config" ]
304 309
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 public_deps = [ 555 public_deps = [
551 "$rtc_libyuv_dir", 556 "$rtc_libyuv_dir",
552 ] 557 ]
553 } else { 558 } else {
554 # Need to add a directory normally exported by libyuv. 559 # Need to add a directory normally exported by libyuv.
555 include_dirs = [ "$rtc_libyuv_dir/include" ] 560 include_dirs = [ "$rtc_libyuv_dir/include" ]
556 } 561 }
557 } 562 }
558 } 563 }
559 } 564 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/sdk/objc/Framework/Classes/PeerConnection/RTCFileVideoCapturer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698