19 lines
447 B
Batchfile
19 lines
447 B
Batchfile
@echo off
|
|
pushd "%~dp0%"
|
|
|
|
mkdir automate
|
|
mkdir chromium_git
|
|
mkdir depot_tools
|
|
|
|
wget --no-check-certificate https://bitbucket.org/chromiumembedded/cef/raw/master/tools/automate/automate-git.py
|
|
move /y automate-git.py automate\
|
|
|
|
wget --no-check-certificate https://storage.googleapis.com/chrome-infra/depot_tools.zip
|
|
unzip -o -q -d depot_tools\ depot_tools.zip
|
|
del /q depot_tools.zip
|
|
pushd depot_tools
|
|
call update_depot_tools.bat
|
|
popd
|
|
|
|
popd
|
|
pause |