Changeset 185410 in webkit


Ignore:
Timestamp:
Jun 10, 2015 3:33:13 AM (9 years ago)
Author:
zandobersek@gmail.com
Message:

[GTK] Web Inspector is broken
https://bugs.webkit.org/show_bug.cgi?id=145836

Reviewed by Carlos Garcia Campos.

  • PlatformGTK.cmake: Thread the InspectorBackendCommands.js file as a separate

dependency of InspectorGResourceBundle.xml. It can't be listed under the InspectorFiles
variable and then searched via the CMake glob command because it probably won't exist
at the time the command is run (since it's copied into the specified path), so it won't
be listed among the dependencies at all.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r185391 r185410  
     12015-06-10  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK] Web Inspector is broken
     4        https://bugs.webkit.org/show_bug.cgi?id=145836
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * PlatformGTK.cmake: Thread the InspectorBackendCommands.js file as a separate
     9        dependency of InspectorGResourceBundle.xml. It can't be listed under the InspectorFiles
     10        variable and then searched via the CMake glob command because it probably won't exist
     11        at the time the command is run (since it's copied into the specified path), so it won't
     12        be listed among the dependencies at all.
     13
    1142015-06-09  Anders Carlsson  <andersca@apple.com>
    215
  • trunk/Source/WebKit2/PlatformGTK.cmake

    r185358 r185410  
    428428    ${CMAKE_SOURCE_DIR}/Source/WebInspectorUI/UserInterface/Images/gtk/*.svg
    429429    ${CMAKE_SOURCE_DIR}/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js
    430     ${DERIVED_SOURCES_WEBINSPECTORUI_DIR}/UserInterface/Protocol/InspectorBackendCommands.js
    431430)
    432431
     
    582581    OUTPUT ${DERIVED_SOURCES_WEBKIT2GTK_DIR}/InspectorGResourceBundle.xml
    583582    DEPENDS ${InspectorFilesDependencies}
     583            ${DERIVED_SOURCES_WEBINSPECTORUI_DIR}/UserInterface/Protocol/InspectorBackendCommands.js
    584584            ${TOOLS_DIR}/gtk/generate-inspector-gresource-manifest.py
    585     COMMAND ${TOOLS_DIR}/gtk/generate-inspector-gresource-manifest.py --output=${DERIVED_SOURCES_WEBKIT2GTK_DIR}/InspectorGResourceBundle.xml ${InspectorFiles}
     585    COMMAND ${TOOLS_DIR}/gtk/generate-inspector-gresource-manifest.py --output=${DERIVED_SOURCES_WEBKIT2GTK_DIR}/InspectorGResourceBundle.xml ${InspectorFiles} ${DERIVED_SOURCES_WEBINSPECTORUI_DIR}/UserInterface/Protocol/InspectorBackendCommands.js
    586586    VERBATIM
    587587)
Note: See TracChangeset for help on using the changeset viewer.