summaryrefslogtreecommitdiffstats
path: root/build/win
diff options
context:
space:
mode:
authorscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-04 23:00:37 +0000
committerscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-04 23:00:37 +0000
commit88d792a3ba9b3f8133e2a25055c652eb5c28e3c6 (patch)
tree53e972748edbfed270cde4ea52404caeddae0b12 /build/win
parent0623cfe447b581a9062a7c570536eef075d0ba30 (diff)
downloadchromium_src-88d792a3ba9b3f8133e2a25055c652eb5c28e3c6.zip
chromium_src-88d792a3ba9b3f8133e2a25055c652eb5c28e3c6.tar.gz
chromium_src-88d792a3ba9b3f8133e2a25055c652eb5c28e3c6.tar.bz2
Remove build references to third_party/cygwin
There's test running dependencies in blink and buildbot, so the directory/DEPS can't be removed right now. For the time being, remove the build related entries. R=maruel@chromium.org, thakis@chromium.org BUG=123026 TEST=remove from DEPS and .DEPS.git, delete HKCU\Software\Cygnus Solutions\... and build successfully. Review URL: https://codereview.chromium.org/149063008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248802 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/win')
-rw-r--r--build/win/setup_cygwin_mount.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/build/win/setup_cygwin_mount.py b/build/win/setup_cygwin_mount.py
deleted file mode 100644
index d68a3af..0000000
--- a/build/win/setup_cygwin_mount.py
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import os
-import sys
-
-def main():
- if len(sys.argv) != 2 or sys.argv[1] != '--win-only':
- return 1
- if sys.platform in ('win32', 'cygwin'):
- self_dir = os.path.dirname(sys.argv[0])
- mount_path = os.path.join(self_dir, "../../third_party/cygwin")
- batch_path = os.path.join(mount_path, "setup_mount.bat")
- return os.system(os.path.normpath(batch_path) + ">nul")
- return 0
-
-
-if __name__ == "__main__":
- sys.exit(main())