a2aa6c8414
We're consolidating all dependencies on package:front_end in one file per tool. The idea is, if you want to depend on something in the package:front_end, you modify pkg/front_end/lib/src/api_unstable/ddc.dart and consult with the front-end team. These consolidated files will help us when designing a public API in the future. Change-Id: I505b8f986e8c2b1d93e158171c1ecc0c4e12b9a6 Reviewed-on: https://dart-review.googlesource.com/c/78220 Reviewed-by: Jens Johansen <jensj@google.com>
77 lines
2.8 KiB
Dart
Executable File
77 lines
2.8 KiB
Dart
Executable File
#!/usr/bin/env dart
|
|
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
import 'dart:async';
|
|
import 'dart:convert' show json;
|
|
import 'dart:io';
|
|
import 'package:args/args.dart' show ArgParser;
|
|
import 'package:dev_compiler/src/compiler/module_builder.dart';
|
|
import 'package:dev_compiler/src/compiler/shared_command.dart'
|
|
show SharedCompilerOptions;
|
|
import 'package:dev_compiler/src/kernel/target.dart';
|
|
import 'package:dev_compiler/src/kernel/command.dart';
|
|
import 'package:dev_compiler/src/kernel/compiler.dart';
|
|
import 'package:front_end/src/api_unstable/ddc.dart'
|
|
show CompilerOptions, kernelForComponent;
|
|
import 'package:kernel/kernel.dart';
|
|
import 'package:path/path.dart' as path;
|
|
|
|
Future main(List<String> args) async {
|
|
var ddcPath = path.dirname(path.dirname(path.fromUri(Platform.script)));
|
|
|
|
// Parse flags.
|
|
var parser = ArgParser()
|
|
..addOption('output')
|
|
..addOption('libraries',
|
|
defaultsTo: path.join(ddcPath, '../../sdk/lib/libraries.json'));
|
|
var parserOptions = parser.parse(args);
|
|
|
|
var outputPath = parserOptions['output'] as String;
|
|
if (outputPath == null) {
|
|
var sdkRoot = path.absolute(path.dirname(path.dirname(ddcPath)));
|
|
var buildDir = path.join(sdkRoot, Platform.isMacOS ? 'xcodebuild' : 'out');
|
|
var genDir = path.join(buildDir, 'ReleaseX64', 'gen', 'utils', 'dartdevc');
|
|
outputPath = path.join(genDir, 'kernel', 'ddc_sdk.dill');
|
|
}
|
|
|
|
var target = DevCompilerTarget();
|
|
var options = CompilerOptions()
|
|
..compileSdk = true
|
|
// TODO(sigmund): remove this unnecessary option when possible.
|
|
..sdkRoot = Uri.base
|
|
..librariesSpecificationUri =
|
|
Uri.base.resolveUri(Uri.file(parserOptions['libraries']))
|
|
..target = target;
|
|
|
|
var inputs = target.extraRequiredLibraries.map(Uri.parse).toList();
|
|
var component = await kernelForComponent(inputs, options);
|
|
|
|
var outputDir = path.dirname(outputPath);
|
|
await Directory(outputDir).create(recursive: true);
|
|
await writeComponentToBinary(component, outputPath);
|
|
|
|
var jsModule = ProgramCompiler(
|
|
component,
|
|
target.hierarchy,
|
|
SharedCompilerOptions(moduleName: 'dart_sdk'),
|
|
{}).emitModule(component, [], {});
|
|
var moduleFormats = {
|
|
'amd': ModuleFormat.amd,
|
|
'common': ModuleFormat.common,
|
|
'es6': ModuleFormat.es6,
|
|
'legacy': ModuleFormat.legacy,
|
|
};
|
|
|
|
for (var name in moduleFormats.keys) {
|
|
var format = moduleFormats[name];
|
|
var jsDir = path.join(outputDir, name);
|
|
var jsPath = path.join(jsDir, 'dart_sdk.js');
|
|
await Directory(jsDir).create();
|
|
var jsCode = jsProgramToCode(jsModule, format);
|
|
await File(jsPath).writeAsString(jsCode.code);
|
|
await File('$jsPath.map').writeAsString(json.encode(jsCode.sourceMap));
|
|
}
|
|
}
|