| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium 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 import os | 5 import os |
| 6 import sys | 6 import sys |
| 7 | 7 |
| 8 | 8 |
| 9 def IsAvailable(): | 9 def IsAvailable(): |
| 10 _winreg = None | 10 _winreg = None |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 print >> sys.stderr, "Couldn't find split_link installation." | 37 print >> sys.stderr, "Couldn't find split_link installation." |
| 38 print >> sys.stderr, ('Run python tools\\win\\split_link\\' | 38 print >> sys.stderr, ('Run python tools\\win\\split_link\\' |
| 39 'install_split_link.py from an elevated Visual ' | 39 'install_split_link.py from an elevated Visual ' |
| 40 'Studio Command Prompt to install.') | 40 'Studio Command Prompt to install.') |
| 41 sys.stdout.write('0') | 41 sys.stdout.write('0') |
| 42 return 1 | 42 return 1 |
| 43 | 43 |
| 44 | 44 |
| 45 if __name__ == '__main__': | 45 if __name__ == '__main__': |
| 46 sys.exit(main()) | 46 sys.exit(main()) |
| OLD | NEW |