| 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 22 matching lines...) Expand all Loading... |
| 33 $(WebCore)/dom \ | 33 $(WebCore)/dom \ |
| 34 $(WebCore)/html \ | 34 $(WebCore)/html \ |
| 35 $(WebCore)/inspector \ | 35 $(WebCore)/inspector \ |
| 36 $(WebCore)/loader/appcache \ | 36 $(WebCore)/loader/appcache \ |
| 37 $(WebCore)/page \ | 37 $(WebCore)/page \ |
| 38 $(WebCore)/plugins \ | 38 $(WebCore)/plugins \ |
| 39 $(WebCore)/storage \ | 39 $(WebCore)/storage \ |
| 40 $(WebCore)/xml \ | 40 $(WebCore)/xml \ |
| 41 $(WebCore)/wml \ | 41 $(WebCore)/wml \ |
| 42 $(WebCore)/workers \ | 42 $(WebCore)/workers \ |
| 43 $(WebCore)/websockets \ |
| 43 $(WebCore)/svg \ | 44 $(WebCore)/svg \ |
| 45 $(WebCore)/websockets \ |
| 44 # | 46 # |
| 45 | 47 |
| 46 DOM_CLASSES = \ | 48 DOM_CLASSES = \ |
| 47 AbstractView \ | 49 AbstractView \ |
| 48 AbstractWorker \ | 50 AbstractWorker \ |
| 49 Attr \ | 51 Attr \ |
| 50 BarInfo \ | 52 BarInfo \ |
| 51 CDATASection \ | 53 CDATASection \ |
| 52 CSSCharsetRule \ | 54 CSSCharsetRule \ |
| 53 CSSFontFaceRule \ | 55 CSSFontFaceRule \ |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 UIEvent \ | 368 UIEvent \ |
| 367 ValidityState \ | 369 ValidityState \ |
| 368 VoidCallback \ | 370 VoidCallback \ |
| 369 WebKitAnimationEvent \ | 371 WebKitAnimationEvent \ |
| 370 WebKitCSSKeyframeRule \ | 372 WebKitCSSKeyframeRule \ |
| 371 WebKitCSSKeyframesRule \ | 373 WebKitCSSKeyframesRule \ |
| 372 WebKitCSSMatrix \ | 374 WebKitCSSMatrix \ |
| 373 WebKitCSSTransformValue \ | 375 WebKitCSSTransformValue \ |
| 374 WebKitPoint \ | 376 WebKitPoint \ |
| 375 WebKitTransitionEvent \ | 377 WebKitTransitionEvent \ |
| 378 WebSocket \ |
| 376 WheelEvent \ | 379 WheelEvent \ |
| 377 Worker \ | 380 Worker \ |
| 378 WorkerContext \ | 381 WorkerContext \ |
| 379 WorkerLocation \ | 382 WorkerLocation \ |
| 380 WorkerNavigator \ | 383 WorkerNavigator \ |
| 381 XMLHttpRequest \ | 384 XMLHttpRequest \ |
| 382 XMLHttpRequestException \ | 385 XMLHttpRequestException \ |
| 383 XMLHttpRequestProgressEvent \ | 386 XMLHttpRequestProgressEvent \ |
| 384 XMLHttpRequestUpload \ | 387 XMLHttpRequestUpload \ |
| 385 XMLSerializer \ | 388 XMLSerializer \ |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 742 # Objective-C bindings | 745 # Objective-C bindings |
| 743 | 746 |
| 744 DOM%.h : %.idl $(GENERATE_BINDINGS_SCRIPTS) bindings/scripts/CodeGeneratorObjC.p
m bindings/objc/PublicDOMInterfaces.h | 747 DOM%.h : %.idl $(GENERATE_BINDINGS_SCRIPTS) bindings/scripts/CodeGeneratorObjC.p
m bindings/objc/PublicDOMInterfaces.h |
| 745 $(GENERATE_BINDINGS) --defines "$(FEATURE_DEFINES) LANGUAGE_OBJECTIVE_C"
--generator ObjC $< | 748 $(GENERATE_BINDINGS) --defines "$(FEATURE_DEFINES) LANGUAGE_OBJECTIVE_C"
--generator ObjC $< |
| 746 | 749 |
| 747 # -------- | 750 # -------- |
| 748 | 751 |
| 749 endif | 752 endif |
| 750 | 753 |
| 751 # ------------------------ | 754 # ------------------------ |
| OLD | NEW |