Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(157)

Side by Side Diff: tool/input_sdk/lib/_internal/libraries.dart

Issue 1528613004: First cut of mini dart:html. (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Delete non html file Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 library libraries; 5 library libraries;
6 6
7 /** 7 /**
8 * A bit flag used by [LibraryInfo] indicating that a library is used by dart2js 8 * A bit flag used by [LibraryInfo] indicating that a library is used by dart2js
9 */ 9 */
10 const int DART2JS_PLATFORM = 1; 10 const int DART2JS_PLATFORM = 1;
(...skipping 13 matching lines...) Expand all
24 24
25 "async": const LibraryInfo( 25 "async": const LibraryInfo(
26 "async/async.dart", 26 "async/async.dart",
27 maturity: Maturity.STABLE, 27 maturity: Maturity.STABLE,
28 dart2jsPatchPath: "_internal/compiler/js_lib/async_patch.dart"), 28 dart2jsPatchPath: "_internal/compiler/js_lib/async_patch.dart"),
29 29
30 "_blink": const LibraryInfo( 30 "_blink": const LibraryInfo(
31 "_blink/dartium/_blink_dartium.dart", 31 "_blink/dartium/_blink_dartium.dart",
32 category: "Client", 32 category: "Client",
33 implementation: true, 33 implementation: true,
34 documented: false, 34 documented: false),
35 platforms: VM_PLATFORM),
36 35
37 "_chrome": const LibraryInfo( 36 "_chrome": const LibraryInfo(
38 "_chrome/dart2js/chrome_dart2js.dart", 37 "_chrome/dart2js/chrome_dart2js.dart",
39 documented: false, 38 documented: false,
40 category: "Client"), 39 category: "Client"),
41 40
42 "collection": const LibraryInfo( 41 "collection": const LibraryInfo(
43 "collection/collection.dart", 42 "collection/collection.dart",
44 maturity: Maturity.STABLE, 43 maturity: Maturity.STABLE,
45 dart2jsPatchPath: "_internal/compiler/js_lib/collection_patch.dart"), 44 dart2jsPatchPath: "_internal/compiler/js_lib/collection_patch.dart"),
46 45
47 "convert": const LibraryInfo( 46 "convert": const LibraryInfo(
48 "convert/convert.dart", 47 "convert/convert.dart",
49 maturity: Maturity.STABLE, 48 maturity: Maturity.STABLE,
50 dart2jsPatchPath: "_internal/compiler/js_lib/convert_patch.dart"), 49 dart2jsPatchPath: "_internal/compiler/js_lib/convert_patch.dart"),
51 50
52 "core": const LibraryInfo( 51 "core": const LibraryInfo(
53 "core/core.dart", 52 "core/core.dart",
54 maturity: Maturity.STABLE, 53 maturity: Maturity.STABLE,
55 dart2jsPatchPath: "_internal/compiler/js_lib/core_patch.dart"), 54 dart2jsPatchPath: "_internal/compiler/js_lib/core_patch.dart"),
56 55
57 "html": const LibraryInfo( 56 "html": const LibraryInfo(
58 "html/dartium/html_dartium.dart", 57 "html/ddc/html_ddc.dart",
Jennifer Messerly 2015/12/15 19:17:12 dev_compiler? it's slightly longer, but that way
vsm 2015/12/15 21:05:27 I'll fix this in a followup. Need to patch up my
58 category: "Client",
59 maturity: Maturity.WEB_STABLE),
60
61 "html_common": const LibraryInfo(
62 "html/html_common/html_common_ddc.dart",
59 category: "Client", 63 category: "Client",
60 maturity: Maturity.WEB_STABLE, 64 maturity: Maturity.WEB_STABLE,
61 dart2jsPath: "html/dart2js/html_dart2js.dart"),
62
63 "html_common": const LibraryInfo(
64 "html/html_common/html_common.dart",
65 category: "Client",
66 maturity: Maturity.WEB_STABLE,
67 dart2jsPath: "html/html_common/html_common_dart2js.dart",
68 documented: false, 65 documented: false,
69 implementation: true), 66 implementation: true),
70 67
71 "indexed_db": const LibraryInfo( 68 "indexed_db": const LibraryInfo(
72 "indexed_db/dartium/indexed_db_dartium.dart", 69 "indexed_db/ddc/indexed_db_ddc.dart",
73 category: "Client", 70 category: "Client",
74 maturity: Maturity.WEB_STABLE, 71 maturity: Maturity.WEB_STABLE),
75 dart2jsPath: "indexed_db/dart2js/indexed_db_dart2js.dart"),
76 72
77 "io": const LibraryInfo( 73 "io": const LibraryInfo(
78 "io/io.dart", 74 "io/io.dart",
79 category: "Server", 75 category: "Server",
80 maturity: Maturity.STABLE, 76 maturity: Maturity.STABLE,
81 dart2jsPatchPath: "_internal/compiler/js_lib/io_patch.dart"), 77 dart2jsPatchPath: "_internal/compiler/js_lib/io_patch.dart"),
82 78
83 "isolate": const LibraryInfo( 79 "isolate": const LibraryInfo(
84 "isolate/isolate.dart", 80 "isolate/isolate.dart",
85 maturity: Maturity.STABLE, 81 maturity: Maturity.STABLE,
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 dart2jsPatchPath: "_internal/compiler/js_lib/typed_data_patch.dart"), 114 dart2jsPatchPath: "_internal/compiler/js_lib/typed_data_patch.dart"),
119 115
120 "_native_typed_data": const LibraryInfo( 116 "_native_typed_data": const LibraryInfo(
121 "_internal/compiler/js_lib/native_typed_data.dart", 117 "_internal/compiler/js_lib/native_typed_data.dart",
122 category: "Internal", 118 category: "Internal",
123 implementation: true, 119 implementation: true,
124 documented: false, 120 documented: false,
125 platforms: DART2JS_PLATFORM), 121 platforms: DART2JS_PLATFORM),
126 122
127 "svg": const LibraryInfo( 123 "svg": const LibraryInfo(
128 "svg/dartium/svg_dartium.dart", 124 "svg/ddc/svg_ddc.dart",
129 category: "Client", 125 category: "Client",
130 maturity: Maturity.WEB_STABLE, 126 maturity: Maturity.WEB_STABLE),
131 dart2jsPath: "svg/dart2js/svg_dart2js.dart"),
132 127
133 "web_audio": const LibraryInfo( 128 "web_audio": const LibraryInfo(
134 "web_audio/dartium/web_audio_dartium.dart", 129 "web_audio/ddc/web_audio_ddc.dart",
135 category: "Client", 130 category: "Client",
136 maturity: Maturity.WEB_STABLE, 131 maturity: Maturity.WEB_STABLE),
137 dart2jsPath: "web_audio/dart2js/web_audio_dart2js.dart"),
138 132
139 "web_gl": const LibraryInfo( 133 "web_gl": const LibraryInfo(
140 "web_gl/dartium/web_gl_dartium.dart", 134 "web_gl/ddc/web_gl_ddc.dart",
141 category: "Client", 135 category: "Client",
142 maturity: Maturity.WEB_STABLE, 136 maturity: Maturity.WEB_STABLE),
143 dart2jsPath: "web_gl/dart2js/web_gl_dart2js.dart"),
144 137
145 "web_sql": const LibraryInfo( 138 "web_sql": const LibraryInfo(
146 "web_sql/dartium/web_sql_dartium.dart", 139 "web_sql/ddc/web_sql_ddc.dart",
147 category: "Client", 140 category: "Client",
148 maturity: Maturity.WEB_STABLE, 141 maturity: Maturity.WEB_STABLE),
149 dart2jsPath: "web_sql/dart2js/web_sql_dart2js.dart"),
150 142
151 "_internal": const LibraryInfo( 143 "_internal": const LibraryInfo(
152 "internal/internal.dart", 144 "internal/internal.dart",
153 category: "Internal", 145 category: "Internal",
154 documented: false, 146 documented: false,
155 dart2jsPatchPath: 147 dart2jsPatchPath:
156 "_internal/compiler/js_lib/internal_patch.dart"), 148 "_internal/compiler/js_lib/internal_patch.dart"),
157 149
158 "_js_helper": const LibraryInfo( 150 "_js_helper": const LibraryInfo(
159 "_internal/compiler/js_lib/js_helper.dart", 151 "_internal/compiler/js_lib/js_helper.dart",
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 static const Maturity STABLE = const Maturity(4, "Stable", 318 static const Maturity STABLE = const Maturity(4, "Stable",
327 "The library is stable. API backwards-compatibility is guaranteed.\n" 319 "The library is stable. API backwards-compatibility is guaranteed.\n"
328 "However implementation details might change."); 320 "However implementation details might change.");
329 321
330 static const Maturity LOCKED = const Maturity(5, "Locked", 322 static const Maturity LOCKED = const Maturity(5, "Locked",
331 "This library will not change except when serious bugs are encountered."); 323 "This library will not change except when serious bugs are encountered.");
332 324
333 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", 325 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified",
334 "The maturity for this library has not been specified."); 326 "The maturity for this library has not been specified.");
335 } 327 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698