1// Copyright 2013 The Flutter Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5// Core SDK libraries. 6import 'dart:async'; 7import 'dart:core'; 8import 'dart:collection'; 9import 'dart:convert'; 10import 'dart:io'; 11import 'dart:isolate'; 12import 'dart:math'; 13import 'dart:fuchsia.builtin'; 14import 'dart:zircon'; 15import 'dart:fuchsia'; 16import 'dart:typed_data'; 17 18// If new imports are added to this list, then it is also necessary to ensure 19// that the dart_deps parameter in the rule 20// gen_snapshot_cc("script_runner_snapshot") in the BUILD.gn file in this 21// directory is updated with any new dependencies. 22 23import 'package:fuchsia/fuchsia.dart'; 24import 'package:zircon/zircon.dart'; 25 26// FIDL bindings and application libraries. 27import 'package:lib.app.dart/app.dart'; 28import 'package:fidl/fidl.dart'; 29 30// From //sdk/fidl/fuchsia.modular 31import 'package:fidl_fuchsia_modular/fidl.dart'; 32