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

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

Issue 2996643002: BWE allocation strategy
Patch Set: BWE allocation strategy 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 } 218 }
219 219
220 rtc_static_library("objc_peerconnection") { 220 rtc_static_library("objc_peerconnection") {
221 sources = [ 221 sources = [
222 "objc/Framework/Classes/PeerConnection/RTCAVFoundationVideoSource+Privat e.h", 222 "objc/Framework/Classes/PeerConnection/RTCAVFoundationVideoSource+Privat e.h",
223 "objc/Framework/Classes/PeerConnection/RTCAVFoundationVideoSource.mm", 223 "objc/Framework/Classes/PeerConnection/RTCAVFoundationVideoSource.mm",
224 "objc/Framework/Classes/PeerConnection/RTCAudioSource+Private.h", 224 "objc/Framework/Classes/PeerConnection/RTCAudioSource+Private.h",
225 "objc/Framework/Classes/PeerConnection/RTCAudioSource.mm", 225 "objc/Framework/Classes/PeerConnection/RTCAudioSource.mm",
226 "objc/Framework/Classes/PeerConnection/RTCAudioTrack+Private.h", 226 "objc/Framework/Classes/PeerConnection/RTCAudioTrack+Private.h",
227 "objc/Framework/Classes/PeerConnection/RTCAudioTrack.mm", 227 "objc/Framework/Classes/PeerConnection/RTCAudioTrack.mm",
228 "objc/Framework/Classes/PeerConnection/RTCBitrateAllocationStrategy.mm",
228 "objc/Framework/Classes/PeerConnection/RTCCameraVideoCapturer.m", 229 "objc/Framework/Classes/PeerConnection/RTCCameraVideoCapturer.m",
229 "objc/Framework/Classes/PeerConnection/RTCConfiguration+Private.h", 230 "objc/Framework/Classes/PeerConnection/RTCConfiguration+Private.h",
230 "objc/Framework/Classes/PeerConnection/RTCConfiguration.mm", 231 "objc/Framework/Classes/PeerConnection/RTCConfiguration.mm",
231 "objc/Framework/Classes/PeerConnection/RTCDataChannel+Private.h", 232 "objc/Framework/Classes/PeerConnection/RTCDataChannel+Private.h",
232 "objc/Framework/Classes/PeerConnection/RTCDataChannel.mm", 233 "objc/Framework/Classes/PeerConnection/RTCDataChannel.mm",
233 "objc/Framework/Classes/PeerConnection/RTCDataChannelConfiguration+Priva te.h", 234 "objc/Framework/Classes/PeerConnection/RTCDataChannelConfiguration+Priva te.h",
234 "objc/Framework/Classes/PeerConnection/RTCDataChannelConfiguration.mm", 235 "objc/Framework/Classes/PeerConnection/RTCDataChannelConfiguration.mm",
235 "objc/Framework/Classes/PeerConnection/RTCIceCandidate+Private.h", 236 "objc/Framework/Classes/PeerConnection/RTCIceCandidate+Private.h",
236 "objc/Framework/Classes/PeerConnection/RTCIceCandidate.mm", 237 "objc/Framework/Classes/PeerConnection/RTCIceCandidate.mm",
237 "objc/Framework/Classes/PeerConnection/RTCIceServer+Private.h", 238 "objc/Framework/Classes/PeerConnection/RTCIceServer+Private.h",
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 "objc/Framework/Classes/PeerConnection/RTCVideoRendererAdapter+Private.h ", 276 "objc/Framework/Classes/PeerConnection/RTCVideoRendererAdapter+Private.h ",
276 "objc/Framework/Classes/PeerConnection/RTCVideoRendererAdapter.h", 277 "objc/Framework/Classes/PeerConnection/RTCVideoRendererAdapter.h",
277 "objc/Framework/Classes/PeerConnection/RTCVideoRendererAdapter.mm", 278 "objc/Framework/Classes/PeerConnection/RTCVideoRendererAdapter.mm",
278 "objc/Framework/Classes/PeerConnection/RTCVideoSource+Private.h", 279 "objc/Framework/Classes/PeerConnection/RTCVideoSource+Private.h",
279 "objc/Framework/Classes/PeerConnection/RTCVideoSource.mm", 280 "objc/Framework/Classes/PeerConnection/RTCVideoSource.mm",
280 "objc/Framework/Classes/PeerConnection/RTCVideoTrack+Private.h", 281 "objc/Framework/Classes/PeerConnection/RTCVideoTrack+Private.h",
281 "objc/Framework/Classes/PeerConnection/RTCVideoTrack.mm", 282 "objc/Framework/Classes/PeerConnection/RTCVideoTrack.mm",
282 "objc/Framework/Headers/WebRTC/RTCAVFoundationVideoSource.h", 283 "objc/Framework/Headers/WebRTC/RTCAVFoundationVideoSource.h",
283 "objc/Framework/Headers/WebRTC/RTCAudioSource.h", 284 "objc/Framework/Headers/WebRTC/RTCAudioSource.h",
284 "objc/Framework/Headers/WebRTC/RTCAudioTrack.h", 285 "objc/Framework/Headers/WebRTC/RTCAudioTrack.h",
286 "objc/Framework/Headers/WebRTC/RTCBitrateAllocationStrategy.h",
285 "objc/Framework/Headers/WebRTC/RTCCameraVideoCapturer.h", 287 "objc/Framework/Headers/WebRTC/RTCCameraVideoCapturer.h",
286 "objc/Framework/Headers/WebRTC/RTCConfiguration.h", 288 "objc/Framework/Headers/WebRTC/RTCConfiguration.h",
287 "objc/Framework/Headers/WebRTC/RTCDataChannel.h", 289 "objc/Framework/Headers/WebRTC/RTCDataChannel.h",
288 "objc/Framework/Headers/WebRTC/RTCDataChannelConfiguration.h", 290 "objc/Framework/Headers/WebRTC/RTCDataChannelConfiguration.h",
289 "objc/Framework/Headers/WebRTC/RTCIceCandidate.h", 291 "objc/Framework/Headers/WebRTC/RTCIceCandidate.h",
290 "objc/Framework/Headers/WebRTC/RTCIceServer.h", 292 "objc/Framework/Headers/WebRTC/RTCIceServer.h",
291 "objc/Framework/Headers/WebRTC/RTCLegacyStatsReport.h", 293 "objc/Framework/Headers/WebRTC/RTCLegacyStatsReport.h",
292 "objc/Framework/Headers/WebRTC/RTCMediaConstraints.h", 294 "objc/Framework/Headers/WebRTC/RTCMediaConstraints.h",
293 "objc/Framework/Headers/WebRTC/RTCMediaSource.h", 295 "objc/Framework/Headers/WebRTC/RTCMediaSource.h",
294 "objc/Framework/Headers/WebRTC/RTCMediaStream.h", 296 "objc/Framework/Headers/WebRTC/RTCMediaStream.h",
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 public_deps = [ 581 public_deps = [
580 "$rtc_libyuv_dir", 582 "$rtc_libyuv_dir",
581 ] 583 ]
582 } else { 584 } else {
583 # Need to add a directory normally exported by libyuv. 585 # Need to add a directory normally exported by libyuv.
584 include_dirs = [ "$rtc_libyuv_dir/include" ] 586 include_dirs = [ "$rtc_libyuv_dir/include" ]
585 } 587 }
586 } 588 }
587 } 589 }
588 } 590 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698