OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2017, 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 # Note: if you edit this file, you must also edit libraries.json in this | |
6 # directory: | |
7 # | |
8 # python ./tools/yaml2json.py sdk/lib/libraries.yaml sdk/lib/libraries.json | |
Siggi Cherem (dart-lang)
2017/08/24 19:27:02
btw - the current plan is to add a build rule that
ahe
2017/08/25 08:45:51
Let's discuss this plan at our next 1:1.
| |
9 # | |
10 # We currently have several different files that needs to be updated when | |
11 # changing libraries, sources, and patch files. See | |
12 # https://github.com/dart-lang/sdk/issues/28836. | |
13 | |
14 vm: | |
15 libraries: | |
16 _builtin: | |
17 uri: "../../runtime/bin/builtin.dart" | |
18 | |
19 _internal: | |
20 uri: "internal/internal.dart" | |
21 patches: | |
22 - "../../runtime/lib/internal_patch.dart" | |
23 - "../../runtime/lib/class_id.dart" | |
24 - "../../runtime/lib/print_patch.dart" | |
25 - "../../runtime/lib/symbol_patch.dart" | |
26 | |
27 async: | |
28 uri: "async/async.dart" | |
29 patches: | |
30 - "../../runtime/lib/async_patch.dart" | |
31 - "../../runtime/lib/deferred_load_patch.dart" | |
32 - "../../runtime/lib/schedule_microtask_patch.dart" | |
33 - "../../runtime/lib/timer_patch.dart" | |
34 | |
35 collection: | |
36 uri: "collection/collection.dart" | |
37 patches: | |
38 - "../../runtime/lib/collection_patch.dart" | |
39 - "../../runtime/lib/compact_hash.dart" | |
40 | |
41 convert: | |
42 uri: "convert/convert.dart" | |
43 patches: "../../runtime/lib/convert_patch.dart" | |
44 | |
45 core: | |
46 uri: "core/core.dart" | |
47 patches: | |
48 - "../../runtime/lib/core_patch.dart" | |
49 - "../../runtime/lib/array.dart" | |
50 - "../../runtime/lib/array_patch.dart" | |
51 - "../../runtime/lib/bigint.dart" | |
52 - "../../runtime/lib/bool_patch.dart" | |
53 - "../../runtime/lib/date_patch.dart" | |
54 - "../../runtime/lib/double.dart" | |
55 - "../../runtime/lib/double_patch.dart" | |
56 - "../../runtime/lib/errors_patch.dart" | |
57 - "../../runtime/lib/expando_patch.dart" | |
58 - "../../runtime/lib/function.dart" | |
59 - "../../runtime/lib/function_patch.dart" | |
60 - "../../runtime/lib/growable_array.dart" | |
61 - "../../runtime/lib/identical_patch.dart" | |
62 - "../../runtime/lib/immutable_map.dart" | |
63 - "../../runtime/lib/integers.dart" | |
64 - "../../runtime/lib/integers_patch.dart" | |
65 - "../../runtime/lib/invocation_mirror_patch.dart" | |
66 - "../../runtime/lib/lib_prefix.dart" | |
67 - "../../runtime/lib/map_patch.dart" | |
68 - "../../runtime/lib/null_patch.dart" | |
69 - "../../runtime/lib/object_patch.dart" | |
70 - "../../runtime/lib/regexp_patch.dart" | |
71 - "../../runtime/lib/stacktrace.dart" | |
72 - "../../runtime/lib/stopwatch_patch.dart" | |
73 - "../../runtime/lib/string_buffer_patch.dart" | |
74 - "../../runtime/lib/string_patch.dart" | |
75 - "../../runtime/lib/type_patch.dart" | |
76 - "../../runtime/lib/uri_patch.dart" | |
77 - "../../runtime/lib/weak_property.dart" | |
78 | |
79 developer: | |
80 uri: "developer/developer.dart" | |
81 patches: | |
82 - "../../runtime/lib/developer.dart" | |
83 - "../../runtime/lib/profiler.dart" | |
84 - "../../runtime/lib/timeline.dart" | |
85 | |
86 io: | |
87 uri: "io/io.dart" | |
88 patches: | |
89 - "../../runtime/bin/common_patch.dart" | |
90 - "../../runtime/bin/directory_patch.dart" | |
91 - "../../runtime/bin/eventhandler_patch.dart" | |
92 - "../../runtime/bin/file_patch.dart" | |
93 - "../../runtime/bin/file_system_entity_patch.dart" | |
94 - "../../runtime/bin/filter_patch.dart" | |
95 - "../../runtime/bin/io_service_patch.dart" | |
96 - "../../runtime/bin/platform_patch.dart" | |
97 - "../../runtime/bin/process_patch.dart" | |
98 - "../../runtime/bin/socket_patch.dart" | |
99 - "../../runtime/bin/stdio_patch.dart" | |
100 - "../../runtime/bin/secure_socket_patch.dart" | |
101 - "../../runtime/bin/sync_socket_patch.dart" | |
102 | |
103 isolate: | |
104 uri: "isolate/isolate.dart" | |
105 patches: | |
106 - "../../runtime/lib/isolate_patch.dart" | |
107 - "../../runtime/lib/timer_impl.dart" | |
108 | |
109 math: | |
110 uri: "math/math.dart" | |
111 patches: "../../runtime/lib/math_patch.dart" | |
112 | |
113 mirrors: | |
114 uri: "mirrors/mirrors.dart" | |
115 patches: | |
116 - "../../runtime/lib/mirrors_patch.dart" | |
117 - "../../runtime/lib/mirrors_impl.dart" | |
118 - "../../runtime/lib/mirror_reference.dart" | |
119 | |
120 nativewrappers: | |
121 uri: "html/dartium/nativewrappers.dart" | |
122 | |
123 profiler: | |
124 uri: "profiler/profiler.dart" | |
125 patches: "../../runtime/lib/empty_source.dart" | |
126 | |
127 typed_data: | |
128 uri: "typed_data/typed_data.dart" | |
129 patches: "../../runtime/lib/typed_data_patch.dart" | |
OLD | NEW |