Changeset 234010 in webkit


Ignore:
Timestamp:
Jul 19, 2018 4:11:24 PM (6 years ago)
Author:
stephan.szabo@sony.com
Message:

[WinCairo] Support DEVELOPER_MODE for allowing inspection of web inspector
https://bugs.webkit.org/show_bug.cgi?id=187786

Reviewed by Fujii Hironori.

.:

  • Source/cmake/OptionsWinCairo.cmake: Add ENABLE_DEVELOPER_MODE

to build when DEVELOPER_MODE is turned on at cmake time.

Tools:

  • Scripts/webkitdirs.pm:

(generateBuildSystemFromCMakeProject): Turn on DEVELOPER_MODE
for WinCairo builds.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r233912 r234010  
     12018-07-19  Stephan Szabo  <stephan.szabo@sony.com>
     2
     3        [WinCairo] Support DEVELOPER_MODE for allowing inspection of web inspector
     4        https://bugs.webkit.org/show_bug.cgi?id=187786
     5
     6        Reviewed by Fujii Hironori.
     7
     8        * Source/cmake/OptionsWinCairo.cmake: Add ENABLE_DEVELOPER_MODE
     9        to build when DEVELOPER_MODE is turned on at cmake time.
     10
    1112018-07-18  Michael Catanzaro  <mcatanzaro@igalia.com>
    212
  • trunk/Source/cmake/OptionsWinCairo.cmake

    r232038 r234010  
    3434set(COREFOUNDATION_LIBRARY CFlite)
    3535
     36SET_AND_EXPOSE_TO_BUILD(ENABLE_DEVELOPER_MODE ${DEVELOPER_MODE})
     37
    3638add_definitions(-DWTF_PLATFORM_WIN_CAIRO=1)
  • trunk/Tools/ChangeLog

    r234004 r234010  
     12018-07-19  Stephan Szabo  <stephan.szabo@sony.com>
     2
     3        [WinCairo] Support DEVELOPER_MODE for allowing inspection of web inspector
     4        https://bugs.webkit.org/show_bug.cgi?id=187786
     5
     6        Reviewed by Fujii Hironori.
     7
     8        * Scripts/webkitdirs.pm:
     9        (generateBuildSystemFromCMakeProject): Turn on DEVELOPER_MODE
     10        for WinCairo builds.
     11
    1122018-07-19  Dean Jackson  <dino@apple.com>
    213
  • trunk/Tools/Scripts/webkitdirs.pm

    r233402 r234010  
    22702270
    22712271    # Some ports have production mode, but build-webkit should always use developer mode.
    2272     push @args, "-DDEVELOPER_MODE=ON" if isGtk() || isJSCOnly() || isWPE();
     2272    push @args, "-DDEVELOPER_MODE=ON" if isGtk() || isJSCOnly() || isWPE() || isWinCairo();
    22732273
    22742274    push @args, @cmakeArgs if @cmakeArgs;
Note: See TracChangeset for help on using the changeset viewer.