⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 243777 in webkit


Ignore:
Timestamp:
Apr 2, 2019, 5:04:36 PM (7 years ago)
Author:
Kocsen Chung
Message:

Cherry-pick r240339. rdar://problem/49539128

webkitpy: Use correct config for --iphone-simulator and --ipad-simulator
https://bugs.webkit.org/show_bug.cgi?id=193722
<rdar://problem/47481475>

Reviewed by Lucas Forschler.

iPhone and iPad ports should both use the iOS config.

  • Scripts/webkitpy/port/ios_simulator.py: (IPhoneSimulatorPort.init): (IPadSimulatorPort.init):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@240339 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Location:
branches/safari-607-branch/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-607-branch/Tools/ChangeLog

    r243776 r243777  
     12019-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
    1342019-04-02  Kocsen Chung  <kocsen_chung@apple.com>
    235
  • branches/safari-607-branch/Tools/Scripts/webkitpy/port/ios_simulator.py

    r243776 r243777  
    2525from webkitpy.common.memoized import memoized
    2626from webkitpy.common.version import Version
    27 from webkitpy.port.config import apple_additions
     27from webkitpy.port.config import apple_additions, Config
    2828from webkitpy.port.ios import IOSPort
    2929from webkitpy.xcode.device_type import DeviceType
     
    121121    ]
    122122
     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
    123127
    124128class IPadSimulatorPort(IOSSimulatorPort):
     
    127131    DEVICE_TYPE = DeviceType(hardware_family='iPad')
    128132    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.