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

Unified Diff: build.py

Issue 29335322: Issue 3615 - Enable longnames in JSDoc navigation (Closed)
Patch Set: Created Feb. 2, 2016, 4:13 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 | « no previous file | jsdoc.conf » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build.py
===================================================================
--- a/build.py
+++ b/build.py
@@ -378,7 +378,9 @@
if type == 'chrome':
sources = [os.path.join(source_dir, filename) for filename in os.listdir(source_dir) if filename != 'publicSuffixList.js']
- command = ['jsdoc', '--destination', targetDir, '--access', 'all'] + sources
+
+ config = os.path.join(os.path.dirname(__file__), 'jsdoc.conf')
+ command = ['jsdoc', '--destination', targetDir, '--configure', config] + sources
if any(opt in ('-q', '--quiet') for opt, _ in opts):
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stderr = process.communicate()[1]
« no previous file with comments | « no previous file | jsdoc.conf » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld