Changeset 127986 in webkit


Ignore:
Timestamp:
Sep 9, 2012 9:46:52 AM (12 years ago)
Author:
Simon Hausmann
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:
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r127983 r127986  
     12012-09-09  Simon Hausmann  <simon.hausmann@nokia.com>
     2
     3        [Qt] Add missing files to the WebKit2 build on Windows
     4        https://bugs.webkit.org/show_bug.cgi?id=96177
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        For the build on Windows we can re-use existing functionality from the Safari/Windows
     9        build, such as the IPC implementation.
     10
     11        * Target.pri:
     12
    1132012-09-09  Simon Hausmann  <simon.hausmann@nokia.com>
    214
  • trunk/Source/WebKit2/Target.pri

    r127725 r127986  
    378378    Platform/CoreIPC/ArgumentEncoder.cpp \
    379379    Platform/CoreIPC/Attachment.cpp \
    380     Platform/CoreIPC/BinarySemaphore.cpp \
    381380    Platform/CoreIPC/Connection.cpp \
    382381    Platform/CoreIPC/DataReference.cpp \
     
    856855        Platform/mac/SharedMemoryMac.cpp
    857856
     857} else:win32 {
     858    SOURCES += \
     859        Platform/CoreIPC/win/ConnectionWin.cpp \
     860        Platform/win/WorkQueueWin.cpp \
     861        Platform/win/SharedMemoryWin.cpp
    858862} else {
    859863    SOURCES += \
     
    864868}
    865869
     870win32 {
     871    SOURCES += \
     872        Platform/CoreIPC/win/BinarySemaphoreWin.cpp
     873} else {
     874    SOURCES += \
     875        Platform/CoreIPC/BinarySemaphore.cpp
     876}
     877
     878
    866879contains(DEFINES, ENABLE_INSPECTOR_SERVER=1) {
    867880    HEADERS += \
Note: See TracChangeset for help on using the changeset viewer.