OLD | NEW |
1 #!/usr/bin/env dart | 1 #!/usr/bin/env dart |
2 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 2 // Copyright (c) 2016, 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 /// A straightforward script that builds the SDK. | 6 /// A straightforward script that builds the SDK. |
7 /// | 7 /// |
8 /// This would be easy enough to do in a shell script, as we go through the | 8 /// This would be easy enough to do in a shell script, as we go through the |
9 /// command line interface. But being able to build from a Dart library means | 9 /// command line interface. But being able to build from a Dart library means |
10 /// we can call this during code coverage to get more realistic numbers. | 10 /// we can call this during code coverage to get more realistic numbers. |
(...skipping 17 matching lines...) Expand all Loading... |
28 'dart:_js_embedded_names', | 28 'dart:_js_embedded_names', |
29 'dart:_js_helper', | 29 'dart:_js_helper', |
30 'dart:_js_mirrors', | 30 'dart:_js_mirrors', |
31 'dart:_js_primitives', | 31 'dart:_js_primitives', |
32 'dart:_metadata', | 32 'dart:_metadata', |
33 'dart:_native_typed_data', | 33 'dart:_native_typed_data', |
34 'dart:async', | 34 'dart:async', |
35 'dart:collection', | 35 'dart:collection', |
36 'dart:convert', | 36 'dart:convert', |
37 'dart:core', | 37 'dart:core', |
| 38 'dart:developer', |
38 'dart:isolate', | 39 'dart:isolate', |
39 'dart:js', | 40 'dart:js', |
40 'dart:js_util', | 41 'dart:js_util', |
41 'dart:math', | 42 'dart:math', |
42 'dart:mirrors', | 43 'dart:mirrors', |
43 'dart:typed_data', | 44 'dart:typed_data', |
44 'dart:indexed_db', | 45 'dart:indexed_db', |
45 'dart:html', | 46 'dart:html', |
46 'dart:html_common', | 47 'dart:html_common', |
47 'dart:svg', | 48 'dart:svg', |
48 'dart:web_audio', | 49 'dart:web_audio', |
49 'dart:web_gl', | 50 'dart:web_gl', |
50 'dart:web_sql' | 51 'dart:web_sql' |
51 ]); | 52 ]); |
52 compile(args); | 53 compile(args); |
53 } | 54 } |
OLD | NEW |