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

Unified Diff: base/BUILD.gn

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/BUILD.gn
diff --git a/base/BUILD.gn b/base/BUILD.gn
index d49a22d8f1caf35bd9e54ceaaedcd0b1f8e5a983..fdd1b6655423f78719befa9b1c0a4ac071620f04 100644
--- a/base/BUILD.gn
+++ b/base/BUILD.gn
@@ -2372,6 +2372,11 @@ if (is_android) {
"android/java/templates/BuildConfig.template",
]
package_name = "org/chromium/base"
+
+ defines = []
+ if (is_java_debug) {
Peter Wen 2016/06/06 21:45:23 Guarding this on is_debug is more intuitive, as if
smaier 2016/06/07 18:20:45 This would only be the case if you explicitly set
+ defines += [ "DEBUG" ]
+ }
}
# GYP: //base/base.gyp:base_native_libraries_gen

Powered by Google App Engine
This is Rietveld 408576698