summaryrefslogtreecommitdiffstats
path: root/build/android
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-10 20:11:34 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-10 20:11:34 +0000
commitd46ab486fa06091741f0345200f9a865e854a792 (patch)
treef013973abfbd898a3889ca0968754a0eb4eb72c7 /build/android
parentfa607b39b816aff03e7f7e1522bff23a37432b88 (diff)
downloadchromium_src-d46ab486fa06091741f0345200f9a865e854a792.zip
chromium_src-d46ab486fa06091741f0345200f9a865e854a792.tar.gz
chromium_src-d46ab486fa06091741f0345200f9a865e854a792.tar.bz2
android envsetup: Don't set script-local variable toolchain_dir.
Unused after r250141. No behavior change. BUG=330631 TBR=torne@chromium.org Review URL: https://codereview.chromium.org/159133002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250187 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/android')
-rwxr-xr-xbuild/android/envsetup.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/build/android/envsetup.sh b/build/android/envsetup.sh
index 4c6c724..46e3a4e 100755
--- a/build/android/envsetup.sh
+++ b/build/android/envsetup.sh
@@ -49,18 +49,6 @@ case "${host_arch}" in
return 1
esac
-case "${host_os}" in
- "linux")
- toolchain_dir="linux-${host_arch}"
- ;;
- "mac")
- toolchain_dir="darwin-${host_arch}"
- ;;
- *)
- echo "Host platform ${host_os} is not supported" >& 2
- return 1
-esac
-
CURRENT_DIR="$(readlink -f "${SCRIPT_DIR}/../../")"
if [[ -z "${CHROME_SRC}" ]]; then
# If $CHROME_SRC was not set, assume current directory is CHROME_SRC.