diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-05 20:35:31 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-05 20:35:31 +0000 |
commit | 80b44755bb03dd274b15ff0987c717c6658db02d (patch) | |
tree | 7240c0567527abb99388e5a367911ebc00a08856 /build/gyp_chromium | |
parent | 35a03845aefda4f3173130c2b7f477c2a597c64c (diff) | |
download | chromium_src-80b44755bb03dd274b15ff0987c717c6658db02d.zip chromium_src-80b44755bb03dd274b15ff0987c717c6658db02d.tar.gz chromium_src-80b44755bb03dd274b15ff0987c717c6658db02d.tar.bz2 |
Treat cygwin the same as Windows when selecting the GN binary.
R=maruel@chromium.org
Review URL: https://codereview.chromium.org/106243002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239028 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/gyp_chromium')
-rwxr-xr-x | build/gyp_chromium | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/gyp_chromium b/build/gyp_chromium index 8f6be1d3..8ed0799 100755 --- a/build/gyp_chromium +++ b/build/gyp_chromium @@ -146,7 +146,7 @@ def RunGN(supplemental_includes): # The binaries in platform-specific subdirectories in src/tools/gn/bin. gnpath = SRC_DIR + '/tools/gn/bin/' - if sys.platform == 'win32': + if sys.platform in ('cygwin', 'win32'): gnpath += 'win/gn.exe' elif sys.platform.startswith('linux'): # On Linux we have 32-bit and 64-bit versions. |