Changeset 226918 in webkit


Ignore:
Timestamp:
Jan 12, 2018 3:29:04 PM (6 years ago)
Author:
Jonathan Bedard
Message:

webkitpy: Refactor simulator code (Part 4)
https://bugs.webkit.org/show_bug.cgi?id=180555
<rdar://problem/36131381>

Reviewed by Aakash Jain.

Move new_simulated_device.py to simulated_device.py.

  • Scripts/webkitpy/port/ios_simulator.py: Update import statement.
  • Scripts/webkitpy/xcode/new_simulated_device.py: Removed.
  • Scripts/webkitpy/xcode/new_simulated_device_unittest.py: Removed.
  • Scripts/webkitpy/xcode/simulated_device.py: Copied from Tools/Scripts/webkitpy/xcode/new_simulated_device.py.
  • Scripts/webkitpy/xcode/simulated_device_unittest.py: Copied from Tools/Scripts/webkitpy/xcode/new_simulated_device_unittest.py.
Location:
trunk/Tools
Files:
2 edited
2 moved

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r226897 r226918  
     12018-01-12  Jonathan Bedard  <jbedard@apple.com>
     2
     3        webkitpy: Refactor simulator code (Part 4)
     4        https://bugs.webkit.org/show_bug.cgi?id=180555
     5        <rdar://problem/36131381>
     6
     7        Reviewed by Aakash Jain.
     8
     9        Move new_simulated_device.py to simulated_device.py.
     10
     11        * Scripts/webkitpy/port/ios_simulator.py: Update import statement.
     12        * Scripts/webkitpy/xcode/new_simulated_device.py: Removed.
     13        * Scripts/webkitpy/xcode/new_simulated_device_unittest.py: Removed.
     14        * Scripts/webkitpy/xcode/simulated_device.py: Copied from Tools/Scripts/webkitpy/xcode/new_simulated_device.py.
     15        * Scripts/webkitpy/xcode/simulated_device_unittest.py: Copied from Tools/Scripts/webkitpy/xcode/new_simulated_device_unittest.py.
     16
    1172018-01-12  Alex Christensen  <achristensen@webkit.org>
    218
  • trunk/Tools/Scripts/webkitpy/port/ios_simulator.py

    r226726 r226918  
    2727from webkitpy.port.ios import IOSPort
    2828from webkitpy.xcode.device_type import DeviceType
    29 from webkitpy.xcode.new_simulated_device import DeviceRequest, SimulatedDeviceManager
     29from webkitpy.xcode.simulated_device import DeviceRequest, SimulatedDeviceManager
    3030
    3131
  • trunk/Tools/Scripts/webkitpy/xcode/simulated_device_unittest.py

    r226916 r226918  
    480480from webkitpy.common.version import Version
    481481from webkitpy.xcode.device_type import DeviceType
    482 from webkitpy.xcode.new_simulated_device import DeviceRequest, SimulatedDeviceManager, SimulatedDevice
     482from webkitpy.xcode.simulated_device import DeviceRequest, SimulatedDeviceManager, SimulatedDevice
    483483
    484484
Note: See TracChangeset for help on using the changeset viewer.