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

Side by Side Diff: tool/build_sdk.dart

Issue 1879373004: Implement modular compilation (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « test/utils_test.dart ('k') | tool/build_sdk.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env dart
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
4 // BSD-style license that can be found in the LICENSE file.
5
6 /// A straightforward script that builds the SDK.
7 ///
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
10 /// we can call this during code coverage to get more realistic numbers.
11
12 import 'package:args/command_runner.dart' show CommandRunner;
13 import 'package:dev_compiler/src/compiler/command.dart';
14
15 main(List<String> arguments) {
16 var args = [
17 'compile',
18 '--unsafe-force-compile',
19 '--no-source-map',
20 '--no-summarize'
21 ];
22 args.addAll(arguments);
23 args.addAll([
24 'dart:_runtime',
25 'dart:_debugger',
26 'dart:_foreign_helper',
27 'dart:_interceptors',
28 'dart:_internal',
29 'dart:_isolate_helper',
30 'dart:_js_embedded_names',
31 'dart:_js_helper',
32 'dart:_js_mirrors',
33 'dart:_js_primitives',
34 'dart:_metadata',
35 'dart:_native_typed_data',
36 'dart:async',
37 'dart:collection',
38 'dart:convert',
39 'dart:core',
40 'dart:isolate',
41 'dart:js',
42 'dart:math',
43 'dart:mirrors',
44 'dart:typed_data',
45 'dart:indexed_db',
46 'dart:html',
47 'dart:html_common',
48 'dart:svg',
49 'dart:web_audio',
50 'dart:web_gl',
51 'dart:web_sql'
52 ]);
53 var runner = new CommandRunner('dartdevc', 'Dart Development Compiler');
54 runner.addCommand(new CompileCommand());
55 return runner.run(args);
56 }
OLDNEW
« no previous file with comments | « test/utils_test.dart ('k') | tool/build_sdk.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698