| 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 embedded 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 # Embedded core is a reduced version of the regular dart:core. | |
| 23 core: core/embedded_core.dart | |
| 24 | |
| 25 math: ../third_party/dart/sdk/lib/math/math.dart | |
| 26 typed_data: ../third_party/dart/sdk/lib/typed_data/typed_data.dart | |
| 27 developer: ../third_party/dart/sdk/lib/developer/developer.dart | |
| 28 collection: ../third_party/dart/sdk/lib/collection/collection.dart | |
| 29 | |
| 30 _internal: ../third_party/dart/sdk/lib/internal/internal.dart | |
| 31 | |
| 32 # These are the part-files included by embedded_core.dart. | |
| 33 # To ease path-management, they are defined as internal libraries. | |
| 34 _core_annotations: ../third_party/dart/sdk/lib/core/annotations.dart | |
| 35 _core_bool: ../third_party/dart/sdk/lib/core/bool.dart | |
| 36 _core_comparable: ../third_party/dart/sdk/lib/core/comparable.dart | |
| 37 _core_date_time: ../third_party/dart/sdk/lib/core/date_time.dart | |
| 38 _core_double: ../third_party/dart/sdk/lib/core/double.dart | |
| 39 _core_duration: ../third_party/dart/sdk/lib/core/duration.dart | |
| 40 _core_errors: ../third_party/dart/sdk/lib/core/errors.dart | |
| 41 _core_exceptions: ../third_party/dart/sdk/lib/core/exceptions.dart | |
| 42 _core_expando: ../third_party/dart/sdk/lib/core/expando.dart | |
| 43 _core_function: ../third_party/dart/sdk/lib/core/function.dart | |
| 44 _core_identical: ../third_party/dart/sdk/lib/core/identical.dart | |
| 45 _core_int: ../third_party/dart/sdk/lib/core/int.dart | |
| 46 _core_invocation: ../third_party/dart/sdk/lib/core/invocation.dart | |
| 47 _core_iterable: ../third_party/dart/sdk/lib/core/iterable.dart | |
| 48 _core_iterator: ../third_party/dart/sdk/lib/core/iterator.dart | |
| 49 _core_list: ../third_party/dart/sdk/lib/core/list.dart | |
| 50 _core_map: ../third_party/dart/sdk/lib/core/map.dart | |
| 51 _core_null: ../third_party/dart/sdk/lib/core/null.dart | |
| 52 _core_num: ../third_party/dart/sdk/lib/core/num.dart | |
| 53 _core_object: ../third_party/dart/sdk/lib/core/object.dart | |
| 54 _core_pattern: ../third_party/dart/sdk/lib/core/pattern.dart | |
| 55 _core_print: ../third_party/dart/sdk/lib/core/print.dart | |
| 56 _core_resource: ../third_party/dart/sdk/lib/core/resource.dart | |
| 57 _core_set: ../third_party/dart/sdk/lib/core/set.dart | |
| 58 _core_sink: ../third_party/dart/sdk/lib/core/sink.dart | |
| 59 _core_stacktrace: ../third_party/dart/sdk/lib/core/stacktrace.dart | |
| 60 _core_stopwatch: ../third_party/dart/sdk/lib/core/stopwatch.dart | |
| 61 _core_string: ../third_party/dart/sdk/lib/core/string.dart | |
| 62 _core_string_buffer: ../third_party/dart/sdk/lib/core/string_buffer.dart | |
| 63 _core_string_sink: ../third_party/dart/sdk/lib/core/string_sink.dart | |
| 64 _core_symbol: ../third_party/dart/sdk/lib/core/symbol.dart | |
| 65 _core_type: ../third_party/dart/sdk/lib/core/type.dart | |
| 66 | |
| 67 # These are unsupported on fletch-embedded. | |
| 68 isolate: unsupported: | |
| 69 mirrors: unsupported: | |
| 70 async: unsupported: | |
| 71 convert: unsupported: | |
| 72 io: unsupported: | |
| 73 indexed_db: unsupported: | |
| 74 html: unsupported: | |
| 75 js: unsupported: | |
| 76 html_common: unsupported: | |
| 77 web_sql: unsupported: | |
| 78 svg: unsupported: | |
| 79 web_audio: unsupported: | |
| 80 web_gl: unsupported: | |
| 81 _native_typed_data: unsupported: | |
| 82 nativewrappers: unsupported: | |
| 83 profiler: unsupported: | |
| OLD | NEW |