Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: generate_docs.py

Issue 29335457: Issue 3618 - Add a script for generating the JSDoc documentation (Closed)
Patch Set: Fixed import order (alphabetical) Created Feb. 4, 2016, 7:55 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ensure_dependencies.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generate_docs.py
===================================================================
new file mode 100755
--- /dev/null
+++ b/generate_docs.py
@@ -0,0 +1,25 @@
+#!/usr/bin/env python
+# coding: utf-8
+
+import os
+import subprocess
+import sys
+
+BASE_DIR = os.path.dirname(os.path.abspath(__file__))
+DEPENDENCY_SCRIPT = os.path.join(BASE_DIR, "ensure_dependencies.py")
+
+if __name__ == "__main__":
+ try:
+ subprocess.check_call([sys.executable, DEPENDENCY_SCRIPT, BASE_DIR])
+ except subprocess.CalledProcessError as e:
+ print >>sys.stderr, e
+ print >>sys.stderr, "Failed to ensure dependencies being up-to-date!"
+
+ # We're faking an invocation of build.py here, because we would have to
+ # duplicate command line parsing otherwise. It would be nicer if buildtools
+ # would make it possible to invoke the docs command directly.
+ args = sys.argv
+ args[1:1] = ["-t", "gecko", "docs"]
+
+ import buildtools.build
+ buildtools.build.processArgs(BASE_DIR, args)
Wladimir Palant 2016/02/04 22:19:54 As hacks go, I think this one is better: buildt
Felix Dahlke 2016/02/05 06:17:54 I went with that one at first, but then we have to
« no previous file with comments | « ensure_dependencies.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld