diff options
author | japhet@chromium.org <japhet@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-18 17:56:17 +0000 |
---|---|---|
committer | japhet@chromium.org <japhet@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-18 17:56:17 +0000 |
commit | 1308459ce571eccb2b344f35ca0e4bf750be9395 (patch) | |
tree | 7ef1dea7c817d902ab0ea588859d9ca99330d91c /webkit/build/V8Bindings | |
parent | 57799181ac6a8cb440bceb0930f7bde955796650 (diff) | |
download | chromium_src-1308459ce571eccb2b344f35ca0e4bf750be9395.zip chromium_src-1308459ce571eccb2b344f35ca0e4bf750be9395.tar.gz chromium_src-1308459ce571eccb2b344f35ca0e4bf750be9395.tar.bz2 |
Delete a bunch of deprecated and/or empty directores in src/webkit/.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/402031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32340 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/build/V8Bindings')
-rwxr-xr-x | webkit/build/V8Bindings/build-generated-files.sh | 60 | ||||
-rw-r--r-- | webkit/build/V8Bindings/copy_files.bat | 16 | ||||
-rw-r--r-- | webkit/build/V8Bindings/prebuild.bat | 21 |
3 files changed, 0 insertions, 97 deletions
diff --git a/webkit/build/V8Bindings/build-generated-files.sh b/webkit/build/V8Bindings/build-generated-files.sh deleted file mode 100755 index 82a9945..0000000 --- a/webkit/build/V8Bindings/build-generated-files.sh +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/bash -x - -# Copyright (c) 2009 The Chromium Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -# This build script is similar to the one found in webkit. -# We've temporarily modified it to support conditional compiling of -# the V8 DerivedSources. When we build our DerivedSources, we build -# partly from our port directory, and partly from the webkit directory; -# chosing files from our port area only if they contain changes from -# the original. -# - -XSRCROOT="$1" -# Do a little dance to get the path into 8.3 form to make it safe for gnu make -# http://bugzilla.opendarwin.org/show_bug.cgi?id=8173 -XSRCROOT=`cygpath -m -s "$XSRCROOT"` -XSRCROOT=`cygpath -u "$XSRCROOT"` -export XSRCROOT -export SOURCE_ROOT="$XSRCROOT" - -PORTROOT="$2" -PORTROOT=`cygpath -m -s "$PORTROOT"` -PORTROOT=`cygpath -u "$PORTROOT"` -export PORTROOT=`realpath "$PORTROOT"` - -XDSTROOT="$3" -export XDSTROOT -# Do a little dance to get the path into 8.3 form to make it safe for gnu make -# http://bugzilla.opendarwin.org/show_bug.cgi?id=8173 -XDSTROOT=`cygpath -m -s "$XDSTROOT"` -XDSTROOT=`cygpath -u "$XDSTROOT"` -export XDSTROOT - -export BUILT_PRODUCTS_DIR="$4" -export CREATE_HASH_TABLE="$XSRCROOT/../JavaScriptCore/create_hash_table" - -DerivedSourcesDir="${BUILT_PRODUCTS_DIR}\DerivedSources" -echo "$DerivedSourcesDir" -mkdir -p "$DerivedSourcesDir" -cd "$DerivedSourcesDir" - -export WebCore="${XSRCROOT}" -export ENCODINGS_FILE="${WebCore}/platform/win/win-encodings.txt"; -export ENCODINGS_PREFIX="" - -# To see what FEATURE_DEFINES Apple uses, look at: -# webkit/third_party/WebCore/Configurations/WebCore.xcconfig -export FEATURE_DEFINES="ENABLE_DATABASE ENABLE_SVG ENABLE_SVG_ANIMATION ENABLE_SVG_AS_IMAGE ENABLE_SVG_FONTS ENABLE_SVG_FOREIGN_OBJECT ENABLE_SVG_USE ENABLE_VIDEO ENABLE_WORKERS ENABLE_OFFLINE_WEB_APPLICATIONS ENABLE_CHANNEL_MESSAGING ENABLE_XPATH ENABLE_XSLT" - -# Adjust the number of jobs spawned according to the CPU count. -if [ -z "$NUMBER_OF_PROCESSORS" ]; then - echo "WARNING: NUMBER_OF_PROCESSORS environment variable not defined; assuming 2" -fi -JOBS=$((${NUMBER_OF_PROCESSORS:-2} + 1)) - -echo Building DerivedSources ${PORTROOT}... -# Use silent flag. -make -s -f "${PORTROOT}/DerivedSources.make" -j $JOBS || exit 1 diff --git a/webkit/build/V8Bindings/copy_files.bat b/webkit/build/V8Bindings/copy_files.bat deleted file mode 100644 index effcfbb..0000000 --- a/webkit/build/V8Bindings/copy_files.bat +++ /dev/null @@ -1,16 +0,0 @@ -@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 - diff --git a/webkit/build/V8Bindings/prebuild.bat b/webkit/build/V8Bindings/prebuild.bat deleted file mode 100644 index de43b15..0000000 --- a/webkit/build/V8Bindings/prebuild.bat +++ /dev/null @@ -1,21 +0,0 @@ -@echo off - -setlocal -set OUTDIR=%1 -set INTDIR=%2 -set CYGWIN_ROOT=%~dp0..\..\..\third_party\cygwin\ -set GNU_ROOT=%~dp0..\..\..\third_party\gnu\files - -set PATH=%CYGWIN_ROOT%bin;%GNU_ROOT%;%SystemRoot%;%SystemRoot%\system32 - -:: Ensure that the cygwin mount points are defined -CALL %CYGWIN_ROOT%setup_mount.bat > NUL - -:: Fix file access on vista: without this flag, the files may not be accessible. -set CYGWIN=nontsec - -:: Copy files that the V8 bindings share with the KJS bindings. -call copy_files.bat %IntDir%\SharedSources - -:: Build the generated files from IDL files. -bash build-generated-files.sh ..\..\..\third_party\WebKit\WebCore ..\..\port "%OUTDIR%" "%INTDIR%" |