| OLD | NEW |
| 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 Loading... |
| 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() |
| OLD | NEW |