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

Unified Diff: tools/dart/update.py

Issue 1229953008: Update Dart SDK to 1.12.0-dev.3.1 (Closed) Base URL: git@github.com:domokit/mojo.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
« no previous file with comments | « tools/dart/patch_sdk.diff ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dart/update.py
diff --git a/tools/dart/update.py b/tools/dart/update.py
index 541830ae2ddbf55eb79ff01a42e110aefc1c04b6..b830528e90fa4bd8bc2ff79885ec8a1e4d6aea49 100755
--- a/tools/dart/update.py
+++ b/tools/dart/update.py
@@ -17,8 +17,8 @@ import sys
# How to roll the dart sdk: Just change this url! We write this to the stamp
# file after we download, and then check the stamp file for differences.
-SDK_URL_BASE = ('http://gsdview.appspot.com/dart-archive/channels/dev/'
- 'raw/45311/sdk/')
+SDK_URL_BASE = ('http://gsdview.appspot.com/dart-archive/channels/dev/raw/'
+ '1.12.0-dev.3.1/sdk/')
LINUX_64_SDK = 'dartsdk-linux-x64-release.zip'
MACOS_64_SDK = 'dartsdk-macos-x64-release.zip'
@@ -95,12 +95,6 @@ def main():
print "Failed to unzip the dart sdk."
return 1
- # Patch the the dart-sdk/lib/_internal/libraries.dart file
- # so that it understands dart:sky imports.
- patch_command = ['patch', LIBRARIES_FILE, PATCH_FILE]
- if not RunCommand(patch_command, fail_hard=False):
- print "Failed to apply the patch to the Dart libraries file."
- return 1
return 0
if __name__ == '__main__':
« no previous file with comments | « tools/dart/patch_sdk.diff ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698