Changeset 116676 in webkit


Ignore:
Timestamp:
May 10, 2012 12:28:18 PM (12 years ago)
Author:
rakuco@webkit.org
Message:

[EFL][webkitpy] Do not redefine check_build() in EflPort.
https://bugs.webkit.org/show_bug.cgi?id=86124

Reviewed by Dirk Pranke.

Remove an old FIXME and do not redefine check_build in EflPort;
once build-dumprendertree recognizes --efl, we can use the
check_build implementation in WebKitPort.

  • Scripts/build-dumprendertree:
  • Scripts/webkitpy/layout_tests/port/efl.py:

(EflPort.check_build):

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r116674 r116676  
     12012-05-10  Raphael Kubo da Costa  <rakuco@webkit.org>
     2
     3        [EFL][webkitpy] Do not redefine check_build() in EflPort.
     4        https://bugs.webkit.org/show_bug.cgi?id=86124
     5
     6        Reviewed by Dirk Pranke.
     7
     8        Remove an old FIXME and do not redefine check_build in EflPort;
     9        once build-dumprendertree recognizes --efl, we can use the
     10        check_build implementation in WebKitPort.
     11
     12        * Scripts/build-dumprendertree:
     13        * Scripts/webkitpy/layout_tests/port/efl.py:
     14        (EflPort.check_build):
     15
    1162012-05-10  Tommy Widenflycht  <tommyw@google.com>
    217
  • trunk/Tools/Scripts/build-dumprendertree

    r74301 r116676  
    4747  --wx          Build the wxWindows port
    4848  --chromium    Build the Chromium port
     49  --efl         Build the EFL port
    4950EOF
    5051
     
    7172} elsif (isAppleWinWebKit()) {
    7273    $result = buildVisualStudioProject("DumpRenderTree.sln", $clean);
    73 } elsif (isQt() || isGtk() || isWx() || isChromium()) {
    74     # Qt, Gtk wxWindows, and Chromium build everything in one shot. No need to build anything here.
     74} elsif (isQt() || isGtk() || isWx() || isChromium() || isEfl()) {
     75    # Qt, Gtk wxWindows, Chromium and EFL build everything in one shot. No need to build anything here.
    7576    $result = 0;
    7677} else {
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/efl.py

    r116662 r116676  
    6363        return self._build_path('bin', 'ImageDiff')
    6464
    65     # FIXME: I doubt EFL wants to override this method.
    66     def check_build(self, needs_http):
    67         return self._check_driver()
    68 
    6965    def _path_to_webcore_library(self):
    7066        static_path = self._build_path('WebCore', 'libwebcore_efl.a')
Note: See TracChangeset for help on using the changeset viewer.