bde6bbca96
Similar to how dart2js keeps its own target in package compiler. This allows VmTarget to use package vm specific transformations and metadata. Change-Id: I41dd2ae241b828224fb2c9a51e6ad5073b6fdea8 Reviewed-on: https://dart-review.googlesource.com/69160 Commit-Queue: Vyacheslav Egorov <vegorov@google.com> Reviewed-by: Dmitry Stefantsov <dmitryas@google.com> Reviewed-by: Kevin Millikin <kmillikin@google.com>
23 lines
877 B
Dart
23 lines
877 B
Dart
// Copyright (c) 2018, 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.
|
|
|
|
library fasta.tool.additional_targets;
|
|
|
|
import 'package:kernel/target/targets.dart' show TargetFlags, targets;
|
|
|
|
import 'package:compiler/src/kernel/dart2js_target.dart' show Dart2jsTarget;
|
|
|
|
import 'package:vm/target/install.dart' as vm_target_install
|
|
show installAdditionalTargets;
|
|
|
|
void installAdditionalTargets() {
|
|
// If you add new targets here, please also update FastaUsageLong in
|
|
// ../../messages.yaml.
|
|
targets["dart2js"] =
|
|
(TargetFlags flags) => new Dart2jsTarget("dart2js", flags);
|
|
targets["dart2js_server"] =
|
|
(TargetFlags flags) => new Dart2jsTarget("dart2js_server", flags);
|
|
vm_target_install.installAdditionalTargets();
|
|
}
|