Chromium Code Reviews| Index: pylib/gyp/common.py |
| diff --git a/pylib/gyp/common.py b/pylib/gyp/common.py |
| index 614d207c30ab4607470a9627e53a6b8a248e74ea..a33efd0b2139731b3a7e7432d2bf32e4ba085719 100644 |
| --- a/pylib/gyp/common.py |
| +++ b/pylib/gyp/common.py |
| @@ -361,9 +361,9 @@ def GetFlavor(params): |
| def CopyTool(flavor, out_path): |
| - """Finds (mac|sun)_tool.gyp in the gyp directory and copies it |
| + """Finds (mac|sun|win)_tool.gyp in the gyp directory and copies it |
| to |out_path|.""" |
| - prefix = { 'solaris': 'sun', 'mac': 'mac' }.get(flavor, None) |
| + prefix = { 'solaris': 'sun', 'mac': 'mac', 'win': 'win' }.get(flavor, None) |
|
Nico
2012/02/27 16:23:30
likewise
scottmg
2012/02/28 00:01:13
Done.
|
| if not prefix: |
| return |