Chromium Code Reviews| Index: build/config/android/config.gni |
| diff --git a/build/config/android/config.gni b/build/config/android/config.gni |
| index 98b4aa614bf992a7ab89aff634a97dd6b9427baf..bcda6ecabe8e4fcfb4b05e9215d09584d2e0aa55 100644 |
| --- a/build/config/android/config.gni |
| +++ b/build/config/android/config.gni |
| @@ -89,6 +89,10 @@ if (is_android) { |
| # Enables verbose proguard output (summaries and unfiltered output). |
| proguard_verbose = false |
| + # Java debug on Android. Having this on enables multidexing, and turning it |
| + # off will enable proguard. |
| + is_java_debug = is_debug |
|
Peter Wen
2016/06/06 20:28:16
Can you explain why we want is_java_debug?
Right
smaier
2016/06/06 21:04:58
The current behaviour would continue as normal for
Peter Wen
2016/06/06 21:45:23
I see. I feel that setting is_debug to false in gn
smaier
2016/06/07 18:20:45
This is a pretty common pattern, for example line
|
| + |
| # Set to true to enable the Errorprone compiler |
| use_errorprone_java_compiler = false |