blob: effcfbb45fff7fdc52938f084469450ee63735f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
@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%
endlocal
|