OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # | 2 # |
3 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4 # for details. All rights reserved. Use of this source code is governed by a | 4 # for details. All rights reserved. Use of this source code is governed by a |
5 # BSD-style license that can be found in the LICENSE file. | 5 # BSD-style license that can be found in the LICENSE file. |
6 # | 6 # |
7 # A script which will be invoked from gyp to create an SDK. | 7 # A script which will be invoked from gyp to create an SDK. |
8 # | 8 # |
9 # Usage: create_sdk.py sdk_directory | 9 # Usage: create_sdk.py sdk_directory |
10 # | 10 # |
(...skipping 13 matching lines...) Expand all Loading... |
24 # ....include/ | 24 # ....include/ |
25 # ......dart_api.h | 25 # ......dart_api.h |
26 # ......dart_debugger_api.h | 26 # ......dart_debugger_api.h |
27 # ......dart_mirrors_api.h | 27 # ......dart_mirrors_api.h |
28 # ......dart_native_api.h | 28 # ......dart_native_api.h |
29 # ....lib/ | 29 # ....lib/ |
30 # ......_internal/ | 30 # ......_internal/ |
31 # ......async/ | 31 # ......async/ |
32 # ......collection/ | 32 # ......collection/ |
33 # ......_collection_dev/ | 33 # ......_collection_dev/ |
| 34 # ......convert/ |
34 # ......core/ | 35 # ......core/ |
35 # ......crypto/ | |
36 # ......html/ | 36 # ......html/ |
37 # ......io/ | 37 # ......io/ |
38 # ......isolate/ | 38 # ......isolate/ |
39 # ......js/ | 39 # ......js/ |
40 # ......json/ | 40 # ......json/ |
41 # ......math/ | 41 # ......math/ |
42 # ......mirrors/ | 42 # ......mirrors/ |
43 # ......utf/ | 43 # ......utf/ |
44 # ......typed_data/ | 44 # ......typed_data/ |
45 # ....util/ | 45 # ....util/ |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 # | 191 # |
192 # Create and populate lib/{core, crypto, isolate, json, utf, ...}. | 192 # Create and populate lib/{core, crypto, isolate, json, utf, ...}. |
193 # | 193 # |
194 | 194 |
195 os.makedirs(join(LIB, 'html')) | 195 os.makedirs(join(LIB, 'html')) |
196 | 196 |
197 for library in [join('_internal', 'compiler'), | 197 for library in [join('_internal', 'compiler'), |
198 join('_internal', 'dartdoc'), | 198 join('_internal', 'dartdoc'), |
199 join('_internal', 'pub', 'resource'), | 199 join('_internal', 'pub', 'resource'), |
200 join('_internal', 'lib'), | 200 join('_internal', 'lib'), |
201 'async', 'collection', '_collection_dev', 'codec', 'convert', | 201 'async', 'collection', '_collection_dev', 'convert', |
202 'core', 'crypto', 'io', 'isolate', | 202 'core', 'crypto', 'io', 'isolate', |
203 join('chrome', 'dart2js'), join('chrome', 'dartium'), | 203 join('chrome', 'dart2js'), join('chrome', 'dartium'), |
204 join('html', 'dart2js'), join('html', 'dartium'), | 204 join('html', 'dart2js'), join('html', 'dartium'), |
205 join('html', 'html_common'), | 205 join('html', 'html_common'), |
206 join('indexed_db', 'dart2js'), join('indexed_db', 'dartium'), | 206 join('indexed_db', 'dart2js'), join('indexed_db', 'dartium'), |
207 'js', 'json', 'math', 'mirrors', 'typed_data', | 207 'js', 'json', 'math', 'mirrors', 'typed_data', |
208 join('svg', 'dart2js'), join('svg', 'dartium'), | 208 join('svg', 'dart2js'), join('svg', 'dartium'), |
209 'utf', | 209 'utf', |
210 join('web_audio', 'dart2js'), join('web_audio', 'dartium'), | 210 join('web_audio', 'dart2js'), join('web_audio', 'dartium'), |
211 join('web_gl', 'dart2js'), join('web_gl', 'dartium'), | 211 join('web_gl', 'dart2js'), join('web_gl', 'dartium'), |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 with open(os.path.join(SDK_tmp, 'revision'), 'w') as f: | 255 with open(os.path.join(SDK_tmp, 'revision'), 'w') as f: |
256 f.write(revision + '\n') | 256 f.write(revision + '\n') |
257 f.close() | 257 f.close() |
258 | 258 |
259 Copy(join(HOME, 'README.dart-sdk'), join(SDK_tmp, 'README')) | 259 Copy(join(HOME, 'README.dart-sdk'), join(SDK_tmp, 'README')) |
260 | 260 |
261 move(SDK_tmp, SDK) | 261 move(SDK_tmp, SDK) |
262 | 262 |
263 if __name__ == '__main__': | 263 if __name__ == '__main__': |
264 sys.exit(Main(sys.argv)) | 264 sys.exit(Main(sys.argv)) |
OLD | NEW |