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

Unified Diff: tools/create_sdk.py

Issue 14908005: "Reverting 22561" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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/html/template_element_test.dart ('k') | tools/dom/dom.py » ('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
index c2c5cd05c035de637d6d41c4edde672e83cdec74..56d903e10154b85200e7066e99743f0b6a4c7122 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -36,7 +36,6 @@
# ......isolate/
# ......json/
# ......math/
-# ......mdv_observe_impl/
# ......mirrors/
# ......uri/
# ......utf/
@@ -219,7 +218,7 @@ def Main(argv):
join('html', 'dart2js'), join('html', 'dartium'),
join('html', 'html_common'),
join('indexed_db', 'dart2js'), join('indexed_db', 'dartium'),
- 'json', 'math', 'mdv_observe_impl', 'mirrors', 'typed_data',
+ 'json', 'math', 'mirrors', 'typed_data',
join('svg', 'dart2js'), join('svg', 'dartium'),
'uri', 'utf',
join('web_audio', 'dart2js'), join('web_audio', 'dartium'),
@@ -274,12 +273,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'),
« no previous file with comments | « tests/html/template_element_test.dart ('k') | tools/dom/dom.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698