Changeset 51747 in webkit


Ignore:
Timestamp:
Dec 6, 2009 9:20:13 PM (14 years ago)
Author:
abarth@webkit.org
Message:

2009-12-06 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Add early warning system commands to bugzilla-tool.

  • Scripts/bugzilla-tool:
  • Scripts/modules/landingsequence.py:
  • Scripts/modules/webkitport.py:
Location:
trunk/WebKitTools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r51746 r51747  
     12009-12-06  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Add early warning system commands to bugzilla-tool.
     6
     7        * Scripts/bugzilla-tool:
     8        * Scripts/modules/landingsequence.py:
     9        * Scripts/modules/webkitport.py:
     10
    1112009-12-06  Adam Barth  <abarth@webkit.org>
    212
  • trunk/WebKitTools/Scripts/bugzilla-tool

    r51590 r51747  
    3737from modules.buildsteps import BuildSteps
    3838from modules.commands.download import *
     39from modules.commands.early_warning_system import *
    3940from modules.commands.queries import *
    4041from modules.commands.queues import *
  • trunk/WebKitTools/Scripts/modules/landingsequence.py

    r51729 r51747  
    4646        self._options = options
    4747        self._tool = tool
    48         self._port = WebKitPort.port(self._options)
     48        self._port = WebKitPort.port(self._options.port)
    4949
    5050    def run(self):
  • trunk/WebKitTools/Scripts/modules/webkitport.py

    r51730 r51747  
    4646
    4747    @staticmethod
    48     def port(options):
    49         if options.port == "mac":
     48    def port(port_name):
     49        if port_name == "mac":
    5050            return MacPort
    51         if options.port == "qt":
     51        if port_name == "qt":
    5252            return QtPort
    53         if options.port == "chromium":
     53        if port_name == "chromium":
    5454            return ChromiumPort
    5555        # FIXME: We should default to WinPort on Windows.
Note: See TracChangeset for help on using the changeset viewer.