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

Side by Side Diff: webkit/port/DerivedSources.make

Issue 14058: Fix build bustage. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 12 years 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (C) 2006, 2007 Apple Inc. All rights reserved. 1 # Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
2 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 2 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions 5 # modification, are permitted provided that the following conditions
6 # are met: 6 # are met:
7 # 7 #
8 # 1. Redistributions of source code must retain the above copyright 8 # 1. Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # 2. Redistributions in binary form must reproduce the above copyright 10 # 2. Redistributions in binary form must reproduce the above copyright
(...skipping 1139 matching lines...) Expand 10 before | Expand all | Expand 10 after
1150 $(WebCore)/bindings/scripts/IDLStructure.pm \ 1150 $(WebCore)/bindings/scripts/IDLStructure.pm \
1151 $(PORTROOT)/bindings/scripts/generate-bindings.pl \ 1151 $(PORTROOT)/bindings/scripts/generate-bindings.pl \
1152 # 1152 #
1153 1153
1154 # Sometimes script silently fails (Cygwin problem?), 1154 # Sometimes script silently fails (Cygwin problem?),
1155 # use a bounded loop to retry if so, but not do so forever. 1155 # use a bounded loop to retry if so, but not do so forever.
1156 V8%.h : %.idl $(V8_SCRIPTS) 1156 V8%.h : %.idl $(V8_SCRIPTS)
1157 rm -f $@; \ 1157 rm -f $@; \
1158 for i in 1 2 3 4 5 6 7 8 9 10; do \ 1158 for i in 1 2 3 4 5 6 7 8 9 10; do \
1159 if test -e $@; then break; fi; \ 1159 if test -e $@; then break; fi; \
1160 » 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/pendin g --include ../../../webkit/port/html --include ../../../webkit/port/page --incl ude svg --include dom --include html --include css --include page --include xml --include plugins --outputdir . $< ; \ 1160 » 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/port/p age --include svg --include dom --include html --include css --include page --in clude xml --include plugins --outputdir . $< ; \
1161 done 1161 done
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698