Changeset 240339 in webkit
- Timestamp:
- Jan 23, 2019, 9:23:29 AM (8 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/port/ios_simulator.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r240331 r240339 1 2019-01-23 Jonathan Bedard <jbedard@apple.com> 2 3 webkitpy: Use correct config for --iphone-simulator and --ipad-simulator 4 https://bugs.webkit.org/show_bug.cgi?id=193722 5 <rdar://problem/47481475> 6 7 Reviewed by Lucas Forschler. 8 9 iPhone and iPad ports should both use the iOS config. 10 11 * Scripts/webkitpy/port/ios_simulator.py: 12 (IPhoneSimulatorPort.__init__): 13 (IPadSimulatorPort.__init__): 14 1 15 2019-01-23 Rob Buis <rbuis@igalia.com> 2 16 -
trunk/Tools/Scripts/webkitpy/port/ios_simulator.py
r240163 r240339 25 25 from webkitpy.common.memoized import memoized 26 26 from webkitpy.common.version import Version 27 from webkitpy.port.config import apple_additions 27 from webkitpy.port.config import apple_additions, Config 28 28 from webkitpy.port.ios import IOSPort 29 29 from webkitpy.xcode.device_type import DeviceType … … 121 121 ] 122 122 123 def __init__(self, *args, **kwargs): 124 super(IPhoneSimulatorPort, self).__init__(*args, **kwargs) 125 self._config = Config(self._executive, self._filesystem, IOSSimulatorPort.port_name) 126 123 127 124 128 class IPadSimulatorPort(IOSSimulatorPort): … … 127 131 DEVICE_TYPE = DeviceType(hardware_family='iPad') 128 132 DEFAULT_DEVICE_TYPES = [DeviceType(hardware_family='iPad', hardware_type='(5th generation)')] 133 134 def __init__(self, *args, **kwargs): 135 super(IPadSimulatorPort, self).__init__(*args, **kwargs) 136 self._config = Config(self._executive, self._filesystem, IOSSimulatorPort.port_name)
Note:
See TracChangeset
for help on using the changeset viewer.