1
0
This repository has been archived on 2025-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
Files
siadrive/3rd_party/CEF/create_common.cmd
Scott E. Graves 631773bfb6 Build fixes
2017-03-21 23:04:26 -05:00

29 lines
649 B
Batchfile

@echo off
set ROOT=%~dp0%
pushd "%ROOT%"
set PATH=%ROOT%..\..\bin;%PATH%
mkdir automate
mkdir chromium_git
mkdir depot_tools
wget --no-check-certificate https://bitbucket.org/chromiumembedded/cef/raw/master/tools/automate/automate-git.py || goto :ERROR
move /y automate-git.py automate\ || goto :ERROR
del /q depot_tools.zip > NUL
wget --no-check-certificate https://storage.googleapis.com/chrome-infra/depot_tools.zip || goto :ERROR
unzip -o -q -d depot_tools\ depot_tools.zip || goto :ERROR
del /q depot_tools.zip || goto :ERROR
pushd depot_tools
call update_depot_tools.bat || goto :ERROR
popd
goto :END
:ERROR
pause
popd
exit 1
:END
popd