Changeset 195183 in webkit


Ignore:
Timestamp:
Jan 17, 2016 10:09:19 AM (8 years ago)
Author:
Michael Catanzaro
Message:

[CMake] Do not build bmalloc when USE_SYSTEM_MALLOC is ON
https://bugs.webkit.org/show_bug.cgi?id=153190

Reviewed by Csaba Osztrogonác.

Build bmalloc when NOT USE_SYSTEM_MALLOC rather than when NOT WIN32.

.:

  • Source/CMakeLists.txt:
  • Source/cmake/OptionsWin.cmake:

Source/WTF:

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

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r195174 r195183  
     12016-01-17  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        [CMake] Do not build bmalloc when USE_SYSTEM_MALLOC is ON
     4        https://bugs.webkit.org/show_bug.cgi?id=153190
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        Build bmalloc when NOT USE_SYSTEM_MALLOC rather than when NOT WIN32.
     9
     10        * Source/CMakeLists.txt:
     11        * Source/cmake/OptionsWin.cmake:
     12
    1132016-01-16  Jeremy Huddleston Sequoia  <jeremyhu@apple.com>
    214
  • trunk/Source/CMakeLists.txt

    r189157 r195183  
    22# Add module directories
    33# -----------------------------------------------------------------------------
    4 # FIXME: Port bmalloc to Windows. https://bugs.webkit.org/show_bug.cgi?id=143310
    5 if (NOT WIN32)
     4if (NOT USE_SYSTEM_MALLOC)
    65    add_subdirectory(bmalloc)
    76endif ()
     
    3433# Set compiler flags for all targets
    3534# -----------------------------------------------------------------------------
    36 # FIXME: Port bmalloc to Windows. https://bugs.webkit.org/show_bug.cgi?id=143310
    37 if (NOT WIN32)
     35if (NOT USE_SYSTEM_MALLOC)
    3836    WEBKIT_SET_EXTRA_COMPILER_FLAGS(bmalloc ${ADDITIONAL_COMPILER_FLAGS})
    3937endif ()
  • trunk/Source/WTF/ChangeLog

    r195142 r195183  
     12016-01-17  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        [CMake] Do not build bmalloc when USE_SYSTEM_MALLOC is ON
     4        https://bugs.webkit.org/show_bug.cgi?id=153190
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        Build bmalloc when NOT USE_SYSTEM_MALLOC rather than when NOT WIN32.
     9
     10        * wtf/CMakeLists.txt:
     11
    1122016-01-15  Simon Fraser  <simon.fraser@apple.com>
    213
  • trunk/Source/WTF/wtf/CMakeLists.txt

    r195142 r195183  
    250250endif ()
    251251
    252 # FIXME: Port bmalloc to Windows. https://bugs.webkit.org/show_bug.cgi?id=143310
    253 if (NOT WIN32)
     252if (NOT USE_SYSTEM_MALLOC)
    254253    list(APPEND WTF_LIBRARIES bmalloc)
    255254endif ()
  • trunk/Source/cmake/OptionsWin.cmake

    r194921 r195183  
    8080WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_XSLT PUBLIC ON)
    8181
     82# FIXME: Port bmalloc to Windows. https://bugs.webkit.org/show_bug.cgi?id=143310
    8283WEBKIT_OPTION_DEFAULT_PORT_VALUE(USE_SYSTEM_MALLOC PRIVATE ON)
    8384
Note: See TracChangeset for help on using the changeset viewer.