| OLD | NEW | 
|     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 721 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   732     V8MediaList.h \ |   732     V8MediaList.h \ | 
|   733     V8MessageEvent.h \ |   733     V8MessageEvent.h \ | 
|   734     V8MouseEvent.h \ |   734     V8MouseEvent.h \ | 
|   735     V8MutationEvent.h \ |   735     V8MutationEvent.h \ | 
|   736     V8NamedNodeMap.h \ |   736     V8NamedNodeMap.h \ | 
|   737     V8Node.h \ |   737     V8Node.h \ | 
|   738     V8NodeFilter.h \ |   738     V8NodeFilter.h \ | 
|   739     V8NodeIterator.h \ |   739     V8NodeIterator.h \ | 
|   740     V8NodeList.h \ |   740     V8NodeList.h \ | 
|   741     V8Notation.h \ |   741     V8Notation.h \ | 
 |   742     V8NSResolver.h \ | 
|   742     V8OverflowEvent.h \ |   743     V8OverflowEvent.h \ | 
|   743     V8ProcessingInstruction.h \ |   744     V8ProcessingInstruction.h \ | 
|   744     V8ProgressEvent.h \ |   745     V8ProgressEvent.h \ | 
|   745     V8Range.h \ |   746     V8Range.h \ | 
|   746     V8RangeException.h \ |   747     V8RangeException.h \ | 
|   747     V8Rect.h \ |   748     V8Rect.h \ | 
|   748     V8SVGAElement.h \ |   749     V8SVGAElement.h \ | 
|   749     V8SVGAngle.h \ |   750     V8SVGAngle.h \ | 
|   750     V8SVGAnimatedAngle.h \ |   751     V8SVGAnimatedAngle.h \ | 
|   751     V8SVGAnimateColorElement.h \ |   752     V8SVGAnimateColorElement.h \ | 
| (...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1143     $(PORTROOT)/bindings/scripts/generate-bindings.pl \ |  1144     $(PORTROOT)/bindings/scripts/generate-bindings.pl \ | 
|  1144 # |  1145 # | 
|  1145  |  1146  | 
|  1146 # Sometimes script silently fails (Cygwin problem?),  |  1147 # Sometimes script silently fails (Cygwin problem?),  | 
|  1147 # use a bounded loop to retry if so, but not do so forever. |  1148 # use a bounded loop to retry if so, but not do so forever. | 
|  1148 V8%.h : %.idl $(V8_SCRIPTS) |  1149 V8%.h : %.idl $(V8_SCRIPTS) | 
|  1149         for i in 1 2 3 4 5 6 7 8 9 10; do \ |  1150         for i in 1 2 3 4 5 6 7 8 9 10; do \ | 
|  1150           if test -e $@; then break; fi; \ |  1151           if test -e $@; then break; fi; \ | 
|  1151           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/d
      om --include ../../../webkit/port/html --include ../../../webkit/port/page --inc
      lude ../../../webkit/port/xml --include svg --include dom --include html --inclu
      de css --include page --include xml --outputdir . $< ; \ |  1152           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/d
      om --include ../../../webkit/port/html --include ../../../webkit/port/page --inc
      lude ../../../webkit/port/xml --include svg --include dom --include html --inclu
      de css --include page --include xml --outputdir . $< ; \ | 
|  1152         done |  1153         done | 
| OLD | NEW |