From 695b4c8dd3543d12fa7400b8bb0ffa5f2490ead5 Mon Sep 17 00:00:00 2001 From: Damien Martin-Guillerez Date: Thu, 5 Mar 2015 11:38:50 +0000 Subject: Removed unsupported common attributes documentation -- MOS_MIGRATED_REVID=87809723 --- .../com/google/devtools/build/lib/Constants.java | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'src/main/java/com/google/devtools/build/lib') 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 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 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 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 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"); } -- cgit v1.2.3