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

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

Issue 2087323002: Switching over to full usage of is_java_debug (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed commented out line 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 | « no previous file | chrome/android/webapk/shell_apk/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/android/config.gni
diff --git a/build/config/android/config.gni b/build/config/android/config.gni
index 300402a57dd1b640efdf58354ea68bd00d60a651..47c14e63d907fb20eb31451a662e676b333a95f3 100644
--- a/build/config/android/config.gni
+++ b/build/config/android/config.gni
@@ -126,8 +126,8 @@ if (is_android) {
# Neither of these should ever be used for release builds since they are
# somewhat experimental and dx --incremental is known to not produce
# byte-for-byte identical output.
- assert(!(enable_incremental_dx && !is_debug))
- assert(!(enable_incremental_javac && !is_debug))
+ assert(!(enable_incremental_dx && !is_java_debug))
+ assert(!(enable_incremental_javac && !is_java_debug))
# Adds intrumentation to each function. Writes a file with the order that
# functions are called at startup.
« no previous file with comments | « no previous file | chrome/android/webapk/shell_apk/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698