| OLD | NEW |
| 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("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 } | 234 } |
| 235 | 235 |
| 236 if (is_ios) { | 236 if (is_ios) { |
| 237 ios_app_bundle("AppRTCMobile") { | 237 ios_app_bundle("AppRTCMobile") { |
| 238 sources = [ | 238 sources = [ |
| 239 "objc/AppRTCMobile/ios/ARDAppDelegate.m", | 239 "objc/AppRTCMobile/ios/ARDAppDelegate.m", |
| 240 "objc/AppRTCMobile/ios/ARDMainView.h", | 240 "objc/AppRTCMobile/ios/ARDMainView.h", |
| 241 "objc/AppRTCMobile/ios/ARDMainView.m", | 241 "objc/AppRTCMobile/ios/ARDMainView.m", |
| 242 "objc/AppRTCMobile/ios/ARDMainViewController.h", | 242 "objc/AppRTCMobile/ios/ARDMainViewController.h", |
| 243 "objc/AppRTCMobile/ios/ARDMainViewController.m", | 243 "objc/AppRTCMobile/ios/ARDMainViewController.m", |
| 244 "objc/AppRTCMobile/ios/ARDMediaConstraintsModel.h", | 244 "objc/AppRTCMobile/ios/ARDSettingsModel+Private.h", |
| 245 "objc/AppRTCMobile/ios/ARDMediaConstraintsModel.m", | 245 "objc/AppRTCMobile/ios/ARDSettingsModel.h", |
| 246 "objc/AppRTCMobile/ios/ARDMediaConstraintsSettingsStore.h", | 246 "objc/AppRTCMobile/ios/ARDSettingsModel.m", |
| 247 "objc/AppRTCMobile/ios/ARDMediaConstraintsSettingsStore.m", | 247 "objc/AppRTCMobile/ios/ARDSettingsStore.h", |
| 248 "objc/AppRTCMobile/ios/ARDSettingsStore.m", |
| 248 "objc/AppRTCMobile/ios/ARDSettingsViewController.h", | 249 "objc/AppRTCMobile/ios/ARDSettingsViewController.h", |
| 249 "objc/AppRTCMobile/ios/ARDSettingsViewController.m", | 250 "objc/AppRTCMobile/ios/ARDSettingsViewController.m", |
| 250 "objc/AppRTCMobile/ios/ARDStatsView.h", | 251 "objc/AppRTCMobile/ios/ARDStatsView.h", |
| 251 "objc/AppRTCMobile/ios/ARDStatsView.m", | 252 "objc/AppRTCMobile/ios/ARDStatsView.m", |
| 252 "objc/AppRTCMobile/ios/ARDVideoCallView.h", | 253 "objc/AppRTCMobile/ios/ARDVideoCallView.h", |
| 253 "objc/AppRTCMobile/ios/ARDVideoCallView.m", | 254 "objc/AppRTCMobile/ios/ARDVideoCallView.m", |
| 254 "objc/AppRTCMobile/ios/ARDVideoCallViewController.h", | 255 "objc/AppRTCMobile/ios/ARDVideoCallViewController.h", |
| 255 "objc/AppRTCMobile/ios/ARDVideoCallViewController.m", | 256 "objc/AppRTCMobile/ios/ARDVideoCallViewController.m", |
| 256 "objc/AppRTCMobile/ios/AppRTCMobile-Prefix.pch", | 257 "objc/AppRTCMobile/ios/AppRTCMobile-Prefix.pch", |
| 257 "objc/AppRTCMobile/ios/UIImage+ARDUtilities.h", | 258 "objc/AppRTCMobile/ios/UIImage+ARDUtilities.h", |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 590 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 591 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 591 } | 592 } |
| 592 | 593 |
| 593 deps = [ | 594 deps = [ |
| 594 "../p2p:libstunprober", | 595 "../p2p:libstunprober", |
| 595 "../p2p:rtc_p2p", | 596 "../p2p:rtc_p2p", |
| 596 "../system_wrappers:field_trial_default", | 597 "../system_wrappers:field_trial_default", |
| 597 ] | 598 ] |
| 598 } | 599 } |
| 599 } | 600 } |
| OLD | NEW |