Changeset 57720 in webkit


Ignore:
Timestamp:
Apr 16, 2010 12:36:05 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-16 Tony Chang <tony@chromium.org>

Reviewed by Dimitri Glazkov.

[chromium] build DRT on Linux
https://bugs.webkit.org/show_bug.cgi?id=37690

  • DEPS: Need to roll deps to remove a dependency on src/chrome
  • gyp_webkit: generate makefiles for DRT.gyp on Linux

2010-04-16 Tony Chang <tony@chromium.org>

Reviewed by Dimitri Glazkov.

[chromium] build DRT on Linux
https://bugs.webkit.org/show_bug.cgi?id=37690

  • Scripts/build-dumprendertree: Add support for win and linux
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r57702 r57720  
     12010-04-16  Tony Chang  <tony@chromium.org>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        [chromium] build DRT on Linux
     6        https://bugs.webkit.org/show_bug.cgi?id=37690
     7
     8        * DEPS: Need to roll deps to remove a dependency on src/chrome
     9        * gyp_webkit: generate makefiles for DRT.gyp on Linux
     10
    1112010-04-15  Tony Chang  <tony@chromium.org>
    212
  • trunk/WebKit/chromium/DEPS

    r57620 r57720  
    3333vars = {
    3434  'chromium_svn': 'http://src.chromium.org/svn/trunk/src',
    35   'chromium_rev': '44239',
     35  'chromium_rev': '44453',
    3636
    3737  'pthreads-win32_rev': '26716',
  • trunk/WebKit/chromium/gyp_webkit

    r57702 r57720  
    9696
    9797  # Generate DRT build files on the platforms that support it.
    98   if platform.system() == 'Darwin':
     98  if platform.system() in ('Darwin', 'Linux'):
    9999    args.append('../../WebKitTools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp')
    100100
  • trunk/WebKitTools/ChangeLog

    r57706 r57720  
     12010-04-16  Tony Chang  <tony@chromium.org>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        [chromium] build DRT on Linux
     6        https://bugs.webkit.org/show_bug.cgi?id=37690
     7
     8        * Scripts/build-dumprendertree: Add support for win and linux
     9
    1102010-04-16  Sam Weinig  <weinig@apple.com>
    211
  • trunk/WebKitTools/Scripts/build-dumprendertree

    r57702 r57720  
    7777    if (isDarwin()) {
    7878        $result = buildXCodeProject("DumpRenderTree.gyp/DumpRenderTree", $clean, @ARGV);
     79    } elsif (isCygwin() || isWindows()) {
     80        # Windows build - builds the root visual studio solution.
     81        $result = buildChromiumVisualStudioProject("DumpRenderTree.gyp/DumpRenderTree.sln", $clean);
     82    } elsif (isLinux()) {
     83        $result = buildChromiumMakefile("../../WebKit/chromium/", "DumpRenderTree", $clean);
    7984    } else {
    80         die "Building not defined for this platform!\n";
     85        die "This platform is not supported by Chromium.\n";
    8186    }
    8287} else {
Note: See TracChangeset for help on using the changeset viewer.