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

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

Issue 18180: Fix for bug 6100:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 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 | Annotate | Revision Log
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 729 matching lines...) Expand 10 before | Expand all | Expand 10 after
740 V8NodeFilter.h \ 740 V8NodeFilter.h \
741 V8NodeIterator.h \ 741 V8NodeIterator.h \
742 V8NodeList.h \ 742 V8NodeList.h \
743 V8Notation.h \ 743 V8Notation.h \
744 V8OverflowEvent.h \ 744 V8OverflowEvent.h \
745 V8ProcessingInstruction.h \ 745 V8ProcessingInstruction.h \
746 V8ProgressEvent.h \ 746 V8ProgressEvent.h \
747 V8Range.h \ 747 V8Range.h \
748 V8RangeException.h \ 748 V8RangeException.h \
749 V8Rect.h \ 749 V8Rect.h \
750 V8CanvasPixelArray.h \
750 V8SVGAElement.h \ 751 V8SVGAElement.h \
751 V8SVGAltGlyphElement.h \ 752 V8SVGAltGlyphElement.h \
752 V8SVGAngle.h \ 753 V8SVGAngle.h \
753 V8SVGAnimatedAngle.h \ 754 V8SVGAnimatedAngle.h \
754 V8SVGAnimateColorElement.h \ 755 V8SVGAnimateColorElement.h \
755 V8SVGAnimateElement.h \ 756 V8SVGAnimateElement.h \
756 V8SVGAnimateTransformElement.h \ 757 V8SVGAnimateTransformElement.h \
757 V8SVGAnimatedBoolean.h \ 758 V8SVGAnimatedBoolean.h \
758 V8SVGAnimatedEnumeration.h \ 759 V8SVGAnimatedEnumeration.h \
759 V8SVGAnimatedInteger.h \ 760 V8SVGAnimatedInteger.h \
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
1162 # 1163 #
1163 1164
1164 # Sometimes script silently fails (Cygwin problem?), 1165 # Sometimes script silently fails (Cygwin problem?),
1165 # use a bounded loop to retry if so, but not do so forever. 1166 # use a bounded loop to retry if so, but not do so forever.
1166 V8%.h : %.idl $(V8_SCRIPTS) 1167 V8%.h : %.idl $(V8_SCRIPTS)
1167 rm -f $@; \ 1168 rm -f $@; \
1168 for i in 1 2 3 4 5 6 7 8 9 10; do \ 1169 for i in 1 2 3 4 5 6 7 8 9 10; do \
1169 if test -e $@; then break; fi; \ 1170 if test -e $@; then break; fi; \
1170 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 svg --include dom --in clude html --include css --include page --include xml --include plugins --output dir . $< ; \ 1171 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 svg --include dom --in clude html --include css --include page --include xml --include plugins --output dir . $< ; \
1171 done 1172 done
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698