Changeset 243777 in webkit
- Timestamp:
- Apr 2, 2019, 5:04:36 PM (7 years ago)
- Location:
- branches/safari-607-branch/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/port/ios_simulator.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-607-branch/Tools/ChangeLog
r243776 r243777 1 2019-04-02 Kocsen Chung <kocsen_chung@apple.com> 2 3 Cherry-pick r240339. rdar://problem/49539128 4 5 webkitpy: Use correct config for --iphone-simulator and --ipad-simulator 6 https://bugs.webkit.org/show_bug.cgi?id=193722 7 <rdar://problem/47481475> 8 9 Reviewed by Lucas Forschler. 10 11 iPhone and iPad ports should both use the iOS config. 12 13 * Scripts/webkitpy/port/ios_simulator.py: 14 (IPhoneSimulatorPort.__init__): 15 (IPadSimulatorPort.__init__): 16 17 18 git-svn-id: https://svn.webkit.org/repository/webkit/trunk@240339 268f45cc-cd09-0410-ab3c-d52691b4dbfc 19 20 2019-01-23 Jonathan Bedard <jbedard@apple.com> 21 22 webkitpy: Use correct config for --iphone-simulator and --ipad-simulator 23 https://bugs.webkit.org/show_bug.cgi?id=193722 24 <rdar://problem/47481475> 25 26 Reviewed by Lucas Forschler. 27 28 iPhone and iPad ports should both use the iOS config. 29 30 * Scripts/webkitpy/port/ios_simulator.py: 31 (IPhoneSimulatorPort.__init__): 32 (IPadSimulatorPort.__init__): 33 1 34 2019-04-02 Kocsen Chung <kocsen_chung@apple.com> 2 35 -
branches/safari-607-branch/Tools/Scripts/webkitpy/port/ios_simulator.py
r243776 r243777 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.