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

Unified Diff: build/java_apk.gypi

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/pylib/test_options_parser.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/java_apk.gypi
diff --git a/build/java_apk.gypi b/build/java_apk.gypi
index cec41374bbec5be70c8ccc29bae994bce0f679a9..509dc0e308931c3d6c3edeceaf7b491401893edb 100644
--- a/build/java_apk.gypi
+++ b/build/java_apk.gypi
@@ -30,7 +30,7 @@
# Required variables:
# package_name - Used to name the intermediate output directory and in the
# names of some output files.
-# apk_name - The final apk will be named <apk_name>-debug.apk (or -release)
+# apk_name - The final apk will be named <apk_name>.apk
# java_in_dir - The top-level java directory. The src should be in
# <java_in_dir>/src.
# Optional/automatic variables:
@@ -117,9 +117,7 @@
}],
],
'outputs': [
- # TODO(cjhopman): Apks are built with a -debug suffix even when they are
- # built in release. This should be fixed.
- '<(PRODUCT_DIR)/apks/<(apk_name)-debug.apk',
+ '<(PRODUCT_DIR)/apks/<(apk_name).apk',
],
'action': [
'ant',
« no previous file with comments | « build/android/pylib/test_options_parser.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698