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

Side by Side Diff: mojo/nacl/sfi/nacl_bindings_generator/generate_nacl_bindings.py

Issue 1398213003: Refactored Non-SFI and SFI NaCl into separate directories. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 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 unified diff | Download patch
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 # Copyright 2014 The Chromium Authors. All rights reserved. 2 # Copyright 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # pylint: disable=W0104,W0106,F0401,R0201 6 # pylint: disable=W0104,W0106,F0401,R0201
7 7
8 import errno 8 import errno
9 import os.path 9 import os.path
10 import sys 10 import sys
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
554 GenerateMojoSyscall(mojo.functions, common_vars, out) 554 GenerateMojoSyscall(mojo.functions, common_vars, out)
555 555
556 out = OutFile(full_platform_dir, 'mojo_irt.h') 556 out = OutFile(full_platform_dir, 'mojo_irt.h')
557 GenerateMojoIrtHeader(mojo.functions, common_vars, out) 557 GenerateMojoIrtHeader(mojo.functions, common_vars, out)
558 558
559 out = OutFile(full_bindings_dir, 'mojo_irt.c') 559 out = OutFile(full_bindings_dir, 'mojo_irt.c')
560 GenerateMojoIrtImplementation(mojo.functions, common_vars, out) 560 GenerateMojoIrtImplementation(mojo.functions, common_vars, out)
561 561
562 if __name__ == '__main__': 562 if __name__ == '__main__':
563 main() 563 main()
OLDNEW
« no previous file with comments | « mojo/nacl/sfi/nacl_bindings/monacl_sel_main.cc ('k') | mojo/nacl/sfi/nacl_bindings_generator/interface.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698