| 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 rtc_static_library("apprtc_signaling") { | 185 rtc_static_library("apprtc_signaling") { |
| 186 testonly = true | 186 testonly = true |
| 187 sources = [ | 187 sources = [ |
| 188 "objc/AppRTCMobile/ARDAppClient+Internal.h", | 188 "objc/AppRTCMobile/ARDAppClient+Internal.h", |
| 189 "objc/AppRTCMobile/ARDAppClient.h", | 189 "objc/AppRTCMobile/ARDAppClient.h", |
| 190 "objc/AppRTCMobile/ARDAppClient.m", | 190 "objc/AppRTCMobile/ARDAppClient.m", |
| 191 "objc/AppRTCMobile/ARDAppEngineClient.h", | 191 "objc/AppRTCMobile/ARDAppEngineClient.h", |
| 192 "objc/AppRTCMobile/ARDAppEngineClient.m", | 192 "objc/AppRTCMobile/ARDAppEngineClient.m", |
| 193 "objc/AppRTCMobile/ARDBitrateTracker.h", | 193 "objc/AppRTCMobile/ARDBitrateTracker.h", |
| 194 "objc/AppRTCMobile/ARDBitrateTracker.m", | 194 "objc/AppRTCMobile/ARDBitrateTracker.m", |
| 195 "objc/AppRTCMobile/ARDCaptureController.h", |
| 196 "objc/AppRTCMobile/ARDCaptureController.m", |
| 195 "objc/AppRTCMobile/ARDJoinResponse+Internal.h", | 197 "objc/AppRTCMobile/ARDJoinResponse+Internal.h", |
| 196 "objc/AppRTCMobile/ARDJoinResponse.h", | 198 "objc/AppRTCMobile/ARDJoinResponse.h", |
| 197 "objc/AppRTCMobile/ARDJoinResponse.m", | 199 "objc/AppRTCMobile/ARDJoinResponse.m", |
| 198 "objc/AppRTCMobile/ARDMessageResponse+Internal.h", | 200 "objc/AppRTCMobile/ARDMessageResponse+Internal.h", |
| 199 "objc/AppRTCMobile/ARDMessageResponse.h", | 201 "objc/AppRTCMobile/ARDMessageResponse.h", |
| 200 "objc/AppRTCMobile/ARDMessageResponse.m", | 202 "objc/AppRTCMobile/ARDMessageResponse.m", |
| 201 "objc/AppRTCMobile/ARDRoomServerClient.h", | 203 "objc/AppRTCMobile/ARDRoomServerClient.h", |
| 202 "objc/AppRTCMobile/ARDSDPUtils.h", | 204 "objc/AppRTCMobile/ARDSDPUtils.h", |
| 203 "objc/AppRTCMobile/ARDSDPUtils.m", | 205 "objc/AppRTCMobile/ARDSDPUtils.m", |
| 204 "objc/AppRTCMobile/ARDSettingsModel+Private.h", | 206 "objc/AppRTCMobile/ARDSettingsModel+Private.h", |
| (...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 629 | 631 |
| 630 deps = [ | 632 deps = [ |
| 631 "../base:rtc_base", | 633 "../base:rtc_base", |
| 632 "../base:rtc_base_approved", | 634 "../base:rtc_base_approved", |
| 633 "../p2p:libstunprober", | 635 "../p2p:libstunprober", |
| 634 "../p2p:rtc_p2p", | 636 "../p2p:rtc_p2p", |
| 635 "../system_wrappers:field_trial_default", | 637 "../system_wrappers:field_trial_default", |
| 636 ] | 638 ] |
| 637 } | 639 } |
| 638 } | 640 } |
| OLD | NEW |