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

Unified Diff: base/android/java/templates/BuildConfig.template

Issue 2031033002: Adding option for Proguard jar to be switched. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed single newline Created 4 years, 6 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 | « base/BUILD.gn ('k') | build/config/android/config.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/android/java/templates/BuildConfig.template
diff --git a/base/android/java/templates/BuildConfig.template b/base/android/java/templates/BuildConfig.template
index 9a678cc848485304664364a304852c05356e8bf5..7ec2b324c2d64c63d9d261d89ada06ca3ebe54d8 100644
--- a/base/android/java/templates/BuildConfig.template
+++ b/base/android/java/templates/BuildConfig.template
@@ -24,9 +24,9 @@ public class BuildConfig {
// Debug does not change between targets, can be final and optimized out.
#if defined(NDEBUG)
- public static final boolean sIsDebug = true;
+ public static final boolean IS_DEBUG = false;
#else
- public static final boolean sIsDebug = false;
+ public static final boolean IS_DEBUG = true;
#endif
}
« no previous file with comments | « base/BUILD.gn ('k') | build/config/android/config.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698