Changeset 238590 in webkit


Ignore:
Timestamp:
Nov 27, 2018 4:29:40 PM (5 years ago)
Author:
Jonathan Bedard
Message:

webkitpy: Add watchOS ports
https://bugs.webkit.org/show_bug.cgi?id=191974
<rdar://problem/46251051>

Reviewed by Aakash Jain.

  • Scripts/webkitpy/port/factory.py:

(PortFactory): Add WatchDevice and WatchSimulator ports.

  • Scripts/webkitpy/port/watch.py: Added.

(WatchPort): Base class for watchOS ports.

  • Scripts/webkitpy/port/watch_device.py: Added.

(WatchDevicePort): Class for running layout tests on a watchOS device.

  • Scripts/webkitpy/port/watch_simulator.py: Added.

(WatchSimulatorPort): Class for running layout tests on a watchOS simulator.

  • Scripts/webkitpy/port/watch_simulator_unittest.py: Added.

(WatchSimulatorTest):

  • Scripts/webkitpy/port/watch_testcase.py: Added.

(WatchTest):

Location:
trunk/Tools
Files:
5 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r238585 r238590  
     12018-11-27  Jonathan Bedard  <jbedard@apple.com>
     2
     3        webkitpy: Add watchOS ports
     4        https://bugs.webkit.org/show_bug.cgi?id=191974
     5        <rdar://problem/46251051>
     6
     7        Reviewed by Aakash Jain.
     8
     9        * Scripts/webkitpy/port/factory.py:
     10        (PortFactory): Add WatchDevice and WatchSimulator ports.
     11        * Scripts/webkitpy/port/watch.py: Added.
     12        (WatchPort): Base class for watchOS ports.
     13        * Scripts/webkitpy/port/watch_device.py: Added.
     14        (WatchDevicePort): Class for running layout tests on a watchOS device.
     15        * Scripts/webkitpy/port/watch_simulator.py: Added.
     16        (WatchSimulatorPort): Class for running layout tests on a watchOS simulator.
     17        * Scripts/webkitpy/port/watch_simulator_unittest.py: Added.
     18        (WatchSimulatorTest):
     19        * Scripts/webkitpy/port/watch_testcase.py: Added.
     20        (WatchTest):
     21
    1222018-11-27  Alex Christensen  <achristensen@webkit.org>
    223
  • trunk/Tools/Scripts/webkitpy/port/factory.py

    r232748 r238590  
    11# Copyright (C) 2010 Google Inc. All rights reserved.
    2 # Copyright (C) 2013 Apple Inc. All rights reserved.
     2# Copyright (C) 2013-2018 Apple Inc. All rights reserved.
    33# Copyright (C) 2013 Nokia Corporation and/or its subsidiary(-ies).
    44#
     
    9292        'ios_simulator.IOSSimulatorPort',
    9393        'ios_device.IOSDevicePort',
     94        'watch_simulator.WatchSimulatorPort',
     95        'watch_device.WatchDevicePort',
    9496        'jsc_only.JscOnlyPort',
    9597        'mac.MacPort',
Note: See TracChangeset for help on using the changeset viewer.