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

Unified Diff: tools/create_sdk.py

Issue 200323008: Load the transformer isolate code from pub's asset directory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 6 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/lib/analyzer/analyze_library.status ('k') | 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 015d0dda67e699bf0bdcfaeb9f63d801087a876d..62b9194712998edaef5818b754998fcdc9888225 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -230,10 +230,14 @@ def Main(argv):
for jarFile in jarFiles:
copyfile(jarFile, join(DARTANALYZER_DEST, os.path.basename(jarFile)))
+ RESOURCE = join(SDK_tmp, 'lib', '_internal', 'pub', 'asset')
+ os.makedirs(os.path.dirname(RESOURCE))
+ copytree(join(HOME, 'sdk', 'lib', '_internal', 'pub', 'asset'),
+ join(RESOURCE),
+ ignore=ignore_patterns('.svn'))
+
# Copy in 7zip for Windows.
if HOST_OS == 'win32':
- RESOURCE = join(SDK_tmp, 'lib', '_internal', 'pub', 'resource')
- os.makedirs(RESOURCE)
copytree(join(HOME, 'third_party', '7zip'),
join(RESOURCE, '7zip'),
ignore=ignore_patterns('.svn'))
« no previous file with comments | « tests/lib/analyzer/analyze_library.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698