[Webkit-unassigned] [Bug 95854] [Chromium] Compositor build errors prevent rolling Chromium into WebKit

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Sep 5 09:22:01 PDT 2012


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





--- Comment #4 from James Robinson <jamesr at chromium.org>  2012-09-05 09:22:14 PST ---
This is the rule in WebKit.gyp that's supposed to make things work:

                { # else: inside_chromium_build==0
                    'direct_dependent_settings': {
                        'include_dirs': [
                            '<(SHARED_INTERMEDIATE_DIR)/webkit', # in a chromium-inside-WebKit build, headers in the public WebKit API are copied beneath this directory so includes referencing third_party/WebKit work.
                        ],
                    },
                }],

but since webkit_compositor_support doesn't directly depend on the WebKit target, it doesn't pick this up.  One fix might be to just make it depend on WebKit.gyp:webkit - trying that now.  Another would be to duplicate this logic.

-- 
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