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

Unified Diff: tools/create_sdk.py

Issue 2474523003: fix #27607, add dev_compiler summary to the SDK and move JS files (Closed)
Patch Set: fix typo Created 4 years, 1 month 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 | « pkg/dev_compiler/web/web_command.dart ('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 54cb4ddc4794fdab6ed361e3cf2938ac4f925c83..25c7aba633e23c6e3e1ede1dd1cdcb1b8be284cd 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -171,8 +171,10 @@ def CopyAnalysisSummaries(snapshots, lib):
join(lib, '_internal', 'strong.sum'))
def CopyDevCompilerSdk(home, lib):
+ copyfile(join(home, 'pkg', 'dev_compiler', 'lib', 'sdk', 'ddc_sdk.sum'),
+ join(lib, '_internal', 'ddc_sdk.sum'))
copytree(join(home, 'pkg', 'dev_compiler', 'lib', 'js'),
- join(lib, '_internal', 'dev_compiler'))
+ join(lib, 'dev_compiler'))
def Main():
# Pull in all of the gypi files which will be munged into the sdk.
« no previous file with comments | « pkg/dev_compiler/web/web_command.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698