Changeset 140317 in webkit


Ignore:
Timestamp:
Jan 21, 2013 3:10:27 AM (11 years ago)
Author:
zandobersek@gmail.com
Message:

[GTK] Stop building WebKit2 on GTK EWSs
https://bugs.webkit.org/show_bug.cgi?id=107435

Reviewed by Philippe Normand.

The WebKit2 build of the GTK is at the moment not efficiently maintainable,
so stop building it on GTK EWSs.

  • Scripts/webkitpy/common/config/ports.py:

(GtkPort.build_webkit_command):

  • Scripts/webkitpy/common/config/ports_unittest.py:

(DeprecatedPortTest.test_gtk_port):

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r140310 r140317  
     12013-01-21  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK] Stop building WebKit2 on GTK EWSs
     4        https://bugs.webkit.org/show_bug.cgi?id=107435
     5
     6        Reviewed by Philippe Normand.
     7
     8        The WebKit2 build of the GTK is at the moment not efficiently maintainable,
     9        so stop building it on GTK EWSs.
     10
     11        * Scripts/webkitpy/common/config/ports.py:
     12        (GtkPort.build_webkit_command):
     13        * Scripts/webkitpy/common/config/ports_unittest.py:
     14        (DeprecatedPortTest.test_gtk_port):
     15
    1162013-01-21  Tommy Widenflycht  <tommyw@google.com>
    217
  • trunk/Tools/Scripts/webkitpy/common/config/ports.py

    r139818 r140317  
    143143        command.append("--gtk")
    144144        command.append("--update-gtk")
     145        command.append("--no-webkit2")
    145146        command.append(super(GtkPort, self).makeArgs())
    146147        return command
  • trunk/Tools/Scripts/webkitpy/common/config/ports_unittest.py

    r136548 r140317  
    4343        self.assertEqual(GtkPort().flag(), "--port=gtk")
    4444        self.assertEqual(GtkPort().run_webkit_tests_command(), DeprecatedPort().script_shell_command("run-webkit-tests") + ["--gtk"])
    45         self.assertEqual(GtkPort().build_webkit_command(), DeprecatedPort().script_shell_command("build-webkit") + ["--gtk", "--update-gtk", DeprecatedPort().makeArgs()])
    46         self.assertEqual(GtkPort().build_webkit_command(build_style="debug"), DeprecatedPort().script_shell_command("build-webkit") + ["--debug", "--gtk", "--update-gtk", DeprecatedPort().makeArgs()])
     45        self.assertEqual(GtkPort().build_webkit_command(), DeprecatedPort().script_shell_command("build-webkit") + ["--gtk", "--update-gtk", "--no-webkit2", DeprecatedPort().makeArgs()])
     46        self.assertEqual(GtkPort().build_webkit_command(build_style="debug"), DeprecatedPort().script_shell_command("build-webkit") + ["--debug", "--gtk", "--update-gtk", "--no-webkit2", DeprecatedPort().makeArgs()])
    4747
    4848    def test_efl_port(self):
Note: See TracChangeset for help on using the changeset viewer.