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

Unified Diff: content/content_shell.gypi

Issue 10818039: Upstream Android LongPressDetector (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
Index: content/content_shell.gypi
diff --git a/content/content_shell.gypi b/content/content_shell.gypi
index 4e77bf913cafc19f7a3062936c0618372ec5518d..dfafe0df7f4e63eb433d56adfd3353d40f6b1f86 100644
--- a/content/content_shell.gypi
+++ b/content/content_shell.gypi
@@ -558,6 +558,21 @@
],
},
{
+ 'target_name': 'content_javatests',
Ted C 2012/07/24 21:01:28 any reason why this doesn't live within content_te
Yusuf 2012/07/24 22:37:56 I think the reason was to keep this target and the
Yaron 2012/07/24 23:28:22 I tend to agree that this should be in content_tes
+ 'type': 'none',
+ 'dependencies': [
+ '../base/base.gyp:base_java',
+ '../base/base.gyp:base_javatests',
+ 'content_common',
+ 'content_java',
+ ],
+ 'variables': {
+ 'package_name': 'content_javatests',
+ 'java_in_dir': '../content/public/android/javatests',
+ },
+ 'includes': [ '../build/java.gypi' ],
+ },
+ {
'target_name': 'content_shell_apk',
'type': 'none',
'actions': [
@@ -638,9 +653,23 @@
'type': 'none',
'dependencies': [
'content_shell_apk',
+ 'content_javatests',
+ '../tools/android/forwarder/forwarder.gyp:forwarder',
],
'actions': [
{
+ 'action_name': 'copy_base_javatests_jar',
+ 'inputs': ['<(PRODUCT_DIR)/lib.java/chromium_base_javatests.jar'],
+ 'outputs': ['<(PRODUCT_DIR)/content_shell_test/java/libs/chromium_base_javatests.jar'],
+ 'action': ['cp', '<@(_inputs)', '<@(_outputs)'],
+ },
+ {
+ 'action_name': 'copy_content_javatests_jar',
+ 'inputs': ['<(PRODUCT_DIR)/lib.java/chromium_content_javatests.jar'],
+ 'outputs': ['<(PRODUCT_DIR)/content_shell_test/java/libs/chromium_content_javatests.jar'],
+ 'action': ['cp', '<@(_inputs)', '<@(_outputs)'],
+ },
+ {
'action_name': 'content_shell_test_generate_apk',
'inputs': [
'<(DEPTH)/content/shell/android/javatests/content_shell_test_apk.xml',

Powered by Google App Engine
This is Rietveld 408576698