OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 | 10 |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 "../../test:test_main", | 295 "../../test:test_main", |
296 "../../test:test_support", | 296 "../../test:test_support", |
297 "../rtp_rtcp", | 297 "../rtp_rtcp", |
298 "../utility", | 298 "../utility", |
299 "//testing/gtest", | 299 "//testing/gtest", |
300 ] | 300 ] |
301 public_configs = [ ":audio_device_config" ] | 301 public_configs = [ ":audio_device_config" ] |
302 } | 302 } |
303 } | 303 } |
304 | 304 |
305 if (!build_with_chromium && is_android) { | 305 if (is_android) { |
306 android_shared_srcjar("audio_device_java") { | 306 android_library("audio_device_java") { |
307 sources = [ | 307 java_files = [ |
308 "android/java/src/org/webrtc/voiceengine/BuildInfo.java", | 308 "android/java/src/org/webrtc/voiceengine/BuildInfo.java", |
309 "android/java/src/org/webrtc/voiceengine/WebRtcAudioEffects.java", | 309 "android/java/src/org/webrtc/voiceengine/WebRtcAudioEffects.java", |
310 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java", | 310 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java", |
311 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java", | 311 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java", |
312 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java", | 312 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java", |
313 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", | 313 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", |
314 ] | 314 ] |
| 315 deps = [ |
| 316 "//webrtc/base:base_java", |
| 317 ] |
315 } | 318 } |
316 } | 319 } |
OLD | NEW |