Title: [161044] trunk/Source/WebCore
Revision
161044
Author
[email protected]
Date
2013-12-23 19:23:20 -0800 (Mon, 23 Dec 2013)

Log Message

Add the experimental CSS code generator files to the remaining build systems
https://bugs.webkit.org/show_bug.cgi?id=126192

Reviewed by Sam Weinig.

* CMakeLists.txt:
* GNUmakefile.list.am:
* WebCore.vcxproj/WebCore.vcxproj:
* WebCore.vcxproj/WebCore.vcxproj.filters:

Modified Paths

Diff

Modified: trunk/Source/WebCore/CMakeLists.txt (161043 => 161044)


--- trunk/Source/WebCore/CMakeLists.txt	2013-12-24 02:07:30 UTC (rev 161043)
+++ trunk/Source/WebCore/CMakeLists.txt	2013-12-24 03:23:20 UTC (rev 161044)
@@ -26,6 +26,7 @@
     "${WEBCORE_DIR}/crypto"
     "${WEBCORE_DIR}/crypto/keys"
     "${WEBCORE_DIR}/css"
+    "${WEBCORE_DIR}/cssjit"
     "${WEBCORE_DIR}/dom"
     "${WEBCORE_DIR}/dom/default"
     "${WEBCORE_DIR}/editing"
@@ -1118,6 +1119,8 @@
     css/WebKitCSSTransformValue.cpp
     css/WebKitCSSViewportRule.cpp
 
+    cssjit/SelectorCompiler.cpp
+
     dom/ActiveDOMObject.cpp
     dom/Attr.cpp
     dom/BeforeTextInsertedEvent.cpp

Modified: trunk/Source/WebCore/ChangeLog (161043 => 161044)


--- trunk/Source/WebCore/ChangeLog	2013-12-24 02:07:30 UTC (rev 161043)
+++ trunk/Source/WebCore/ChangeLog	2013-12-24 03:23:20 UTC (rev 161044)
@@ -1,5 +1,17 @@
 2013-12-23  Benjamin Poulain  <[email protected]>
 
+        Add the experimental CSS code generator files to the remaining build systems
+        https://bugs.webkit.org/show_bug.cgi?id=126192
+
+        Reviewed by Sam Weinig.
+
+        * CMakeLists.txt:
+        * GNUmakefile.list.am:
+        * WebCore.vcxproj/WebCore.vcxproj:
+        * WebCore.vcxproj/WebCore.vcxproj.filters:
+
+2013-12-23  Benjamin Poulain  <[email protected]>
+
         Add the pseudo class :focus to the Selector Code Generator
         https://bugs.webkit.org/show_bug.cgi?id=126189
 

Modified: trunk/Source/WebCore/GNUmakefile.list.am (161043 => 161044)


--- trunk/Source/WebCore/GNUmakefile.list.am	2013-12-24 02:07:30 UTC (rev 161043)
+++ trunk/Source/WebCore/GNUmakefile.list.am	2013-12-24 03:23:20 UTC (rev 161044)
@@ -2738,6 +2738,11 @@
 	Source/WebCore/css/WebKitCSSTransformValue.h \
 	Source/WebCore/css/WebKitCSSViewportRule.cpp \
 	Source/WebCore/css/WebKitCSSViewportRule.h \
+	Source/WebCore/cssjit/FunctionCall.h \
+	Source/WebCore/cssjit/RegisterAllocator.h \
+	Source/WebCore/cssjit/SelectorCompiler.cpp \
+	Source/WebCore/cssjit/SelectorCompiler.h \
+	Source/WebCore/cssjit/StackAllocator.h \
 	Source/WebCore/dom/ActiveDOMObject.cpp \
 	Source/WebCore/dom/ActiveDOMObject.h \
 	Source/WebCore/dom/Attr.cpp \

Modified: trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj (161043 => 161044)


--- trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj	2013-12-24 02:07:30 UTC (rev 161043)
+++ trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj	2013-12-24 03:23:20 UTC (rev 161044)
@@ -9539,6 +9539,7 @@
     <ClCompile Include="..\css\WebKitCSSSVGDocumentValue.cpp" />
     <ClCompile Include="..\css\WebKitCSSTransformValue.cpp" />
     <ClCompile Include="..\css\WebKitCSSViewportRule.cpp" />
+    <ClCompile Include="..\cssjit\SelectorCompiler.cpp" />
     <ClCompile Include="..\rendering\AutoTableLayout.cpp">
       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
@@ -19899,6 +19900,10 @@
     <ClInclude Include="..\css\WebKitCSSSVGDocumentValue.h" />
     <ClInclude Include="..\css\WebKitCSSTransformValue.h" />
     <ClInclude Include="..\css\WebKitCSSViewportRule.h" />
+    <ClInclude Include="..\cssjit\FunctionCall.h" />
+    <ClInclude Include="..\cssjit\RegisterAllocator.h" />
+    <ClInclude Include="..\cssjit\SelectorCompiler.h" />
+    <ClInclude Include="..\cssjit\StackAllocator.h" />
     <ClInclude Include="..\rendering\AutoTableLayout.h" />
     <ClInclude Include="..\rendering\BidiRun.h" />
     <ClInclude Include="..\rendering\break_lines.h" />
@@ -21128,4 +21133,4 @@
   <ImportGroup Label="ExtensionTargets">
     <Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
   </ImportGroup>
-</Project>
\ No newline at end of file
+</Project>

Modified: trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj.filters (161043 => 161044)


--- trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj.filters	2013-12-24 02:07:30 UTC (rev 161043)
+++ trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj.filters	2013-12-24 03:23:20 UTC (rev 161044)
@@ -2373,6 +2373,9 @@
     <ClCompile Include="..\css\WebKitCSSViewportRule.cpp">
       <Filter>css</Filter>
     </ClCompile>
+    <ClCompile Include="..\cssjit\SelectorCompiler.cpp">
+      <Filter>css</Filter>
+    </ClCompile>
     <ClCompile Include="..\rendering\AutoTableLayout.cpp">
       <Filter>rendering</Filter>
     </ClCompile>
@@ -9305,6 +9308,18 @@
     <ClInclude Include="..\css\WebKitCSSViewportRule.h">
       <Filter>css</Filter>
     </ClInclude>
+    <ClInclude Include="..\cssjit\FunctionCall.h">
+      <Filter>css</Filter>
+    </ClInclude>
+    <ClInclude Include="..\cssjit\RegisterAllocator.h">
+      <Filter>css</Filter>
+    </ClInclude>
+    <ClInclude Include="..\cssjit\SelectorCompiler.h">
+      <Filter>css</Filter>
+    </ClInclude>
+    <ClInclude Include="..\cssjit\StackAllocator.h">
+      <Filter>css</Filter>
+    </ClInclude>
     <ClInclude Include="..\rendering\AutoTableLayout.h">
       <Filter>rendering</Filter>
     </ClInclude>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to