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

Unified Diff: tools/create_sdk.py

Issue 10735050: Include new corelib/unified dir in sdk for dart2js (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 | « no previous file | 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 a3ad5b5444033e12bb6da170949fc701147fb39b..2667458e1c64e0f4af9a10b537c26d2b599e013f 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -98,7 +98,7 @@ def Copy(src, dest):
# TODO(zundel): this excludes the analyzer from the sdk build until builders
# have all prerequisite software installed. Also update dart.gyp.
def ShouldCopyAnalyzer():
- os = utils.GuessOS();
+ os = utils.GuessOS();
return os == 'linux' or os == 'macos'
@@ -130,6 +130,9 @@ def CopyDart2Js(build_dir, sdk_root):
copytree(os.path.join('corelib', 'src'),
os.path.join(sdk_root, 'lib', 'dart2js', 'corelib', 'src'),
ignore=ignore_patterns('.svn'))
+ copytree(os.path.join('corelib', 'unified'),
+ os.path.join(sdk_root, 'lib', 'dart2js', 'corelib', 'unified'),
+ ignore=ignore_patterns('.svn'))
copytree(os.path.join('runtime', 'lib'),
os.path.join(sdk_root, 'lib', 'dart2js', 'runtime', 'lib'),
ignore=ignore_patterns('.svn'))
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698