[Webkit-unassigned] [Bug 73218] New: Chromium fails to build on Windows with WebKit.gyp (revision 101168)

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Nov 28 07:08:33 PST 2011


https://bugs.webkit.org/show_bug.cgi?id=73218

           Summary: Chromium fails to build on Windows with WebKit.gyp
                    (revision 101168)
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Windows 7
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: New Bugs
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: emanuel at somosan.de
                CC: peter at chromium.org


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': [

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list