Changeset 223884 in webkit


Ignore:
Timestamp:
Oct 24, 2017 1:20:03 AM (7 years ago)
Author:
zandobersek@gmail.com
Message:

[GTK][WPE] generate-forwarding-headers.pl should also scan derived sources in WebKit framework
https://bugs.webkit.org/show_bug.cgi?id=178579

Reviewed by Carlos Garcia Campos.

  • PlatformGTK.cmake: When generating forwarding headers, derived sources

should be scanned as well. The DERIVED_SOURCES_WEBKIT_DIR value has to
be passed as an include path to the generate-forward-headers.pl script
to achieve that. This target then also has to depend on all the derived
source files to be generated before this can be performed.

  • PlatformWPE.cmake: Ditto.
Location:
trunk/Source/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r223880 r223884  
     12017-10-24  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK][WPE] generate-forwarding-headers.pl should also scan derived sources in WebKit framework
     4        https://bugs.webkit.org/show_bug.cgi?id=178579
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * PlatformGTK.cmake: When generating forwarding headers, derived sources
     9        should be scanned as well. The DERIVED_SOURCES_WEBKIT_DIR value has to
     10        be passed as an include path to the generate-forward-headers.pl script
     11        to achieve that. This target then also has to depend on all the derived
     12        source files to be generated before this can be performed.
     13        * PlatformWPE.cmake: Ditto.
     14
    1152017-10-23  Brian Burg  <bburg@apple.com>
    216
  • trunk/Source/WebKit/PlatformGTK.cmake

    r223574 r223884  
    13041304
    13051305add_custom_target(WebKit-forwarding-headers
    1306     COMMAND ${PERL_EXECUTABLE} ${WEBKIT_DIR}/Scripts/generate-forwarding-headers.pl --include-path ${WEBKIT_DIR} --output ${FORWARDING_HEADERS_DIR} --platform gtk --platform soup
     1306    DEPENDS ${WebKit_DERIVED_SOURCES}
     1307    COMMAND ${PERL_EXECUTABLE} ${WEBKIT_DIR}/Scripts/generate-forwarding-headers.pl --include-path ${WEBKIT_DIR} --include-path ${DERIVED_SOURCES_WEBKIT_DIR} --output ${FORWARDING_HEADERS_DIR} --platform gtk --platform soup
    13071308)
    13081309
  • trunk/Source/WebKit/PlatformWPE.cmake

    r223574 r223884  
    2121
    2222add_custom_target(webkitwpe-forwarding-headers
    23     COMMAND ${PERL_EXECUTABLE} ${WEBKIT_DIR}/Scripts/generate-forwarding-headers.pl --include-path ${WEBKIT_DIR} --output ${FORWARDING_HEADERS_DIR} --platform wpe --platform soup
     23    DEPENDS ${WebKit_DERIVED_SOURCES}
     24    COMMAND ${PERL_EXECUTABLE} ${WEBKIT_DIR}/Scripts/generate-forwarding-headers.pl --include-path ${WEBKIT_DIR} --include-path ${DERIVED_SOURCES_WEBKIT_DIR} --output ${FORWARDING_HEADERS_DIR} --platform wpe --platform soup
    2425)
    2526
Note: See TracChangeset for help on using the changeset viewer.