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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 ":AppRTCMobile_javalib", | 57 ":AppRTCMobile_javalib", |
58 ":AppRTCMobile_resources", | 58 ":AppRTCMobile_resources", |
59 "//base:base_java", | 59 "//base:base_java", |
60 "//webrtc/base:base_java", | 60 "//webrtc/base:base_java", |
61 ] | 61 ] |
62 | 62 |
63 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] | 63 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] |
64 } | 64 } |
65 | 65 |
66 android_library("AppRTCMobile_javalib") { | 66 android_library("AppRTCMobile_javalib") { |
| 67 android_manifest = "androidapp/AndroidManifest.xml" |
| 68 |
67 java_files = [ | 69 java_files = [ |
68 "androidapp/src/org/appspot/apprtc/AppRTCAudioManager.java", | 70 "androidapp/src/org/appspot/apprtc/AppRTCAudioManager.java", |
69 "androidapp/src/org/appspot/apprtc/AppRTCBluetoothManager.java", | 71 "androidapp/src/org/appspot/apprtc/AppRTCBluetoothManager.java", |
70 "androidapp/src/org/appspot/apprtc/AppRTCClient.java", | 72 "androidapp/src/org/appspot/apprtc/AppRTCClient.java", |
71 "androidapp/src/org/appspot/apprtc/AppRTCProximitySensor.java", | 73 "androidapp/src/org/appspot/apprtc/AppRTCProximitySensor.java", |
72 "androidapp/src/org/appspot/apprtc/CallActivity.java", | 74 "androidapp/src/org/appspot/apprtc/CallActivity.java", |
73 "androidapp/src/org/appspot/apprtc/CallFragment.java", | 75 "androidapp/src/org/appspot/apprtc/CallFragment.java", |
74 "androidapp/src/org/appspot/apprtc/CaptureQualityController.java", | 76 "androidapp/src/org/appspot/apprtc/CaptureQualityController.java", |
75 "androidapp/src/org/appspot/apprtc/ConnectActivity.java", | 77 "androidapp/src/org/appspot/apprtc/ConnectActivity.java", |
76 "androidapp/src/org/appspot/apprtc/CpuMonitor.java", | 78 "androidapp/src/org/appspot/apprtc/CpuMonitor.java", |
77 "androidapp/src/org/appspot/apprtc/DirectRTCClient.java", | 79 "androidapp/src/org/appspot/apprtc/DirectRTCClient.java", |
78 "androidapp/src/org/appspot/apprtc/HudFragment.java", | 80 "androidapp/src/org/appspot/apprtc/HudFragment.java", |
79 "androidapp/src/org/appspot/apprtc/PeerConnectionClient.java", | 81 "androidapp/src/org/appspot/apprtc/PeerConnectionClient.java", |
80 "androidapp/src/org/appspot/apprtc/PercentFrameLayout.java", | |
81 "androidapp/src/org/appspot/apprtc/RoomParametersFetcher.java", | 82 "androidapp/src/org/appspot/apprtc/RoomParametersFetcher.java", |
82 "androidapp/src/org/appspot/apprtc/SettingsActivity.java", | 83 "androidapp/src/org/appspot/apprtc/SettingsActivity.java", |
83 "androidapp/src/org/appspot/apprtc/SettingsFragment.java", | 84 "androidapp/src/org/appspot/apprtc/SettingsFragment.java", |
84 "androidapp/src/org/appspot/apprtc/TCPChannelClient.java", | 85 "androidapp/src/org/appspot/apprtc/TCPChannelClient.java", |
85 "androidapp/src/org/appspot/apprtc/UnhandledExceptionHandler.java", | 86 "androidapp/src/org/appspot/apprtc/UnhandledExceptionHandler.java", |
86 "androidapp/src/org/appspot/apprtc/WebSocketChannelClient.java", | 87 "androidapp/src/org/appspot/apprtc/WebSocketChannelClient.java", |
87 "androidapp/src/org/appspot/apprtc/WebSocketRTCClient.java", | 88 "androidapp/src/org/appspot/apprtc/WebSocketRTCClient.java", |
88 "androidapp/src/org/appspot/apprtc/util/AppRTCUtils.java", | 89 "androidapp/src/org/appspot/apprtc/util/AppRTCUtils.java", |
89 "androidapp/src/org/appspot/apprtc/util/AsyncHttpURLConnection.java", | 90 "androidapp/src/org/appspot/apprtc/util/AsyncHttpURLConnection.java", |
90 ] | 91 ] |
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
622 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 623 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
623 } | 624 } |
624 | 625 |
625 deps = [ | 626 deps = [ |
626 "../p2p:libstunprober", | 627 "../p2p:libstunprober", |
627 "../p2p:rtc_p2p", | 628 "../p2p:rtc_p2p", |
628 "../system_wrappers:field_trial_default", | 629 "../system_wrappers:field_trial_default", |
629 ] | 630 ] |
630 } | 631 } |
631 } | 632 } |
OLD | NEW |