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

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

Issue 2964703002: [iOS] Fix incorrectly oriented frames when rapidly switching between cameras. (Closed)
Patch Set: Renamed RTCImageHelper method, removed gate check for switching cameras. Created 3 years, 4 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 } 141 }
142 142
143 rtc_static_library("objc_video") { 143 rtc_static_library("objc_video") {
144 sources = [ 144 sources = [
145 "objc/Framework/Classes/Video/RTCAVFoundationVideoCapturerInternal.h", 145 "objc/Framework/Classes/Video/RTCAVFoundationVideoCapturerInternal.h",
146 "objc/Framework/Classes/Video/RTCAVFoundationVideoCapturerInternal.mm", 146 "objc/Framework/Classes/Video/RTCAVFoundationVideoCapturerInternal.mm",
147 "objc/Framework/Classes/Video/RTCDefaultShader.h", 147 "objc/Framework/Classes/Video/RTCDefaultShader.h",
148 "objc/Framework/Classes/Video/RTCDefaultShader.mm", 148 "objc/Framework/Classes/Video/RTCDefaultShader.mm",
149 "objc/Framework/Classes/Video/RTCI420TextureCache.h", 149 "objc/Framework/Classes/Video/RTCI420TextureCache.h",
150 "objc/Framework/Classes/Video/RTCI420TextureCache.mm", 150 "objc/Framework/Classes/Video/RTCI420TextureCache.mm",
151 "objc/Framework/Classes/Video/RTCImageHelper.h",
152 "objc/Framework/Classes/Video/RTCImageHelper.mm",
151 "objc/Framework/Classes/Video/RTCOpenGLDefines.h", 153 "objc/Framework/Classes/Video/RTCOpenGLDefines.h",
152 "objc/Framework/Classes/Video/RTCShader.h", 154 "objc/Framework/Classes/Video/RTCShader.h",
153 "objc/Framework/Classes/Video/RTCShader.mm", 155 "objc/Framework/Classes/Video/RTCShader.mm",
154 "objc/Framework/Classes/Video/avfoundationformatmapper.h", 156 "objc/Framework/Classes/Video/avfoundationformatmapper.h",
155 "objc/Framework/Classes/Video/avfoundationformatmapper.mm", 157 "objc/Framework/Classes/Video/avfoundationformatmapper.mm",
156 "objc/Framework/Classes/Video/avfoundationvideocapturer.h", 158 "objc/Framework/Classes/Video/avfoundationvideocapturer.h",
157 "objc/Framework/Classes/Video/avfoundationvideocapturer.mm", 159 "objc/Framework/Classes/Video/avfoundationvideocapturer.mm",
158 ] 160 ]
159 libs = [] 161 libs = []
160 if (is_ios) { 162 if (is_ios) {
(...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after
720 public_deps = [ 722 public_deps = [
721 "$rtc_libyuv_dir", 723 "$rtc_libyuv_dir",
722 ] 724 ]
723 } else { 725 } else {
724 # Need to add a directory normally exported by libyuv. 726 # Need to add a directory normally exported by libyuv.
725 include_dirs = [ "$rtc_libyuv_dir/include" ] 727 include_dirs = [ "$rtc_libyuv_dir/include" ]
726 } 728 }
727 } 729 }
728 } 730 }
729 } 731 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698