| OLD | NEW |
| (Empty) |
| 1 # Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | |
| 2 # for details. All rights reserved. Use of this source code is governed by a | |
| 3 # BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 # The libraries available for mobile fletch programs. | |
| 6 | |
| 7 [dart-spec] | |
| 8 spec:3rd edition. | |
| 9 | |
| 10 [features] | |
| 11 # No extra features. | |
| 12 | |
| 13 [libraries] | |
| 14 # Fletch specific libraries | |
| 15 fletch.ffi: ffi/ffi.dart | |
| 16 fletch: fletch/fletch.dart | |
| 17 fletch.io: io/io.dart | |
| 18 fletch.service: service/service.dart | |
| 19 fletch.os: os/os.dart | |
| 20 fletch._system: system/system.dart | |
| 21 | |
| 22 async: ../third_party/dart/sdk/lib/async/async.dart | |
| 23 collection: ../third_party/dart/sdk/lib/collection/collection.dart | |
| 24 convert: ../third_party/dart/sdk/lib/convert/convert.dart | |
| 25 core: ../third_party/dart/sdk/lib/core/core.dart | |
| 26 developer: ../third_party/dart/sdk/lib/developer/developer.dart | |
| 27 math: ../third_party/dart/sdk/lib/math/math.dart | |
| 28 typed_data: ../third_party/dart/sdk/lib/typed_data/typed_data.dart | |
| 29 | |
| 30 _internal: ../third_party/dart/sdk/lib/internal/internal.dart | |
| 31 | |
| 32 # These are unsupported on fletch-mobile. | |
| 33 isolate: unsupported: | |
| 34 mirrors: unsupported: | |
| 35 io: unsupported: | |
| 36 indexed_db: unsupported: | |
| 37 html: unsupported: | |
| 38 js: unsupported: | |
| 39 html_common: unsupported: | |
| 40 web_sql: unsupported: | |
| 41 svg: unsupported: | |
| 42 web_audio: unsupported: | |
| 43 web_gl: unsupported: | |
| 44 _native_typed_data: unsupported: | |
| 45 nativewrappers: unsupported: | |
| 46 profiler: unsupported: | |
| OLD | NEW |