Title: [89620] trunk/Tools
- Revision
- 89620
- Author
- [email protected]
- Date
- 2011-06-23 14:55:30 -0700 (Thu, 23 Jun 2011)
Log Message
2011-06-23 Alok Priyadarshi <[email protected]>
Reviewed by James Robinson.
[chromium] Add support for running layout tests with accelerated rendering
https://bugs.webkit.org/show_bug.cgi?id=63274
* Scripts/webkitpy/layout_tests/port/chromium.py:
* Scripts/webkitpy/layout_tests/run_webkit_tests.py:
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (89619 => 89620)
--- trunk/Tools/ChangeLog 2011-06-23 21:47:00 UTC (rev 89619)
+++ trunk/Tools/ChangeLog 2011-06-23 21:55:30 UTC (rev 89620)
@@ -1,3 +1,13 @@
+2011-06-23 Alok Priyadarshi <[email protected]>
+
+ Reviewed by James Robinson.
+
+ [chromium] Add support for running layout tests with accelerated rendering
+ https://bugs.webkit.org/show_bug.cgi?id=63274
+
+ * Scripts/webkitpy/layout_tests/port/chromium.py:
+ * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
+
2011-06-23 Adam Roben <[email protected]>
Avoid fetching JSON data when possible on TestFailures page to determine if
Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium.py (89619 => 89620)
--- trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium.py 2011-06-23 21:47:00 UTC (rev 89619)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium.py 2011-06-23 21:55:30 UTC (rev 89620)
@@ -389,6 +389,8 @@
cmd.append('--enable-accelerated-compositing')
if self._port.get_option('accelerated_2d_canvas'):
cmd.append('--enable-accelerated-2d-canvas')
+ if self._port.get_option('accelerated_drawing'):
+ cmd.append('--enable-accelerated-drawing')
if self._port.get_option('enable_hardware_gpu'):
cmd.append('--enable-hardware-gpu')
Modified: trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py (89619 => 89620)
--- trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py 2011-06-23 21:47:00 UTC (rev 89619)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py 2011-06-23 21:55:30 UTC (rev 89620)
@@ -252,6 +252,10 @@
action=""
dest="accelerated_2d_canvas",
help="Don't use hardware-accelerated 2D Canvas calls"),
+ optparse.make_option("--accelerated-drawing",
+ action=""
+ default=False,
+ help="Use hardware accelerated drawing of composited pages"),
optparse.make_option("--enable-hardware-gpu",
action=""
default=False,
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes