Changeset 58377 in webkit


Ignore:
Timestamp:
Apr 27, 2010 9:53:19 PM (14 years ago)
Author:
tkent@chromium.org
Message:

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

Reviewed by Shinichiro Hamaji.

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

  • Avoid platform.system(), which causes a crash with python.exe in depot_tools. Use sys.platform instead.
  • Process DumpRenderTree.gyp on all platforms.
  • gyp_webkit:
Location:
trunk/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r58370 r58377  
     12010-04-27  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        - Avoid platform.system(), which causes a crash with python.exe in
     9          depot_tools. Use sys.platform instead.
     10        - Process DumpRenderTree.gyp on all platforms.
     11
     12        * gyp_webkit:
     13
    1142010-04-27  Jay Civelli  <jcivelli@chromium.org>
    215
  • trunk/WebKit/chromium/gyp_webkit

    r58240 r58377  
    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.