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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
339 "../../test:test_support", | 339 "../../test:test_support", |
340 "../rtp_rtcp", | 340 "../rtp_rtcp", |
341 "../utility", | 341 "../utility", |
342 "//testing/gtest", | 342 "//testing/gtest", |
343 ] | 343 ] |
344 public_configs = [ ":audio_device_config" ] | 344 public_configs = [ ":audio_device_config" ] |
345 } | 345 } |
346 } | 346 } |
347 } | 347 } |
348 | 348 |
349 if (!build_with_chromium && is_android) { | 349 if (is_android) { |
kjellander_webrtc
2017/01/20 07:58:50
Why remove !build_with_chromium ? We don't want to
mbonadei
2017/01/20 09:30:37
Done, I don't exactly remember why I removed that.
| |
350 android_shared_srcjar("audio_device_java") { | 350 android_library("audio_device_java") { |
kjellander_webrtc
2017/01/20 07:58:50
Please remove the template from webrtc/build/webrt
mbonadei
2017/01/20 09:30:37
Done.
| |
351 sources = [ | 351 java_files = [ |
352 "android/java/src/org/webrtc/voiceengine/BuildInfo.java", | 352 "android/java/src/org/webrtc/voiceengine/BuildInfo.java", |
353 "android/java/src/org/webrtc/voiceengine/WebRtcAudioEffects.java", | 353 "android/java/src/org/webrtc/voiceengine/WebRtcAudioEffects.java", |
354 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java", | 354 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java", |
355 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java", | 355 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java", |
356 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java", | 356 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java", |
357 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", | 357 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", |
358 ] | 358 ] |
359 deps = [ | |
360 "//webrtc/base:base_java", | |
361 ] | |
359 } | 362 } |
360 } | 363 } |
OLD | NEW |