e2976acd22
This is needed to activate the kernel transformer embedded with the kernel package from the flutter engine. Change-Id: I3253e01723b662eb48b4b3743ac5bcc1b44c7d46 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/102920 Reviewed-by: Jake Macdonald <jakemac@google.com> Reviewed-by: Aske Simon Christensen <askesc@google.com> Commit-Queue: Jacob Richman <jacobr@google.com>
81 lines
3.0 KiB
Dart
Executable File
81 lines
3.0 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:kernel/target/targets.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 librarySpecPath = parserOptions['libraries'] as String;
|
|
|
|
var target = DevCompilerTarget(TargetFlags());
|
|
var options = CompilerOptions()
|
|
..compileSdk = true
|
|
// TODO(sigmund): remove this unnecessary option when possible.
|
|
..sdkRoot = Uri.base
|
|
..librariesSpecificationUri = Uri.base.resolveUri(Uri.file(librarySpecPath))
|
|
..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);
|
|
File(librarySpecPath).copySync(
|
|
path.join(path.dirname(outputDir), path.basename(librarySpecPath)));
|
|
|
|
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));
|
|
}
|
|
}
|