| OLD | NEW |
| 1 # Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 1 # Copyright (C) 2006, 2007, 2008 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 CSSStyleDeclaration \ | 58 CSSStyleDeclaration \ |
| 59 CSSStyleRule \ | 59 CSSStyleRule \ |
| 60 CSSStyleSheet \ | 60 CSSStyleSheet \ |
| 61 CSSUnknownRule \ | 61 CSSUnknownRule \ |
| 62 CSSValue \ | 62 CSSValue \ |
| 63 CSSValueList \ | 63 CSSValueList \ |
| 64 CSSVariablesRule \ | 64 CSSVariablesRule \ |
| 65 CSSVariablesDeclaration \ | 65 CSSVariablesDeclaration \ |
| 66 CanvasGradient \ | 66 CanvasGradient \ |
| 67 CanvasPattern \ | 67 CanvasPattern \ |
| 68 CanvasPixelArray \ |
| 68 CanvasRenderingContext2D \ | 69 CanvasRenderingContext2D \ |
| 69 CharacterData \ | 70 CharacterData \ |
| 70 Clipboard \ | 71 Clipboard \ |
| 71 Comment \ | 72 Comment \ |
| 72 Console \ | 73 Console \ |
| 73 Counter \ | 74 Counter \ |
| 74 DOMApplicationCache \ | 75 DOMApplicationCache \ |
| 75 DOMCoreException \ | 76 DOMCoreException \ |
| 76 DOMImplementation \ | 77 DOMImplementation \ |
| 77 DOMParser \ | 78 DOMParser \ |
| (...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 714 # Objective-C bindings | 715 # Objective-C bindings |
| 715 | 716 |
| 716 DOM%.h : %.idl $(GENERATE_BINDINGS_SCRIPTS) bindings/scripts/CodeGeneratorObjC.p
m bindings/objc/PublicDOMInterfaces.h | 717 DOM%.h : %.idl $(GENERATE_BINDINGS_SCRIPTS) bindings/scripts/CodeGeneratorObjC.p
m bindings/objc/PublicDOMInterfaces.h |
| 717 $(GENERATE_BINDINGS) --defines "$(FEATURE_DEFINES) LANGUAGE_OBJECTIVE_C"
--generator ObjC $< | 718 $(GENERATE_BINDINGS) --defines "$(FEATURE_DEFINES) LANGUAGE_OBJECTIVE_C"
--generator ObjC $< |
| 718 | 719 |
| 719 # -------- | 720 # -------- |
| 720 | 721 |
| 721 endif | 722 endif |
| 722 | 723 |
| 723 # ------------------------ | 724 # ------------------------ |
| OLD | NEW |