blob: c0e01728f2a747d55d54eeb891ac9c1bad2d0e9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
@echo off
::
:: Some of the files used by the KJS bindings are not KJS specific and
:: can therefore be used directly by the V8 bindings. This script
:: copies those filed from the third_party KJS bindings directory
:: to the directory given as argument to the script.
::
set DIR=%1
set KJS_BINDINGS_DIR="..\..\..\third_party\WebKit\WebCore\bindings\js"
setlocal
mkdir 2>NUL %DIR%
xcopy /y /d "%KJS_BINDINGS_DIR%\PausedTimeouts.h" %DIR%
xcopy /y /d "%KJS_BINDINGS_DIR%\PausedTimeouts.cpp" %DIR%
endlocal
|