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

Unified Diff: ppapi/generators/generator.py

Issue 11235016: Change the way we generate versions (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 2 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
« no previous file with comments | « ppapi/c/private/ppb_net_address_private.h ('k') | ppapi/generators/idl_ast.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/generators/generator.py
===================================================================
--- ppapi/generators/generator.py (revision 163185)
+++ ppapi/generators/generator.py (working copy)
@@ -36,8 +36,12 @@
filenames = ParseOptions(args)
ast = ParseFiles(filenames)
+ if ast.errors:
+ print 'Found %d errors. Aborting build.\n' % ast.errors
+ return 1
return Generator.Run(ast)
if __name__ == '__main__':
sys.exit(Main())
+
« no previous file with comments | « ppapi/c/private/ppb_net_address_private.h ('k') | ppapi/generators/idl_ast.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698