| OLD | NEW |
| 1 # Copyright 2014 the V8 project authors. All rights reserved. | 1 # Copyright 2014 the V8 project authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 | 5 |
| 6 import functools | 6 import functools |
| 7 import logging | 7 import logging |
| 8 import os | 8 import os |
| 9 import shlex | 9 import shlex |
| 10 import sys | 10 import sys |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 elif platform() == 'ios': | 114 elif platform() == 'ios': |
| 115 return 'xcode' | 115 return 'xcode' |
| 116 elif IsWindows(): | 116 elif IsWindows(): |
| 117 return 'msvs' | 117 return 'msvs' |
| 118 elif IsLinux(): | 118 elif IsLinux(): |
| 119 return 'make' | 119 return 'make' |
| 120 elif IsMac(): | 120 elif IsMac(): |
| 121 return 'xcode' | 121 return 'xcode' |
| 122 else: | 122 else: |
| 123 assert False, 'Don\'t know what builder we\'re using!' | 123 assert False, 'Don\'t know what builder we\'re using!' |
| OLD | NEW |