Title: [127986] trunk/Source/WebKit2
- Revision
- 127986
- Author
- [email protected]
- Date
- 2012-09-09 09:46:52 -0700 (Sun, 09 Sep 2012)
Log Message
[Qt] Add missing files to the WebKit2 build on Windows
https://bugs.webkit.org/show_bug.cgi?id=96177
Reviewed by Kenneth Rohde Christiansen.
For the build on Windows we can re-use existing functionality from the Safari/Windows
build, such as the IPC implementation.
* Target.pri:
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (127985 => 127986)
--- trunk/Source/WebKit2/ChangeLog 2012-09-09 16:44:50 UTC (rev 127985)
+++ trunk/Source/WebKit2/ChangeLog 2012-09-09 16:46:52 UTC (rev 127986)
@@ -1,5 +1,17 @@
2012-09-09 Simon Hausmann <[email protected]>
+ [Qt] Add missing files to the WebKit2 build on Windows
+ https://bugs.webkit.org/show_bug.cgi?id=96177
+
+ Reviewed by Kenneth Rohde Christiansen.
+
+ For the build on Windows we can re-use existing functionality from the Safari/Windows
+ build, such as the IPC implementation.
+
+ * Target.pri:
+
+2012-09-09 Simon Hausmann <[email protected]>
+
[WK2] Fix PLATFORM(WIN) vs. OS(WINDOWS) in various files
https://bugs.webkit.org/show_bug.cgi?id=96178
Modified: trunk/Source/WebKit2/Target.pri (127985 => 127986)
--- trunk/Source/WebKit2/Target.pri 2012-09-09 16:44:50 UTC (rev 127985)
+++ trunk/Source/WebKit2/Target.pri 2012-09-09 16:46:52 UTC (rev 127986)
@@ -377,7 +377,6 @@
Platform/CoreIPC/ArgumentDecoder.cpp \
Platform/CoreIPC/ArgumentEncoder.cpp \
Platform/CoreIPC/Attachment.cpp \
- Platform/CoreIPC/BinarySemaphore.cpp \
Platform/CoreIPC/Connection.cpp \
Platform/CoreIPC/DataReference.cpp \
Platform/Logging.cpp \
@@ -855,6 +854,11 @@
Platform/mac/WorkQueueMac.cpp \
Platform/mac/SharedMemoryMac.cpp
+} else:win32 {
+ SOURCES += \
+ Platform/CoreIPC/win/ConnectionWin.cpp \
+ Platform/win/WorkQueueWin.cpp \
+ Platform/win/SharedMemoryWin.cpp
} else {
SOURCES += \
Platform/CoreIPC/unix/AttachmentUnix.cpp \
@@ -863,6 +867,15 @@
Platform/unix/SharedMemoryUnix.cpp
}
+win32 {
+ SOURCES += \
+ Platform/CoreIPC/win/BinarySemaphoreWin.cpp
+} else {
+ SOURCES += \
+ Platform/CoreIPC/BinarySemaphore.cpp
+}
+
+
contains(DEFINES, ENABLE_INSPECTOR_SERVER=1) {
HEADERS += \
UIProcess/InspectorServer/WebInspectorServer.h \
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes