| 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("../webrtc.gni") | 9 import("../webrtc.gni") | 
| 10 if (is_android) { | 10 if (is_android) { | 
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 232     ] | 232     ] | 
| 233     public_configs = [ ":apprtc_signaling_config" ] | 233     public_configs = [ ":apprtc_signaling_config" ] | 
| 234     deps = [ | 234     deps = [ | 
| 235       ":apprtc_common", | 235       ":apprtc_common", | 
| 236       ":socketrocket", | 236       ":socketrocket", | 
| 237     ] | 237     ] | 
| 238     if (is_ios) { | 238     if (is_ios) { | 
| 239       deps += [ ":AppRTCMobile_ios_frameworks" ] | 239       deps += [ ":AppRTCMobile_ios_frameworks" ] | 
| 240     } else { | 240     } else { | 
| 241       public_deps = [ | 241       public_deps = [ | 
| 242         "../sdk:objc_peerconnection", | 242         "../sdk:objc_peerconnectionfactory", | 
|  | 243         "../sdk:objc_videocapture", | 
| 243       ] | 244       ] | 
| 244     } | 245     } | 
| 245     libs = [ "QuartzCore.framework" ] | 246     libs = [ "QuartzCore.framework" ] | 
| 246   } | 247   } | 
| 247 | 248 | 
| 248   if (is_ios) { | 249   if (is_ios) { | 
| 249     rtc_static_library("AppRTCMobile_lib") { | 250     rtc_static_library("AppRTCMobile_lib") { | 
| 250       testonly = true | 251       testonly = true | 
| 251       sources = [ | 252       sources = [ | 
| 252         "objc/AppRTCMobile/ios/ARDAppDelegate.m", | 253         "objc/AppRTCMobile/ios/ARDAppDelegate.m", | 
| (...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 661 | 662 | 
| 662     deps = [ | 663     deps = [ | 
| 663       "../p2p:libstunprober", | 664       "../p2p:libstunprober", | 
| 664       "../p2p:rtc_p2p", | 665       "../p2p:rtc_p2p", | 
| 665       "../rtc_base:rtc_base", | 666       "../rtc_base:rtc_base", | 
| 666       "../rtc_base:rtc_base_approved", | 667       "../rtc_base:rtc_base_approved", | 
| 667       "../system_wrappers:field_trial_default", | 668       "../system_wrappers:field_trial_default", | 
| 668     ] | 669     ] | 
| 669   } | 670   } | 
| 670 } | 671 } | 
| OLD | NEW | 
|---|