Title: [93744] trunk/Source/WebCore
Revision
93744
Author
par...@webkit.org
Date
2011-08-24 15:28:50 -0700 (Wed, 24 Aug 2011)

Log Message

[CMake] Fix build with ENABLE_BLOB or ENABLE_FILE_SYSTEM.
https://bugs.webkit.org/show_bug.cgi?id=66880

Generate and build some additional files required by these options.

No new tests, as this is a build fix for some build options.

Patch by Raphael Kubo da Costa <k...@profusion.mobi> on 2011-08-24

* CMakeLists.txt:

Modified Paths

Diff

Modified: trunk/Source/WebCore/CMakeLists.txt (93743 => 93744)


--- trunk/Source/WebCore/CMakeLists.txt	2011-08-24 22:09:57 UTC (rev 93743)
+++ trunk/Source/WebCore/CMakeLists.txt	2011-08-24 22:28:50 UTC (rev 93744)
@@ -1386,10 +1386,15 @@
     LIST(APPEND WebCore_SOURCES
         fileapi/FileReader.cpp
         fileapi/FileReaderLoader.cpp
+        fileapi/FileReaderSync.cpp
         fileapi/FileThread.cpp
         fileapi/FileStreamProxy.cpp
         platform/FileStream.cpp
     )
+
+    LIST(APPEND WebCore_IDL_FILES
+        fileapi/FileReaderSync.idl
+    )
 ENDIF ()
 
 IF (ENABLE_DATABASE)
@@ -1552,6 +1557,13 @@
     )
 ENDIF ()
 
+IF (ENABLE_BLOB OR ENABLE_FILE_SYSTEM)
+    LIST(APPEND WebCore_IDL_FILES
+        fileapi/FileException.idl
+        fileapi/OperationNotAllowedException.idl
+    )
+ENDIF ()
+
 IF (ENABLE_XPATH)
     LIST(APPEND WebCore_IDL_FILES
         xml/XPathEvaluator.idl

Modified: trunk/Source/WebCore/ChangeLog (93743 => 93744)


--- trunk/Source/WebCore/ChangeLog	2011-08-24 22:09:57 UTC (rev 93743)
+++ trunk/Source/WebCore/ChangeLog	2011-08-24 22:28:50 UTC (rev 93744)
@@ -1,3 +1,14 @@
+2011-08-24  Raphael Kubo da Costa  <k...@profusion.mobi>
+
+        [CMake] Fix build with ENABLE_BLOB or ENABLE_FILE_SYSTEM.
+        https://bugs.webkit.org/show_bug.cgi?id=66880
+
+        Generate and build some additional files required by these options.
+
+        No new tests, as this is a build fix for some build options.
+
+        * CMakeLists.txt:
+
 2011-08-24  Iain Merrick  <hu...@google.com>
 
         [chromium] Don't call glDeleteTexture(0) in TextureManager
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to