Changeset 138673 in webkit


Ignore:
Timestamp:
Jan 2, 2013, 4:08:50 PM (13 years ago)
Author:
pilgrim@chromium.org
Message:

[Chromium] Add Platform/chromium to include_dirs
https://bugs.webkit.org/show_bug.cgi?id=105955

Reviewed by James Robinson.

Currently the headers in WebKit/chromium/public/Web*.h can not
include headers from the new Platform/chromium/ directory with the
"#include <public/WebFoo.h>" syntax, because the include_dirs for
dependent builds (like Chromium-within-WebKit) do not include the
new Platform/chromium/ directory. This patch adds that capability
without managing to break anything else.

  • WebKit.gyp:
Location:
trunk/Source/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/chromium/ChangeLog

    r138666 r138673  
     12013-01-02  Mark Pilgrim  <pilgrim@chromium.org>
     2
     3        [Chromium] Add Platform/chromium to include_dirs
     4        https://bugs.webkit.org/show_bug.cgi?id=105955
     5
     6        Reviewed by James Robinson.
     7
     8        Currently the headers in WebKit/chromium/public/Web*.h can not
     9        include headers from the new Platform/chromium/ directory with the
     10        "#include <public/WebFoo.h>" syntax, because the include_dirs for
     11        dependent builds (like Chromium-within-WebKit) do not include the
     12        new Platform/chromium/ directory. This patch adds that capability
     13        without managing to break anything else.
     14
     15        * WebKit.gyp:
     16
    1172013-01-02  Alec Flett  <alecflett@chromium.org>
    218
  • trunk/Source/WebKit/chromium/WebKit.gyp

    r138477 r138673  
    855855                }],
    856856            ],
     857            'direct_dependent_settings': {
     858                'include_dirs': [
     859                    '../../Platform/chromium/',
     860                ],
     861            },
    857862            'target_conditions': [
    858863                ['OS=="android"', {
     
    903908                        'public',
    904909                        '../../WebCore/testing/v8', # for WebCoreTestSupport.h, needed to link in window.internals code.
     910                        '../../Platform/chromium/',
    905911                    ],
    906912                    'sources': [
Note: See TracChangeset for help on using the changeset viewer.