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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 } | 220 } |
221 | 221 |
222 if (is_ios) { | 222 if (is_ios) { |
223 ios_app_bundle("AppRTCMobile") { | 223 ios_app_bundle("AppRTCMobile") { |
224 sources = [ | 224 sources = [ |
225 "objc/AppRTCMobile/ios/ARDAppDelegate.m", | 225 "objc/AppRTCMobile/ios/ARDAppDelegate.m", |
226 "objc/AppRTCMobile/ios/ARDMainView.h", | 226 "objc/AppRTCMobile/ios/ARDMainView.h", |
227 "objc/AppRTCMobile/ios/ARDMainView.m", | 227 "objc/AppRTCMobile/ios/ARDMainView.m", |
228 "objc/AppRTCMobile/ios/ARDMainViewController.h", | 228 "objc/AppRTCMobile/ios/ARDMainViewController.h", |
229 "objc/AppRTCMobile/ios/ARDMainViewController.m", | 229 "objc/AppRTCMobile/ios/ARDMainViewController.m", |
| 230 "objc/AppRTCMobile/ios/ARDMediaConstraintsModel.h", |
| 231 "objc/AppRTCMobile/ios/ARDMediaConstraintsModel.m", |
| 232 "objc/AppRTCMobile/ios/ARDMediaConstraintsSettingsStore.h", |
| 233 "objc/AppRTCMobile/ios/ARDMediaConstraintsSettingsStore.m", |
| 234 "objc/AppRTCMobile/ios/ARDSettingsViewController.h", |
| 235 "objc/AppRTCMobile/ios/ARDSettingsViewController.m", |
230 "objc/AppRTCMobile/ios/ARDStatsView.h", | 236 "objc/AppRTCMobile/ios/ARDStatsView.h", |
231 "objc/AppRTCMobile/ios/ARDStatsView.m", | 237 "objc/AppRTCMobile/ios/ARDStatsView.m", |
232 "objc/AppRTCMobile/ios/ARDVideoCallView.h", | 238 "objc/AppRTCMobile/ios/ARDVideoCallView.h", |
233 "objc/AppRTCMobile/ios/ARDVideoCallView.m", | 239 "objc/AppRTCMobile/ios/ARDVideoCallView.m", |
234 "objc/AppRTCMobile/ios/ARDVideoCallViewController.h", | 240 "objc/AppRTCMobile/ios/ARDVideoCallViewController.h", |
235 "objc/AppRTCMobile/ios/ARDVideoCallViewController.m", | 241 "objc/AppRTCMobile/ios/ARDVideoCallViewController.m", |
236 "objc/AppRTCMobile/ios/AppRTCMobile-Prefix.pch", | 242 "objc/AppRTCMobile/ios/AppRTCMobile-Prefix.pch", |
237 "objc/AppRTCMobile/ios/UIImage+ARDUtilities.h", | 243 "objc/AppRTCMobile/ios/UIImage+ARDUtilities.h", |
238 "objc/AppRTCMobile/ios/UIImage+ARDUtilities.m", | 244 "objc/AppRTCMobile/ios/UIImage+ARDUtilities.m", |
239 "objc/AppRTCMobile/ios/main.m", | 245 "objc/AppRTCMobile/ios/main.m", |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
522 "//webrtc/pc:rtc_pc", | 528 "//webrtc/pc:rtc_pc", |
523 "//webrtc/system_wrappers:field_trial_default", | 529 "//webrtc/system_wrappers:field_trial_default", |
524 "//webrtc/system_wrappers:metrics_default", | 530 "//webrtc/system_wrappers:metrics_default", |
525 ] | 531 ] |
526 if (!build_with_chromium && is_clang) { | 532 if (!build_with_chromium && is_clang) { |
527 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 533 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
528 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 534 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
529 } | 535 } |
530 } | 536 } |
531 } | 537 } |
OLD | NEW |