WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
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
Add attachment
proposed patch, testcase, etc.
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.
Top of Page
Format For Printing
XML
Clone This Bug