Changeset 58237 in webkit


Ignore:
Timestamp:
Apr 26, 2010 12:33:41 AM (14 years ago)
Author:
tkent@chromium.org
Message:

2010-04-26 Kent Tamura <tkent@chromium.org>

Reviewed by Shinichiro Hamaji.

[DRT/Chromium] Enable Windows project generation
https://bugs.webkit.org/show_bug.cgi?id=38103

  • Bump the Chromium revision to r45515 to have GYP r818, which fixes a Windows project generation bug.
  • Avoid platform.system(), which causes a crash with python.exe in depot_tools. Use sys.platform instead.
  • Process DumpRenderTree.gyp on all platforms.
  • DEPS:
  • gyp_webkit:
Location:
trunk/WebKit/chromium
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r58209 r58237  
     12010-04-26  Kent Tamura  <tkent@chromium.org>
     2
     3        Reviewed by Shinichiro Hamaji.
     4
     5        [DRT/Chromium] Enable Windows project generation
     6        https://bugs.webkit.org/show_bug.cgi?id=38103
     7
     8        - Bump the Chromium revision to r45515 to have GYP r818, which fixes
     9          a Windows project generation bug.
     10        - Avoid platform.system(), which causes a crash with python.exe in
     11          depot_tools. Use sys.platform instead.
     12        - Process DumpRenderTree.gyp on all platforms.
     13
     14        * DEPS:
     15        * gyp_webkit:
     16
    1172010-04-23  Zhenyao Mo  <zmo@google.com>
    218
  • trunk/WebKit/chromium/DEPS

    r58070 r58237  
    3333vars = {
    3434  'chromium_svn': 'http://src.chromium.org/svn/trunk/src',
    35   'chromium_rev': '45294',
     35  'chromium_rev': '45515',
    3636
    3737  'pthreads-win32_rev': '26716',
  • trunk/WebKit/chromium/gyp_webkit

    r58065 r58237  
    3333import glob
    3434import os
    35 import platform
    3635import shlex
    3736import sys
     
    7978
    8079  # On linux, we want gyp to output a makefile (default is scons).
    81   if platform.system() == 'Linux':
     80  if sys.platform == 'linux2':
    8281    args.extend(['-fmake'])
    8382
     
    9291               '--depth=./',
    9392
    94                # gyp file to execute.
    95                'WebKit.gyp'])
    96 
    97   # Generate DRT build files on the platforms that support it.
    98   if platform.system() in ('Darwin', 'Linux'):
    99     args.append('../../WebKitTools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp')
     93               # gyp files to execute.
     94               'WebKit.gyp',
     95               '../../WebKitTools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp'])
    10096
    10197  print 'Updating webkit projects from gyp files...'
Note: See TracChangeset for help on using the changeset viewer.