Bug 136571 - Remove FILTERS flag
Summary: Remove FILTERS flag
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Tools / Tests (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-09-05 04:34 PDT by Éva Balázsfalvi
Modified: 2014-09-08 13:51 PDT (History)
19 users (show)

See Also:


Attachments
Patch (162.65 KB, patch)
2014-09-05 04:42 PDT, Éva Balázsfalvi
no flags Details | Formatted Diff | Diff
Patch (162.34 KB, patch)
2014-09-08 03:06 PDT, Éva Balázsfalvi
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Éva Balázsfalvi 2014-09-05 04:34:30 PDT
FILTERS flag is enabled on all ports.

Discussion about removing this flag on webkit-dev without any objection:
https://lists.webkit.org/pipermail/webkit-dev/2014-May/026553.html
Comment 1 Éva Balázsfalvi 2014-09-05 04:42:04 PDT
Created attachment 237683 [details]
Patch
Comment 2 Csaba Osztrogonác 2014-09-05 05:49:51 PDT
Comment on attachment 237683 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=237683&action=review

> Source/WebCore/platform/graphics/filters/DistantLightSource.cpp:-33
>  #include "config.h"
>  
> -#if ENABLE(FILTERS)

Please remove this empty line here and 
in all filters/*.cpp

> Source/WebCore/svg/SVGComponentTransferFunctionElement.cpp:-23
>  #include "config.h"
>  
> -#if ENABLE(FILTERS)

ditto

> Source/WebCore/svg/SVGFEBlendElement.cpp:-24
>  #include "config.h"
>  
> -#if ENABLE(FILTERS)

ditto

> Source/WebCore/svg/SVGFEColorMatrixElement.cpp:-23
>  #include "config.h"
>  
> -#if ENABLE(FILTERS)

ditto

> Source/WebCore/svg/SVGFEComponentTransferElement.cpp:-23
>  #include "config.h"
>  
> -#if ENABLE(FILTERS)

ditto ... and in all SVGFE*.cpp

> Source/WebCore/svg/SVGFEDistantLightElement.cpp:23
>  #include "config.h"
>  
> -#if ENABLE(FILTERS)
>  #include "SVGFEDistantLightElement.h"
>  #include "SVGNames.h"

#include "config.h"
#include "SVGFEDistantLightElement.h"

#include "SVGNames.h"

> Source/WebCore/svg/SVGFEFuncAElement.cpp:24
>  #include "config.h"
>  
> -#if ENABLE(FILTERS)
>  #include "SVGFEFuncAElement.h"
>  #include "SVGNames.h"

ditto

> Tools/Scripts/webkitperl/FeatureList.pm:-234
> -    { option => "filters", desc => "Toggle Filters support",
> -      define => "ENABLE_FILTERS", default => (isAppleWebKit() || isIOSWebKit() || isGtk() || isEfl()), value => \$filtersSupport },
> -

Please remove the $filtersSupport variable too. (and the leftover $cssFiltersSupport variable too)

> LayoutTests/platform/ios-sim/Skipped:743
> -# FIXME: <rdar://problem/8987731> iOS: Update/unskip SVG tests after turning on ENABLE_FILTERS
> +# FIXME: <rdar://problem/8987731> iOS: Update/unskip SVG tests

I don't think if we should change this comment, but iOS maintainers should unskip these tests if they are passing.
Comment 3 Éva Balázsfalvi 2014-09-08 03:06:43 PDT
Created attachment 237775 [details]
Patch
Comment 4 WebKit Commit Bot 2014-09-08 13:51:49 PDT
Comment on attachment 237775 [details]
Patch

Clearing flags on attachment: 237775

Committed r173397: <http://trac.webkit.org/changeset/173397>
Comment 5 WebKit Commit Bot 2014-09-08 13:51:56 PDT
All reviewed patches have been landed.  Closing bug.