diff options
Diffstat (limited to 'webkit/build/V8Bindings/copy_files.bat')
-rw-r--r-- | webkit/build/V8Bindings/copy_files.bat | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/webkit/build/V8Bindings/copy_files.bat b/webkit/build/V8Bindings/copy_files.bat new file mode 100644 index 0000000..effcfbb --- /dev/null +++ b/webkit/build/V8Bindings/copy_files.bat @@ -0,0 +1,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 + |