Changeset 229029 in webkit


Ignore:
Timestamp:
Feb 26, 2018 11:08:33 AM (6 years ago)
Author:
commit-queue@webkit.org
Message:

[WinCairo] WebKit2_C.h should be included for TestWebKit
https://bugs.webkit.org/show_bug.cgi?id=182682

Patch by Yousuke Kimoto <yousuke.kimoto@sony.com> on 2018-02-26
Reviewed by Yusuke Suzuki.

.:

Added a new definition "BUILDING_WIN_CAIRO_WEBKIT" to specify
the wincairo webkit build.

  • Source/cmake/OptionsWinCairo.cmake:

Tools:

  • TestWebKitAPI/config.h:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r228985 r229029  
     12018-02-26  Yousuke Kimoto  <yousuke.kimoto@sony.com>
     2
     3        [WinCairo] WebKit2_C.h should be included for TestWebKit
     4        https://bugs.webkit.org/show_bug.cgi?id=182682
     5
     6        Reviewed by Yusuke Suzuki.
     7
     8        Added a new definition "BUILDING_WIN_CAIRO_WEBKIT" to specify
     9        the wincairo webkit build.
     10
     11        * Source/cmake/OptionsWinCairo.cmake:
     12
    1132018-02-26  Fujii Hironori  <Hironori.Fujii@sony.com>
    214
  • trunk/Source/cmake/OptionsWinCairo.cmake

    r228891 r229029  
    55if (ENABLE_WIN_CAIRO_WEBKIT)
    66    set(ENABLE_WEBKIT ON)
     7    add_definitions(-DBUILDING_WIN_CAIRO_WEBKIT=1)
    78endif ()
    89
  • trunk/Tools/ChangeLog

    r228984 r229029  
     12018-02-26  Yousuke Kimoto  <yousuke.kimoto@sony.com>
     2
     3        [WinCairo] WebKit2_C.h should be included for TestWebKit
     4        https://bugs.webkit.org/show_bug.cgi?id=182682
     5
     6        Reviewed by Yusuke Suzuki.
     7
     8        * TestWebKitAPI/config.h:
     9
    1102018-02-25  Fujii Hironori  <Hironori.Fujii@sony.com>
    211
  • trunk/Tools/TestWebKitAPI/config.h

    r228891 r229029  
    4646#include <stdint.h>
    4747
    48 #if !PLATFORM(IOS) && !PLATFORM(WIN) && !defined(BUILDING_JSCONLY__)
     48#if !PLATFORM(IOS) && !defined(BUILDING_JSCONLY__) && (!PLATFORM(WIN) || defined(BUILDING_WIN_CAIRO_WEBKIT))
    4949#include <WebKit/WebKit2_C.h>
    5050#endif
Note: See TracChangeset for help on using the changeset viewer.