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

Side by Side Diff: client/tools/generate_build.py

Issue 8341078: Archive dartserver code (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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
(Empty)
1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file.
4
5 #!/usr/bin/env python
6
7 import sys
8 import os
9 from os import path
10
11 def main():
12 client = path.normpath(path.join(path.dirname(sys.argv[0]), os.pardir))
13 compiler = path.normpath(path.join(client, os.pardir, 'compiler'))
14 locations = {
15 'client': client,
16 'compiler': compiler,
17 }
18
19 exit_code = os.system("python %(compiler)s/generate_source_list.py "
20 "dart_server %(client)s/dart_server "
21 "tools/dartserver/java" % locations)
22 return exit_code
23
24 if __name__ == '__main__':
25 sys.exit(main())
OLDNEW
« no previous file with comments | « client/tools/dartserver/java/com/google/appstack/tools/dartserver/ErrorFormatter.java ('k') | dart.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698