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

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

Issue 1361703005: Use --incremental when dex'ing (when possible). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@javac-incremental
Patch Set: add flag 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/internal_rules.gni
diff --git a/build/config/android/internal_rules.gni b/build/config/android/internal_rules.gni
index e1b3832a187531057865e56300fbcb594d7b0c41..05c6bcbbec34c73c91ece1b633d23ccb3df6ba41 100644
--- a/build/config/android/internal_rules.gni
+++ b/build/config/android/internal_rules.gni
@@ -199,6 +199,10 @@ template("dex") {
rebased_output,
]
+ if (incremental_dx) {
+ args += [ "--incremental" ]
+ }
+
if (defined(invoker.no_locals) && invoker.no_locals) {
args += [ "--no-locals=1" ]
}
« 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