• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1@echo off
2
3:: Copyright (c) 2011 The Chromium Authors. All rights reserved.
4:: Use of this source code is governed by a BSD-style license that can be
5:: found in the LICENSE file.
6
7setlocal
8
9set SCRIPT_DIR=%~dp0
10set SDK_TOOLS=%SCRIPT_DIR%sdk_tools
11set SDK_TOOLS_UPDATE=%SCRIPT_DIR%sdk_tools_update
12set PYTHON_DIR=%SCRIPT_DIR%python
13
14if exist "%SDK_TOOLS_UPDATE%" (
15  echo Updating sdk_tools
16  if exist "%SDK_TOOLS%" (
17    rmdir /q/s "%SDK_TOOLS%"
18  )
19  move "%SDK_TOOLS_UPDATE%" "%SDK_TOOLS%"
20)
21
22set PYTHONPATH=%SCRIPT_DIR%
23
24python "%SDK_TOOLS%\sdk_update.py" %*
25