blob: 9be174d40362b3a65ae79e9375932681bc953f30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#!/bin/sh
# Copyright (c) 2008 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.
set -ex
GENERATED_DIR="${CONFIGURATION_TEMP_DIR}/generated"
mkdir -p "${GENERATED_DIR}"
# Generate the webkit version header
mkdir -p "${GENERATED_DIR}/include/v8/new"
python build/webkit_version.py \
../third_party/WebKit/WebCore/Configurations/Version.xcconfig \
"${GENERATED_DIR}/include/v8/new"
# Only use new the file if it's different from the existing file (if any),
# preserving the existing file's timestamp when there are no changes. This
# minimizes unnecessary build activity for a no-change build.
if ! diff -q "${GENERATED_DIR}/include/v8/new/webkit_version.h" \
"${GENERATED_DIR}/include/v8/webkit_version.h" >& /dev/null ; then
mv "${GENERATED_DIR}/include/v8/new/webkit_version.h" \
"${GENERATED_DIR}/include/v8/webkit_version.h"
else
rm "${GENERATED_DIR}/include/v8/new/webkit_version.h"
fi
rmdir "${GENERATED_DIR}/include/v8/new"
# WebCore/bindings/js/PausedTimeouts.cpp depends on PausedTimeouts.h, which
# depends on ScheduledAction.h, all in the same directory. PausedTimeouts is
# not JSC-specific and should be built here, but ScheduledAction.h is
# JSC-specific. Our own V8-compatible ScheduledAction.h is in webkit/port/dom
# and would normally not be the one chosen by the preprocessor, which finds
# the JSC one first instead. Copy PausedTimeouts.cpp out to another location
# so that the proper ScheduledAction.h can be included.
mkdir -p "${GENERATED_DIR}/bindings/v8/WebCore/bindings/js"
cp -p "../third_party/WebKit/WebCore/bindings/js/PausedTimeouts.cpp" \
"../third_party/WebKit/WebCore/bindings/js/PausedTimeouts.h" \
"${GENERATED_DIR}/bindings/v8/WebCore/bindings/js"
# TODO(mmentovai): Am I still needed?
ln -sfh "${SRCROOT}/../third_party/WebKit/WebCore" WebCore
# TODO(mmentovai): If I'm still needed, can I move to jsbindings_prebuild.sh?
cd "${GENERATED_DIR}/DerivedSources/v8"
mkdir -p ForwardingHeaders/loader
ln -sfh "${SRCROOT}/../third_party/WebKit/WebCore/loader" \
ForwardingHeaders/loader/WebCore
|