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

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

Issue 9317082: Remove deps on deleted files (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 | « no previous file | no next file » | 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) 2011, the Dart project authors. Please see the AUTHORS file 2 # Copyright (c) 2011, 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 19 matching lines...) Expand all
30 if exit_code: 30 if exit_code:
31 return exit_code 31 return exit_code
32 32
33 exit_code = os.system("python %(compiler)s/generate_source_list.py " 33 exit_code = os.system("python %(compiler)s/generate_source_list.py "
34 "corelib %(compiler)s/corelib_sources ../corelib/src" 34 "corelib %(compiler)s/corelib_sources ../corelib/src"
35 % locations) 35 % locations)
36 if exit_code: 36 if exit_code:
37 return exit_code 37 return exit_code
38 38
39 exit_code = os.system("python %(compiler)s/generate_systemlibrary_list.py " 39 exit_code = os.system("python %(compiler)s/generate_systemlibrary_list.py "
40 "domlib %(compiler)s/domlib_sources ../client/dom dom.da rt LICENSE README.google" 40 "domlib %(compiler)s/domlib_sources ../client/dom dom.da rt"
41 % locations) 41 % locations)
42 if exit_code: 42 if exit_code:
43 return exit_code 43 return exit_code
44 44
45 exit_code = os.system("python %(compiler)s/generate_systemlibrary_list.py " 45 exit_code = os.system("python %(compiler)s/generate_systemlibrary_list.py "
46 "htmllib %(compiler)s/htmllib_sources ../client/html/rel ease html.dart htmlimpl.dart" 46 "htmllib %(compiler)s/htmllib_sources ../client/html/rel ease html.dart htmlimpl.dart"
47 % locations) 47 % locations)
48 if exit_code: 48 if exit_code:
49 return exit_code 49 return exit_code
50 50
(...skipping 19 matching lines...) Expand all
70 return exit_code 70 return exit_code
71 71
72 if '--no-gyp' in sys.argv: 72 if '--no-gyp' in sys.argv:
73 print '--no-gyp is deprecated.' 73 print '--no-gyp is deprecated.'
74 74
75 return exit_code 75 return exit_code
76 76
77 77
78 if __name__ == '__main__': 78 if __name__ == '__main__':
79 sys.exit(Main()) 79 sys.exit(Main())
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698