OLD | NEW |
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 sources = [ | 217 sources = [ |
218 "android/jni/jni_onload.cc", | 218 "android/jni/jni_onload.cc", |
219 ] | 219 ] |
220 | 220 |
221 configs -= [ "//build/config/android:hide_native_jni_exports" ] | 221 configs -= [ "//build/config/android:hide_native_jni_exports" ] |
222 | 222 |
223 deps = [ | 223 deps = [ |
224 ":libjingle_peerconnection", | 224 ":libjingle_peerconnection", |
225 ":libjingle_peerconnection_jni", | 225 ":libjingle_peerconnection_jni", |
226 ] | 226 ] |
| 227 output_extension = "so" |
227 } | 228 } |
228 | 229 |
229 android_library("libjingle_peerconnection_java") { | 230 android_library("libjingle_peerconnection_java") { |
230 java_files = [ | 231 java_files = [ |
231 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/BuildInfo
.java", | 232 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/BuildInfo
.java", |
232 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud
ioEffects.java", | 233 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud
ioEffects.java", |
233 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud
ioManager.java", | 234 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud
ioManager.java", |
234 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud
ioRecord.java", | 235 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud
ioRecord.java", |
235 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud
ioTrack.java", | 236 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud
ioTrack.java", |
236 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud
ioUtils.java", | 237 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud
ioUtils.java", |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 | 436 |
436 shared_libraries = [ ":libjingle_peerconnection_so" ] | 437 shared_libraries = [ ":libjingle_peerconnection_so" ] |
437 } | 438 } |
438 | 439 |
439 android_resources("libjingle_peerconnection_android_unittest_resources") { | 440 android_resources("libjingle_peerconnection_android_unittest_resources") { |
440 resource_dirs = [ "androidtests/res" ] | 441 resource_dirs = [ "androidtests/res" ] |
441 custom_package = "org.webrtc" | 442 custom_package = "org.webrtc" |
442 } | 443 } |
443 } | 444 } |
444 } | 445 } |
OLD | NEW |