Changeset 132370 in webkit
- Timestamp:
- Oct 24, 2012, 10:44:06 AM (12 years ago)
- Location:
- trunk/Tools
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r132369 r132370 1 2012-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 1 18 2012-10-24 Ojan Vafai <ojan@chromium.org> 2 19 -
trunk/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp
r132029 r132370 94 94 '../chromium/TestRunner/public', 95 95 '../chromium/TestRunner/src', 96 '../../../Source', 96 97 ], 97 98 'direct_dependent_settings': { 98 99 'include_dirs': [ 99 100 '../chromium/TestRunner/public', 101 '../../../Source', 100 102 ], 101 103 }, -
trunk/Tools/DumpRenderTree/chromium/TestRunner/public/WebEventSender.h
r132029 r132370 32 32 #define WebEventSender_h 33 33 34 #include "Web DragOperation.h"34 #include "WebKit/chromium/public/WebDragOperation.h" 35 35 36 36 namespace WebKit { -
trunk/Tools/DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h
r132241 r132370 32 32 #define WebTestDelegate_h 33 33 34 #include " platform/WebString.h"35 #include " platform/WebVector.h"34 #include "Platform/chromium/public/WebString.h" 35 #include "Platform/chromium/public/WebVector.h" 36 36 37 37 namespace WebKit {
Note:
See TracChangeset
for help on using the changeset viewer.