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

Unified Diff: tools/patch_sdk.dart

Issue 2931193002: Remove dart:_vmservice and dart:vmservice_io from platform.dill. (Closed)
Patch Set: Remove a test from blacklists as it passing now Created 3 years, 6 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 | « tests/lib_strong/lib_strong_kernel.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/patch_sdk.dart
diff --git a/tools/patch_sdk.dart b/tools/patch_sdk.dart
index 64038458e20e667185fccd0c72cc514f3e8ffb32..90d996c098e2cfadfeb1ed1aacc20b8f9c8fad89 100644
--- a/tools/patch_sdk.dart
+++ b/tools/patch_sdk.dart
@@ -168,19 +168,6 @@ String _updateLibraryMetadata(String sdkOut, String libContents) {
"profiler/profiler.dart",
maturity: Maturity.DEPRECATED,
documented: false),
-
- "_vmservice": const LibraryInfo(
- "vmservice/vmservice.dart",
- implementation: true,
- documented: false,
- platforms: VM_PLATFORM),
-
- "vmservice_io": const LibraryInfo(
- "vmservice_io/vmservice_io.dart",
- implementation: true,
- documented: false,
- platforms: VM_PLATFORM),
-
''');
_writeSync(
path.join(
@@ -214,6 +201,7 @@ _copyExtraVmLibraries(String sdkOut, Map<String, String> locations) {
_writeSync(libraryOut, readInputFile(libraryIn));
}
locations["vmservice_io"] = "vmservice_io/vmservice_io.dart";
+ locations["_vmservice"] = "vmservice/vmservice.dart";
}
_applyPatch(SdkLibrary library, String sdkLibIn, String patchIn, String sdkOut,
« no previous file with comments | « tests/lib_strong/lib_strong_kernel.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698