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

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

Issue 2488973002: Split avfoundationcapturer classes in separate files. (Closed)
Patch Set: Alphabetize imports Created 4 years 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("../build/webrtc.gni") 9 import("../build/webrtc.gni")
10 if (is_mac) { 10 if (is_mac) {
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 if (!build_with_chromium) { 82 if (!build_with_chromium) {
83 sources += [ 83 sources += [
84 "objc/Framework/Classes/RTCFileLogger.mm", 84 "objc/Framework/Classes/RTCFileLogger.mm",
85 "objc/Framework/Headers/WebRTC/RTCFileLogger.h", 85 "objc/Framework/Headers/WebRTC/RTCFileLogger.h",
86 ] 86 ]
87 } 87 }
88 } 88 }
89 89
90 rtc_static_library("rtc_sdk_peerconnection_objc") { 90 rtc_static_library("rtc_sdk_peerconnection_objc") {
91 sources = [ 91 sources = [
92 "objc/Framework/Classes/RTCAVFoundationVideoCapturerInternal.h",
93 "objc/Framework/Classes/RTCAVFoundationVideoCapturerInternal.mm",
92 "objc/Framework/Classes/RTCAVFoundationVideoSource+Private.h", 94 "objc/Framework/Classes/RTCAVFoundationVideoSource+Private.h",
93 "objc/Framework/Classes/RTCAVFoundationVideoSource.mm", 95 "objc/Framework/Classes/RTCAVFoundationVideoSource.mm",
94 "objc/Framework/Classes/RTCAudioSource+Private.h", 96 "objc/Framework/Classes/RTCAudioSource+Private.h",
95 "objc/Framework/Classes/RTCAudioSource.mm", 97 "objc/Framework/Classes/RTCAudioSource.mm",
96 "objc/Framework/Classes/RTCAudioTrack+Private.h", 98 "objc/Framework/Classes/RTCAudioTrack+Private.h",
97 "objc/Framework/Classes/RTCAudioTrack.mm", 99 "objc/Framework/Classes/RTCAudioTrack.mm",
98 "objc/Framework/Classes/RTCConfiguration+Private.h", 100 "objc/Framework/Classes/RTCConfiguration+Private.h",
99 "objc/Framework/Classes/RTCConfiguration.mm", 101 "objc/Framework/Classes/RTCConfiguration.mm",
100 "objc/Framework/Classes/RTCDataChannel+Private.h", 102 "objc/Framework/Classes/RTCDataChannel+Private.h",
101 "objc/Framework/Classes/RTCDataChannel.mm", 103 "objc/Framework/Classes/RTCDataChannel.mm",
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 "objc/Framework/Classes/RTCShader.mm", 144 "objc/Framework/Classes/RTCShader.mm",
143 "objc/Framework/Classes/RTCVideoFrame+Private.h", 145 "objc/Framework/Classes/RTCVideoFrame+Private.h",
144 "objc/Framework/Classes/RTCVideoFrame.mm", 146 "objc/Framework/Classes/RTCVideoFrame.mm",
145 "objc/Framework/Classes/RTCVideoRendererAdapter+Private.h", 147 "objc/Framework/Classes/RTCVideoRendererAdapter+Private.h",
146 "objc/Framework/Classes/RTCVideoRendererAdapter.h", 148 "objc/Framework/Classes/RTCVideoRendererAdapter.h",
147 "objc/Framework/Classes/RTCVideoRendererAdapter.mm", 149 "objc/Framework/Classes/RTCVideoRendererAdapter.mm",
148 "objc/Framework/Classes/RTCVideoSource+Private.h", 150 "objc/Framework/Classes/RTCVideoSource+Private.h",
149 "objc/Framework/Classes/RTCVideoSource.mm", 151 "objc/Framework/Classes/RTCVideoSource.mm",
150 "objc/Framework/Classes/RTCVideoTrack+Private.h", 152 "objc/Framework/Classes/RTCVideoTrack+Private.h",
151 "objc/Framework/Classes/RTCVideoTrack.mm", 153 "objc/Framework/Classes/RTCVideoTrack.mm",
154 "objc/Framework/Classes/avfoundationformatmapper.h",
155 "objc/Framework/Classes/avfoundationformatmapper.mm",
152 "objc/Framework/Classes/avfoundationvideocapturer.h", 156 "objc/Framework/Classes/avfoundationvideocapturer.h",
153 "objc/Framework/Classes/avfoundationvideocapturer.mm", 157 "objc/Framework/Classes/avfoundationvideocapturer.mm",
154 "objc/Framework/Classes/videotoolboxvideocodecfactory.cc", 158 "objc/Framework/Classes/videotoolboxvideocodecfactory.cc",
155 "objc/Framework/Classes/videotoolboxvideocodecfactory.h", 159 "objc/Framework/Classes/videotoolboxvideocodecfactory.h",
156 "objc/Framework/Headers/WebRTC/RTCAVFoundationVideoSource.h", 160 "objc/Framework/Headers/WebRTC/RTCAVFoundationVideoSource.h",
157 "objc/Framework/Headers/WebRTC/RTCAudioSource.h", 161 "objc/Framework/Headers/WebRTC/RTCAudioSource.h",
158 "objc/Framework/Headers/WebRTC/RTCAudioTrack.h", 162 "objc/Framework/Headers/WebRTC/RTCAudioTrack.h",
159 "objc/Framework/Headers/WebRTC/RTCConfiguration.h", 163 "objc/Framework/Headers/WebRTC/RTCConfiguration.h",
160 "objc/Framework/Headers/WebRTC/RTCDataChannel.h", 164 "objc/Framework/Headers/WebRTC/RTCDataChannel.h",
161 "objc/Framework/Headers/WebRTC/RTCDataChannelConfiguration.h", 165 "objc/Framework/Headers/WebRTC/RTCDataChannelConfiguration.h",
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 deps += [ "$rtc_libyuv_dir" ] 410 deps += [ "$rtc_libyuv_dir" ]
407 public_deps = [ 411 public_deps = [
408 "$rtc_libyuv_dir", 412 "$rtc_libyuv_dir",
409 ] 413 ]
410 } else { 414 } else {
411 # Need to add a directory normally exported by libyuv. 415 # Need to add a directory normally exported by libyuv.
412 include_dirs = [ "$rtc_libyuv_dir/include" ] 416 include_dirs = [ "$rtc_libyuv_dir/include" ]
413 } 417 }
414 } 418 }
415 } 419 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698