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

Unified Diff: webrtc/api/BUILD.gn

Issue 2439073002: Allow using Java classes that don't require JNI in Chromium. (Closed)
Patch Set: Created 4 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/BUILD.gn
diff --git a/webrtc/api/BUILD.gn b/webrtc/api/BUILD.gn
index 6424de96a618c41aef84f6648164698baf7ce4dd..9a286025d3c19ab7088473886ef982ab14b67e2e 100644
--- a/webrtc/api/BUILD.gn
+++ b/webrtc/api/BUILD.gn
@@ -235,7 +235,10 @@ if (is_android && !build_with_chromium) {
]
output_extension = "so"
}
+}
+# Classes that don't require jni can be used in Chromium.
+if (is_android) {
android_library("libjingle_peerconnection_java") {
java_files = [
"../modules/audio_device/android/java/src/org/webrtc/voiceengine/BuildInfo.java",
@@ -302,7 +305,7 @@ if (is_android && !build_with_chromium) {
]
deps = [
- "//webrtc/base:base_java",
+ "../base:base_java",
]
}
}
@@ -475,8 +478,8 @@ if (rtc_include_tests) {
deps = [
":libjingle_peerconnection_android_unittest_resources",
":libjingle_peerconnection_java",
+ "../base:base_java",
"//base:base_java",
- "//webrtc/base:base_java",
]
shared_libraries = [ ":libjingle_peerconnection_so" ]
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698