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

Unified Diff: ppapi/generators/idl_c_header.py

Issue 11417010: Add support for generating thunk source from IDL. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Removed an unnecessary change Created 8 years, 1 month 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: ppapi/generators/idl_c_header.py
diff --git a/ppapi/generators/idl_c_header.py b/ppapi/generators/idl_c_header.py
index c1e60712dfacd2ae821d86ff6344dc9283d60033..fbd615dfff071a3ee82e8208cf1fe850e740a577 100755
--- a/ppapi/generators/idl_c_header.py
+++ b/ppapi/generators/idl_c_header.py
@@ -21,7 +21,6 @@ from idl_generator import Generator, GeneratorByFile
Option('dstroot', 'Base directory of output', default=os.path.join('..', 'c'))
Option('guard', 'Include guard prefix', default=os.path.join('ppapi', 'c'))
-Option('out', 'List of output files', default='')
noelallen1 2012/11/15 22:03:18 Thanks, I've been meaning to do this.
def GetOutFileName(filenode, relpath=None, prefix=None):
@@ -251,4 +250,3 @@ def Main(args):
if __name__ == '__main__':
sys.exit(Main(sys.argv[1:]))
-
noelallen1 2012/11/15 22:03:18 Make sure to leave blank EoF. I've been having wi
teravest 2012/11/16 17:33:36 Done.

Powered by Google App Engine
This is Rietveld 408576698