aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/Constants.java
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2015-03-05 11:38:50 +0000
committerGravatar Han-Wen Nienhuys <hanwen@google.com>2015-03-05 18:31:31 +0000
commit695b4c8dd3543d12fa7400b8bb0ffa5f2490ead5 (patch)
tree0d7fb2d60440804acb0f9d906677b6352fadebd7 /src/main/java/com/google/devtools/build/lib/Constants.java
parentf014b3c574b1a70942dac1a2dcdf9e86b8df5555 (diff)
Removed unsupported common attributes documentation
-- MOS_MIGRATED_REVID=87809723
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/Constants.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/Constants.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/Constants.java b/src/main/java/com/google/devtools/build/lib/Constants.java
index e71b1cf4ce..efc39ee2a5 100644
--- a/src/main/java/com/google/devtools/build/lib/Constants.java
+++ b/src/main/java/com/google/devtools/build/lib/Constants.java
@@ -33,4 +33,36 @@ public class Constants {
public static final ImmutableList<String> WATCHFS_BLACKLIST = ImmutableList.of();
public static final String PRELUDE_FILE_DEPOT_RELATIVE_PATH = "tools/build_rules/prelude_bazel";
+
+ /**
+ * List of common attributes documentation, relative to {@link com.google.devtools.build.docgen}.
+ */
+ public static final ImmutableList<String> COMMON_ATTRIBUTES_DOCFILES = ImmutableList.of(
+ "templates/attributes/common/deps.html",
+ "templates/attributes/common/data.html",
+ "templates/attributes/common/licenses.html",
+ "templates/attributes/common/distribs.html",
+ "templates/attributes/common/deprecation.html",
+ "templates/attributes/common/obsolete.html",
+ "templates/attributes/common/testonly.html",
+ "templates/attributes/common/tags.html",
+ "templates/attributes/common/visibility.html");
+
+ /**
+ * List of documentation for common attributes of *_binary rules, relative to
+ * {@link com.google.devtools.build.docgen}.
+ */
+ public static final ImmutableList<String> BINARY_ATTRIBUTES_DOCFILES = ImmutableList.of(
+ "templates/attributes/binary/args.html",
+ "templates/attributes/binary/output_licenses.html");
+
+ /**
+ * List of documentation for common attributes of *_test rules, relative to
+ * {@link com.google.devtools.build.docgen}.
+ */
+ public static final ImmutableList<String> TEST_ATTRIBUTES_DOCFILES = ImmutableList.of(
+ "templates/attributes/test/args.html",
+ "templates/attributes/test/size.html",
+ "templates/attributes/test/timeout.html",
+ "templates/attributes/test/flaky.html");
}