Modified: trunk/Tools/Scripts/webkitpy/common/config/ports.py (164712 => 164713)
--- trunk/Tools/Scripts/webkitpy/common/config/ports.py 2014-02-26 11:24:46 UTC (rev 164712)
+++ trunk/Tools/Scripts/webkitpy/common/config/ports.py 2014-02-26 11:32:43 UTC (rev 164713)
@@ -150,8 +150,6 @@
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
@@ -169,8 +167,6 @@
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 (164712 => 164713)
--- trunk/Tools/Scripts/webkitpy/common/config/ports_unittest.py 2014-02-26 11:24:46 UTC (rev 164712)
+++ trunk/Tools/Scripts/webkitpy/common/config/ports_unittest.py 2014-02-26 11:32:43 UTC (rev 164713)
@@ -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", "--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()])
+ 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()])
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", "--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()])
+ 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()])
def test_efl_port(self):
self.assertEqual(EflPort().flag(), "--port=efl")