Changeset 52356 in webkit


Ignore:
Timestamp:
Dec 18, 2009 4:33:34 PM (14 years ago)
Author:
eric@webkit.org
Message:

2009-12-18 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

REGRESSION(52325) Chromium build broken due to link failure
https://bugs.webkit.org/show_bug.cgi?id=32753

  • WebCoreSupport/WebSystemInterface.m:
    • Chromium Mac builds use this file, but do not enable Pre-compiled Header (PCH) files so that Chromium build bots can take advantage of the faster distcc 3. Eventually all mac builds will likely use distcc, but for now we'll add Platform.h here and document its usage so it's not removed by accident.
Location:
trunk/WebKit/mac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/mac/ChangeLog

    r52344 r52356  
     12009-12-18  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        REGRESSION(52325) Chromium build broken due to link failure
     6        https://bugs.webkit.org/show_bug.cgi?id=32753
     7
     8        * WebCoreSupport/WebSystemInterface.m:
     9         - Chromium Mac builds use this file, but do not
     10           enable Pre-compiled Header (PCH) files so that
     11           Chromium build bots can take advantage of the faster
     12           distcc 3.  Eventually all mac builds will likely use
     13           distcc, but for now we'll add Platform.h here and document
     14           its usage so it's not removed by accident.
     15
    1162009-12-18  Sam Weinig  <sam@webkit.org>
    217
  • trunk/WebKit/mac/WebCoreSupport/WebSystemInterface.m

    r52325 r52356  
    3131#import <WebCore/WebCoreSystemInterface.h>
    3232#import <WebKitSystemInterface.h>
     33
     34// Needed for builds not using PCH to expose BUILDING_ macros, see bug 32753.
     35#include <wtf/Platform.h>
    3336
    3437#define INIT(function) wk##function = WK##function
Note: See TracChangeset for help on using the changeset viewer.