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 881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
892 V8TreeWalker.h \ | 892 V8TreeWalker.h \ |
893 V8UIEvent.h \ | 893 V8UIEvent.h \ |
894 V8VoidCallback.h \ | 894 V8VoidCallback.h \ |
895 V8WebKitAnimationEvent.h \ | 895 V8WebKitAnimationEvent.h \ |
896 V8WebKitCSSKeyframeRule.h \ | 896 V8WebKitCSSKeyframeRule.h \ |
897 V8WebKitCSSKeyframesRule.h \ | 897 V8WebKitCSSKeyframesRule.h \ |
898 V8WebKitCSSMatrix.h \ | 898 V8WebKitCSSMatrix.h \ |
899 V8WebKitCSSTransformValue.h \ | 899 V8WebKitCSSTransformValue.h \ |
900 V8WebKitTransitionEvent.h \ | 900 V8WebKitTransitionEvent.h \ |
901 V8WheelEvent.h \ | 901 V8WheelEvent.h \ |
| 902 V8Worker.h \ |
| 903 V8WorkerLocation.h \ |
902 V8XMLHttpRequest.h \ | 904 V8XMLHttpRequest.h \ |
903 V8XMLHttpRequestException.h \ | 905 V8XMLHttpRequestException.h \ |
904 V8XMLHttpRequestProgressEvent.h \ | 906 V8XMLHttpRequestProgressEvent.h \ |
905 V8XMLHttpRequestUpload.h \ | 907 V8XMLHttpRequestUpload.h \ |
906 V8XMLSerializer.h \ | 908 V8XMLSerializer.h \ |
907 V8XPathEvaluator.h \ | 909 V8XPathEvaluator.h \ |
908 V8XPathException.h \ | 910 V8XPathException.h \ |
909 V8XPathExpression.h \ | 911 V8XPathExpression.h \ |
910 V8XPathNSResolver.h \ | 912 V8XPathNSResolver.h \ |
911 V8XPathResult.h \ | 913 V8XPathResult.h \ |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1164 # | 1166 # |
1165 | 1167 |
1166 # Sometimes script silently fails (Cygwin problem?), | 1168 # Sometimes script silently fails (Cygwin problem?), |
1167 # use a bounded loop to retry if so, but not do so forever. | 1169 # use a bounded loop to retry if so, but not do so forever. |
1168 V8%.h : %.idl $(V8_SCRIPTS) | 1170 V8%.h : %.idl $(V8_SCRIPTS) |
1169 rm -f $@; \ | 1171 rm -f $@; \ |
1170 for i in 1 2 3 4 5 6 7 8 9 10; do \ | 1172 for i in 1 2 3 4 5 6 7 8 9 10; do \ |
1171 if test -e $@; then break; fi; \ | 1173 if test -e $@; then break; fi; \ |
1172 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 . $< ; \ | 1174 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 . $< ; \ |
1173 done | 1175 done |
OLD | NEW |