Changeset 224490 in webkit


Ignore:
Timestamp:
Nov 6, 2017 6:43:36 AM (6 years ago)
Author:
Michael Catanzaro
Message:

[WPE][GTK] Always use SET_AND_EXPOSE_TO_BUILD to set build variables
https://bugs.webkit.org/show_bug.cgi?id=179038

Reviewed by Žan Doberšek.

.:

  • Source/cmake/OptionsGTK.cmake:
  • Source/cmake/OptionsWPE.cmake:

Source/WTF:

  • wtf/Platform.h:
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r224410 r224490  
     12017-11-06  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        [WPE][GTK] Always use SET_AND_EXPOSE_TO_BUILD to set build variables
     4        https://bugs.webkit.org/show_bug.cgi?id=179038
     5
     6        Reviewed by Žan Doberšek.
     7
     8        * Source/cmake/OptionsGTK.cmake:
     9        * Source/cmake/OptionsWPE.cmake:
     10
    1112017-11-03  Michael Catanzaro  <mcatanzaro@igalia.com>
    212
  • trunk/Source/WTF/ChangeLog

    r224403 r224490  
     12017-11-06  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        [WPE][GTK] Always use SET_AND_EXPOSE_TO_BUILD to set build variables
     4        https://bugs.webkit.org/show_bug.cgi?id=179038
     5
     6        Reviewed by Žan Doberšek.
     7
     8        * wtf/Platform.h:
     9
    1102017-11-03  Chris Dumez  <cdumez@apple.com>
    211
  • trunk/Source/WTF/wtf/Platform.h

    r224358 r224490  
    521521
    522522#if PLATFORM(GTK) || PLATFORM(WPE)
    523 #define USE_CAIRO 1
    524523#define USE_GLIB 1
    525524#define USE_FREETYPE 1
  • trunk/Source/cmake/OptionsGTK.cmake

    r224329 r224490  
    4747include(GStreamerDefinitions)
    4848
    49 set(USE_CAIRO ON)
    50 set(USE_XDGMIME ON)
     49SET_AND_EXPOSE_TO_BUILD(USE_CAIRO TRUE)
     50SET_AND_EXPOSE_TO_BUILD(USE_XDGMIME TRUE)
    5151SET_AND_EXPOSE_TO_BUILD(USE_GCRYPT TRUE)
    5252
  • trunk/Source/cmake/OptionsWPE.cmake

    r224047 r224490  
    7676endif ()
    7777
    78 set(USE_CAIRO ON)
    79 set(USE_XDGMIME ON)
     78SET_AND_EXPOSE_TO_BUILD(USE_CAIRO TRUE)
     79SET_AND_EXPOSE_TO_BUILD(USE_XDGMIME TRUE)
    8080SET_AND_EXPOSE_TO_BUILD(USE_GCRYPT TRUE)
    8181
Note: See TracChangeset for help on using the changeset viewer.