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

Unified Diff: tools/create_sdk.py

Issue 14732003: Implement Model-Driven-Views spec for Dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: small fix Created 7 years, 8 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: tools/create_sdk.py
diff --git a/tools/create_sdk.py b/tools/create_sdk.py
index 56d903e10154b85200e7066e99743f0b6a4c7122..8da16343d1d48101e55ea000269b7b829f94d152 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -37,6 +37,7 @@
# ......json/
# ......math/
# ......mirrors/
+# ......observe/
# ......uri/
# ......utf/
# ......typed_data/
@@ -218,7 +219,7 @@ def Main(argv):
join('html', 'dart2js'), join('html', 'dartium'),
join('html', 'html_common'),
join('indexed_db', 'dart2js'), join('indexed_db', 'dartium'),
- 'json', 'math', 'mirrors', 'typed_data',
+ 'json', 'math', 'mirrors', 'observe', 'typed_data',
join('svg', 'dart2js'), join('svg', 'dartium'),
'uri', 'utf',
join('web_audio', 'dart2js'), join('web_audio', 'dartium'),
@@ -273,12 +274,12 @@ def Main(argv):
DARTANALYZER_SRC = join(HOME, build_dir, 'dartanalyzer')
DARTANALYZER_DEST = join(UTIL, 'dartanalyzer')
os.makedirs(DARTANALYZER_DEST)
-
+
jarFiles = glob.glob(join(DARTANALYZER_SRC, '*.jar'))
-
+
for jarFile in jarFiles:
copyfile(jarFile, join(DARTANALYZER_DEST, os.path.basename(jarFile)))
-
+
# Copy in 7zip for Windows.
if HOST_OS == 'win32':
copytree(join(HOME, 'third_party', '7zip'),

Powered by Google App Engine
This is Rietveld 408576698