From: ap@apple.com Date: Wed, 14 Oct 2015 05:11:55 +0000 (+0000) Subject: More debug queue build fixing. X-Git-Url: http://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=0b4eeb78e8a0ad09939058612388414511e11ae7 More debug queue build fixing. Add build_style argument to derived classes as well. * Scripts/webkitpy/common/config/ports.py: (MacPort): (MacPort.run_webkit_tests_command): (WinPort.run_bindings_tests_command): (WinPort): (WinPort.run_webkit_tests_command): (GtkWK2Port.build_webkit_command): (GtkWK2Port): (GtkWK2Port.run_webkit_tests_command): git-svn-id: https://svn.webkit.org/repository/webkit/trunk@191033 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Tools/ChangeLog b/Tools/ChangeLog index af75000..5492a62 100644 --- a/Tools/ChangeLog +++ b/Tools/ChangeLog @@ -1,3 +1,19 @@ +2015-10-13 Alexey Proskuryakov + + More debug queue build fixing. + + Add build_style argument to derived classes as well. + + * Scripts/webkitpy/common/config/ports.py: + (MacPort): + (MacPort.run_webkit_tests_command): + (WinPort.run_bindings_tests_command): + (WinPort): + (WinPort.run_webkit_tests_command): + (GtkWK2Port.build_webkit_command): + (GtkWK2Port): + (GtkWK2Port.run_webkit_tests_command): + 2015-10-13 Myles C. Maxfield [iOS] Build fix diff --git a/Tools/Scripts/webkitpy/common/config/ports.py b/Tools/Scripts/webkitpy/common/config/ports.py index c621089..56e2be9 100644 --- a/Tools/Scripts/webkitpy/common/config/ports.py +++ b/Tools/Scripts/webkitpy/common/config/ports.py @@ -134,8 +134,8 @@ class IOSPort(DeprecatedPort): class MacPort(DeprecatedPort): port_flag_name = "mac" - def run_webkit_tests_command(self): - command = super(MacPort, self).run_webkit_tests_command() + def run_webkit_tests_command(self, build_style=None): + command = super(MacPort, self).run_webkit_tests_command(build_style) command.append("--dump-render-tree") return command @@ -149,8 +149,8 @@ class WinPort(DeprecatedPort): def run_bindings_tests_command(self): return None - def run_webkit_tests_command(self): - command = super(WinPort, self).run_webkit_tests_command() + def run_webkit_tests_command(self, build_style=None): + command = super(WinPort, self).run_webkit_tests_command(build_style) command.append("--dump-render-tree") return command @@ -165,8 +165,8 @@ class GtkWK2Port(DeprecatedPort): command.append(super(GtkWK2Port, self).makeArgs()) return command - def run_webkit_tests_command(self): - command = super(GtkWK2Port, self).run_webkit_tests_command() + def run_webkit_tests_command(self, build_style=None): + command = super(GtkWK2Port, self).run_webkit_tests_command(build_style) command.append("--gtk") return command