| Index: ppapi/generators/generator.py
|
| diff --git a/ppapi/generators/generator.py b/ppapi/generators/generator.py
|
| index 4511cd90b4622703026a418766b6e769b8597b89..a71893c792b5782f6a246f01cd967802143f3e2f 100755
|
| --- a/ppapi/generators/generator.py
|
| +++ b/ppapi/generators/generator.py
|
| @@ -13,6 +13,7 @@ from idl_option import ParseOptions
|
| from idl_outfile import IDLOutFile
|
| from idl_parser import ParseFiles
|
| from idl_c_header import HGen
|
| +from idl_thunk import TGen
|
| from idl_gen_pnacl import PnaclGen
|
|
|
|
|
| @@ -25,6 +26,7 @@ def Main(args):
|
| '--wnone', '--cgen', '--range=start,end',
|
| '--pnacl', '--pnaclshim',
|
| '../native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c',
|
| + '--tgen',
|
| ]
|
| current_dir = os.path.abspath(os.getcwd())
|
| script_dir = os.path.abspath(os.path.dirname(__file__))
|
| @@ -53,4 +55,3 @@ def Main(args):
|
|
|
| if __name__ == '__main__':
|
| sys.exit(Main(sys.argv[1:]))
|
| -
|
|
|