Changeset 150612 in webkit


Ignore:
Timestamp:
May 23, 2013 1:59:48 PM (11 years ago)
Author:
Brent Fulgham
Message:

[Windows] Update new-run-webkit-tests for Windows port.
https://bugs.webkit.org/show_bug.cgi?id=38756

Patch by Brent Fulgham <bfulgham@webkit.org> on 2013-05-23
Reviewed by Ryosuke Niwa.

  • Scripts/new-run-webkit-httpd:

(run): Switch from 'chromium' to 'win'

  • Scripts/webkitpy/port/win.py:

(WinPort): Add support methods for lighttpd server.
(WinPort._uses_apache):
(WinPort._path_to_lighttpd):
(WinPort._path_to_lighttpd_modules):
(WinPort._path_to_lighttpd_php):

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r150592 r150612  
     12013-05-23  Brent Fulgham  <bfulgham@webkit.org>
     2
     3        [Windows] Update new-run-webkit-tests for Windows port.
     4        https://bugs.webkit.org/show_bug.cgi?id=38756
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        * Scripts/new-run-webkit-httpd:
     9        (run): Switch from 'chromium' to 'win'
     10        * Scripts/webkitpy/port/win.py:
     11        (WinPort): Add support methods for lighttpd server.
     12        (WinPort._uses_apache):
     13        (WinPort._path_to_lighttpd):
     14        (WinPort._path_to_lighttpd_modules):
     15        (WinPort._path_to_lighttpd_php):
     16
    1172013-05-23  Patrick Gansterer  <paroga@webkit.org>
    218
  • trunk/Tools/Scripts/new-run-webkit-httpd

    r105835 r150612  
    6262        host = Host()
    6363        # FIXME: Make this work with other ports as well.
    64         port_obj = host.port_factory.get(port_name='chromium', options=options)
     64        port_obj = host.port_factory.get(port_name='win', options=options)
    6565        httpd = http_server.Lighttpd(port_obj,
    6666                                     tempfile.gettempdir(),
  • trunk/Tools/Scripts/webkitpy/port/win.py

    r148502 r150612  
    4343    port_name = "win"
    4444
    45     VERSION_FALLBACK_ORDER = ["win-xp", "win-vista", "win-7sp0", "win-win7"]
     45    VERSION_FALLBACK_ORDER = ["win-xp", "win-vista", "win-7sp0", "win"]
    4646
    4747    ARCHITECTURES = ['x86']
     
    9999            return None
    100100        return match_object.group('features_string').split(' ')
     101
     102    # Note: These are based on the stock Cygwin locations for these files.
     103    def _uses_apache(self):
     104        return False
     105
     106    def _path_to_lighttpd(self):
     107        return "/usr/sbin/lighttpd"
     108
     109    def _path_to_lighttpd_modules(self):
     110        return "/usr/lib/lighttpd"
     111
     112    def _path_to_lighttpd_php(self):
     113        return "/usr/bin/php-cgi"
Note: See TracChangeset for help on using the changeset viewer.