Title: [241147] trunk/Tools
Revision
241147
Author
[email protected]
Date
2019-02-07 14:57:56 -0800 (Thu, 07 Feb 2019)

Log Message

webkitpy: Respect --dedicated-simulators flag
https://bugs.webkit.org/show_bug.cgi?id=194416
<rdar://problem/47894722>

Reviewed by Lucas Forschler.

* Scripts/webkitpy/port/device_port.py:
(DevicePort.supported_device_types): If --dedicated-simulators is passed, all
available devices can be safely ignored.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (241146 => 241147)


--- trunk/Tools/ChangeLog	2019-02-07 22:56:58 UTC (rev 241146)
+++ trunk/Tools/ChangeLog	2019-02-07 22:57:56 UTC (rev 241147)
@@ -1,3 +1,15 @@
+2019-02-07  Jonathan Bedard  <[email protected]>
+
+        webkitpy: Respect --dedicated-simulators flag
+        https://bugs.webkit.org/show_bug.cgi?id=194416
+        <rdar://problem/47894722>
+
+        Reviewed by Lucas Forschler.
+
+        * Scripts/webkitpy/port/device_port.py:
+        (DevicePort.supported_device_types): If --dedicated-simulators is passed, all
+        available devices can be safely ignored.
+
 2019-02-07  Keith Rollin  <[email protected]>
 
         Remove extra copy of 100x100-red.tga

Modified: trunk/Tools/Scripts/webkitpy/port/device_port.py (241146 => 241147)


--- trunk/Tools/Scripts/webkitpy/port/device_port.py	2019-02-07 22:56:58 UTC (rev 241146)
+++ trunk/Tools/Scripts/webkitpy/port/device_port.py	2019-02-07 22:57:56 UTC (rev 241147)
@@ -143,7 +143,7 @@
                 continue
             if device.device_type in self.DEVICE_TYPE:
                 types.add(device.device_type)
-        if types:
+        if types and not self.get_option('dedicated_simulators', False):
 
             def sorted_by_default_device_type(type):
                 try:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to