Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Side by Side Diff: webkit/build/JavaScriptCore/build-generated-files.sh

Issue 174372: Add license information to our shell scripts. (Closed)
Patch Set: Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 #!/usr/bin/bash 1 #!/usr/bin/bash
2 2
3 # Copyright (c) 2009 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
3 # This file just sets some paths then defers file creation to 7 # This file just sets some paths then defers file creation to
4 # DerivedSources.make. 8 # DerivedSources.make.
5 # This file is almost the same as the one found in webkit. The only 9 # This file is almost the same as the one found in webkit. The only
6 # difference is that some paths have changed and we don't try to detect 10 # difference is that some paths have changed and we don't try to detect
7 # the number of CPUs. 11 # the number of CPUs.
8 12
9 NUMCPUS=1 13 NUMCPUS=1
10 14
11 XSRCROOT="`pwd`/../.." 15 XSRCROOT="`pwd`/../.."
12 XSRCROOT=`realpath "$XSRCROOT"` 16 XSRCROOT=`realpath "$XSRCROOT"`
(...skipping 21 matching lines...) Expand all
34 export SDKROOT 38 export SDKROOT
35 39
36 export BUILT_PRODUCTS_DIR="$XDSTROOT" 40 export BUILT_PRODUCTS_DIR="$XDSTROOT"
37 41
38 mkdir -p "${BUILT_PRODUCTS_DIR}/DerivedSources" 42 mkdir -p "${BUILT_PRODUCTS_DIR}/DerivedSources"
39 cd "${BUILT_PRODUCTS_DIR}/DerivedSources" 43 cd "${BUILT_PRODUCTS_DIR}/DerivedSources"
40 44
41 export JavaScriptCore="${XSRCROOT}/../third_party/WebKit/JavaScriptCore" 45 export JavaScriptCore="${XSRCROOT}/../third_party/WebKit/JavaScriptCore"
42 export DFTABLES_EXTENSION=".exe" 46 export DFTABLES_EXTENSION=".exe"
43 make -f "$JavaScriptCore/DerivedSources.make" -j ${NUMCPUS} || exit 1 47 make -f "$JavaScriptCore/DerivedSources.make" -j ${NUMCPUS} || exit 1
OLDNEW
« no previous file with comments | « webkit/build/JSConfig/create-config.sh ('k') | webkit/build/KJSBindings/build-generated-files.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698