[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

kocienda kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 05:50:03 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 6e73dc01a2e94c243773d143e0ab8383bbb0984f
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Oct 10 17:45:44 2001 +0000

    First add of files for project
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@306 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/English.lproj/InfoPlist.strings b/WebKit/English.lproj/InfoPlist.strings
new file mode 100644
index 0000000..aa12c35
Binary files /dev/null and b/WebKit/English.lproj/InfoPlist.strings differ
diff --git a/WebKit/Misc.subproj/WebKit.h b/WebKit/Misc.subproj/WebKit.h
new file mode 100644
index 0000000..fe1491b
--- /dev/null
+++ b/WebKit/Misc.subproj/WebKit.h
@@ -0,0 +1,6 @@
+/*	WebKit.h
+	Copyright 2001, Apple, Inc. All rights reserved.
+*/
+
+#import <WebKit/NSURILoad.h>
+
diff --git a/WebKit/Misc.subproj/WebKitReallyPrivate.h b/WebKit/Misc.subproj/WebKitReallyPrivate.h
new file mode 100644
index 0000000..0e7d7f0
--- /dev/null
+++ b/WebKit/Misc.subproj/WebKitReallyPrivate.h
@@ -0,0 +1,5 @@
+/*	WebKitReallyPrivate.h
+	Copyright 2001, Apple, Inc. All rights reserved.
+*/
+
+#import "_NSMonitor.h"
\ No newline at end of file
diff --git a/WebKit/Misc.subproj/_NSMonitor.h b/WebKit/Misc.subproj/_NSMonitor.h
new file mode 100644
index 0000000..fb22384
--- /dev/null
+++ b/WebKit/Misc.subproj/_NSMonitor.h
@@ -0,0 +1,51 @@
+/*	_NSMonitor.h
+	Copyright 2001, Apple, Inc. All rights reserved.
+*/
+
+#include <Carbon/Carbon.h>
+
+#import <Foundation/Foundation.h>
+
+// NSMonitor ----------------------------------------------------------------
+
+#if defined(__MACH__)
+#import <mach/message.h>
+#include <pthread.h>
+#import <sys/time.h>
+#endif
+#if defined(__WIN32__)
+#include <windows.h>
+#include <process.h>
+#import <sys/utime.h>
+#endif
+
+#if defined(__MACH__)
+    #define F_STRUCT_MUTEX_T pthread_mutex_t
+    #define F_STRUCT_COND_T pthread_cond_t
+#else
+    #define F_STRUCT_MUTEX_T CRITICAL_SECTION
+    /* Due to the fact that the unblock-and-wait is not atomic in the
+        condition wait, we need to be a little tricky in broadcasting. 
+        We make wake up a bit more than we should, but that should
+        be harmless, since a condition should be being checked. */
+    struct _F_wincond {
+        HANDLE aevent;
+        HANDLE mevent;
+    };
+    #define F_STRUCT_COND_T struct _F_wincond
+#endif
+
+ at interface NSMonitor : NSObject <NSLocking> {
+    F_STRUCT_MUTEX_T mutex;
+    F_STRUCT_COND_T cond;
+    unsigned int value;
+}
+
+-(id)init;
+-(void)wait;
+-(BOOL)waitUntilDate:(NSDate *)limit;
+-(BOOL)waitInterval:(NSTimeInterval)ti;
+-(void)signal;
+-(void)broadcast;
+
+ at end
diff --git a/WebKit/Misc.subproj/_NSMonitor.m b/WebKit/Misc.subproj/_NSMonitor.m
new file mode 100644
index 0000000..622e011
--- /dev/null
+++ b/WebKit/Misc.subproj/_NSMonitor.m
@@ -0,0 +1,143 @@
+/*	NSMonitor.m
+	Copyright 2001, Apple, Inc. All rights reserved.
+*/
+
+#import <Foundation/Foundation.h>
+#import <Foundation/NSPrivateDecls.h>
+#import "_NSMonitor.h"
+#import <objc/objc-class.h>
+#import <objc/objc-runtime.h>
+
+#if defined(__MACH__)
+    // moved to .h file #define F_STRUCT_MUTEX_T pthread_mutex_t
+    #define F_MUTEX_INIT(m) pthread_mutex_init(m, NULL)
+    #define F_MUTEX_FINI(m) pthread_mutex_destroy(m)
+    #define F_MUTEX_LOCK(m) pthread_mutex_lock(m)
+    #define F_MUTEX_TRYLOCK(m) (EBUSY != pthread_mutex_trylock(m))
+    #define F_MUTEX_UNLOCK(m) pthread_mutex_unlock(m)
+    // moved to .h file #define F_STRUCT_COND_T pthread_cond_t
+    #define F_COND_INIT(c) pthread_cond_init(c, NULL)
+    #define F_COND_FINI(c) pthread_cond_destroy(c)
+    #define F_CONDITION_WAIT(c, m) pthread_cond_wait(c, m)
+    #define F_CONDITION_SIGNAL(c) pthread_cond_signal(c)
+    #define F_CONDITION_BROADCAST(c) pthread_cond_broadcast(c)
+    /* Returns 0 on timeout, 1 on regular return; t is double seconds */
+    static int F_CONDITION_WAIT_TIMEOUT(F_STRUCT_COND_T *c, F_STRUCT_MUTEX_T *m, NSTimeInterval t, unsigned int *value) {
+        struct timespec ts;
+        int result;
+        CFAbsoluteTime at = CFAbsoluteTimeGetCurrent() + t;
+        ts.tv_sec = (time_t)(floor(at) + kCFAbsoluteTimeIntervalSince1970);
+        ts.tv_nsec = (int32_t)((at - floor(at)) * 1000000000.0);
+        result = pthread_cond_timedwait(c, m, &ts);
+        if (ETIMEDOUT != result) {
+            (*value)--;
+            return 1;
+        }
+        return 0;
+    }
+#else
+    // moved to .h file #define F_STRUCT_MUTEX_T CRITICAL_SECTION
+    #define F_MUTEX_INIT(m) InitializeCriticalSection(m)
+    #define F_MUTEX_FINI(m) DeleteCriticalSection(m)
+    #define F_MUTEX_LOCK(m) EnterCriticalSection(m)
+    #define F_MUTEX_TRYLOCK(m) (0 != TryEnterCriticalSection(m))
+    #define F_MUTEX_UNLOCK(m) (LeaveCriticalSection(m), 0)
+    // moved to .h file #define F_STRUCT_COND_T struct _F_wincond
+    #define F_COND_INIT(c) do { \
+        (c)->aevent = CreateEvent(NULL, FALSE, FALSE, NULL); \
+        (c)->mevent = CreateEvent(NULL, TRUE, FALSE, NULL); } while (0)
+    #define F_COND_FINI(c) do { \
+        CloseHandle((c)->aevent); CloseHandle((c)->mevent); } while (0)
+    #define F_CONDITION_WAIT(c, m) do { \
+        HANDLE _h_[2] = {(c)->aevent, (c)->mevent}; \
+        F_MUTEX_UNLOCK(m); \
+        WaitForMultipleObjects(2, _h_, FALSE, INFINITE); \
+        F_MUTEX_LOCK(m); } while (0)
+    #define F_CONDITION_SIGNAL(c) SetEvent((c)->aevent)
+    #define F_CONDITION_BROADCAST(c) do { \
+        PulseEvent((c)->mevent); SetEvent((c)->aevent);} while (0)
+    /* Returns 0 on timeout, 1 on regular return; t is double seconds */
+    static int F_CONDITION_WAIT_TIMEOUT(F_STRUCT_COND_T *c, F_STRUCT_MUTEX_T *m, NSTimeInterval t, unsigned int *value) {
+        HANDLE _h_[2] = {(c)->aevent, (c)->mevent};
+        DWORD timeout, result;
+        t *= 1000.0;
+        while (0.0 <= t) {
+            timeout = (INT_MAX <= t) ? INT_MAX : (DWORD)t;
+            F_MUTEX_UNLOCK(m);
+            result = WaitForMultipleObjects(2, _h_, FALSE, timeout);
+            F_MUTEX_LOCK(m);
+            if (WAIT_TIMEOUT != result) {
+                (*value)--;
+                return 1;
+            }
+            t -= timeout;
+            /* shave off an extra 1us to account for overhead,
+            plus make loop terminate if t falls to 0.0 */
+            t -= 0.001;
+        }
+        return 0;
+    }
+#endif
+
+
+ at implementation NSMonitor
+
+- init {
+    F_MUTEX_INIT(&mutex);
+    F_COND_INIT(&cond);
+    value = 0;
+    return self;
+}
+
+- (void)dealloc {
+    F_MUTEX_FINI(&mutex);
+    F_COND_FINI(&cond);
+    [super dealloc];
+}
+
+- (void)lock {
+    F_MUTEX_LOCK(&mutex);
+}
+
+- (void)unlock {
+    F_MUTEX_UNLOCK(&mutex);
+}
+
+- (void)wait {    
+    while (value == 0) {
+        F_CONDITION_WAIT(&cond, &mutex);
+    }
+    value--;
+}
+
+- (BOOL)waitUntilDate:(NSDate *)limit {
+    NSTimeInterval ti = [limit timeIntervalSinceNow];
+    return [self waitInterval:ti];
+}
+
+- (BOOL)waitInterval:(NSTimeInterval)ti {
+    BOOL result;
+    if (ti < 0.0) {
+        result = NO;
+    }
+    else {
+        result = F_CONDITION_WAIT_TIMEOUT(&cond, &mutex, ti, &value);
+    }
+    return result;
+}
+
+- (void)signal {
+    value++;
+    F_CONDITION_SIGNAL(&cond);
+}
+
+- (void)broadcast {
+    value++;
+    F_CONDITION_BROADCAST(&cond);
+}
+
+- (NSString *)description {
+    return [(id)CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("%s(0x%x)"), "_NSMonitor", self) autorelease];
+}
+
+ at end
diff --git a/WebKit/WebKit.pbproj/kocienda.pbxuser b/WebKit/WebKit.pbproj/kocienda.pbxuser
new file mode 100644
index 0000000..7fb20fd
--- /dev/null
+++ b/WebKit/WebKit.pbproj/kocienda.pbxuser
@@ -0,0 +1,107 @@
+// !$*UTF8*$!
+{
+	0867D690FE84028FC02AAC07 = {
+		activeBuildStyle = 014CEA440018CDF011CA2923;
+		activeTarget = 0867D69CFE84028FC02AAC07;
+		addToTargets = (
+			0867D69CFE84028FC02AAC07,
+		);
+		breakpoints = (
+		);
+		perUserDictionary = {
+			PBXWorkspaceConfiguration = {
+				ContentSize = "{1549, 1090}";
+				LeftSlideOut = {
+					ActiveTab = 0;
+					Frame = "{{0, 23}, {1549, 1067}}";
+					Split0 = {
+						ActiveTab = 2;
+						Frame = "{{257, 0}, {1292, 1067}}";
+						Split0 = {
+							Frame = "{{0, 663}, {1292, 404}}";
+						};
+						SplitCount = 1;
+						Tab0 = {
+							Debugger = {
+								Frame = "{{0, 0}, {484, 208}}";
+								Split0 = {
+									Frame = "{{0, 25}, {484, 183}}";
+									Split0 = {
+										Frame = "{{0, 0}, {236, 183}}";
+									};
+									Split1 = {
+										Frame = "{{245, 0}, {239, 183}}";
+									};
+									SplitCount = 2;
+								};
+								SplitCount = 1;
+								Tab0 = {
+									Frame = "{{0, 0}, {100, 50}}";
+								};
+								Tab1 = {
+									Frame = "{{0, 0}, {100, 50}}";
+								};
+								TabCount = 2;
+							};
+							Frame = "{{0, 0}, {484, 208}}";
+							LauncherConfigVersion = 4;
+						};
+						Tab1 = {
+							Frame = "{{0, 0}, {484, 208}}";
+							LauncherConfigVersion = 3;
+							Runner = {
+								Frame = "{{0, 0}, {484, 208}}";
+							};
+						};
+						Tab2 = {
+							BuildMessageFrame = "{{0, 0}, {1294, 213}}";
+							BuildTranscriptFrame = "{{0, 222}, {1294, 418}}";
+							Frame = "{{0, 0}, {1292, 638}}";
+						};
+						Tab3 = {
+							Frame = "{{0, 0}, {612, 295}}";
+						};
+						TabCount = 4;
+					};
+					SplitCount = 1;
+					Tab0 = {
+						Frame = "{{0, 0}, {232, 1067}}";
+					};
+					Tab1 = {
+						ClassesFrame = "{{0, 0}, {202, 660}}";
+						Frame = "{{0, 0}, {200, 1083}}";
+						MembersFrame = "{{0, 669}, {202, 414}}";
+						OptionsSetName = "Hierarchy, all classes";
+					};
+					Tab2 = {
+						Frame = "{{0, 0}, {200, 100}}";
+					};
+					Tab3 = {
+						Frame = "{{0, 0}, {200, 1067}}";
+						Split0 = {
+							Frame = "{{0, 0}, {200, 523}}";
+						};
+						Split1 = {
+							Frame = "{{0, 532}, {200, 535}}";
+						};
+						SplitCount = 2;
+					};
+					Tab4 = {
+						Frame = "{{0, 0}, {250, 100}}";
+					};
+					TabCount = 5;
+				};
+			};
+		};
+		wantsIndex = 1;
+		wantsSCM = -1;
+	};
+	0867D69CFE84028FC02AAC07 = {
+		activeExec = 0;
+	};
+	25C29825016E29620ECA149E = {
+		uiCtxt = {
+			sepNavWindowFrame = "{{38, 650}, {750, 502}}";
+		};
+	};
+}
diff --git a/WebKit/WebKit.pbproj/project.pbxproj b/WebKit/WebKit.pbproj/project.pbxproj
new file mode 100644
index 0000000..5e9b65d
--- /dev/null
+++ b/WebKit/WebKit.pbproj/project.pbxproj
@@ -0,0 +1,415 @@
+// !$*UTF8*$!
+{
+	archiveVersion = 1;
+	classes = {
+	};
+	objectVersion = 34;
+	objects = {
+		014CEA440018CDF011CA2923 = {
+			buildRules = (
+			);
+			buildSettings = {
+				COPY_PHASE_STRIP = NO;
+				OPTIMIZATION_CFLAGS = "-O0";
+			};
+			isa = PBXBuildStyle;
+			name = Development;
+		};
+		014CEA450018CDF011CA2923 = {
+			buildRules = (
+			);
+			buildSettings = {
+				COPY_PHASE_STRIP = YES;
+			};
+			isa = PBXBuildStyle;
+			name = Deployment;
+		};
+//010
+//011
+//012
+//013
+//014
+//030
+//031
+//032
+//033
+//034
+		034768DFFF38A50411DB9C8B = {
+			children = (
+				034768E0FF38A50411DB9C8B,
+			);
+			isa = PBXGroup;
+			name = Products;
+			refType = 4;
+		};
+		034768E0FF38A50411DB9C8B = {
+			isa = PBXFrameworkReference;
+			path = WebKit.framework;
+			refType = 3;
+		};
+//030
+//031
+//032
+//033
+//034
+//080
+//081
+//082
+//083
+//084
+		0867D690FE84028FC02AAC07 = {
+			buildStyles = (
+				014CEA440018CDF011CA2923,
+				014CEA450018CDF011CA2923,
+			);
+			isa = PBXProject;
+			mainGroup = 0867D691FE84028FC02AAC07;
+			productRefGroup = 034768DFFF38A50411DB9C8B;
+			projectDirPath = "";
+			targets = (
+				0867D69CFE84028FC02AAC07,
+			);
+		};
+		0867D691FE84028FC02AAC07 = {
+			children = (
+				254DC334016E1D3F0ECA149E,
+				2568C71E017490290ECA149E,
+				089C1665FE841158C02AAC07,
+				0867D69AFE84028FC02AAC07,
+				034768DFFF38A50411DB9C8B,
+			);
+			isa = PBXGroup;
+			name = WebKit;
+			refType = 4;
+		};
+		0867D69AFE84028FC02AAC07 = {
+			children = (
+				1058C7B0FEA5585E11CA2CBB,
+				1058C7B2FEA5585E11CA2CBB,
+			);
+			isa = PBXGroup;
+			name = "External Frameworks and Libraries";
+			refType = 4;
+		};
+		0867D69BFE84028FC02AAC07 = {
+			isa = PBXFrameworkReference;
+			name = Foundation.framework;
+			path = /System/Library/Frameworks/Foundation.framework;
+			refType = 0;
+		};
+		0867D69CFE84028FC02AAC07 = {
+			buildPhases = (
+				0867D69DFE84028FC02AAC07,
+				0867D69EFE84028FC02AAC07,
+				0867D69FFE84028FC02AAC07,
+				0867D6A0FE84028FC02AAC07,
+				0867D6A2FE84028FC02AAC07,
+			);
+			buildSettings = {
+				DYLIB_COMPATIBILITY_VERSION = 1;
+				DYLIB_CURRENT_VERSION = 1;
+				FRAMEWORK_SEARCH_PATHS = "";
+				FRAMEWORK_VERSION = A;
+				HEADER_SEARCH_PATHS = "";
+				INSTALL_PATH = "$(HOME)/Library/Frameworks";
+				LIBRARY_SEARCH_PATHS = "";
+				OTHER_CFLAGS = "";
+				OTHER_LDFLAGS = "";
+				PRODUCT_NAME = WebKit;
+				SECTORDER_FLAGS = "";
+				WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas";
+				WRAPPER_EXTENSION = framework;
+			};
+			dependencies = (
+			);
+			isa = PBXFrameworkTarget;
+			name = WebKit;
+			productInstallPath = "$(HOME)/Library/Frameworks";
+			productName = WebKit;
+			productReference = 034768E0FF38A50411DB9C8B;
+			productSettingsXML = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>
+<!DOCTYPE plist SYSTEM \"file://localhost/System/Library/DTDs/PropertyList.dtd\">
+<plist version=\"0.9\">
+<dict>
+	<key>CFBundleDevelopmentRegion</key>
+	<string>English</string>
+	<key>CFBundleExecutable</key>
+	<string>WebKit</string>
+	<key>CFBundleIconFile</key>
+	<string></string>
+	<key>CFBundleIdentifier</key>
+	<string></string>
+	<key>CFBundleInfoDictionaryVersion</key>
+	<string>6.0</string>
+	<key>CFBundlePackageType</key>
+	<string>FMWK</string>
+	<key>CFBundleSignature</key>
+	<string>????</string>
+	<key>CFBundleVersion</key>
+	<string>0.0.1d1</string>
+	<key>NSPrincipalClass</key>
+	<string></string>
+</dict>
+</plist>
+";
+			shouldUseHeadermap = 1;
+		};
+		0867D69DFE84028FC02AAC07 = {
+			buildActionMask = 2147483647;
+			files = (
+				25C29827016E29620ECA149E,
+				2568C723017490290ECA149E,
+				2568C724017490290ECA149E,
+				2568C72D0174912D0ECA149E,
+				2568C72F0174917B0ECA149E,
+			);
+			isa = PBXHeadersBuildPhase;
+			name = Headers;
+		};
+		0867D69EFE84028FC02AAC07 = {
+			buildActionMask = 2147483647;
+			files = (
+				089C1668FE841158C02AAC07,
+			);
+			isa = PBXResourcesBuildPhase;
+			name = "Bundle Resources";
+		};
+		0867D69FFE84028FC02AAC07 = {
+			buildActionMask = 2147483647;
+			files = (
+				2568C725017490290ECA149E,
+				2568C726017490290ECA149E,
+				2568C72A017490CF0ECA149E,
+			);
+			isa = PBXSourcesBuildPhase;
+			name = Sources;
+		};
+		0867D6A0FE84028FC02AAC07 = {
+			buildActionMask = 2147483647;
+			files = (
+				1058C7B3FEA5585E11CA2CBB,
+			);
+			isa = PBXFrameworksBuildPhase;
+			name = "Frameworks & Libraries";
+		};
+		0867D6A2FE84028FC02AAC07 = {
+			buildActionMask = 2147483647;
+			files = (
+			);
+			isa = PBXRezBuildPhase;
+			name = "ResourceManager Resources";
+		};
+		0867D6A5FE840307C02AAC07 = {
+			isa = PBXFrameworkReference;
+			name = AppKit.framework;
+			path = /System/Library/Frameworks/AppKit.framework;
+			refType = 0;
+		};
+		089C1665FE841158C02AAC07 = {
+			children = (
+				089C1666FE841158C02AAC07,
+			);
+			isa = PBXGroup;
+			name = Resources;
+			refType = 4;
+		};
+		089C1666FE841158C02AAC07 = {
+			children = (
+				089C1667FE841158C02AAC07,
+			);
+			isa = PBXVariantGroup;
+			name = InfoPlist.strings;
+			refType = 4;
+		};
+		089C1667FE841158C02AAC07 = {
+			fileEncoding = 10;
+			isa = PBXFileReference;
+			name = English;
+			path = English.lproj/InfoPlist.strings;
+			refType = 4;
+		};
+		089C1668FE841158C02AAC07 = {
+			fileRef = 089C1666FE841158C02AAC07;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+//080
+//081
+//082
+//083
+//084
+//100
+//101
+//102
+//103
+//104
+		1058C7B0FEA5585E11CA2CBB = {
+			children = (
+				1058C7B1FEA5585E11CA2CBB,
+			);
+			isa = PBXGroup;
+			name = "Linked Frameworks";
+			refType = 4;
+		};
+		1058C7B1FEA5585E11CA2CBB = {
+			isa = PBXFrameworkReference;
+			name = Cocoa.framework;
+			path = /System/Library/Frameworks/Cocoa.framework;
+			refType = 0;
+		};
+		1058C7B2FEA5585E11CA2CBB = {
+			children = (
+				0867D69BFE84028FC02AAC07,
+				0867D6A5FE840307C02AAC07,
+			);
+			isa = PBXGroup;
+			name = "Other Frameworks";
+			refType = 4;
+		};
+		1058C7B3FEA5585E11CA2CBB = {
+			fileRef = 1058C7B1FEA5585E11CA2CBB;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+//100
+//101
+//102
+//103
+//104
+//250
+//251
+//252
+//253
+//254
+		254DC334016E1D3F0ECA149E = {
+			children = (
+				2568C72C0174912D0ECA149E,
+				25C29825016E29620ECA149E,
+				2568C729017490CF0ECA149E,
+				2568C72B017491070ECA149E,
+			);
+			isa = PBXGroup;
+			name = Misc;
+			refType = 4;
+		};
+		2568C71E017490290ECA149E = {
+			children = (
+				2568C722017490290ECA149E,
+				2568C720017490290ECA149E,
+				2568C71F017490290ECA149E,
+				2568C721017490290ECA149E,
+				2568C72E0174917B0ECA149E,
+			);
+			isa = PBXGroup;
+			name = Cache;
+			path = Cache.subproj;
+			refType = 4;
+		};
+		2568C71F017490290ECA149E = {
+			isa = PBXFileReference;
+			path = NSURILoad.h;
+			refType = 4;
+		};
+		2568C720017490290ECA149E = {
+			isa = PBXFileReference;
+			path = NSURILoad.m;
+			refType = 4;
+		};
+		2568C721017490290ECA149E = {
+			isa = PBXFileReference;
+			path = _NSURILoadQueue.m;
+			refType = 4;
+		};
+		2568C722017490290ECA149E = {
+			isa = PBXFileReference;
+			path = NSURILoadReallyPrivate.h;
+			refType = 4;
+		};
+		2568C723017490290ECA149E = {
+			fileRef = 2568C71F017490290ECA149E;
+			isa = PBXBuildFile;
+			settings = {
+				ATTRIBUTES = (
+					Private,
+				);
+			};
+		};
+		2568C724017490290ECA149E = {
+			fileRef = 2568C722017490290ECA149E;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		2568C725017490290ECA149E = {
+			fileRef = 2568C720017490290ECA149E;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		2568C726017490290ECA149E = {
+			fileRef = 2568C721017490290ECA149E;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		2568C729017490CF0ECA149E = {
+			isa = PBXFileReference;
+			name = _NSMonitor.m;
+			path = Misc.subproj/_NSMonitor.m;
+			refType = 4;
+		};
+		2568C72A017490CF0ECA149E = {
+			fileRef = 2568C729017490CF0ECA149E;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		2568C72B017491070ECA149E = {
+			isa = PBXFileReference;
+			name = _NSMonitor.h;
+			path = Misc.subproj/_NSMonitor.h;
+			refType = 4;
+		};
+		2568C72C0174912D0ECA149E = {
+			isa = PBXFileReference;
+			name = WebKit.h;
+			path = Misc.subproj/WebKit.h;
+			refType = 4;
+		};
+		2568C72D0174912D0ECA149E = {
+			fileRef = 2568C72C0174912D0ECA149E;
+			isa = PBXBuildFile;
+			settings = {
+				ATTRIBUTES = (
+					Public,
+				);
+			};
+		};
+		2568C72E0174917B0ECA149E = {
+			isa = PBXFileReference;
+			path = _NSURILoadQueue.h;
+			refType = 4;
+		};
+		2568C72F0174917B0ECA149E = {
+			fileRef = 2568C72E0174917B0ECA149E;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		25C29825016E29620ECA149E = {
+			isa = PBXFileReference;
+			name = WebKitReallyPrivate.h;
+			path = Misc.subproj/WebKitReallyPrivate.h;
+			refType = 4;
+		};
+		25C29827016E29620ECA149E = {
+			fileRef = 25C29825016E29620ECA149E;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+	};
+	rootObject = 0867D690FE84028FC02AAC07;
+}

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list