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

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

Issue 2996643002: BWE allocation strategy
Patch Set: Comments handling Created 3 years, 3 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
« no previous file with comments | « webrtc/call/call.cc ('k') | webrtc/examples/objc/AppRTCMobile/ARDAppClient.m » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 testonly = true 158 testonly = true
159 sources = [ 159 sources = [
160 "objc/AppRTCMobile/common/ARDUtilities.h", 160 "objc/AppRTCMobile/common/ARDUtilities.h",
161 "objc/AppRTCMobile/common/ARDUtilities.m", 161 "objc/AppRTCMobile/common/ARDUtilities.m",
162 ] 162 ]
163 public_configs = [ ":apprtc_common_config" ] 163 public_configs = [ ":apprtc_common_config" ]
164 164
165 if (is_ios) { 165 if (is_ios) {
166 deps = [ 166 deps = [
167 ":AppRTCMobile_ios_frameworks", 167 ":AppRTCMobile_ios_frameworks",
168 "../rtc_base:rtc_base",
168 ] 169 ]
169 } else { 170 } else {
170 deps = [ 171 deps = [
171 "../sdk:objc_common", 172 "../sdk:objc_common",
172 "../system_wrappers:field_trial_default", 173 "../system_wrappers:field_trial_default",
173 "../system_wrappers:metrics_default", 174 "../system_wrappers:metrics_default",
174 ] 175 ]
175 } 176 }
176 } 177 }
177 178
(...skipping 10 matching lines...) Expand all
188 } 189 }
189 190
190 rtc_static_library("apprtc_signaling") { 191 rtc_static_library("apprtc_signaling") {
191 testonly = true 192 testonly = true
192 sources = [ 193 sources = [
193 "objc/AppRTCMobile/ARDAppClient+Internal.h", 194 "objc/AppRTCMobile/ARDAppClient+Internal.h",
194 "objc/AppRTCMobile/ARDAppClient.h", 195 "objc/AppRTCMobile/ARDAppClient.h",
195 "objc/AppRTCMobile/ARDAppClient.m", 196 "objc/AppRTCMobile/ARDAppClient.m",
196 "objc/AppRTCMobile/ARDAppEngineClient.h", 197 "objc/AppRTCMobile/ARDAppEngineClient.h",
197 "objc/AppRTCMobile/ARDAppEngineClient.m", 198 "objc/AppRTCMobile/ARDAppEngineClient.m",
199 "objc/AppRTCMobile/ARDBitrateAllocationStrategy.h",
200 "objc/AppRTCMobile/ARDBitrateAllocationStrategy.mm",
198 "objc/AppRTCMobile/ARDBitrateTracker.h", 201 "objc/AppRTCMobile/ARDBitrateTracker.h",
199 "objc/AppRTCMobile/ARDBitrateTracker.m", 202 "objc/AppRTCMobile/ARDBitrateTracker.m",
200 "objc/AppRTCMobile/ARDCaptureController.h", 203 "objc/AppRTCMobile/ARDCaptureController.h",
201 "objc/AppRTCMobile/ARDCaptureController.m", 204 "objc/AppRTCMobile/ARDCaptureController.m",
202 "objc/AppRTCMobile/ARDJoinResponse+Internal.h", 205 "objc/AppRTCMobile/ARDJoinResponse+Internal.h",
203 "objc/AppRTCMobile/ARDJoinResponse.h", 206 "objc/AppRTCMobile/ARDJoinResponse.h",
204 "objc/AppRTCMobile/ARDJoinResponse.m", 207 "objc/AppRTCMobile/ARDJoinResponse.m",
205 "objc/AppRTCMobile/ARDMessageResponse+Internal.h", 208 "objc/AppRTCMobile/ARDMessageResponse+Internal.h",
206 "objc/AppRTCMobile/ARDMessageResponse.h", 209 "objc/AppRTCMobile/ARDMessageResponse.h",
207 "objc/AppRTCMobile/ARDMessageResponse.m", 210 "objc/AppRTCMobile/ARDMessageResponse.m",
(...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after
704 707
705 deps = [ 708 deps = [
706 "../p2p:libstunprober", 709 "../p2p:libstunprober",
707 "../p2p:rtc_p2p", 710 "../p2p:rtc_p2p",
708 "../rtc_base:rtc_base", 711 "../rtc_base:rtc_base",
709 "../rtc_base:rtc_base_approved", 712 "../rtc_base:rtc_base_approved",
710 "../system_wrappers:field_trial_default", 713 "../system_wrappers:field_trial_default",
711 ] 714 ]
712 } 715 }
713 } 716 }
OLDNEW
« no previous file with comments | « webrtc/call/call.cc ('k') | webrtc/examples/objc/AppRTCMobile/ARDAppClient.m » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698