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

Unified Diff: remoting/android/BUILD.gn

Issue 1884253003: [remoting android] Plumb It2Me events from C++ to Java (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@android-host-it2me-connect
Patch Set: Created 4 years, 8 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
Index: remoting/android/BUILD.gn
diff --git a/remoting/android/BUILD.gn b/remoting/android/BUILD.gn
index 888fc39e1da3766b0a8f7e1e4d7133d0c0f3fedc..449b8c88995c67032d1c01b6c15128ca4191b87d 100644
--- a/remoting/android/BUILD.gn
+++ b/remoting/android/BUILD.gn
@@ -184,11 +184,14 @@ android_apk("remoting_host_apk") {
apk_name = "ChromotingHost"
android_manifest = "host/AndroidManifest.xml"
native_libs = [ "libremoting_host_jni.so" ]
- java_files = [
- "host/src/org/chromium/chromoting/host/MainActivity.java",
- "host/src/org/chromium/chromoting/host/OAuthTokenFetcher.java",
- "host/src/org/chromium/chromoting/host/jni/Host.java",
- ]
+ _java_file_prefix = "host/src/org/chromium/chromoting/host"
+ _java_files = [
+ "MainActivity.java",
+ "OAuthTokenFetcher.java",
+ "jni/Host.java",
+ "jni/It2MeObserver.java",
+ ]
+ java_files = rebase_path(_java_files, ".", _java_file_prefix)
deps = [
":remoting_host_apk_resources",
":remoting_host_jni",

Powered by Google App Engine
This is Rietveld 408576698