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

Side by Side Diff: tools/create_sdk.py

Issue 12316056: Move pkg/path to pkg/pathos. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « pkg/scheduled_test/test/metatest.dart ('k') | tools/line_doc_comments.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 # 2 #
3 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4 # for details. All rights reserved. Use of this source code is governed by a 4 # for details. All rights reserved. Use of this source code is governed by a
5 # BSD-style license that can be found in the LICENSE file. 5 # BSD-style license that can be found in the LICENSE file.
6 # 6 #
7 # A script which will be invoked from gyp to create an SDK. 7 # A script which will be invoked from gyp to create an SDK.
8 # 8 #
9 # Usage: create_sdk.py sdk_directory 9 # Usage: create_sdk.py sdk_directory
10 # 10 #
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 215
216 216
217 # Create and copy pkg. 217 # Create and copy pkg.
218 PKG = join(SDK_tmp, 'pkg') 218 PKG = join(SDK_tmp, 'pkg')
219 os.makedirs(PKG) 219 os.makedirs(PKG)
220 220
221 # 221 #
222 # Create and populate pkg/{args, intl, logging, meta, unittest, ...} 222 # Create and populate pkg/{args, intl, logging, meta, unittest, ...}
223 # 223 #
224 224
225 for library in ['args', 'http', 'intl', 'logging', 'meta', 'oauth2', 'path', 225 for library in ['args', 'http', 'intl', 'logging', 'meta', 'oauth2', 'pathos',
226 'serialization', 'unittest', 'yaml']: 226 'serialization', 'unittest', 'yaml']:
227 227
228 copytree(join(HOME, 'pkg', library), join(PKG, library), 228 copytree(join(HOME, 'pkg', library), join(PKG, library),
229 ignore=ignore_patterns('*.svn', 'doc', 'docs', 229 ignore=ignore_patterns('*.svn', 'doc', 'docs',
230 '*.py', '*.gypi', '*.sh', 'packages')) 230 '*.py', '*.gypi', '*.sh', 'packages'))
231 231
232 # Create and copy tools. 232 # Create and copy tools.
233 UTIL = join(SDK_tmp, 'util') 233 UTIL = join(SDK_tmp, 'util')
234 os.makedirs(UTIL) 234 os.makedirs(UTIL)
235 235
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 with open(os.path.join(SDK_tmp, 'revision'), 'w') as f: 293 with open(os.path.join(SDK_tmp, 'revision'), 'w') as f:
294 f.write(revision + '\n') 294 f.write(revision + '\n')
295 f.close() 295 f.close()
296 296
297 Copy(join(HOME, 'README.dart-sdk'), join(SDK_tmp, 'README')) 297 Copy(join(HOME, 'README.dart-sdk'), join(SDK_tmp, 'README'))
298 298
299 move(SDK_tmp, SDK) 299 move(SDK_tmp, SDK)
300 300
301 if __name__ == '__main__': 301 if __name__ == '__main__':
302 sys.exit(Main(sys.argv)) 302 sys.exit(Main(sys.argv))
OLDNEW
« no previous file with comments | « pkg/scheduled_test/test/metatest.dart ('k') | tools/line_doc_comments.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698