Changeset 86283 in webkit


Ignore:
Timestamp:
May 11, 2011 4:28:08 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-05-11 Lucas De Marchi <lucas.demarchi@profusion.mobi>

Reviewed by Antonio Gomes.

[CMAKE] Move EFL-specific file to CMakeListsEfl.txt
https://bugs.webkit.org/show_bug.cgi?id=60642

Move file EFL-specific file to the CMakeListsEfl.txt file. This implies
having to include CMakeLists${PORT}.txt before the ADD_CUSTOM_COMMAND
calls, since they depend on lists that now may change inside a port
like WebCore_USER_AGENT_STYLE_SHEETS.

No new tests since no change in functionality.

  • CMakeLists.txt: remove css file specific to EFL port.
  • CMakeListsEfl.txt: move file here.
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

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

    r86047 r86283  
    14121412    ${WEBCORE_DIR}/css/mathml.css
    14131413    ${WEBCORE_DIR}/css/mediaControls.css
    1414     ${WEBCORE_DIR}/css/mediaControlsEfl.css
    14151414    ${WEBCORE_DIR}/css/quirks.css
    14161415    ${WEBCORE_DIR}/css/svg.css
     
    19541953
    19551954INCLUDE(${WEBCORE_DIR}/UseJSC.cmake)
    1956  
     1955
     1956SET(WebCore_LIBRARIES ${JavaScriptCore_LIBRARY_NAME})
     1957SET(WebCore_LINK_FLAGS "")
     1958INCLUDE_IF_EXISTS(${WEBCORE_DIR}/CMakeLists${PORT}.txt)
     1959
     1960
    19571961# All Web Inspector generated files are created with this one call to CodeGeneratorInspector.pm
    19581962ADD_CUSTOM_COMMAND(
     
    21092113LIST(APPEND WebCore_SOURCES ${DERIVED_SOURCES_WEBCORE_DIR}/XMLNames.cpp)
    21102114
    2111 
    21122115ADD_CUSTOM_COMMAND(
    21132116    OUTPUT ${DERIVED_SOURCES_WEBCORE_DIR}/WebKitVersion.h
     
    21192122
    21202123
    2121 SET(WebCore_LIBRARIES
    2122     ${JavaScriptCore_LIBRARY_NAME}
    2123 )
    2124 
    2125 
    2126 SET(WebCore_LINK_FLAGS "")
    2127 INCLUDE_IF_EXISTS(${WEBCORE_DIR}/CMakeLists${PORT}.txt)
    21282124
    21292125WEBKIT_WRAP_SOURCELIST(${WebCore_IDL_FILES} ${WebCore_SOURCES})
  • trunk/Source/WebCore/CMakeListsEfl.txt

    r85168 r86283  
    7777)
    7878
     79LIST(APPEND WebCore_USER_AGENT_STYLE_SHEETS
     80    ${WEBCORE_DIR}/css/mediaControlsEfl.css
     81)
     82
    7983IF (WTF_USE_CAIRO)
    8084  LIST(APPEND WebCore_INCLUDE_DIRECTORIES
  • trunk/Source/WebCore/ChangeLog

    r86279 r86283  
     12011-05-11  Lucas De Marchi  <lucas.demarchi@profusion.mobi>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [CMAKE] Move EFL-specific file to CMakeListsEfl.txt
     6        https://bugs.webkit.org/show_bug.cgi?id=60642
     7
     8        Move file EFL-specific file to the CMakeListsEfl.txt file. This implies
     9        having to include CMakeLists${PORT}.txt before the ADD_CUSTOM_COMMAND
     10        calls, since they depend on lists that now may change inside a port
     11        like WebCore_USER_AGENT_STYLE_SHEETS.
     12
     13        No new tests since no change in functionality.
     14
     15        * CMakeLists.txt: remove css file specific to EFL port.
     16        * CMakeListsEfl.txt: move file here.
     17
    1182011-05-11  Tao Bai  <michaelbai@chromium.org>
    219
Note: See TracChangeset for help on using the changeset viewer.