Changeset 136914 in webkit


Ignore:
Timestamp:
Dec 6, 2012 6:17:14 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[CMake] Consolidate list of files to build for JavaScriptCore
https://bugs.webkit.org/show_bug.cgi?id=104287

Patch by Laszlo Gombos <l.gombos@samsung.com> on 2012-12-06
Reviewed by Gyuyoung Kim.

Add MemoryStatistics.cpp and ExecutableAllocator.cpp to the common
list of files and remove them from the port specific lists.

  • CMakeLists.txt:
  • PlatformBlackBerry.cmake:
  • PlatformEfl.cmake:
  • PlatformWinCE.cmake:
Location:
trunk/Source/JavaScriptCore
Files:
5 edited

Legend:

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

    r136790 r136914  
    255255    runtime/Lookup.cpp
    256256    runtime/MathObject.cpp
     257    runtime/MemoryStatistics.cpp
    257258    runtime/NameConstructor.cpp
    258259    runtime/NameConstructor.h
  • trunk/Source/JavaScriptCore/ChangeLog

    r136895 r136914  
     12012-12-06  Laszlo Gombos  <l.gombos@samsung.com>
     2
     3        [CMake] Consolidate list of files to build for JavaScriptCore
     4        https://bugs.webkit.org/show_bug.cgi?id=104287
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        Add MemoryStatistics.cpp and ExecutableAllocator.cpp to the common
     9        list of files and remove them from the port specific lists.
     10
     11        * CMakeLists.txt:
     12        * PlatformBlackBerry.cmake:
     13        * PlatformEfl.cmake:
     14        * PlatformWinCE.cmake:
     15
    1162012-12-06  Oliver Hunt  <oliver@apple.com>
    217
  • trunk/Source/JavaScriptCore/PlatformBlackBerry.cmake

    r136790 r136914  
    99list(APPEND JavaScriptCore_SOURCES
    1010    runtime/GCActivityCallbackBlackBerry.cpp
    11     runtime/MemoryStatistics.cpp
    1211)
    1312
  • trunk/Source/JavaScriptCore/PlatformEfl.cmake

    r136884 r136914  
    11list(APPEND JavaScriptCore_SOURCES
    22    jit/ExecutableAllocatorFixedVMPool.cpp
    3     jit/ExecutableAllocator.cpp
    4 
    5     runtime/MemoryStatistics.cpp
    63)
    74
  • trunk/Source/JavaScriptCore/PlatformWinCE.cmake

    r136790 r136914  
    1 list(APPEND JavaScriptCore_SOURCES
    2     jit/ExecutableAllocator.cpp
    3 )
    4 
    51if (ENABLE_JIT AND WTF_CPU_ARM)
    62    add_custom_command(
Note: See TracChangeset for help on using the changeset viewer.