Chromium Code Reviews| Index: tools/build.py |
| =================================================================== |
| --- tools/build.py (revision 2649) |
| +++ tools/build.py (working copy) |
| @@ -119,13 +119,20 @@ |
| project_file = 'dart.sln' |
| if os.path.exists('dart-%s.gyp' % CurrentDirectoryBaseName()): |
| project_file = 'dart-%s.sln' % CurrentDirectoryBaseName() |
| - args = [options.devenv + os.sep + 'devenv.com', |
| - '/build', |
| - build_config, |
| - '/project', |
| - target, |
| - project_file |
| - ] |
| + if target == 'all': |
|
Ivan Posva
2011/12/20 18:18:42
Please do not use TABS.
|
| + args = [options.devenv + os.sep + 'devenv.com', |
| + '/build', |
| + build_config, |
| + project_file |
| + ] |
| + else: |
| + args = [options.devenv + os.sep + 'devenv.com', |
| + '/build', |
| + build_config, |
| + '/project', |
| + target, |
| + project_file |
| + ] |
| else: |
| make = 'make' |
| if HOST_OS == 'freebsd': |