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/sdk/BUILD.gn

Issue 2835203003: ObjC: Split out NV12 texture uploading into separate class (Closed)
Patch Set: Address comments. 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 "../base:rtc_base_approved", 200 "../base:rtc_base_approved",
201 "../common_video", 201 "../common_video",
202 "../media:rtc_media", 202 "../media:rtc_media",
203 "../media:rtc_media_base", 203 "../media:rtc_media_base",
204 "../system_wrappers", 204 "../system_wrappers",
205 ] 205 ]
206 206
207 if (is_ios) { 207 if (is_ios) {
208 sources += [ 208 sources += [
209 "objc/Framework/Classes/RTCEAGLVideoView.m", 209 "objc/Framework/Classes/RTCEAGLVideoView.m",
210 "objc/Framework/Classes/RTCNV12TextureCache.h",
211 "objc/Framework/Classes/RTCNV12TextureCache.m",
210 "objc/Framework/Classes/RTCNativeNV12Shader.mm", 212 "objc/Framework/Classes/RTCNativeNV12Shader.mm",
211 "objc/Framework/Headers/WebRTC/RTCEAGLVideoView.h", 213 "objc/Framework/Headers/WebRTC/RTCEAGLVideoView.h",
212 ] 214 ]
213 libs = [ 215 libs = [
214 "CoreGraphics.framework", 216 "CoreGraphics.framework",
215 "GLKit.framework", 217 "GLKit.framework",
216 "OpenGLES.framework", 218 "OpenGLES.framework",
217 "QuartzCore.framework", 219 "QuartzCore.framework",
218 ] 220 ]
219 } 221 }
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 deps += [ "$rtc_libyuv_dir" ] 439 deps += [ "$rtc_libyuv_dir" ]
438 public_deps = [ 440 public_deps = [
439 "$rtc_libyuv_dir", 441 "$rtc_libyuv_dir",
440 ] 442 ]
441 } else { 443 } else {
442 # Need to add a directory normally exported by libyuv. 444 # Need to add a directory normally exported by libyuv.
443 include_dirs = [ "$rtc_libyuv_dir/include" ] 445 include_dirs = [ "$rtc_libyuv_dir/include" ]
444 } 446 }
445 } 447 }
446 } 448 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698