RESOLVED WONTFIX 73218
Chromium fails to build on Windows with WebKit.gyp (revision 101168)
https://bugs.webkit.org/show_bug.cgi?id=73218
Summary Chromium fails to build on Windows with WebKit.gyp (revision 101168)
Emanuel Somosan
Reported 2011-11-28 07:08:33 PST
It looks like WebKit.gyp is missing the exclude for non Android platforms inside of the webkit target. This leads to an include of android/WebInputEventFactory.cpp inside of the VS2010 project which leads to a failed build. This should fix it: =================================================================== --- WebKit/chromium/WebKit.gyp (revision 101168) +++ WebKit/chromium/WebKit.gyp (working copy) @@ -772,6 +772,10 @@ 'include_dirs': [ 'public/android', ], + }, { # else: not android + 'sources/': [ + ['exclude', '/android/'], + ], }], ['OS=="mac"', { 'include_dirs': [
Attachments
Stephen Chenney
Comment 1 2013-04-09 16:28:27 PDT
Marking test failures as WontFix. Bug is still accessible and recording in TestExpectations.
Note You need to log in before you can comment on or make changes to this bug.