Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/usr/bin/env python | |
|
Ivan Posva
2012/08/07 05:15:00
I am wondering why this file is really needed. We
| |
| 2 | |
| 3 # Copyright (c) 2012 The Dart Authors. All rights reserved. | |
| 4 # Use of this source code is governed by a BSD-style license that can be | |
| 5 # found in the LICENSE file. | |
| 6 | |
| 7 # This script is wrapper for Dart that adds some support for how GYP | |
|
ahe
2012/08/06 19:00:15
Please follow this style guide: http://google-styl
Emily Fortuna
2012/08/06 19:36:33
I support using function_name as well, but just to
| |
| 8 # is invoked by Dart beyond what can be done in the gclient hooks. | |
| 9 | |
| 10 import os | |
| 11 import subprocess | |
| 12 import sys | |
| 13 | |
| 14 def Execute(args): | |
| 15 process = subprocess.Popen(args) | |
|
ahe
2012/08/06 19:00:15
I think you need to call process.communicate here.
Emily Fortuna
2012/08/06 19:36:33
Only needed if he's PIPEing input or output: http:
| |
| 16 process.wait() | |
| 17 return process.returncode | |
| 18 | |
| 19 if __name__ == '__main__': | |
| 20 args = ['python', "dart/third_party/gyp/gyp", "--depth=dart", | |
|
ahe
2012/08/06 19:00:15
Please be consistent with ' and ".
| |
| 21 "-Idart/tools/gyp/all.gypi", "dart/dart.gyp"] | |
| 22 | |
| 23 if sys.platform == 'win32': | |
| 24 # Generate Visual Studio 2008 compatible files by default. | |
| 25 if not os.environ.get('GYP_MSVS_VERSION'): | |
| 26 args.extend(['-G', 'msvs_version=2008']) | |
| 27 | |
| 28 sys.exit(Execute(args)) | |
| OLD | NEW |