Title: [156263] trunk/Source/_javascript_Core
Revision
156263
Author
par...@webkit.org
Date
2013-09-23 01:02:57 -0700 (Mon, 23 Sep 2013)

Log Message

Cleanup CMake files in _javascript_Core
https://bugs.webkit.org/show_bug.cgi?id=121762

Reviewed by Gyuyoung Kim.

Sort files and unify style.

* CMakeLists.txt:
* shell/CMakeLists.txt:
* shell/PlatformBlackBerry.cmake:
* shell/PlatformEfl.cmake:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/CMakeLists.txt (156262 => 156263)


--- trunk/Source/_javascript_Core/CMakeLists.txt	2013-09-23 06:35:47 UTC (rev 156262)
+++ trunk/Source/_javascript_Core/CMakeLists.txt	2013-09-23 08:02:57 UTC (rev 156263)
@@ -40,8 +40,8 @@
     API/JSWeakObjectMapRefPrivate.cpp
     API/OpaqueJSString.cpp
 
-    assembler/MacroAssembler.cpp
     assembler/LinkBuffer.cpp
+    assembler/MacroAssembler.cpp
     assembler/MacroAssemblerX86Common.cpp
 
     bytecode/ArrayAllocationProfile.cpp
@@ -76,6 +76,10 @@
     bytecompiler/BytecodeGenerator.cpp
     bytecompiler/NodesCodegen.cpp
 
+    debugger/Debugger.cpp
+    debugger/DebuggerActivation.cpp
+    debugger/DebuggerCallFrame.cpp
+
     dfg/DFGAbstractHeap.cpp
     dfg/DFGAbstractValue.cpp
     dfg/DFGArgumentsSimplificationPhase.cpp
@@ -197,10 +201,6 @@
     heap/WeakSet.cpp
     heap/WriteBarrierSupport.cpp
 
-    debugger/Debugger.cpp
-    debugger/DebuggerActivation.cpp
-    debugger/DebuggerCallFrame.cpp
-
     interpreter/AbstractPC.cpp
     interpreter/CallFrame.cpp
     interpreter/Interpreter.cpp
@@ -241,6 +241,10 @@
     parser/SourceProvider.cpp
     parser/SourceProviderCache.cpp
 
+    profiler/LegacyProfiler.cpp
+    profiler/Profile.cpp
+    profiler/ProfileGenerator.cpp
+    profiler/ProfileNode.cpp
     profiler/ProfilerBytecode.cpp
     profiler/ProfilerBytecodeSequence.cpp
     profiler/ProfilerBytecodes.cpp
@@ -248,15 +252,11 @@
     profiler/ProfilerCompilationKind.cpp
     profiler/ProfilerCompiledBytecode.cpp
     profiler/ProfilerDatabase.cpp
-    profiler/ProfilerOrigin.cpp
-    profiler/ProfilerOriginStack.cpp
     profiler/ProfilerOSRExit.cpp
     profiler/ProfilerOSRExitSite.cpp
+    profiler/ProfilerOrigin.cpp
+    profiler/ProfilerOriginStack.cpp
     profiler/ProfilerProfiledBytecodes.cpp
-    profiler/Profile.cpp
-    profiler/ProfileGenerator.cpp
-    profiler/ProfileNode.cpp
-    profiler/LegacyProfiler.cpp
 
     runtime/ArgList.cpp
     runtime/Arguments.cpp
@@ -405,9 +405,9 @@
     tools/CodeProfiling.cpp
 
     yarr/YarrCanonicalizeUCS2.cpp
-    yarr/YarrPattern.cpp
     yarr/YarrInterpreter.cpp
     yarr/YarrJIT.cpp
+    yarr/YarrPattern.cpp
     yarr/YarrSyntaxChecker.cpp
 )
 
