aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2015-08-25 11:51:34 +0000
committerGravatar Lukacs Berki <lberki@google.com>2015-08-26 07:34:44 +0000
commita59fa55506cea333f31b76231d8ccf7dcb3e6bac (patch)
treeb286a10462df7949f18145e1b4812a737ffd4eef
parent1d112679f4c682517466a5aab21698b465c1c2b4 (diff)
Add Skylark Supported Rules page to Bazel site.
Each of the support rule sets now have their own README.md files. This page just links to the directories in the repo where the rules are located and documented. -- MOS_MIGRATED_REVID=101453919
-rw-r--r--site/docs/supported-rules.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/site/docs/supported-rules.md b/site/docs/supported-rules.md
new file mode 100644
index 0000000000..6523bede9b
--- /dev/null
+++ b/site/docs/supported-rules.md
@@ -0,0 +1,21 @@
+---
+layout: documentation
+---
+
+# Supported Skylark Rules
+
+The Bazel team provides a set of supported build rules written using the
+[Skylark](/docs/skylark/index.html) rules framework. These rules allow you
+to build the following:
+
+* [Closure libraries](https://github.com/google/bazel/tree/master/tools/build_rules/closure)
+* [Docker images](https://github.com/google/bazel/tree/master/tools/build_defs/docker)
+* [Groovy projects](https://github.com/google/bazel/tree/master/tools/build_defs/groovy)
+* [Java App Engine applications](https://github.com/google/bazel/tree/master/tools/build_rules/appengine)
+* [Rust projects](https://github.com/google/bazel/tree/master/tools/build_rules/rust)
+
+The source for these rules are located in the
+[tools/build_rules](https://github.com/google/bazel/tree/master/tools/build_rules)
+and
+[tools/build_defs](https://github.com/google/bazel/tree/master/tools/build_defs)
+directories in the Bazel GitHub repo.