Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1471)

Unified Diff: webrtc/modules/audio_device/BUILD.gn

Issue 2646443002: Creating libwebrtc bundle jar (Closed)
Patch Set: Renaming dist_jar target to libwebrtc Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/examples/BUILD.gn ('k') | webrtc/sdk/android/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_device/BUILD.gn
diff --git a/webrtc/modules/audio_device/BUILD.gn b/webrtc/modules/audio_device/BUILD.gn
index e2b510cd7203f1df956f2d9a81d06fef30361014..571323a6272e37bf9edf0852cd51aaf00bc32a27 100644
--- a/webrtc/modules/audio_device/BUILD.gn
+++ b/webrtc/modules/audio_device/BUILD.gn
@@ -346,9 +346,9 @@ if (rtc_include_tests) {
}
}
-if (!build_with_chromium && 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.
- android_shared_srcjar("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.
- sources = [
+if (is_android) {
+ android_library("audio_device_java") {
+ java_files = [
"android/java/src/org/webrtc/voiceengine/BuildInfo.java",
"android/java/src/org/webrtc/voiceengine/WebRtcAudioEffects.java",
"android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java",
@@ -356,5 +356,8 @@ if (!build_with_chromium && is_android) {
"android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java",
"android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java",
]
+ deps = [
+ "//webrtc/base:base_java",
+ ]
}
}
« no previous file with comments | « webrtc/examples/BUILD.gn ('k') | webrtc/sdk/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698