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

Side by Side Diff: tools/utils.py

Issue 6525028: Cygwin support (Closed)
Patch Set: Address issues Created 9 years, 10 months 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
« no previous file with comments | « src/platform-cygwin.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2008 the V8 project authors. All rights reserved. 1 # Copyright 2008 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 list.append(line) 42 list.append(line)
43 return list 43 return list
44 44
45 45
46 def GuessOS(): 46 def GuessOS():
47 id = platform.system() 47 id = platform.system()
48 if id == 'Linux': 48 if id == 'Linux':
49 return 'linux' 49 return 'linux'
50 elif id == 'Darwin': 50 elif id == 'Darwin':
51 return 'macos' 51 return 'macos'
52 elif id.find('CYGWIN') >= 0:
53 return 'cygwin'
52 elif id == 'Windows' or id == 'Microsoft': 54 elif id == 'Windows' or id == 'Microsoft':
53 # On Windows Vista platform.system() can return 'Microsoft' with some 55 # On Windows Vista platform.system() can return 'Microsoft' with some
54 # versions of Python, see http://bugs.python.org/issue1082 56 # versions of Python, see http://bugs.python.org/issue1082
55 return 'win32' 57 return 'win32'
56 elif id == 'FreeBSD': 58 elif id == 'FreeBSD':
57 return 'freebsd' 59 return 'freebsd'
58 elif id == 'OpenBSD': 60 elif id == 'OpenBSD':
59 return 'openbsd' 61 return 'openbsd'
60 elif id == 'SunOS': 62 elif id == 'SunOS':
61 return 'solaris' 63 return 'solaris'
(...skipping 23 matching lines...) Expand all
85 87
86 def GuessWordsize(): 88 def GuessWordsize():
87 if '64' in platform.machine(): 89 if '64' in platform.machine():
88 return '64' 90 return '64'
89 else: 91 else:
90 return '32' 92 return '32'
91 93
92 94
93 def IsWindows(): 95 def IsWindows():
94 return GuessOS() == 'win32' 96 return GuessOS() == 'win32'
OLDNEW
« no previous file with comments | « src/platform-cygwin.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698