| Index: tools/create_sdk.py
|
| ===================================================================
|
| --- tools/create_sdk.py (revision 15494)
|
| +++ tools/create_sdk.py (working copy)
|
| @@ -161,6 +161,11 @@
|
| copymode(dart_src_binary, dart_dest_binary)
|
| if utils.GuessOS() != 'win32':
|
| subprocess.call(['strip', dart_dest_binary])
|
| + gen_snapshot_src_binary = join(HOME, build_dir,
|
| + 'gen_snapshot' + dart_file_extension)
|
| + gen_snapshot_dest_binary = join(BIN, 'gen_snapshot' + dart_file_extension)
|
| + copyfile(gen_snapshot_src_binary, gen_snapshot_dest_binary)
|
| + copymode(gen_snapshot_src_binary, gen_snapshot_dest_binary)
|
|
|
| if ShouldCopyAnalyzer():
|
| # Copy analyzer into sdk/bin
|
|
|