diff options
author | japhet@chromium.org <japhet@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-20 22:02:47 +0000 |
---|---|---|
committer | japhet@chromium.org <japhet@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-20 22:02:47 +0000 |
commit | b12d815dbd8295b3e7f5e4b4a7350aebc580270c (patch) | |
tree | 0c8fb290e45a694999ea5c93d0386ecabfa31722 /webkit/build/JavaScriptCore/build-generated-files.sh | |
parent | 4e2a14412a93d7ce4f07173b61f9d9c330fd84d4 (diff) | |
download | chromium_src-b12d815dbd8295b3e7f5e4b4a7350aebc580270c.zip chromium_src-b12d815dbd8295b3e7f5e4b4a7350aebc580270c.tar.gz chromium_src-b12d815dbd8295b3e7f5e4b4a7350aebc580270c.tar.bz2 |
Delete a bunch of unneeded files in src/webkit/.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/418029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32685 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/build/JavaScriptCore/build-generated-files.sh')
-rwxr-xr-x | webkit/build/JavaScriptCore/build-generated-files.sh | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/webkit/build/JavaScriptCore/build-generated-files.sh b/webkit/build/JavaScriptCore/build-generated-files.sh deleted file mode 100755 index 8644af3..0000000 --- a/webkit/build/JavaScriptCore/build-generated-files.sh +++ /dev/null @@ -1,47 +0,0 @@ -#!/usr/bin/bash - -# 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 file just sets some paths then defers file creation to -# DerivedSources.make. -# This file is almost the same as the one found in webkit. The only -# difference is that some paths have changed and we don't try to detect -# the number of CPUs. - -NUMCPUS=1 - -XSRCROOT="`pwd`/../.." -XSRCROOT=`realpath "$XSRCROOT"` -# 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 - -XDSTROOT="$1" -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 - -SDKROOT="$2" -export SDKROOT -# 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 -SDKROOT=`cygpath -m -s "$SDKROOT"` -SDKROOT=`cygpath -u "$SDKROOT"` -export SDKROOT - -export BUILT_PRODUCTS_DIR="$XDSTROOT" - -mkdir -p "${BUILT_PRODUCTS_DIR}/DerivedSources" -cd "${BUILT_PRODUCTS_DIR}/DerivedSources" - -export JavaScriptCore="${XSRCROOT}/../third_party/WebKit/JavaScriptCore" -export DFTABLES_EXTENSION=".exe" -make -f "$JavaScriptCore/DerivedSources.make" -j ${NUMCPUS} || exit 1 |