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

Unified Diff: remoting/android/BUILD.gn

Issue 1815803002: Add skeleton Android app: remoting_host_apk (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 | remoting/android/host/AndroidManifest.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/android/BUILD.gn
diff --git a/remoting/android/BUILD.gn b/remoting/android/BUILD.gn
index d0bac7c2524b1b96eae141e65f2bd671a5f83849..b6393e3fbe6bf307ce33c4d692fd3c9e589db6f0 100644
--- a/remoting/android/BUILD.gn
+++ b/remoting/android/BUILD.gn
@@ -149,3 +149,25 @@ instrumentation_test_apk("remoting_test_apk") {
"//base:base_java_test_support",
]
}
+
+android_resources("remoting_host_apk_resources") {
+ custom_package = "org.chromium.chromoting.host"
+ resource_dirs = [ "host/res" ]
+ deps = [
+ "//third_party/android_tools:android_support_v7_appcompat_resources",
+ ]
+}
+
+android_apk("remoting_host_apk") {
+ apk_name = "ChromotingHost"
+ android_manifest = "host/AndroidManifest.xml"
+ java_files = [
+ # "host/src/org/chromium/chromoting/host/AnotherClass.java",
+ "host/src/org/chromium/chromoting/host/MainActivity.java",
+ ]
+ deps = [
+ ":remoting_host_apk_resources",
+ "//third_party/android_tools:android_support_v13_java",
+ "//third_party/android_tools:android_support_v7_appcompat_java",
+ ]
+}
« no previous file with comments | « no previous file | remoting/android/host/AndroidManifest.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698