Title: [224413] trunk/Tools
Revision
224413
Author
[email protected]
Date
2017-11-03 12:09:39 -0700 (Fri, 03 Nov 2017)

Log Message

[WinCairo] Add --wincairo option to run-webkit-tests
https://bugs.webkit.org/show_bug.cgi?id=179217

Patch by Basuke Suzuki <[email protected]> on 2017-11-03
Reviewed by Alex Christensen.

* Scripts/webkitpy/port/factory.py:
(platform_options):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (224412 => 224413)


--- trunk/Tools/ChangeLog	2017-11-03 18:57:42 UTC (rev 224412)
+++ trunk/Tools/ChangeLog	2017-11-03 19:09:39 UTC (rev 224413)
@@ -1,3 +1,13 @@
+2017-11-03  Basuke Suzuki  <[email protected]>
+
+        [WinCairo] Add --wincairo option to run-webkit-tests
+        https://bugs.webkit.org/show_bug.cgi?id=179217
+
+        Reviewed by Alex Christensen.
+
+        * Scripts/webkitpy/port/factory.py:
+        (platform_options):
+
 2017-11-03  Michael Catanzaro  <[email protected]>
 
         [WPE][GTK] Avoid duplicating code for dist and distcheck targets

Modified: trunk/Tools/Scripts/webkitpy/port/factory.py (224412 => 224413)


--- trunk/Tools/Scripts/webkitpy/port/factory.py	2017-11-03 18:57:42 UTC (rev 224412)
+++ trunk/Tools/Scripts/webkitpy/port/factory.py	2017-11-03 19:09:39 UTC (rev 224413)
@@ -56,6 +56,9 @@
         optparse.make_option('--wpe', action='', dest='platform',
             const=('wpe*' if use_globs else 'wpe'),
             help=('Alias for --platform=wpe')),
+        optparse.make_option('--wincairo', action='', dest='platform',
+            const=('wincairo'),
+            help=('Alias for --platform=wincairo')),
         ] + (config.apple_additions().platform_options() if config.apple_additions() else [])
 
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to