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

Side by Side Diff: webrtc/examples/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 (c) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 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_android) { 10 if (is_android) {
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 } 186 }
187 187
188 rtc_static_library("apprtc_signaling") { 188 rtc_static_library("apprtc_signaling") {
189 testonly = true 189 testonly = true
190 sources = [ 190 sources = [
191 "objc/AppRTCMobile/ARDAppClient+Internal.h", 191 "objc/AppRTCMobile/ARDAppClient+Internal.h",
192 "objc/AppRTCMobile/ARDAppClient.h", 192 "objc/AppRTCMobile/ARDAppClient.h",
193 "objc/AppRTCMobile/ARDAppClient.m", 193 "objc/AppRTCMobile/ARDAppClient.m",
194 "objc/AppRTCMobile/ARDAppEngineClient.h", 194 "objc/AppRTCMobile/ARDAppEngineClient.h",
195 "objc/AppRTCMobile/ARDAppEngineClient.m", 195 "objc/AppRTCMobile/ARDAppEngineClient.m",
196 "objc/AppRTCMobile/ARDBitrateAllocationStrategy.h",
197 "objc/AppRTCMobile/ARDBitrateAllocationStrategy.mm",
196 "objc/AppRTCMobile/ARDBitrateTracker.h", 198 "objc/AppRTCMobile/ARDBitrateTracker.h",
197 "objc/AppRTCMobile/ARDBitrateTracker.m", 199 "objc/AppRTCMobile/ARDBitrateTracker.m",
198 "objc/AppRTCMobile/ARDCaptureController.h", 200 "objc/AppRTCMobile/ARDCaptureController.h",
199 "objc/AppRTCMobile/ARDCaptureController.m", 201 "objc/AppRTCMobile/ARDCaptureController.m",
200 "objc/AppRTCMobile/ARDJoinResponse+Internal.h", 202 "objc/AppRTCMobile/ARDJoinResponse+Internal.h",
201 "objc/AppRTCMobile/ARDJoinResponse.h", 203 "objc/AppRTCMobile/ARDJoinResponse.h",
202 "objc/AppRTCMobile/ARDJoinResponse.m", 204 "objc/AppRTCMobile/ARDJoinResponse.m",
203 "objc/AppRTCMobile/ARDMessageResponse+Internal.h", 205 "objc/AppRTCMobile/ARDMessageResponse+Internal.h",
204 "objc/AppRTCMobile/ARDMessageResponse.h", 206 "objc/AppRTCMobile/ARDMessageResponse.h",
205 "objc/AppRTCMobile/ARDMessageResponse.m", 207 "objc/AppRTCMobile/ARDMessageResponse.m",
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after
666 668
667 deps = [ 669 deps = [
668 "../base:rtc_base", 670 "../base:rtc_base",
669 "../base:rtc_base_approved", 671 "../base:rtc_base_approved",
670 "../p2p:libstunprober", 672 "../p2p:libstunprober",
671 "../p2p:rtc_p2p", 673 "../p2p:rtc_p2p",
672 "../system_wrappers:field_trial_default", 674 "../system_wrappers:field_trial_default",
673 ] 675 ]
674 } 676 }
675 } 677 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698