Modified: trunk/Tools/Scripts/webkitpy/common/config/ports.py (163620 => 163621)
--- trunk/Tools/Scripts/webkitpy/common/config/ports.py 2014-02-07 10:52:08 UTC (rev 163620)
+++ trunk/Tools/Scripts/webkitpy/common/config/ports.py 2014-02-07 11:44:31 UTC (rev 163621)
@@ -150,6 +150,8 @@
command.append("--gtk")
command.append("--update-gtk")
command.append("--no-webkit2")
+ # FIXME: Disable gtk-doc temporarily due to http://webkit.org/b/128369.
+ command.append("--disable-gtk-doc")
command.append(super(GtkPort, self).makeArgs())
return command
@@ -167,6 +169,8 @@
command.append("--gtk")
command.append("--update-gtk")
command.append("--no-webkit1")
+ # FIXME: Disable gtk-doc temporarily due to http://webkit.org/b/128369.
+ command.append("--disable-gtk-doc")
command.append(super(GtkWK2Port, self).makeArgs())
return command
Modified: trunk/Tools/Scripts/webkitpy/common/config/ports_unittest.py (163620 => 163621)
--- trunk/Tools/Scripts/webkitpy/common/config/ports_unittest.py 2014-02-07 10:52:08 UTC (rev 163620)
+++ trunk/Tools/Scripts/webkitpy/common/config/ports_unittest.py 2014-02-07 11:44:31 UTC (rev 163621)
@@ -42,14 +42,14 @@
def test_gtk_port(self):
self.assertEqual(GtkPort().flag(), "--port=gtk")
self.assertEqual(GtkPort().run_webkit_tests_command(), DeprecatedPort().script_shell_command("run-webkit-tests") + ["--gtk"])
- self.assertEqual(GtkPort().build_webkit_command(), DeprecatedPort().script_shell_command("build-webkit") + ["--gtk", "--update-gtk", "--no-webkit2", DeprecatedPort().makeArgs()])
- self.assertEqual(GtkPort().build_webkit_command(build_style="debug"), DeprecatedPort().script_shell_command("build-webkit") + ["--debug", "--gtk", "--update-gtk", "--no-webkit2", DeprecatedPort().makeArgs()])
+ self.assertEqual(GtkPort().build_webkit_command(), DeprecatedPort().script_shell_command("build-webkit") + ["--gtk", "--update-gtk", "--no-webkit2", "--disable-gtk-doc", DeprecatedPort().makeArgs()])
+ self.assertEqual(GtkPort().build_webkit_command(build_style="debug"), DeprecatedPort().script_shell_command("build-webkit") + ["--debug", "--gtk", "--update-gtk", "--no-webkit2", "--disable-gtk-doc", DeprecatedPort().makeArgs()])
def test_gtk_wk2_port(self):
self.assertEqual(GtkWK2Port().flag(), "--port=gtk-wk2")
self.assertEqual(GtkWK2Port().run_webkit_tests_command(), DeprecatedPort().script_shell_command("run-webkit-tests") + ["--gtk", "-2"])
- self.assertEqual(GtkWK2Port().build_webkit_command(), DeprecatedPort().script_shell_command("build-webkit") + ["--gtk", "--update-gtk", "--no-webkit1", DeprecatedPort().makeArgs()])
- self.assertEqual(GtkWK2Port().build_webkit_command(build_style="debug"), DeprecatedPort().script_shell_command("build-webkit") + ["--debug", "--gtk", "--update-gtk", "--no-webkit1", DeprecatedPort().makeArgs()])
+ self.assertEqual(GtkWK2Port().build_webkit_command(), DeprecatedPort().script_shell_command("build-webkit") + ["--gtk", "--update-gtk", "--no-webkit1", "--disable-gtk-doc", DeprecatedPort().makeArgs()])
+ self.assertEqual(GtkWK2Port().build_webkit_command(build_style="debug"), DeprecatedPort().script_shell_command("build-webkit") + ["--debug", "--gtk", "--update-gtk", "--no-webkit1", "--disable-gtk-doc", DeprecatedPort().makeArgs()])
def test_efl_port(self):
self.assertEqual(EflPort().flag(), "--port=efl")