Changeset 57988 in webkit


Ignore:
Timestamp:
Apr 21, 2010 8:57:02 AM (14 years ago)
Author:
tkent@chromium.org
Message:

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

Reviewed by Dimitri Glazkov.

[DRT/Chromium] Make DRT compilable in Chromium tree
https://bugs.webkit.org/show_bug.cgi?id=37923

We need to use different GYPs in a case of WebKit-only checkout
and a case of whole Chromium checkout because the relative paths
from webkit/ to WebKit/chromium/features.gypi are different in
these cases and we can't use 'conditions' for 'includes' in GYPs.

  • DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r57986 r57988  
     12010-04-21  Kent Tamura  <tkent@chromium.org>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        [DRT/Chromium] Make DRT compilable in Chromium tree
     6        https://bugs.webkit.org/show_bug.cgi?id=37923
     7
     8        We need to use different GYPs in a case of WebKit-only checkout
     9        and a case of whole Chromium checkout because the relative paths
     10        from webkit/ to WebKit/chromium/features.gypi are different in
     11        these cases and we can't use 'conditions' for 'includes' in GYPs.
     12
     13        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
     14
    1152010-04-21  Jakub Wieczorek  <jwieczorek@webkit.org>
    216
  • trunk/WebKitTools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp

    r57981 r57988  
    4343                # e.g. via build-dumprendertree --chromium
    4444                'chromium_src_dir': '<(webkit_api_dir)',
     45                'webkit_support_gyp': '<(webkit_api_dir)/webkit/support/webkit_support.gyp',
    4546            },{
    4647                # WebKit is checked out in src/chromium/third_party/WebKit
    4748                'chromium_src_dir': '<(webkit_top)/../..',
     49                'webkit_support_gyp': '<(webkit_top)/../../webkit/webkit.gyp',
    4850            }],
    4951        ],
     
    8082                '<(chromium_src_dir)/third_party/npapi/npapi.gyp:npapi',
    8183                '<(chromium_src_dir)/skia/skia.gyp:skia',
    82                 '<(chromium_src_dir)/webkit/support/webkit_support.gyp:webkit_support',
     84                '<(webkit_support_gyp):webkit_support',
    8385            ],
    8486            'include_dirs': [
Note: See TracChangeset for help on using the changeset viewer.