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

Unified Diff: pkg/dev_compiler/tool/input_sdk/libraries.dart

Issue 3004153002: Fixed analyzer test to use dart2js not dartium (Closed)
Patch Set: Removed rest of dartium files. Created 3 years, 3 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analyzer/test/generated/all_the_rest_test.dart ('k') | runtime/bin/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dev_compiler/tool/input_sdk/libraries.dart
diff --git a/pkg/dev_compiler/tool/input_sdk/libraries.dart b/pkg/dev_compiler/tool/input_sdk/libraries.dart
index fe28fc57b6dbd5a47db801ac7c21d25eac0bd738..17cdf1a1bb1c84523644d8d49ea65b2cc3d69bd9 100644
--- a/pkg/dev_compiler/tool/input_sdk/libraries.dart
+++ b/pkg/dev_compiler/tool/input_sdk/libraries.dart
@@ -61,20 +61,20 @@ const Map<String, LibraryInfo> libraries = const {
categories: "Client,Server,Embedded",
maturity: Maturity.UNSTABLE,
dart2jsPatchPath: "_internal/js_runtime/lib/developer_patch.dart"),
- "html": const LibraryInfo("html/dartium/html_dartium.dart",
+ "html": const LibraryInfo("html/dart2js/html_dart2js.dart",
categories: "Client",
maturity: Maturity.WEB_STABLE,
- dart2jsPath: "html/dart2js/html_dart2js.dart"),
+ platforms: DART2JS_PLATFORM),
"html_common": const LibraryInfo("html/html_common/html_common.dart",
categories: "Client",
maturity: Maturity.WEB_STABLE,
dart2jsPath: "html/html_common/html_common_dart2js.dart",
documented: false,
implementation: true),
- "indexed_db": const LibraryInfo("indexed_db/dartium/indexed_db_dartium.dart",
+ "indexed_db": const LibraryInfo("indexed_db/dart2js/indexed_db_dart2js.dart",
categories: "Client",
maturity: Maturity.WEB_STABLE,
- dart2jsPath: "indexed_db/dart2js/indexed_db_dart2js.dart"),
+ platforms: DART2JS_PLATFORM),
"io": const LibraryInfo("io/io.dart",
categories: "Server",
dart2jsPatchPath: "_internal/js_runtime/lib/io_patch.dart"),
@@ -82,14 +82,14 @@ const Map<String, LibraryInfo> libraries = const {
categories: "Client,Server",
maturity: Maturity.STABLE,
dart2jsPatchPath: "_internal/js_runtime/lib/isolate_patch.dart"),
- "js": const LibraryInfo("js/dartium/js_dartium.dart",
+ "js": const LibraryInfo("js/dart2js/js_dart2js.dart",
categories: "Client",
maturity: Maturity.STABLE,
- dart2jsPath: "js/dart2js/js_dart2js.dart"),
- "js_util": const LibraryInfo("js_util/dartium/js_util_dartium.dart",
+ platforms: DART2JS_PLATFORM),
+ "js_util": const LibraryInfo("js_util/dart2js/js_util_dart2js.dart",
categories: "Client",
maturity: Maturity.STABLE,
- dart2jsPath: "js_util/dart2js/js_util_dart2js.dart"),
+ platforms: DART2JS_PLATFORM),
"math": const LibraryInfo("math/math.dart",
categories: "Client,Server,Embedded",
maturity: Maturity.STABLE,
@@ -102,7 +102,7 @@ const Map<String, LibraryInfo> libraries = const {
categories: "Client",
implementation: true,
documented: false,
- dart2jsPath: "html/dart2js/nativewrappers.dart"),
+ platforms: DART2JS_PLATFORM),
"typed_data": const LibraryInfo("typed_data/typed_data.dart",
categories: "Client,Server,Embedded",
maturity: Maturity.STABLE,
@@ -113,22 +113,22 @@ const Map<String, LibraryInfo> libraries = const {
implementation: true,
documented: false,
platforms: DART2JS_PLATFORM),
- "svg": const LibraryInfo("svg/dartium/svg_dartium.dart",
+ "svg": const LibraryInfo("svg/dart2js/svg_dart2js.dart.dart",
vsm 2017/09/01 20:26:05 The '.dart.dart' here is breaking DDC.
categories: "Client",
maturity: Maturity.WEB_STABLE,
- dart2jsPath: "svg/dart2js/svg_dart2js.dart"),
- "web_audio": const LibraryInfo("web_audio/dartium/web_audio_dartium.dart",
+ platforms: DART2JS_PLATFORM),
+ "web_audio": const LibraryInfo("web_audio/dart2js/web_audio_dart2js.dart",
categories: "Client",
maturity: Maturity.WEB_STABLE,
- dart2jsPath: "web_audio/dart2js/web_audio_dart2js.dart"),
- "web_gl": const LibraryInfo("web_gl/dartium/web_gl_dartium.dart",
+ platforms: DART2JS_PLATFORM),
+ "web_gl": const LibraryInfo("web_gl/dart2js/web_gl_dart2js.dart",
categories: "Client",
maturity: Maturity.WEB_STABLE,
- dart2jsPath: "web_gl/dart2js/web_gl_dart2js.dart"),
- "web_sql": const LibraryInfo("web_sql/dartium/web_sql_dartium.dart",
+ platforms: DART2JS_PLATFORM),
+ "web_sql": const LibraryInfo("web_sql/dart2js/web_sql_dart2js.dart",
categories: "Client",
maturity: Maturity.WEB_STABLE,
- dart2jsPath: "web_sql/dart2js/web_sql_dart2js.dart"),
+ platforms: DART2JS_PLATFORM),
"_internal": const LibraryInfo("internal/internal.dart",
categories: "",
documented: false,
« no previous file with comments | « pkg/analyzer/test/generated/all_the_rest_test.dart ('k') | runtime/bin/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698