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

Delta Between Two Patch Sets: generate_docs.py

Issue 29335457: Issue 3618 - Add a script for generating the JSDoc documentation (Closed)
Left Patch Set: Created Feb. 3, 2016, 10:52 a.m.
Right Patch Set: Fixed import order (alphabetical) Created Feb. 4, 2016, 7:55 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « ensure_dependencies.py ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # coding: utf-8 2 # coding: utf-8
3 3
4 import os 4 import os
5 import subprocess
5 import sys 6 import sys
6 import subprocess
7 7
8 BASE_DIR = os.path.dirname(os.path.abspath(__file__)) 8 BASE_DIR = os.path.dirname(os.path.abspath(__file__))
9 DEPENDENCY_SCRIPT = os.path.join(BASE_DIR, "ensure_dependencies.py") 9 DEPENDENCY_SCRIPT = os.path.join(BASE_DIR, "ensure_dependencies.py")
10 10
11 if __name__ == "__main__": 11 if __name__ == "__main__":
12 try: 12 try:
13 subprocess.check_call([sys.executable, DEPENDENCY_SCRIPT, BASE_DIR]) 13 subprocess.check_call([sys.executable, DEPENDENCY_SCRIPT, BASE_DIR])
14 except subprocess.CalledProcessError as e: 14 except subprocess.CalledProcessError as e:
15 print >>sys.stderr, e 15 print >>sys.stderr, e
16 print >>sys.stderr, "Failed to ensure dependencies being up-to-date!" 16 print >>sys.stderr, "Failed to ensure dependencies being up-to-date!"
17 17
18 # We're faking an invocation of build.py here, because we would have to 18 # We're faking an invocation of build.py here, because we would have to
Felix Dahlke 2016/02/03 10:59:55 Yeah I know, it's hacky. But I'm not really convin
19 # duplicate command line parsing otherwise. It would be nicer if buildtools 19 # duplicate command line parsing otherwise. It would be nicer if buildtools
20 # would make it possible to invoke the docs command directly. 20 # would make it possible to invoke the docs command directly.
21 args = sys.argv 21 args = sys.argv
22 args[1:1] = ["-t", "gecko", "docs"] 22 args[1:1] = ["-t", "gecko", "docs"]
23 23
24 import buildtools.build 24 import buildtools.build
25 buildtools.build.processArgs(BASE_DIR, args) 25 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
LEFTRIGHT

Powered by Google App Engine
This is Rietveld