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