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

Unified Diff: build/android/ant/create-test-jar.js

Issue 11221003: Remove -debug suffix in apk names. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/chromium-apk.xml ('k') | build/android/ant/sdk-targets.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/ant/create-test-jar.js
diff --git a/build/android/ant/create-test-jar.js b/build/android/ant/create-test-jar.js
index 542a89e978feada38ddf99562bd856bc1ca0a623..d22c00319617a09ed155a28e631e8715deff6559 100644
--- a/build/android/ant/create-test-jar.js
+++ b/build/android/ant/create-test-jar.js
@@ -4,7 +4,7 @@
/**
* Combines classes from javac.custom.classpath property and ${out.dir}/classes
- * into a single jar file ${ant.project.name}-debug.jar and places the file in
+ * into a single jar file ${ant.project.name}.jar and places the file in
* ${lib.java.dir}.
*/
@@ -26,7 +26,7 @@ var duplicate = Zip.Duplicate();
duplicate.setValue("preserve");
jarTask.setDuplicate(duplicate);
-var destFile = project.getProperty("ant.project.name") + "-debug.jar";
+var destFile = project.getProperty("ant.project.name") + ".jar";
var destPath = File(project.getProperty("test.lib.java.dir") + "/" + destFile);
jarTask.setDestFile(destPath);
« no previous file with comments | « build/android/ant/chromium-apk.xml ('k') | build/android/ant/sdk-targets.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698