Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(254)

Unified Diff: native_client_sdk/src/doc/doxygen/generate_docs.py

Issue 1655873003: [NaCl SDK] Cleanup references to old newlib toolchain (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@add_pepper_50
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: native_client_sdk/src/doc/doxygen/generate_docs.py
diff --git a/native_client_sdk/src/doc/doxygen/generate_docs.py b/native_client_sdk/src/doc/doxygen/generate_docs.py
index 4cc475d076c233c2f550381c8e98d48fe0fc2d04..d5d4d8cb73c2009e8c252229176e3f85e0689760 100755
--- a/native_client_sdk/src/doc/doxygen/generate_docs.py
+++ b/native_client_sdk/src/doc/doxygen/generate_docs.py
@@ -52,7 +52,7 @@ def GetChannelInfo():
for version_row in os_row['versions']:
channel = version_row['channel']
# We don't display canary docs.
- if channel == 'canary':
+ if channel.startswith('canary'):
continue
version = version_row['version'].split('.')[0] # Major version
@@ -313,8 +313,7 @@ def main(argv):
if options.verbose:
Trace.verbose = True
- channel_info = GetChannelInfo()
- for channel, info in channel_info.iteritems():
+ for channel, info in GetChannelInfo().iteritems():
GenerateDocs(options.out_directory, channel, info.version, info.branch)
return 0
« no previous file with comments | « native_client_sdk/src/doc/devguide/tutorial/tutorial-part2.rst ('k') | native_client_sdk/src/doc/pepper_beta/index.rst » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698