Chromium Code Reviews| Index: tools/gyp/find_mac_sdk.py |
| =================================================================== |
| --- tools/gyp/find_mac_sdk.py (revision 31337) |
| +++ tools/gyp/find_mac_sdk.py (working copy) |
| @@ -85,5 +85,8 @@ |
| if __name__ == '__main__': |
| if sys.platform != 'darwin': |
| - raise Exception("This script only runs on Mac") |
| - print main() |
| + # raise Exception("This script only runs on Mac") |
| + # If we aren't on Mac, print out a dummy version string; it won't be used. |
| + print 'X.X' |
| + else: |
| + print main() |