Title: [132385] trunk/Source/WebKit/chromium
Revision
132385
Author
[email protected]
Date
2012-10-24 12:31:09 -0700 (Wed, 24 Oct 2012)

Log Message

Create skia_webkit.gyp to improve rebaselining.
https://bugs.webkit.org/show_bug.cgi?id=99759

Patch by Ben Wagner <[email protected]> on 2012-10-24
Reviewed by Dirk Pranke.

This allows for code suppressions to be lifted atomically with new baselines.

* skia_webkit.gyp: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (132384 => 132385)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-10-24 19:30:45 UTC (rev 132384)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-10-24 19:31:09 UTC (rev 132385)
@@ -1,3 +1,14 @@
+2012-10-24  Ben Wagner  <[email protected]>
+
+        Create skia_webkit.gyp to improve rebaselining.
+        https://bugs.webkit.org/show_bug.cgi?id=99759
+
+        Reviewed by Dirk Pranke.
+
+        This allows for code suppressions to be lifted atomically with new baselines.
+
+        * skia_webkit.gyp: Added.
+
 2012-09-27  Yury Semikhatsky  <[email protected]>
 
         Web Inspector: provide memory instrumentation for ListHashSet

Added: trunk/Source/WebKit/chromium/skia_webkit.gyp (0 => 132385)


--- trunk/Source/WebKit/chromium/skia_webkit.gyp	                        (rev 0)
+++ trunk/Source/WebKit/chromium/skia_webkit.gyp	2012-10-24 19:31:09 UTC (rev 132385)
@@ -0,0 +1,58 @@
+#
+# Copyright (C) 2012 Google Inc. All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are
+# met:
+#
+#         * Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#         * Redistributions in binary form must reproduce the above
+# copyright notice, this list of conditions and the following disclaimer
+# in the documentation and/or other materials provided with the
+# distribution.
+#         * Neither the name of Google Inc. nor the names of its
+# contributors may be used to endorse or promote products derived from
+# this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+#
+
+# This skia_webkit target is a dependency of Chromium's skia/skia.gyp.
+# It only contains code suppressions which keep Webkit tests from failing.
+{
+  'targets': [
+    {
+      'target_name': 'skia_webkit',
+      'type': 'none',
+      'direct_dependent_settings': {
+        'defines': [
+          # temporary for landing Skia rev 3077 with minimal layout test breakage
+          'SK_SIMPLE_TWOCOLOR_VERTICAL_GRADIENTS',
+
+          # Temporarily disable the Skia fix in
+          # http://code.google.com/p/skia/source/detail?r=3037 ; enabling that
+          # fix will require substantial rebaselining.
+          'SK_DRAW_POS_TEXT_IGNORE_SUBPIXEL_LEFT_ALIGN_FIX',
+
+          # Temporarily ignore fix to antialias coverage, until we can rebaseline
+          'SK_USE_LEGACY_AA_COVERAGE',
+
+          # Temporarily disable opacity fix in extractSubset
+          'SK_DISABLE_EXTRACTSUBSET_OPAQUE_FIX',
+        ],
+      },
+    },
+  ],
+}
+
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to