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

Unified Diff: remoting/remoting.gyp

Issue 19506004: Add the beginnings of a Chromoting Android app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Minimize monitor use, concatenate using StringBuilder, tune host list spacing, make build target re… Created 7 years, 5 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 | « remoting/protocol/errors.h ('k') | remoting/resources/layout/host.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/remoting.gyp
diff --git a/remoting/remoting.gyp b/remoting/remoting.gyp
index fd234fbcc6917b691b90410d150f376cf7481f5d..6011e28016aa3733c33c4ece3945400105818a40 100644
--- a/remoting/remoting.gyp
+++ b/remoting/remoting.gyp
@@ -1699,6 +1699,49 @@
'client/jni/jni_interface.cc',
],
}, # end of target 'remoting_client_jni'
+ {
+ 'target_name': 'remoting_android_resources',
+ 'type': 'none',
+ 'copies': [
+ {
+ 'destination': '<(SHARED_INTERMEDIATE_DIR)/remoting/android/res/drawable',
+ 'files': [
+ 'resources/chromoting128.png',
+ 'resources/icon_host.png',
+ ],
+ },
+ {
+ 'destination': '<(SHARED_INTERMEDIATE_DIR)/remoting/android/res/layout',
+ 'files': [
+ 'resources/layout/main.xml',
+ 'resources/layout/host.xml',
+ ],
+ },
+ {
+ 'destination': '<(SHARED_INTERMEDIATE_DIR)/remoting/android/res/values',
+ 'files': [
+ 'resources/strings.xml',
+ ],
+ },
+ ],
+ }, # end of target 'remoting_android_resources'
+ {
+ 'target_name': 'remoting_apk',
+ 'type': 'none',
+ 'dependencies': [
+ 'remoting_client_jni',
+ 'remoting_android_resources',
+ ],
+ 'variables': {
+ 'apk_name': 'Chromoting',
+ 'manifest_package_name': 'org.chromium.chromoting',
+ 'native_lib_target': 'libremoting_client_jni',
+ 'java_in_dir': 'android/java',
+ 'additional_res_dirs': [ '<(SHARED_INTERMEDIATE_DIR)/remoting/android/res' ],
+ 'additional_input_paths': [ '<(PRODUCT_DIR)/obj/remoting/remoting_android_resources.actions_rules_copies.stamp' ],
+ },
+ 'includes': [ '../build/java_apk.gypi' ],
+ }, # end of target 'remoting_apk'
], # end of 'targets'
}], # 'OS=="android"'
« no previous file with comments | « remoting/protocol/errors.h ('k') | remoting/resources/layout/host.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698