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

Side by Side Diff: compiler/scripts/generate_my_projects.py

Issue 9950019: Renamed the 'dartc' launch script to 'dart-analysis' and adds it to dart-sdk (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Short circuit the copying of dart_analyzer completely from the build Created 8 years, 6 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
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2 # Copyright (c) 2012, the Dart 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 import os 6 import os
7 import sys 7 import sys
8 8
9 9
10 def Main(): 10 def Main():
(...skipping 12 matching lines...) Expand all
23 if exit_code: 23 if exit_code:
24 return exit_code 24 return exit_code
25 25
26 26
27 exit_code = os.system("python %(compiler)s/generate_source_list.py " 27 exit_code = os.system("python %(compiler)s/generate_source_list.py "
28 "javatests %(compiler)s/test_sources javatests" 28 "javatests %(compiler)s/test_sources javatests"
29 % locations) 29 % locations)
30 if exit_code: 30 if exit_code:
31 return exit_code 31 return exit_code
32 32
33 if exit_code:
34 return exit_code
35
36 if '--no-gyp' in sys.argv: 33 if '--no-gyp' in sys.argv:
37 print '--no-gyp is deprecated.' 34 print '--no-gyp is deprecated.'
38 35
39 return exit_code 36 return exit_code
40 37
41 38
42 if __name__ == '__main__': 39 if __name__ == '__main__':
43 sys.exit(Main()) 40 sys.exit(Main())
OLDNEW
« no previous file with comments | « compiler/scripts/dartc_wrapper.py ('k') | dart.gyp » ('j') | tools/testing/dart/test_suite.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698