summaryrefslogtreecommitdiffstats
path: root/webkit/port/DerivedSources.make
diff options
context:
space:
mode:
authormark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-02 20:28:47 +0000
committermark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-02 20:28:47 +0000
commitd91199227b61de9ae6a292acd8c198cb8b568105 (patch)
treeba1bca187bf3b7f42a61f2de4d2b1126b514984c /webkit/port/DerivedSources.make
parent00d7dfe61a274914e37d702eb32bb10227d8be78 (diff)
downloadchromium_src-d91199227b61de9ae6a292acd8c198cb8b568105.zip
chromium_src-d91199227b61de9ae6a292acd8c198cb8b568105.tar.gz
chromium_src-d91199227b61de9ae6a292acd8c198cb8b568105.tar.bz2
Drop V8DOMWindow dependency on database
Review URL: http://codereview.chromium.org/6205 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2804 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/port/DerivedSources.make')
-rw-r--r--webkit/port/DerivedSources.make1
1 files changed, 1 insertions, 0 deletions
diff --git a/webkit/port/DerivedSources.make b/webkit/port/DerivedSources.make
index b62ceca..fb0b99f 100644
--- a/webkit/port/DerivedSources.make
+++ b/webkit/port/DerivedSources.make
@@ -1147,6 +1147,7 @@ V8_SCRIPTS = \
# Sometimes script silently fails (Cygwin problem?),
# use a bounded loop to retry if so, but not do so forever.
V8%.h : %.idl $(V8_SCRIPTS)
+ rm -f $@; \
for i in 1 2 3 4 5 6 7 8 9 10; do \
if test -e $@; then break; fi; \
perl -w -I $(PORTROOT)/bindings/scripts -I $(WebCore)/bindings/scripts $(PORTROOT)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT V8_BINDING" --generator V8 --include ../../../webkit/pending --include ../../../webkit/port/dom --include ../../../webkit/port/html --include ../../../webkit/port/page --include ../../../webkit/port/xml --include svg --include dom --include html --include css --include page --include xml --outputdir . $< ; \