| OLD | NEW |
| 1 # Copyright (C) 2006, 2007, 2008, 2012 Apple Inc. All rights reserved. | 1 # Copyright (C) 2006, 2007, 2008, 2012 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 # Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> | 3 # Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> |
| 4 # | 4 # |
| 5 # Redistribution and use in source and binary forms, with or without | 5 # Redistribution and use in source and binary forms, with or without |
| 6 # modification, are permitted provided that the following conditions | 6 # modification, are permitted provided that the following conditions |
| 7 # are met: | 7 # are met: |
| 8 # | 8 # |
| 9 # 1. Redistributions of source code must retain the above copyright | 9 # 1. Redistributions of source code must retain the above copyright |
| 10 # notice, this list of conditions and the following disclaimer. | 10 # notice, this list of conditions and the following disclaimer. |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 $(WebCore)/Modules/indexeddb/IDBFactory.idl \ | 99 $(WebCore)/Modules/indexeddb/IDBFactory.idl \ |
| 100 $(WebCore)/Modules/indexeddb/IDBIndex.idl \ | 100 $(WebCore)/Modules/indexeddb/IDBIndex.idl \ |
| 101 $(WebCore)/Modules/indexeddb/IDBKey.idl \ | 101 $(WebCore)/Modules/indexeddb/IDBKey.idl \ |
| 102 $(WebCore)/Modules/indexeddb/IDBKeyRange.idl \ | 102 $(WebCore)/Modules/indexeddb/IDBKeyRange.idl \ |
| 103 $(WebCore)/Modules/indexeddb/IDBObjectStore.idl \ | 103 $(WebCore)/Modules/indexeddb/IDBObjectStore.idl \ |
| 104 $(WebCore)/Modules/indexeddb/IDBRequest.idl \ | 104 $(WebCore)/Modules/indexeddb/IDBRequest.idl \ |
| 105 $(WebCore)/Modules/indexeddb/IDBTransaction.idl \ | 105 $(WebCore)/Modules/indexeddb/IDBTransaction.idl \ |
| 106 $(WebCore)/Modules/indexeddb/IDBVersionChangeEvent.idl \ | 106 $(WebCore)/Modules/indexeddb/IDBVersionChangeEvent.idl \ |
| 107 $(WebCore)/Modules/indexeddb/IDBVersionChangeRequest.idl \ | 107 $(WebCore)/Modules/indexeddb/IDBVersionChangeRequest.idl \ |
| 108 $(WebCore)/Modules/indexeddb/WorkerContextIndexedDatabase.idl \ | 108 $(WebCore)/Modules/indexeddb/WorkerContextIndexedDatabase.idl \ |
| 109 $(WebCore)/Modules/mediasource/MediaSource.idl \ | |
| 110 $(WebCore)/Modules/mediasource/SourceBuffer.idl \ | 109 $(WebCore)/Modules/mediasource/SourceBuffer.idl \ |
| 111 $(WebCore)/Modules/mediasource/SourceBufferList.idl \ | 110 $(WebCore)/Modules/mediasource/SourceBufferList.idl \ |
| 112 $(WebCore)/Modules/notifications/DOMWindowNotifications.idl \ | 111 $(WebCore)/Modules/notifications/DOMWindowNotifications.idl \ |
| 113 $(WebCore)/Modules/notifications/Notification.idl \ | 112 $(WebCore)/Modules/notifications/Notification.idl \ |
| 114 $(WebCore)/Modules/notifications/NotificationCenter.idl \ | 113 $(WebCore)/Modules/notifications/NotificationCenter.idl \ |
| 115 $(WebCore)/Modules/notifications/NotificationPermissionCallback.idl \ | 114 $(WebCore)/Modules/notifications/NotificationPermissionCallback.idl \ |
| 116 $(WebCore)/Modules/notifications/WorkerContextNotifications.idl \ | 115 $(WebCore)/Modules/notifications/WorkerContextNotifications.idl \ |
| 117 $(WebCore)/Modules/quota/DOMWindowQuota.idl \ | 116 $(WebCore)/Modules/quota/DOMWindowQuota.idl \ |
| 118 $(WebCore)/Modules/quota/StorageInfo.idl \ | 117 $(WebCore)/Modules/quota/StorageInfo.idl \ |
| 119 $(WebCore)/Modules/quota/StorageInfoErrorCallback.idl \ | 118 $(WebCore)/Modules/quota/StorageInfoErrorCallback.idl \ |
| (...skipping 958 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1078 # Header detection | 1077 # Header detection |
| 1079 | 1078 |
| 1080 ifeq ($(OS),Windows_NT) | 1079 ifeq ($(OS),Windows_NT) |
| 1081 | 1080 |
| 1082 all : WebCoreHeaderDetection.h | 1081 all : WebCoreHeaderDetection.h |
| 1083 | 1082 |
| 1084 WebCoreHeaderDetection.h : DerivedSources.make | 1083 WebCoreHeaderDetection.h : DerivedSources.make |
| 1085 if [ -f "$(WEBKITLIBRARIESDIR)/include/AVFoundationCF/AVCFBase.h" ]; the
n echo "#define HAVE_AVCF 1" > $@; else echo > $@; fi | 1084 if [ -f "$(WEBKITLIBRARIESDIR)/include/AVFoundationCF/AVCFBase.h" ]; the
n echo "#define HAVE_AVCF 1" > $@; else echo > $@; fi |
| 1086 | 1085 |
| 1087 endif # Windows_NT | 1086 endif # Windows_NT |
| OLD | NEW |