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

Unified Diff: content/content_shell.gypi

Issue 10690190: Upstream GestureDetectorProxyTest (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 4134258b6c6b1412aef03da02e072e09eef03039..fc2c5897d3e17a865b84d517ca28923c6738b548 100644
--- a/content/content_shell.gypi
+++ b/content/content_shell.gypi
@@ -615,13 +615,40 @@
],
},
{
+ 'target_name': 'content_javatests',
+ 'type': 'none',
+ 'dependencies': [
+ '../base/base.gyp:base_java',
+ '../base/base.gyp:base_javatests',
+ 'content_common',
+ ],
+ 'variables': {
+ 'package_name': 'content_javatests',
+ 'java_in_dir': '../content/public/android/javatests',
+ },
+ 'includes': [ '../build/java.gypi' ],
+ },
+ {
'target_name': 'content_shell_test_apk',
'type': 'none',
'dependencies': [
'content_shell_apk',
+ 'content_javatests',
],
'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',
bulach 2012/07/16 13:22:44 nit: are these copies necessary? would it be possi
Ted C 2012/07/17 00:48:03 I think it was done this way for historical reason
+ '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