| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 DocumentFragment \ | 83 DocumentFragment \ |
| 84 DocumentType \ | 84 DocumentType \ |
| 85 Element \ | 85 Element \ |
| 86 ElementTimeControl \ | 86 ElementTimeControl \ |
| 87 Entity \ | 87 Entity \ |
| 88 EntityReference \ | 88 EntityReference \ |
| 89 Event \ | 89 Event \ |
| 90 EventException \ | 90 EventException \ |
| 91 EventListener \ | 91 EventListener \ |
| 92 EventTarget \ | 92 EventTarget \ |
| 93 EventTargetNode \ |
| 93 File \ | 94 File \ |
| 94 FileList \ | 95 FileList \ |
| 95 Geolocation \ | 96 Geolocation \ |
| 96 Geoposition \ | 97 Geoposition \ |
| 97 HTMLAnchorElement \ | 98 HTMLAnchorElement \ |
| 98 HTMLAppletElement \ | 99 HTMLAppletElement \ |
| 99 HTMLAreaElement \ | 100 HTMLAreaElement \ |
| 100 HTMLAudioElement \ | 101 HTMLAudioElement \ |
| 101 HTMLBRElement \ | 102 HTMLBRElement \ |
| 102 HTMLBaseElement \ | 103 HTMLBaseElement \ |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 XPathException \ | 372 XPathException \ |
| 372 XPathExpression \ | 373 XPathExpression \ |
| 373 XPathNSResolver \ | 374 XPathNSResolver \ |
| 374 XPathResult \ | 375 XPathResult \ |
| 375 XSLTProcessor \ | 376 XSLTProcessor \ |
| 376 # | 377 # |
| 377 | 378 |
| 378 .PHONY : all | 379 .PHONY : all |
| 379 | 380 |
| 380 all : \ | 381 all : \ |
| 381 $(filter-out JSEventListener.h JSEventTarget.h JSRGBColor.h,$(DOM_CLASSES:%=
JS%.h)) \ | 382 $(filter-out JSEventListener.h JSRGBColor.h,$(DOM_CLASSES:%=JS%.h)) \ |
| 382 \ | 383 \ |
| 383 JSDOMWindowBase.lut.h \ | 384 JSDOMWindowBase.lut.h \ |
| 384 JSRGBColor.lut.h \ | 385 JSRGBColor.lut.h \ |
| 385 JSWorkerContextBase.lut.h \ | 386 JSWorkerContextBase.lut.h \ |
| 386 \ | 387 \ |
| 387 JSJavaScriptCallFrame.h \ | 388 JSJavaScriptCallFrame.h \ |
| 388 \ | 389 \ |
| 389 CSSGrammar.cpp \ | 390 CSSGrammar.cpp \ |
| 390 CSSPropertyNames.h \ | 391 CSSPropertyNames.h \ |
| 391 CSSValueKeywords.h \ | 392 CSSValueKeywords.h \ |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 716 # Objective-C bindings | 717 # Objective-C bindings |
| 717 | 718 |
| 718 DOM%.h : %.idl $(GENERATE_BINDINGS_SCRIPTS) bindings/scripts/CodeGeneratorObjC.p
m bindings/objc/PublicDOMInterfaces.h | 719 DOM%.h : %.idl $(GENERATE_BINDINGS_SCRIPTS) bindings/scripts/CodeGeneratorObjC.p
m bindings/objc/PublicDOMInterfaces.h |
| 719 $(GENERATE_BINDINGS) --defines "$(FEATURE_DEFINES) LANGUAGE_OBJECTIVE_C"
--generator ObjC $< | 720 $(GENERATE_BINDINGS) --defines "$(FEATURE_DEFINES) LANGUAGE_OBJECTIVE_C"
--generator ObjC $< |
| 720 | 721 |
| 721 # -------- | 722 # -------- |
| 722 | 723 |
| 723 endif | 724 endif |
| 724 | 725 |
| 725 # ------------------------ | 726 # ------------------------ |
| OLD | NEW |