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

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

Issue 2842453002: ObjC: Split out I420 texture uploading into separate class (Closed)
Patch Set: Make uploadFrameToTextures return void 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
« no previous file with comments | « no previous file | webrtc/sdk/objc/Framework/Classes/RTCI420Shader.mm » ('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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 "objc/Framework/Classes/RTCAudioTrack+Private.h", 103 "objc/Framework/Classes/RTCAudioTrack+Private.h",
104 "objc/Framework/Classes/RTCAudioTrack.mm", 104 "objc/Framework/Classes/RTCAudioTrack.mm",
105 "objc/Framework/Classes/RTCCameraVideoCapturer.m", 105 "objc/Framework/Classes/RTCCameraVideoCapturer.m",
106 "objc/Framework/Classes/RTCConfiguration+Private.h", 106 "objc/Framework/Classes/RTCConfiguration+Private.h",
107 "objc/Framework/Classes/RTCConfiguration.mm", 107 "objc/Framework/Classes/RTCConfiguration.mm",
108 "objc/Framework/Classes/RTCDataChannel+Private.h", 108 "objc/Framework/Classes/RTCDataChannel+Private.h",
109 "objc/Framework/Classes/RTCDataChannel.mm", 109 "objc/Framework/Classes/RTCDataChannel.mm",
110 "objc/Framework/Classes/RTCDataChannelConfiguration+Private.h", 110 "objc/Framework/Classes/RTCDataChannelConfiguration+Private.h",
111 "objc/Framework/Classes/RTCDataChannelConfiguration.mm", 111 "objc/Framework/Classes/RTCDataChannelConfiguration.mm",
112 "objc/Framework/Classes/RTCI420Shader.mm", 112 "objc/Framework/Classes/RTCI420Shader.mm",
113 "objc/Framework/Classes/RTCI420TextureCache.h",
114 "objc/Framework/Classes/RTCI420TextureCache.mm",
113 "objc/Framework/Classes/RTCIceCandidate+Private.h", 115 "objc/Framework/Classes/RTCIceCandidate+Private.h",
114 "objc/Framework/Classes/RTCIceCandidate.mm", 116 "objc/Framework/Classes/RTCIceCandidate.mm",
115 "objc/Framework/Classes/RTCIceServer+Private.h", 117 "objc/Framework/Classes/RTCIceServer+Private.h",
116 "objc/Framework/Classes/RTCIceServer.mm", 118 "objc/Framework/Classes/RTCIceServer.mm",
117 "objc/Framework/Classes/RTCLegacyStatsReport+Private.h", 119 "objc/Framework/Classes/RTCLegacyStatsReport+Private.h",
118 "objc/Framework/Classes/RTCLegacyStatsReport.mm", 120 "objc/Framework/Classes/RTCLegacyStatsReport.mm",
119 "objc/Framework/Classes/RTCMediaConstraints+Private.h", 121 "objc/Framework/Classes/RTCMediaConstraints+Private.h",
120 "objc/Framework/Classes/RTCMediaConstraints.mm", 122 "objc/Framework/Classes/RTCMediaConstraints.mm",
121 "objc/Framework/Classes/RTCMediaSource+Private.h", 123 "objc/Framework/Classes/RTCMediaSource+Private.h",
122 "objc/Framework/Classes/RTCMediaSource.mm", 124 "objc/Framework/Classes/RTCMediaSource.mm",
(...skipping 314 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
« no previous file with comments | « no previous file | webrtc/sdk/objc/Framework/Classes/RTCI420Shader.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698