Title: [148004] trunk/Source/WTF
Revision
148004
Author
[email protected]
Date
2013-04-09 04:01:32 -0700 (Tue, 09 Apr 2013)

Log Message

[CMake] Remove conditional source file lists in WTF
https://bugs.webkit.org/show_bug.cgi?id=114250

Reviewed by Laszlo Gombos.

Use the #ifdef in the source file instead of conditional adding
files to the list of source files. This allows us to remove the
information of enabled features from CMake in next step.

* wtf/CMakeLists.txt:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (148003 => 148004)


--- trunk/Source/WTF/ChangeLog	2013-04-09 10:44:40 UTC (rev 148003)
+++ trunk/Source/WTF/ChangeLog	2013-04-09 11:01:32 UTC (rev 148004)
@@ -1,3 +1,16 @@
+2013-04-09  Patrick Gansterer  <[email protected]>
+
+        [CMake] Remove conditional source file lists in WTF
+        https://bugs.webkit.org/show_bug.cgi?id=114250
+
+        Reviewed by Laszlo Gombos.
+
+        Use the #ifdef in the source file instead of conditional adding
+        files to the list of source files. This allows us to remove the
+        information of enabled features from CMake in next step.
+
+        * wtf/CMakeLists.txt:
+
 2013-04-08  Ryosuke Niwa  <[email protected]>
 
         Remove WTF.gyp/WTF.gypi

Modified: trunk/Source/WTF/wtf/CMakeLists.txt (148003 => 148004)


--- trunk/Source/WTF/wtf/CMakeLists.txt	2013-04-09 10:44:40 UTC (rev 148003)
+++ trunk/Source/WTF/wtf/CMakeLists.txt	2013-04-09 11:01:32 UTC (rev 148004)
@@ -188,6 +188,7 @@
     SHA1.cpp
     StackBounds.cpp
     StringPrintStream.cpp
+    TCSystemAlloc.cpp
     Threading.cpp
     TypeTraits.cpp
     WTFThreadData.cpp
@@ -225,12 +226,6 @@
     "${CMAKE_BINARY_DIR}"
 )
 
-if (NOT USE_SYSTEM_MALLOC)
-    list(APPEND WTF_SOURCES
-        TCSystemAlloc.cpp
-    )
-endif ()
-
 WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS()
 
 WEBKIT_WRAP_SOURCELIST(${WTF_SOURCES})
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to