Generate documentation for embedded repository rules
Our embedded repository rules have doc strings, as recommended. So
far, however, they are not shown on as part of web documentation.
Fix this. The recommended tool for generating web pages from Starlark
documentation strings is Skydoc; therefore, we use it, even if it
pulls in new dependencies, including those that need to be shipped
as part of the distribution archive.
Fixes #6873.
Fixes #7638.
Fixes #6730.
Change-Id: Icb86cf3c321157e692469b6ed0cac9b64334806c
PiperOrigin-RevId: 238958194
diff --git a/src/create_embedded_tools.py b/src/create_embedded_tools.py
index d1b09ae..dfb7b11 100644
--- a/src/create_embedded_tools.py
+++ b/src/create_embedded_tools.py
@@ -29,6 +29,8 @@
output_paths = [
('*tools/jdk/BUILD', lambda x: 'tools/jdk/BUILD'),
+ ('*tools/build_defs/repo/BUILD.repo',
+ lambda x: 'tools/build_defs/repo/BUILD'),
('*tools/platforms/platforms.BUILD', lambda x: 'platforms/BUILD'),
('*tools/platforms/*', lambda x: 'platforms/' + os.path.basename(x)),
('*tools/cpp/runfiles/generated_*',