Changeset 195680 in webkit


Ignore:
Timestamp:
Jan 27, 2016 12:00:17 PM (8 years ago)
Author:
achristensen@apple.com
Message:

Fix Win EWS after r195545.
https://bugs.webkit.org/show_bug.cgi?id=153434

  • PlatformWin.cmake:

Copy WebKit.h after building WebKitGUID, because it doesn't exist before.
This should fix EWS problems like the one seen in bug 153522.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r195545 r195680  
     12016-01-27  Alex Christensen  <achristensen@webkit.org>
     2
     3        Fix Win EWS after r195545.
     4        https://bugs.webkit.org/show_bug.cgi?id=153434
     5
     6        * PlatformWin.cmake:
     7        Copy WebKit.h after building WebKitGUID, because it doesn't exist before.
     8        This should fix EWS problems like the one seen in bug 153522.
     9
    1102016-01-25  Alex Christensen  <achristensen@webkit.org>
    211
  • trunk/Source/WebKit/PlatformWin.cmake

    r195545 r195680  
    465465
    466466set(WebKitGUID_PRE_BUILD_COMMAND "${CMAKE_BINARY_DIR}/DerivedSources/WebKit/preBuild.cmd")
    467 file(WRITE "${WebKitGUID_PRE_BUILD_COMMAND}" "@xcopy /y /d /f \"${DERIVED_SOURCES_WEBKIT_DIR}/Interfaces/WebKit.h\" \"${DERIVED_SOURCES_DIR}/ForwardingHeaders/WebKit\" >nul 2>nul\n@xcopy /y /d /f \"${CMAKE_CURRENT_SOURCE_DIR}/win/WebKitCOMAPI.h\" \"${DERIVED_SOURCES_DIR}/ForwardingHeaders/WebKit\" >nul 2>nul\n@xcopy /y /d /f \"${CMAKE_CURRENT_SOURCE_DIR}/win/CFDictionaryPropertyBag.h\" \"${DERIVED_SOURCES_DIR}/ForwardingHeaders/WebKit\" >nul 2>nul\n")
     467file(WRITE "${WebKitGUID_PRE_BUILD_COMMAND}" "@xcopy /y /d /f \"${CMAKE_CURRENT_SOURCE_DIR}/win/WebKitCOMAPI.h\" \"${DERIVED_SOURCES_DIR}/ForwardingHeaders/WebKit\" >nul 2>nul\n@xcopy /y /d /f \"${CMAKE_CURRENT_SOURCE_DIR}/win/CFDictionaryPropertyBag.h\" \"${DERIVED_SOURCES_DIR}/ForwardingHeaders/WebKit\" >nul 2>nul\n")
    468468file(MAKE_DIRECTORY ${DERIVED_SOURCES_DIR}/ForwardingHeaders/WebKit)
    469469add_custom_command(TARGET WebKitGUID PRE_BUILD COMMAND ${WebKitGUID_PRE_BUILD_COMMAND} VERBATIM)
     470
     471set(WebKitGUID_POST_BUILD_COMMAND "${CMAKE_BINARY_DIR}/DerivedSources/WebKit/postBuild.cmd")
     472file(WRITE "${WebKitGUID_POST_BUILD_COMMAND}" "@xcopy /y /d /f \"${DERIVED_SOURCES_WEBKIT_DIR}/Interfaces/WebKit.h\" \"${DERIVED_SOURCES_DIR}/ForwardingHeaders/WebKit\" >nul 2>nul")
     473add_custom_command(TARGET WebKitGUID POST_BUILD COMMAND ${WebKitGUID_PRE_BUILD_COMMAND} VERBATIM)
Note: See TracChangeset for help on using the changeset viewer.