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

Unified Diff: build_tools/download_sdk.py

Issue 2635013002: Remove windows svn dependency from DEPS (Closed)
Patch Set: Remove windows svn dependency from DEPS Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build_tools/cygtar.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build_tools/download_sdk.py
diff --git a/build_tools/download_sdk.py b/build_tools/download_sdk.py
index 8e683f3552126c97a1be017ae142e5d322469d35..a1173f828064e1ddd26dc6915b5a18ebef2fc6d8 100755
--- a/build_tools/download_sdk.py
+++ b/build_tools/download_sdk.py
@@ -7,8 +7,7 @@
This script downloads toolchain bz2's and expands them.
On Windows this script also required access to the cygtar python
-module which gets included by the gclient DEPS, and assumes
-that cygwin is installed in /cygwin.
+module, and assumes that cygwin is installed in /cygwin.
"""
import argparse
@@ -41,9 +40,7 @@ OUT_DIR = os.path.join(SRC_DIR, 'out')
TARGET_DIR = os.path.join(OUT_DIR, 'nacl_sdk')
if sys.platform == 'win32':
- NACL_BUILD_DIR = os.path.join(SRC_DIR, 'native_client', 'build')
- sys.path.append(NACL_BUILD_DIR)
- import cygtar # pylint: disable=import-error
+ import cygtar
BOT_GSUTIL = '/b/build/scripts/slave/gsutil'
GS_URL_BASE = 'gs://nativeclient-mirror/nacl/nacl_sdk/'
« no previous file with comments | « build_tools/cygtar.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698