Changeset 132370 in webkit


Ignore:
Timestamp:
Oct 24, 2012, 10:44:06 AM (12 years ago)
Author:
jochen@chromium.org
Message:

[chromium] Use include paths relative to Source/ in the TestRunner's public API
https://bugs.webkit.org/show_bug.cgi?id=100079

Reviewed by Adam Barth.

For a inside-chromium build, we usually don't add the WebKit API paths
as include paths, so including files by name only does not work.

Eventually we might want to move to a model where all includes are
relative to Source/, so we're using that here already now.

  • DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
  • DumpRenderTree/chromium/TestRunner/public/WebEventSender.h:
  • DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
Location:
trunk/Tools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r132369 r132370  
     12012-10-24  Jochen Eisinger  <jochen@chromium.org>
     2
     3        [chromium] Use include paths relative to Source/ in the TestRunner's public API
     4        https://bugs.webkit.org/show_bug.cgi?id=100079
     5
     6        Reviewed by Adam Barth.
     7
     8        For a inside-chromium build, we usually don't add the WebKit API paths
     9        as include paths, so including files by name only does not work.
     10
     11        Eventually we might want to move to a model where all includes are
     12        relative to Source/, so we're using that here already now.
     13
     14        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
     15        * DumpRenderTree/chromium/TestRunner/public/WebEventSender.h:
     16        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
     17
    1182012-10-24  Ojan Vafai  <ojan@chromium.org>
    219
  • trunk/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp

    r132029 r132370  
    9494                '../chromium/TestRunner/public',
    9595                '../chromium/TestRunner/src',
     96                '../../../Source',
    9697            ],
    9798            'direct_dependent_settings': {
    9899                'include_dirs': [
    99100                    '../chromium/TestRunner/public',
     101                    '../../../Source',
    100102                ],
    101103            },
  • trunk/Tools/DumpRenderTree/chromium/TestRunner/public/WebEventSender.h

    r132029 r132370  
    3232#define WebEventSender_h
    3333
    34 #include "WebDragOperation.h"
     34#include "WebKit/chromium/public/WebDragOperation.h"
    3535
    3636namespace WebKit {
  • trunk/Tools/DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h

    r132241 r132370  
    3232#define WebTestDelegate_h
    3333
    34 #include "platform/WebString.h"
    35 #include "platform/WebVector.h"
     34#include "Platform/chromium/public/WebString.h"
     35#include "Platform/chromium/public/WebVector.h"
    3636
    3737namespace WebKit {
Note: See TracChangeset for help on using the changeset viewer.