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

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: Findbugs suppression 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
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..f2259c67fd5f924391bcd2c174d296700cecac7a 100644
--- a/base/android/java/templates/BuildConfig.template
+++ b/base/android/java/templates/BuildConfig.template
@@ -23,10 +23,10 @@ public class BuildConfig {
}
// Debug does not change between targets, can be final and optimized out.
-#if defined(NDEBUG)
- public static final boolean sIsDebug = true;
+#if defined(DEBUG)
+ public static final boolean IS_DEBUG = true;
#else
- public static final boolean sIsDebug = false;
+ public static final boolean IS_DEBUG = false;
#endif
}

Powered by Google App Engine
This is Rietveld 408576698