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

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

Issue 2488973002: Split avfoundationcapturer classes in separate files. (Closed)
Patch Set: Fix comments. 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/RTCAVFoundationFormatMapper.h",
93 "objc/Framework/Classes/RTCAVFoundationFormatMapper.mm",
94 "objc/Framework/Classes/RTCAVFoundationVideoCapturerInternal.h",
95 "objc/Framework/Classes/RTCAVFoundationVideoCapturerInternal.mm",
92 "objc/Framework/Classes/RTCAVFoundationVideoSource+Private.h", 96 "objc/Framework/Classes/RTCAVFoundationVideoSource+Private.h",
93 "objc/Framework/Classes/RTCAVFoundationVideoSource.mm", 97 "objc/Framework/Classes/RTCAVFoundationVideoSource.mm",
94 "objc/Framework/Classes/RTCAudioSource+Private.h", 98 "objc/Framework/Classes/RTCAudioSource+Private.h",
95 "objc/Framework/Classes/RTCAudioSource.mm", 99 "objc/Framework/Classes/RTCAudioSource.mm",
96 "objc/Framework/Classes/RTCAudioTrack+Private.h", 100 "objc/Framework/Classes/RTCAudioTrack+Private.h",
97 "objc/Framework/Classes/RTCAudioTrack.mm", 101 "objc/Framework/Classes/RTCAudioTrack.mm",
98 "objc/Framework/Classes/RTCConfiguration+Private.h", 102 "objc/Framework/Classes/RTCConfiguration+Private.h",
99 "objc/Framework/Classes/RTCConfiguration.mm", 103 "objc/Framework/Classes/RTCConfiguration.mm",
100 "objc/Framework/Classes/RTCDataChannel+Private.h", 104 "objc/Framework/Classes/RTCDataChannel+Private.h",
101 "objc/Framework/Classes/RTCDataChannel.mm", 105 "objc/Framework/Classes/RTCDataChannel.mm",
(...skipping 304 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