aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/query2/output
diff options
context:
space:
mode:
authorGravatar Lukacs Berki <lberki@google.com>2015-06-11 07:41:04 +0000
committerGravatar Lukacs Berki <lberki@google.com>2015-06-11 10:38:25 +0000
commit2b5aa39b944a69a87106f2605e66982daddcc4f4 (patch)
tree1d9965e00def571077e25747167d945b63f9391d /src/main/java/com/google/devtools/build/lib/query2/output
parent580cd692ead8e466c74255f26d9f860c0135f191 (diff)
Switch the default of --aspect_deps to "conservative".
-- MOS_MIGRATED_REVID=95714424
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/query2/output')
-rw-r--r--src/main/java/com/google/devtools/build/lib/query2/output/QueryOptions.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/query2/output/QueryOptions.java b/src/main/java/com/google/devtools/build/lib/query2/output/QueryOptions.java
index b653220d2b..69e809c337 100644
--- a/src/main/java/com/google/devtools/build/lib/query2/output/QueryOptions.java
+++ b/src/main/java/com/google/devtools/build/lib/query2/output/QueryOptions.java
@@ -146,12 +146,12 @@ public class QueryOptions extends OptionsBase {
@Option(name = "aspect_deps",
converter = AspectResolutionModeConverter.class,
- defaultValue = "off",
+ defaultValue = "conservative",
category = "query",
help = "How to resolve aspect dependencies when the output format is one of "
- + "{xml,proto,record}. 'off' (the default) means no aspect dependencies are resolved, "
- + "'conservative' means all possible aspect dependencies are added regardless of whether "
- + "they are possible given the rule class of direct dependencies, 'precise' means that "
+ + "{xml,proto,record}. 'off' means no aspect dependencies are resolved, 'conservative' "
+ + "(the default) means all declared aspect dependencies are added regardless of whether "
+ + "they are viable given the rule class of direct dependencies, 'precise' means that "
+ "only those aspects are added that are possibly active given the rule class of the "
+ "direct dependencies. Note that precise mode requires loading other packages to "
+ "evaluate a single target thus making it slower than the other modes. Also note that "