OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 2 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
3 # for details. All rights reserved. Use of this source code is governed by a | 3 # for details. All rights reserved. Use of this source code is governed by a |
4 # BSD-style license that can be found in the LICENSE file. | 4 # BSD-style license that can be found in the LICENSE file. |
5 | 5 |
6 import os | 6 import os |
7 import sys | 7 import sys |
8 | 8 |
9 | 9 |
10 def Main(): | 10 def Main(): |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 % locations) | 47 % locations) |
48 if exit_code: | 48 if exit_code: |
49 return exit_code | 49 return exit_code |
50 | 50 |
51 exit_code = os.system("python %(compiler)s/generate_systemlibrary_list.py " | 51 exit_code = os.system("python %(compiler)s/generate_systemlibrary_list.py " |
52 "jsonlib %(compiler)s/jsonlib_sources ../lib/json json.d
art" | 52 "jsonlib %(compiler)s/jsonlib_sources ../lib/json json.d
art" |
53 % locations) | 53 % locations) |
54 if exit_code: | 54 if exit_code: |
55 return exit_code | 55 return exit_code |
56 | 56 |
| 57 exit_code = os.system("python %(compiler)s/generate_systemlibrary_list.py " |
| 58 "isolatelib %(compiler)s/isolatelib_sources ../lib/isola
te isolate_compiler.dart" |
| 59 % locations) |
| 60 if exit_code: |
| 61 return exit_code |
| 62 |
57 exit_code = os.system("python %(compiler)s/generate_source_list.py " | 63 exit_code = os.system("python %(compiler)s/generate_source_list.py " |
58 "compiler_corelib " | 64 "compiler_corelib " |
59 "%(compiler)s/compiler_corelib_sources " | 65 "%(compiler)s/compiler_corelib_sources " |
60 "lib" % locations) | 66 "lib" % locations) |
61 if exit_code: | 67 if exit_code: |
62 return exit_code | 68 return exit_code |
63 | 69 |
64 if '--no-gyp' in sys.argv: | 70 if '--no-gyp' in sys.argv: |
65 print '--no-gyp is deprecated.' | 71 print '--no-gyp is deprecated.' |
66 | 72 |
67 return exit_code | 73 return exit_code |
68 | 74 |
69 | 75 |
70 if __name__ == '__main__': | 76 if __name__ == '__main__': |
71 sys.exit(Main()) | 77 sys.exit(Main()) |
OLD | NEW |