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

Unified Diff: tools/create_sdk.py

Issue 10700062: The file isolte_runtime.dart was only used by the analyzer, and now it is no longer in use (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 | « lib/isolate/isolate_runtime.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/create_sdk.py
diff --git a/tools/create_sdk.py b/tools/create_sdk.py
index aeba302c1d48ca060a1d6378923b296270809d13..a3ad5b5444033e12bb6da170949fc701147fb39b 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -359,15 +359,6 @@ def Main(argv):
copytree(join(HOME, 'lib', 'isolate'), join(LIB, 'isolate'),
ignore=ignore_patterns('.svn'))
- isolate_runtime_dir = join(LIB, 'isolate', 'runtime')
- # path seems to exist when run locally, but not on builder
- if not exists(isolate_runtime_dir):
- os.makedirs(isolate_runtime_dir)
-
- isolate_runtime_src = join(HOME, 'runtime', 'lib', 'isolate.dart')
- isolate_runtime_dest = join(LIB, 'isolate', 'runtime', 'isolate.dart')
- copyfile(isolate_runtime_src, isolate_runtime_dest)
-
#
# Create and populate lib/core.
#
« no previous file with comments | « lib/isolate/isolate_runtime.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698