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

Unified Diff: tools/create_sdk.py

Issue 9865025: Revert "Removes dartc reliance on its own libraries, now can be targeted at any implementation's li… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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/language/language.status ('k') | tools/testing/dart/test_suite.dart » ('j') | 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
old mode 100755
new mode 100644
index 09a307beba7a7facc53721bdf4c4a7f6e1e776be..1672cebb9f645ab00f4264b1e8d0c54d0b01fa5e
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -303,10 +303,6 @@ def Main(argv):
copytree(join(HOME, 'lib', 'isolate'), join(LIB, 'isolate'),
ignore=ignore_patterns('.svn'))
- 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.
#
@@ -399,15 +395,6 @@ def Main(argv):
UTIL = join(SDK_tmp, 'util')
os.makedirs(UTIL)
-
- # Copy import maps
- PLATFORMS = ['any', 'vm', 'dartium', 'dart2js', 'frog' ]
- os.makedirs(join(LIB, 'config'))
- for platform in PLATFORMS:
- import_src = join(HOME, 'lib', 'config', 'import_' + platform + '.config')
- import_dst = join(LIB, 'config', 'import_' + platform + '.config')
- copyfile(import_src, import_dst);
-
move(SDK_tmp, SDK)
if __name__ == '__main__':
« no previous file with comments | « tests/language/language.status ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698