aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google
diff options
context:
space:
mode:
authorGravatar Kevin Bierhoff <kmb@google.com>2017-03-25 01:45:57 +0000
committerGravatar Philipp Wollermann <philwo@google.com>2017-03-27 11:36:56 +0000
commitc70a1e70093cd5a9c3791e24cd895057125447f9 (patch)
treee7bb0c710e3e9ac61458ef250f73af5d5d67b4c8 /src/main/java/com/google
parentdfce55426816936f13b910a2f7d06650af6c47bb (diff)
turn on --experimental_incremental_dexing_error_on_missed_jars by default.
This has no effect unless --incremental_dexing is used. RELNOTES: turn on --experimental_incremental_dexing_error_on_missed_jars by default. -- PiperOrigin-RevId: 151198031 MOS_MIGRATED_REVID=151198031
Diffstat (limited to 'src/main/java/com/google')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/android/AndroidConfiguration.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/android/AndroidConfiguration.java b/src/main/java/com/google/devtools/build/lib/rules/android/AndroidConfiguration.java
index 28f64b07c7..c881f4db64 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/android/AndroidConfiguration.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/android/AndroidConfiguration.java
@@ -322,12 +322,11 @@ public class AndroidConfiguration extends BuildConfiguration.Fragment {
/**
* Whether to error out when we find Jar files when building binaries that weren't converted to
- * a dex archive. Once this option works, we'll flip the default value in a config file, then
- * once it is proven that it works, remove it from Bazel and said config file.
+ * a dex archive. This option will soon be removed from Bazel.
*/
@Option(
name = "experimental_incremental_dexing_error_on_missed_jars",
- defaultValue = "false",
+ defaultValue = "true",
category = "experimental",
help = "Do not use.")
public boolean incrementalDexingErrorOnMissedJars;