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

Unified Diff: build/config/android/rules.gni

Issue 1311043014: Add support for overriding keystore for signing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed rules.gni variable usage Created 5 years, 3 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/config/android/config.gni ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/android/rules.gni
diff --git a/build/config/android/rules.gni b/build/config/android/rules.gni
index 190cd20414a9b13d681cebcf768508ebdacae617..535c87de6a381a9f4e1fb13ca40f7399d140b0dd 100644
--- a/build/config/android/rules.gni
+++ b/build/config/android/rules.gni
@@ -1179,9 +1179,9 @@ template("android_apk") {
if (defined(invoker.version_name)) {
_version_name = invoker.version_name
}
- _keystore_path = android_default_keystore_path
- _keystore_name = android_default_keystore_name
- _keystore_password = android_default_keystore_password
+ _keystore_path = android_keystore_path
+ _keystore_name = android_keystore_name
+ _keystore_password = android_keystore_password
if (defined(invoker.keystore_path)) {
_keystore_path = invoker.keystore_path
« no previous file with comments | « build/config/android/config.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698