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

Side by Side Diff: tools/bundle_sdk.py

Issue 1649703002: Update project authors statements to Dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: Created 4 years, 10 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 unified diff | Download patch
« no previous file with comments | « tools/bots/fletch_namer.py ('k') | tools/capnp/bin/main.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file 2 # Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file
3 # for details. All rights reserved. Use of this source code is governed by a 3 # for details. All rights reserved. Use of this source code is governed by a
4 # BSD-style license that can be found in the LICENSE file. 4 # BSD-style license that can be found in the LICENSE file.
5 5
6 # This script is creating a self contained directory with all the tools, 6 # This script is creating a self contained directory with all the tools,
7 # libraries, packages and samples needed for running fletch. 7 # libraries, packages and samples needed for running fletch.
8 8
9 # This script assumes that the target arg has been build in the passed in 9 # This script assumes that the target arg has been build in the passed in
10 # --build_dir. It also assumes that out/ReleaseXARM/fletch-vm has been build. 10 # --build_dir. It also assumes that out/ReleaseXARM/fletch-vm has been build.
11 11
12 import optparse 12 import optparse
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 CopySamples(sdk_temp) 307 CopySamples(sdk_temp)
308 CopyAdditionalFiles(sdk_temp) 308 CopyAdditionalFiles(sdk_temp)
309 if deb_package: 309 if deb_package:
310 CopyArmDebPackage(sdk_temp, deb_package) 310 CopyArmDebPackage(sdk_temp, deb_package)
311 sdk_dir = join(build_dir, 'fletch-sdk') 311 sdk_dir = join(build_dir, 'fletch-sdk')
312 EnsureDeleted(sdk_dir) 312 EnsureDeleted(sdk_dir)
313 copytree(sdk_temp, sdk_dir) 313 copytree(sdk_temp, sdk_dir)
314 314
315 if __name__ == '__main__': 315 if __name__ == '__main__':
316 sys.exit(Main()) 316 sys.exit(Main())
OLDNEW
« no previous file with comments | « tools/bots/fletch_namer.py ('k') | tools/capnp/bin/main.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698