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

Unified Diff: chrome/chrome_android.gypi

Issue 11094015: Rename output jar created by apks to have chromium_apk_ prefix. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebase Created 8 years, 2 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 | « build/android/ant/sdk-targets.xml ('k') | content/content_shell.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_android.gypi
diff --git a/chrome/chrome_android.gypi b/chrome/chrome_android.gypi
index c5969d13b261ec6e51cc8ec1e5913a9ea00eb345..7b64b495487f9a8c56ff05d0e6fc5b34960b2fe8 100644
--- a/chrome/chrome_android.gypi
+++ b/chrome/chrome_android.gypi
@@ -95,14 +95,15 @@
'chrome.gyp:chrome_java',
'chromium_testshell',
],
- 'outputs': [
- '<(PRODUCT_DIR)/lib.java/chromium_chromium_testshell.jar',
- ],
+ 'variables': {
+ 'output_jar': '<(PRODUCT_DIR)/lib.java/chromium_apk_chromium_testshell.jar'
+ },
+ 'outputs': ['<(output_jar)'],
# This all_dependent_settings is used for java targets only. This will add
# the chromium_testshell jar to the classpath of dependent java targets.
'all_dependent_settings': {
'variables': {
- 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_chromium_testshell.jar'],
+ 'input_jars_paths': ['<(output_jar)'],
},
},
# Add an action with the appropriate output. This allows the generated
@@ -111,7 +112,7 @@
{
'action_name': 'fake_generate_jar',
'inputs': [],
- 'outputs': ['<(PRODUCT_DIR)/lib.java/chromium_chromium_testshell.jar'],
+ 'outputs': ['<(output_jar)'],
'action': [],
},
],
« no previous file with comments | « build/android/ant/sdk-targets.xml ('k') | content/content_shell.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698