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

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

Issue 2770113004: Pass settings model to ARDAppClient instead of individual settings. (Closed)
Patch Set: Fix test. Created 3 years, 8 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 | « no previous file | webrtc/examples/objc/AppRTCMobile/ARDAppClient.h » ('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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 "objc/AppRTCMobile/ARDBitrateTracker.m", 214 "objc/AppRTCMobile/ARDBitrateTracker.m",
215 "objc/AppRTCMobile/ARDJoinResponse+Internal.h", 215 "objc/AppRTCMobile/ARDJoinResponse+Internal.h",
216 "objc/AppRTCMobile/ARDJoinResponse.h", 216 "objc/AppRTCMobile/ARDJoinResponse.h",
217 "objc/AppRTCMobile/ARDJoinResponse.m", 217 "objc/AppRTCMobile/ARDJoinResponse.m",
218 "objc/AppRTCMobile/ARDMessageResponse+Internal.h", 218 "objc/AppRTCMobile/ARDMessageResponse+Internal.h",
219 "objc/AppRTCMobile/ARDMessageResponse.h", 219 "objc/AppRTCMobile/ARDMessageResponse.h",
220 "objc/AppRTCMobile/ARDMessageResponse.m", 220 "objc/AppRTCMobile/ARDMessageResponse.m",
221 "objc/AppRTCMobile/ARDRoomServerClient.h", 221 "objc/AppRTCMobile/ARDRoomServerClient.h",
222 "objc/AppRTCMobile/ARDSDPUtils.h", 222 "objc/AppRTCMobile/ARDSDPUtils.h",
223 "objc/AppRTCMobile/ARDSDPUtils.m", 223 "objc/AppRTCMobile/ARDSDPUtils.m",
224 "objc/AppRTCMobile/ARDSettingsModel+Private.h",
225 "objc/AppRTCMobile/ARDSettingsModel.h",
226 "objc/AppRTCMobile/ARDSettingsModel.m",
227 "objc/AppRTCMobile/ARDSettingsStore.h",
228 "objc/AppRTCMobile/ARDSettingsStore.m",
224 "objc/AppRTCMobile/ARDSignalingChannel.h", 229 "objc/AppRTCMobile/ARDSignalingChannel.h",
225 "objc/AppRTCMobile/ARDSignalingMessage.h", 230 "objc/AppRTCMobile/ARDSignalingMessage.h",
226 "objc/AppRTCMobile/ARDSignalingMessage.m", 231 "objc/AppRTCMobile/ARDSignalingMessage.m",
227 "objc/AppRTCMobile/ARDStatsBuilder.h", 232 "objc/AppRTCMobile/ARDStatsBuilder.h",
228 "objc/AppRTCMobile/ARDStatsBuilder.m", 233 "objc/AppRTCMobile/ARDStatsBuilder.m",
229 "objc/AppRTCMobile/ARDTURNClient+Internal.h", 234 "objc/AppRTCMobile/ARDTURNClient+Internal.h",
230 "objc/AppRTCMobile/ARDTURNClient.h", 235 "objc/AppRTCMobile/ARDTURNClient.h",
231 "objc/AppRTCMobile/ARDTURNClient.m", 236 "objc/AppRTCMobile/ARDTURNClient.m",
232 "objc/AppRTCMobile/ARDWebSocketChannel.h", 237 "objc/AppRTCMobile/ARDWebSocketChannel.h",
233 "objc/AppRTCMobile/ARDWebSocketChannel.m", 238 "objc/AppRTCMobile/ARDWebSocketChannel.m",
(...skipping 23 matching lines...) Expand all
257 262
258 if (is_ios) { 263 if (is_ios) {
259 rtc_static_library("AppRTCMobile_lib") { 264 rtc_static_library("AppRTCMobile_lib") {
260 testonly = true 265 testonly = true
261 sources = [ 266 sources = [
262 "objc/AppRTCMobile/ios/ARDAppDelegate.m", 267 "objc/AppRTCMobile/ios/ARDAppDelegate.m",
263 "objc/AppRTCMobile/ios/ARDMainView.h", 268 "objc/AppRTCMobile/ios/ARDMainView.h",
264 "objc/AppRTCMobile/ios/ARDMainView.m", 269 "objc/AppRTCMobile/ios/ARDMainView.m",
265 "objc/AppRTCMobile/ios/ARDMainViewController.h", 270 "objc/AppRTCMobile/ios/ARDMainViewController.h",
266 "objc/AppRTCMobile/ios/ARDMainViewController.m", 271 "objc/AppRTCMobile/ios/ARDMainViewController.m",
267 "objc/AppRTCMobile/ios/ARDSettingsModel+Private.h",
268 "objc/AppRTCMobile/ios/ARDSettingsModel.h",
269 "objc/AppRTCMobile/ios/ARDSettingsModel.m",
270 "objc/AppRTCMobile/ios/ARDSettingsStore.h",
271 "objc/AppRTCMobile/ios/ARDSettingsStore.m",
272 "objc/AppRTCMobile/ios/ARDSettingsViewController.h", 272 "objc/AppRTCMobile/ios/ARDSettingsViewController.h",
273 "objc/AppRTCMobile/ios/ARDSettingsViewController.m", 273 "objc/AppRTCMobile/ios/ARDSettingsViewController.m",
274 "objc/AppRTCMobile/ios/ARDStatsView.h", 274 "objc/AppRTCMobile/ios/ARDStatsView.h",
275 "objc/AppRTCMobile/ios/ARDStatsView.m", 275 "objc/AppRTCMobile/ios/ARDStatsView.m",
276 "objc/AppRTCMobile/ios/ARDVideoCallView.h", 276 "objc/AppRTCMobile/ios/ARDVideoCallView.h",
277 "objc/AppRTCMobile/ios/ARDVideoCallView.m", 277 "objc/AppRTCMobile/ios/ARDVideoCallView.m",
278 "objc/AppRTCMobile/ios/ARDVideoCallViewController.h", 278 "objc/AppRTCMobile/ios/ARDVideoCallViewController.h",
279 "objc/AppRTCMobile/ios/ARDVideoCallViewController.m", 279 "objc/AppRTCMobile/ios/ARDVideoCallViewController.m",
280 "objc/AppRTCMobile/ios/AppRTCMobile-Prefix.pch", 280 "objc/AppRTCMobile/ios/AppRTCMobile-Prefix.pch",
281 "objc/AppRTCMobile/ios/UIImage+ARDUtilities.h", 281 "objc/AppRTCMobile/ios/UIImage+ARDUtilities.h",
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 655
656 deps = [ 656 deps = [
657 "../base:rtc_base", 657 "../base:rtc_base",
658 "../base:rtc_base_approved", 658 "../base:rtc_base_approved",
659 "../p2p:libstunprober", 659 "../p2p:libstunprober",
660 "../p2p:rtc_p2p", 660 "../p2p:rtc_p2p",
661 "../system_wrappers:field_trial_default", 661 "../system_wrappers:field_trial_default",
662 ] 662 ]
663 } 663 }
664 } 664 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/examples/objc/AppRTCMobile/ARDAppClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698