@@ -567,23 +567,22 @@
 set(_javascript_Core_FORWARDING_HEADERS_FILES
     API/APICast.h
     API/APIShims.h
-    API/_javascript_.h
     API/JSBase.h
     API/JSCTestRunnerUtils.h
     API/JSContextRef.h
     API/JSContextRefPrivate.h
     API/JSObjectRef.h
     API/JSObjectRefPrivate.h
+    API/JSRetainPtr.h
     API/JSScriptRefPrivate.h
     API/JSStringRef.h
-    API/JSStringRefCF.h
     API/JSStringRefBSTR.h
+    API/JSStringRefCF.h
     API/JSValueRef.h
-    API/_javascript_Core.h
-    API/JSRetainPtr.h
     API/JSWeakObjectMapRefInternal.h
     API/JSWeakObjectMapRefPrivate.h
-    API/JSRetainPtr.h
+    API/_javascript_.h
+    API/_javascript_Core.h
     API/OpaqueJSString.h
     API/WebKitAvailability.h
 )

Modified: trunk/Source/_javascript_Core/ChangeLog (156262 => 156263)


--- trunk/Source/_javascript_Core/ChangeLog	2013-09-23 06:35:47 UTC (rev 156262)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-09-23 08:02:57 UTC (rev 156263)
@@ -1,3 +1,17 @@
+2013-09-23  Patrick Gansterer  <par...@webkit.org>
+
+        Cleanup CMake files in _javascript_Core
+        https://bugs.webkit.org/show_bug.cgi?id=121762
+
+        Reviewed by Gyuyoung Kim.
+
+        Sort files and unify style.
+
+        * CMakeLists.txt:
+        * shell/CMakeLists.txt:
+        * shell/PlatformBlackBerry.cmake:
+        * shell/PlatformEfl.cmake:
+
 2013-09-22  Filip Pizlo  <fpi...@apple.com>
 
         Get rid of CodeBlock::RareData::callReturnIndexVector and most of the evil that it introduced

Modified: trunk/Source/_javascript_Core/shell/CMakeLists.txt (156262 => 156263)


--- trunk/Source/_javascript_Core/shell/CMakeLists.txt	2013-09-23 06:35:47 UTC (rev 156262)
+++ trunk/Source/_javascript_Core/shell/CMakeLists.txt	2013-09-23 08:02:57 UTC (rev 156263)
@@ -3,9 +3,9 @@
 )
 
 set(JSC_LIBRARIES
+    ${CMAKE_DL_LIBS}
+    _javascript_Core
     WTF
-    _javascript_Core
-    ${CMAKE_DL_LIBS}
 )
 
 if ("${_javascript_Core_LIBRARY_TYPE}" MATCHES "STATIC")

Modified: trunk/Source/_javascript_Core/shell/PlatformBlackBerry.cmake (156262 => 156263)


--- trunk/Source/_javascript_Core/shell/PlatformBlackBerry.cmake	2013-09-23 06:35:47 UTC (rev 156262)
+++ trunk/Source/_javascript_Core/shell/PlatformBlackBerry.cmake	2013-09-23 08:02:57 UTC (rev 156263)
@@ -4,9 +4,9 @@
     ${ICUUC_LIBRARY}
     ${INTL_LIBRARY} # Required for x86 builds
     ${M_LIBRARY}
+    ${SLOG2_LIBRARY}
     ${Screen_LIBRARY}
     ${WebKitPlatform_LIBRARY}
-    ${SLOG2_LIBRARY}
 )
 
 if (PROFILING)

Modified: trunk/Source/_javascript_Core/shell/PlatformEfl.cmake (156262 => 156263)


--- trunk/Source/_javascript_Core/shell/PlatformEfl.cmake	2013-09-23 06:35:47 UTC (rev 156262)
+++ trunk/Source/_javascript_Core/shell/PlatformEfl.cmake	2013-09-23 08:02:57 UTC (rev 156263)
@@ -1,4 +1,4 @@
 list(APPEND JSC_LIBRARIES
+    ${ECORE_LIBRARIES}
     ${GLIB_LIBRARIES}
-    ${ECORE_LIBRARIES}
 )
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to