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

Unified Diff: tool/patch_sdk.dart

Issue 1228063003: fix for 1.12.0-dev SDK and 0.25.1 analyzer breaking changes (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 5 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
Index: tool/patch_sdk.dart
diff --git a/tool/patch_sdk.dart b/tool/patch_sdk.dart
index 1324d41193b85bc8b4df04964ead7280b8f4e693..5734f392112fded444019790f69675fe6750c8ea 100755
--- a/tool/patch_sdk.dart
+++ b/tool/patch_sdk.dart
@@ -46,6 +46,9 @@ void main(List<String> argv) {
var libContents = new File(path.join(sdkLibIn, '_internal', 'libraries.dart'))
.readAsStringSync();
_writeSync(path.join(sdkOut, '_internal', 'libraries.dart'), libContents);
+ _writeSync(path.join(
+ sdkOut, '_internal', 'sdk_library_metadata', 'lib', 'libraries.dart'),
+ libContents);
_writeSync(path.join(sdkOut, '..', 'version'),
new File(path.join(sdkLibIn, '..', 'version')).readAsStringSync());
« pubspec.yaml ('K') | « test/checker/checker_test.dart ('k') | tool/sdk_expected_errors.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698