Changeset 222287 in webkit


Ignore:
Timestamp:
Sep 20, 2017 2:09:06 PM (7 years ago)
Author:
pvollan@apple.com
Message:

[Win] Cannot find script to generate unified sources.
https://bugs.webkit.org/show_bug.cgi?id=177014

Reviewed by Keith Miller.

Source/JavaScriptCore:

The ruby script can now be found in WTF/Scripts in the forwarding headers folder.

Source/WTF:

Copy the ruby script to WTF/Scripts in the forwarding headers folder.

  • wtf/CMakeLists.txt:
Location:
trunk/Source
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/CMakeLists.txt

    r222275 r222287  
    10241024endforeach ()
    10251025
    1026 execute_process(COMMAND ${RUBY_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/../WTF/generate-unified-source-bundles.rb
     1026if (WIN32 AND INTERNAL_BUILD)
     1027    set(WTF_SCRIPTS_DIR "${CMAKE_BINARY_DIR}/../include/private/WTF/Scripts")
     1028else ()
     1029    set(WTF_SCRIPTS_DIR "${FORWARDING_HEADERS_DIR}/WTF/Scripts")
     1030endif ()
     1031
     1032execute_process(COMMAND ${RUBY_EXECUTABLE} ${WTF_SCRIPTS_DIR}/generate-unified-source-bundles.rb
    10271033  "--derived-sources-path" ${DERIVED_SOURCES_JAVASCRIPTCORE_DIR} ${JavaScriptCore_UNIFIABLE_SOURCES}
    10281034  RESULT_VARIABLE generateUnifiedSourcesResult
  • trunk/Source/JavaScriptCore/ChangeLog

    r222275 r222287  
     12017-09-20  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [Win] Cannot find script to generate unified sources.
     4        https://bugs.webkit.org/show_bug.cgi?id=177014
     5
     6        Reviewed by Keith Miller.
     7
     8        The ruby script can now be found in WTF/Scripts in the forwarding headers folder.
     9
     10        * CMakeLists.txt:
     11        * JavaScriptCore.vcxproj/JavaScriptCore.proj:
     12
    1132017-09-20  Alberto Garcia  <berto@igalia.com>
    214
  • trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/JavaScriptCore.proj

    r208275 r222287  
    2929    <ConfigurationBuildDir>$(OBJROOT)\$(CONFIG)</ConfigurationBuildDir> 
    3030    <OutputDirectory>$(DSTROOT)</OutputDirectory>
    31         <CMakeCommandCommon>cmake $(SRCROOT) -DPORT=AppleWin $(DebugSuffixDefinition) -DWEBKIT_LIBRARIES_DIR=$(WebKit_Libraries.Replace('\','/')) -DCMAKE_MODULE_PATH=$(SRCROOT.Replace('\','/'))/AppleInternal/tools/cmake -DCMAKE_BINARY_DIR=$(OBJROOT.Replace('\','/'))/$(CONFIG) -DCMAKE_BUILD_TYPE=$(CONFIGURATION) -DJAVASCRIPTCORE_DIR=$(SRCROOT.Replace('\','/'))</CMakeCommandCommon>
     31        <CMakeCommandCommon>cmake $(SRCROOT) -DPORT=AppleWin $(DebugSuffixDefinition) -DINTERNAL_BUILD=1 -DWEBKIT_LIBRARIES_DIR=$(WebKit_Libraries.Replace('\','/')) -DCMAKE_MODULE_PATH=$(SRCROOT.Replace('\','/'))/AppleInternal/tools/cmake -DCMAKE_BINARY_DIR=$(OBJROOT.Replace('\','/'))/$(CONFIG) -DCMAKE_BUILD_TYPE=$(CONFIGURATION) -DJAVASCRIPTCORE_DIR=$(SRCROOT.Replace('\','/'))</CMakeCommandCommon>
    3232  </PropertyGroup>
    3333 
  • trunk/Source/WTF/ChangeLog

    r222275 r222287  
     12017-09-20  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [Win] Cannot find script to generate unified sources.
     4        https://bugs.webkit.org/show_bug.cgi?id=177014
     5
     6        Reviewed by Keith Miller.
     7
     8        Copy the ruby script to WTF/Scripts in the forwarding headers folder.
     9
     10        * wtf/CMakeLists.txt:
     11
    1122017-09-20  Alberto Garcia  <berto@igalia.com>
    213
  • trunk/Source/WTF/wtf/CMakeLists.txt

    r221768 r222287  
    394394        VERBATIM)
    395395endif ()
     396
     397file(MAKE_DIRECTORY ${FORWARDING_HEADERS_DIR}/WTF/Scripts)
     398
     399file(COPY
     400    ../generate-unified-source-bundles.rb
     401    DESTINATION
     402    ${FORWARDING_HEADERS_DIR}/WTF/Scripts
     403)
Note: See TracChangeset for help on using the changeset viewer.