| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 if (is_android) { | 51 if (is_android) { |
| 52 android_apk("AppRTCMobile") { | 52 android_apk("AppRTCMobile") { |
| 53 testonly = true | 53 testonly = true |
| 54 apk_name = "AppRTCMobile" | 54 apk_name = "AppRTCMobile" |
| 55 android_manifest = "androidapp/AndroidManifest.xml" | 55 android_manifest = "androidapp/AndroidManifest.xml" |
| 56 | 56 |
| 57 deps = [ | 57 deps = [ |
| 58 ":AppRTCMobile_javalib", | 58 ":AppRTCMobile_javalib", |
| 59 ":AppRTCMobile_resources", | 59 ":AppRTCMobile_resources", |
| 60 "//base:base_java", | 60 "//base:base_java", |
| 61 "//webrtc/base:base_java", | 61 "//webrtc/rtc_base:base_java", |
| 62 ] | 62 ] |
| 63 | 63 |
| 64 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] | 64 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] |
| 65 } | 65 } |
| 66 | 66 |
| 67 android_library("AppRTCMobile_javalib") { | 67 android_library("AppRTCMobile_javalib") { |
| 68 testonly = true | 68 testonly = true |
| 69 android_manifest = "androidapp/AndroidManifest.xml" | 69 android_manifest = "androidapp/AndroidManifest.xml" |
| 70 | 70 |
| 71 java_files = [ | 71 java_files = [ |
| (...skipping 15 matching lines...) Expand all Loading... |
| 87 "androidapp/src/org/appspot/apprtc/TCPChannelClient.java", | 87 "androidapp/src/org/appspot/apprtc/TCPChannelClient.java", |
| 88 "androidapp/src/org/appspot/apprtc/UnhandledExceptionHandler.java", | 88 "androidapp/src/org/appspot/apprtc/UnhandledExceptionHandler.java", |
| 89 "androidapp/src/org/appspot/apprtc/WebSocketChannelClient.java", | 89 "androidapp/src/org/appspot/apprtc/WebSocketChannelClient.java", |
| 90 "androidapp/src/org/appspot/apprtc/WebSocketRTCClient.java", | 90 "androidapp/src/org/appspot/apprtc/WebSocketRTCClient.java", |
| 91 "androidapp/src/org/appspot/apprtc/util/AppRTCUtils.java", | 91 "androidapp/src/org/appspot/apprtc/util/AppRTCUtils.java", |
| 92 "androidapp/src/org/appspot/apprtc/util/AsyncHttpURLConnection.java", | 92 "androidapp/src/org/appspot/apprtc/util/AsyncHttpURLConnection.java", |
| 93 ] | 93 ] |
| 94 | 94 |
| 95 deps = [ | 95 deps = [ |
| 96 ":AppRTCMobile_resources", | 96 ":AppRTCMobile_resources", |
| 97 "//webrtc/base:base_java", | |
| 98 "//webrtc/examples/androidapp/third_party/autobanh:autobanh_java", | 97 "//webrtc/examples/androidapp/third_party/autobanh:autobanh_java", |
| 99 "//webrtc/modules/audio_device:audio_device_java", | 98 "//webrtc/modules/audio_device:audio_device_java", |
| 99 "//webrtc/rtc_base:base_java", |
| 100 "//webrtc/sdk/android:libjingle_peerconnection_java", | 100 "//webrtc/sdk/android:libjingle_peerconnection_java", |
| 101 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", | 101 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", |
| 102 ] | 102 ] |
| 103 } | 103 } |
| 104 | 104 |
| 105 android_resources("AppRTCMobile_resources") { | 105 android_resources("AppRTCMobile_resources") { |
| 106 testonly = true | 106 testonly = true |
| 107 resource_dirs = [ "androidapp/res" ] | 107 resource_dirs = [ "androidapp/res" ] |
| 108 custom_package = "org.appspot.apprtc" | 108 custom_package = "org.appspot.apprtc" |
| 109 } | 109 } |
| (...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 | 662 |
| 663 deps = [ | 663 deps = [ |
| 664 "../base:rtc_base", | 664 "../base:rtc_base", |
| 665 "../base:rtc_base_approved", | 665 "../base:rtc_base_approved", |
| 666 "../p2p:libstunprober", | 666 "../p2p:libstunprober", |
| 667 "../p2p:rtc_p2p", | 667 "../p2p:rtc_p2p", |
| 668 "../system_wrappers:field_trial_default", | 668 "../system_wrappers:field_trial_default", |
| 669 ] | 669 ] |
| 670 } | 670 } |
| 671 } | 671 } |
| OLD | NEW |