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

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

Issue 2887673002: Add RTCFileVideoCapturer class. (Closed)
Patch Set: Make file capturer ios only. - It is not needed for mac. Created 3 years, 7 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 "../base:rtc_base_approved", 219 "../base:rtc_base_approved",
220 "../common_video", 220 "../common_video",
221 "../media:rtc_media", 221 "../media:rtc_media",
222 "../media:rtc_media_base", 222 "../media:rtc_media_base",
223 "../system_wrappers", 223 "../system_wrappers",
224 ] 224 ]
225 225
226 if (is_ios) { 226 if (is_ios) {
227 sources += [ 227 sources += [
228 "objc/Framework/Classes/RTCEAGLVideoView.m", 228 "objc/Framework/Classes/RTCEAGLVideoView.m",
229 "objc/Framework/Classes/RTCFileVideoCapturer.h",
230 "objc/Framework/Classes/RTCFileVideoCapturer.m",
kthelgason 2017/05/19 12:18:47 Is this iOS only or can it compile on mac as well?
daniela-webrtc 2017/05/19 13:15:09 Can't compile on Mac :(
229 "objc/Framework/Classes/RTCNV12TextureCache.h", 231 "objc/Framework/Classes/RTCNV12TextureCache.h",
230 "objc/Framework/Classes/RTCNV12TextureCache.m", 232 "objc/Framework/Classes/RTCNV12TextureCache.m",
231 "objc/Framework/Classes/RTCNativeNV12Shader.mm", 233 "objc/Framework/Classes/RTCNativeNV12Shader.mm",
232 "objc/Framework/Headers/WebRTC/RTCEAGLVideoView.h", 234 "objc/Framework/Headers/WebRTC/RTCEAGLVideoView.h",
233 ] 235 ]
234 libs = [ 236 libs = [
235 "CoreGraphics.framework", 237 "CoreGraphics.framework",
236 "GLKit.framework", 238 "GLKit.framework",
237 "OpenGLES.framework", 239 "OpenGLES.framework",
238 "QuartzCore.framework", 240 "QuartzCore.framework",
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 deps += [ "$rtc_libyuv_dir" ] 483 deps += [ "$rtc_libyuv_dir" ]
482 public_deps = [ 484 public_deps = [
483 "$rtc_libyuv_dir", 485 "$rtc_libyuv_dir",
484 ] 486 ]
485 } else { 487 } else {
486 # Need to add a directory normally exported by libyuv. 488 # Need to add a directory normally exported by libyuv.
487 include_dirs = [ "$rtc_libyuv_dir/include" ] 489 include_dirs = [ "$rtc_libyuv_dir/include" ]
488 } 490 }
489 } 491 }
490 } 492 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698