Changeset 260696 in webkit


Ignore:
Timestamp:
Apr 25, 2020 1:56:11 AM (4 years ago)
Author:
Diego Pino Garcia
Message:

Source/WebInspectorUI:
REGRESSION(210942): [GTK][WPE] Unreviewed, EWS build bots fail in compile-webkit step
https://bugs.webkit.org/show_bug.cgi?id=211014

  • CMakeLists.txt: Remove creation of file 'inspector-resources.stamp'.

Source/WebKit:
REGRESSION(210942): [GTK][WPE] EWS build bots fail in compile-webkit step
https://bugs.webkit.org/show_bug.cgi?id=211014

Make command that generates 'InspectorGResourceBundle.xml' depend on target
WebInspectorUI, instead of file 'inspector-resources.stamp'.

  • InspectorGResources.cmake:
Location:
trunk/Source
Files:
4 edited

Legend:

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

    r260672 r260696  
    7575    COMMAND ${CMAKE_COMMAND} -E make_directory ${WebInspectorUI_LOCALIZED_STRINGS_DIR}
    7676    COMMAND ${CMAKE_COMMAND} -E copy "${WEBINSPECTORUI_DIR}/Localizations/en.lproj/localizedStrings.js" ${WebInspectorUI_LOCALIZED_STRINGS_DIR}/localizedStrings.js
    77     COMMAND ${CMAKE_COMMAND} -E touch ${CMAKE_BINARY_DIR}/inspector-resources.stamp
    7877    VERBATIM
    7978)
  • trunk/Source/WebInspectorUI/ChangeLog

    r260672 r260696  
     12020-04-25  Diego Pino Garcia  <dpino@igalia.com>
     2
     3        REGRESSION(210942): [GTK][WPE] Unreviewed, EWS build bots fail in compile-webkit step
     4        https://bugs.webkit.org/show_bug.cgi?id=211014
     5
     6        * CMakeLists.txt: Remove creation of file 'inspector-resources.stamp'.
     7
    182020-04-24  Christopher Reid  <chris.reid@sony.com>
    29
  • trunk/Source/WebKit/ChangeLog

    r260691 r260696  
     12020-04-25  Diego Pino Garcia  <dpino@igalia.com>
     2
     3        REGRESSION(210942): [GTK][WPE] EWS build bots fail in compile-webkit step
     4        https://bugs.webkit.org/show_bug.cgi?id=211014
     5
     6        Make command that generates 'InspectorGResourceBundle.xml' depend on target
     7        WebInspectorUI, instead of file 'inspector-resources.stamp'.
     8
     9        * InspectorGResources.cmake:
     10
    1112020-04-24  Diego Pino Garcia  <dpino@igalia.com>
    212
  • trunk/Source/WebKit/InspectorGResources.cmake

    r260672 r260696  
    22    add_custom_command(
    33        OUTPUT ${_derived_sources_dir}/InspectorGResourceBundle.xml
    4         DEPENDS ${CMAKE_BINARY_DIR}/inspector-resources.stamp
     4        DEPENDS WebInspectorUI
    55                ${TOOLS_DIR}/glib/generate-inspector-gresource-manifest.py
    66        COMMAND ${PYTHON_EXECUTABLE} ${TOOLS_DIR}/glib/generate-inspector-gresource-manifest.py --input=${_derived_sources_dir}/InspectorResources --output=${_derived_sources_dir}/InspectorGResourceBundle.xml
Note: See TracChangeset for help on using the changeset viewer.