// Copyright (c) 2016, 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 kernel.target.flutter; import 'targets.dart'; import 'vm.dart' show VmTarget; class FlutterTarget extends VmTarget { FlutterTarget(TargetFlags flags) : super(flags); @override String get name => 'flutter'; @override bool get enableSuperMixins => true; // This is the order that bootstrap libraries are loaded according to // `runtime/vm/object_store.h`. @override List get extraRequiredLibraries => const [ 'dart:async', 'dart:collection', 'dart:convert', 'dart:developer', 'dart:_internal', 'dart:isolate', 'dart:math', // The library dart:mirrors may be ignored by the VM, e.g. when built in // PRODUCT mode. 'dart:mirrors', 'dart:profiler', 'dart:typed_data', 'dart:nativewrappers', 'dart:io', // Required for flutter. 'dart:ui', 'dart:vmservice_io', ]; }