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

Unified Diff: tools/create_sdk.py

Issue 2416783005: Add ddc resources to the sdk build (Closed)
Patch Set: Created 4 years, 2 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 85ba81199f3c63498e9ef881ab16ffe9894cdcac..54cb4ddc4794fdab6ed361e3cf2938ac4f925c83 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -47,6 +47,7 @@
# ......_internal/
#.........spec.sum
#.........strong.sum
+#.........dev_compiler/
# ......analysis_server/
# ......analyzer/
# ......async/
@@ -169,6 +170,9 @@ def CopyAnalysisSummaries(snapshots, lib):
copyfile(join(snapshots, 'strong.sum'),
join(lib, '_internal', 'strong.sum'))
+def CopyDevCompilerSdk(home, lib):
+ copytree(join(home, 'pkg', 'dev_compiler', 'lib', 'js'),
+ join(lib, '_internal', 'dev_compiler'))
def Main():
# Pull in all of the gypi files which will be munged into the sdk.
@@ -304,6 +308,7 @@ def Main():
CopyDartdocResources(HOME, SDK_tmp)
CopyAnalyzerSources(HOME, LIB)
CopyAnalysisSummaries(SNAPSHOT, LIB)
+ CopyDevCompilerSdk(HOME, LIB)
# Write the 'version' file
version = utils.GetVersion()
« 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