| 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()
|
|
|