Title: [150335] trunk
Revision
150335
Author
[email protected]
Date
2013-05-18 02:14:01 -0700 (Sat, 18 May 2013)

Log Message

Unreviewed EFL build fix.

.:

Temporarily disabled INDEXED_DATABASE at compile-time as it breaks
WK2 build after r150305.

* Source/cmake/OptionsEfl.cmake:

Tools:

Temporarily disabled INDEXED_DATABASE at compile-time as it breaks
WK2 build after r150305.

* Scripts/webkitperl/FeatureList.pm:

LayoutTests:

Skip indexeddb test cases as the feature is temporarily disabled due to
r150305.

* platform/efl/TestExpectations:

Modified Paths

Diff

Modified: trunk/ChangeLog (150334 => 150335)


--- trunk/ChangeLog	2013-05-18 09:12:44 UTC (rev 150334)
+++ trunk/ChangeLog	2013-05-18 09:14:01 UTC (rev 150335)
@@ -1,3 +1,12 @@
+2013-05-18  Christophe Dumez  <[email protected]>
+
+        Unreviewed EFL build fix.
+
+        Temporarily disabled INDEXED_DATABASE at compile-time as it breaks
+        WK2 build after r150305.
+
+        * Source/cmake/OptionsEfl.cmake:
+
 2013-05-18  Alberto Garcia  <[email protected]>
 
         [GTK] Parallel build fails if gtk-doc is enabled

Modified: trunk/LayoutTests/ChangeLog (150334 => 150335)


--- trunk/LayoutTests/ChangeLog	2013-05-18 09:12:44 UTC (rev 150334)
+++ trunk/LayoutTests/ChangeLog	2013-05-18 09:14:01 UTC (rev 150335)
@@ -1,3 +1,12 @@
+2013-05-18  Christophe Dumez  <[email protected]>
+
+        Unreviewed EFL build fix.
+
+        Skip indexeddb test cases as the feature is temporarily disabled due to
+        r150305.
+
+        * platform/efl/TestExpectations:
+
 2013-05-18  Ryosuke Niwa  <[email protected]>
 
         Mac rebaseline after r148944.

Modified: trunk/LayoutTests/platform/efl/TestExpectations (150334 => 150335)


--- trunk/LayoutTests/platform/efl/TestExpectations	2013-05-18 09:12:44 UTC (rev 150334)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2013-05-18 09:14:01 UTC (rev 150335)
@@ -1765,6 +1765,10 @@
 
 webkit.org/b/110446 svg/as-background-image/svg-transformed-background.html [ ImageOnlyFailure ]
 
+# INDEXED_DATABASE is temporarily disabled at build time until WK2 build is fixed.
+Bug(EFL) storage/indexeddb
+Bug(EFL) http/tests/inspector/indexeddb
+
 # New test
 webkit.org/b/110654 css3/flexbox/button.html [ Failure ]
 

Modified: trunk/Source/cmake/OptionsEfl.cmake (150334 => 150335)


--- trunk/Source/cmake/OptionsEfl.cmake	2013-05-18 09:12:44 UTC (rev 150334)
+++ trunk/Source/cmake/OptionsEfl.cmake	2013-05-18 09:14:01 UTC (rev 150335)
@@ -73,7 +73,7 @@
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_FILTERS ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_FULLSCREEN_API ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_GAMEPAD ON)
-WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_INDEXED_DATABASE ON)
+WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_INDEXED_DATABASE OFF)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_INPUT_TYPE_COLOR ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_LINK_PREFETCH ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_LLINT ON)

Modified: trunk/Tools/ChangeLog (150334 => 150335)


--- trunk/Tools/ChangeLog	2013-05-18 09:12:44 UTC (rev 150334)
+++ trunk/Tools/ChangeLog	2013-05-18 09:14:01 UTC (rev 150335)
@@ -1,3 +1,12 @@
+2013-05-18  Christophe Dumez  <[email protected]>
+
+        Unreviewed EFL build fix.
+
+        Temporarily disabled INDEXED_DATABASE at compile-time as it breaks
+        WK2 build after r150305.
+
+        * Scripts/webkitperl/FeatureList.pm:
+
 2013-05-18  Alberto Garcia  <[email protected]>
 
         [GTK] Parallel build fails if gtk-doc is enabled

Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (150334 => 150335)


--- trunk/Tools/Scripts/webkitperl/FeatureList.pm	2013-05-18 09:12:44 UTC (rev 150334)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm	2013-05-18 09:14:01 UTC (rev 150335)
@@ -287,7 +287,7 @@
       define => "ENABLE_IFRAME_SEAMLESS", default => 1, value => \$iframeSeamlessSupport },
 
     { option => "indexed-database", desc => "Toggle Indexed Database support",
-      define => "ENABLE_INDEXED_DATABASE", default => (isGtk() || isEfl()), value => \$indexedDatabaseSupport },
+      define => "ENABLE_INDEXED_DATABASE", default => isGtk(), value => \$indexedDatabaseSupport },
 
     { option => "input-speech", desc => "Toggle Input Speech support",
       define => "ENABLE_INPUT_SPEECH", default => 0, value => \$inputSpeechSupport },
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to