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

Unified Diff: tools/create_sdk.py

Issue 14155002: Fix apidoc dependencies and reenable editor test (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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
===================================================================
--- tools/create_sdk.py (revision 21247)
+++ tools/create_sdk.py (working copy)
@@ -199,7 +199,7 @@
os.makedirs(join(LIB, 'html'))
- for library in ['_internal/compiler/implementation/lib',
+ for library in ['_internal',
'async', 'collection', '_collection_dev', 'core',
'crypto', 'io', 'isolate',
join('chrome', 'dart2js'), join('chrome', 'dartium'),
@@ -215,11 +215,6 @@
copytree(join(HOME, 'sdk', 'lib', library), join(LIB, library),
ignore=ignore_patterns('*.svn', 'doc', '*.py', '*.gypi', '*.sh'))
- # This is used by both the editor and dart2js, remove this once we moved
- # out the compiler functionality from sdk/lib/_internal. See issue 9801.
- copyfile(join(HOME, 'sdk', 'lib', '_internal', 'libraries.dart'),
- join(LIB, '_internal', 'libraries.dart'))
-
# Create and copy packages.
PACKAGES = join(SDK_tmp, 'packages')
os.makedirs(PACKAGES)

Powered by Google App Engine
This is Rietveld 408576698