Changeset 149588 in webkit


Ignore:
Timestamp:
May 6, 2013 2:46:58 AM (11 years ago)
Author:
zandobersek@gmail.com
Message:

[GTK] Move GeolocationProviderGeoclue into libPlatform
https://bugs.webkit.org/show_bug.cgi?id=115591

Reviewed by Martin Robinson.

Source/Platform:

  • GNUmakefile.am: List the Source/WebCore/platform/geoclue directory under platform_webcore_cppflags.

Add Geoclue dependency CPPFLAGS to the list of libPlatform's CPPFLAGS.

Source/WebCore:

No new tests - no new functionality.

  • GNUmakefile.am: Remove the Source/WebCore/platform/geoclue directory from the webkitgtk_cppflags list.
  • GNUmakefile.list.am: Move the GeolocationProviderGeoclue(Client) sources under platform_sources.

Source/WebKit/gtk:

  • GNUmakefile.am: Add platform_webcore_cppflags to the list of libwebkitgtk's CPPFLAGS.
Location:
trunk/Source
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/Platform/ChangeLog

    r149018 r149588  
     12013-05-06  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK] Move GeolocationProviderGeoclue into libPlatform
     4        https://bugs.webkit.org/show_bug.cgi?id=115591
     5
     6        Reviewed by Martin Robinson.
     7
     8        * GNUmakefile.am: List the Source/WebCore/platform/geoclue directory under platform_webcore_cppflags.
     9        Add Geoclue dependency CPPFLAGS to the list of libPlatform's CPPFLAGS.
     10
    1112013-04-24  Zan Dobersek  <zdobersek@igalia.com>
    212
  • trunk/Source/Platform/GNUmakefile.am

    r149018 r149588  
    2525        -I$(srcdir)/Source/WebCore/platform/audio \
    2626        -I$(srcdir)/Source/WebCore/platform/cairo \
     27        -I$(srcdir)/Source/WebCore/platform/geoclue \
    2728        -I$(srcdir)/Source/WebCore/platform/graphics \
    2829        -I$(srcdir)/Source/WebCore/platform/graphics/cairo \
     
    6768        -fno-strict-aliasing \
    6869        $(CAIRO_CFLAGS) \
     70        $(GEOCLUE_CFLAGS) \
    6971        $(GSTREAMER_CFLAGS) \
    7072        $(LIBSOUP_CFLAGS)
  • trunk/Source/WebCore/ChangeLog

    r149587 r149588  
     12013-05-06  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK] Move GeolocationProviderGeoclue into libPlatform
     4        https://bugs.webkit.org/show_bug.cgi?id=115591
     5
     6        Reviewed by Martin Robinson.
     7
     8        No new tests - no new functionality.
     9
     10        * GNUmakefile.am: Remove the Source/WebCore/platform/geoclue directory from the webkitgtk_cppflags list.
     11        * GNUmakefile.list.am: Move the GeolocationProviderGeoclue(Client) sources under platform_sources.
     12
    1132013-05-06  Zoltan Arvai  <zarvai@inf.u-szeged.hu>
    214
  • trunk/Source/WebCore/GNUmakefile.am

    r149569 r149588  
    115115        -I$(srcdir)/Source/WebCore/platform/cairo \
    116116        -I$(srcdir)/Source/WebCore/platform/audio/gstreamer \
    117         -I$(srcdir)/Source/WebCore/platform/geoclue \
    118117        -I$(srcdir)/Source/WebCore/platform/graphics/cairo \
    119118        -I$(srcdir)/Source/WebCore/platform/graphics/freetype \
  • trunk/Source/WebCore/GNUmakefile.list.am

    r149569 r149588  
    60856085        Source/WebCore/platform/audio/gstreamer/WebKitWebAudioSourceGStreamer.cpp \
    60866086        Source/WebCore/platform/audio/gstreamer/WebKitWebAudioSourceGStreamer.h \
     6087        Source/WebCore/platform/geoclue/GeolocationProviderGeoclue.h \
     6088        Source/WebCore/platform/geoclue/GeolocationProviderGeoclue.cpp \
     6089        Source/WebCore/platform/geoclue/GeolocationProviderGeoclueClient.h \
    60876090        Source/WebCore/platform/graphics/cairo/CairoUtilities.cpp \
    60886091        Source/WebCore/platform/graphics/cairo/CairoUtilities.h \
     
    61826185        Source/WebCore/page/gtk/EventHandlerGtk.cpp \
    61836186        Source/WebCore/platform/cairo/WidgetBackingStore.h \
    6184         Source/WebCore/platform/geoclue/GeolocationProviderGeoclue.h \
    6185         Source/WebCore/platform/geoclue/GeolocationProviderGeoclue.cpp \
    6186         Source/WebCore/platform/geoclue/GeolocationProviderGeoclueClient.h \
    61876187        Source/WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp \
    61886188        Source/WebCore/platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h \
  • trunk/Source/WebKit/gtk/ChangeLog

    r149486 r149588  
     12013-05-06  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK] Move GeolocationProviderGeoclue into libPlatform
     4        https://bugs.webkit.org/show_bug.cgi?id=115591
     5
     6        Reviewed by Martin Robinson.
     7
     8        * GNUmakefile.am: Add platform_webcore_cppflags to the list of libwebkitgtk's CPPFLAGS.
     9
    1102013-05-02  Zan Dobersek  <zdobersek@igalia.com>
    211
  • trunk/Source/WebKit/gtk/GNUmakefile.am

    r148935 r149588  
    4848        -ISource/WebKit/gtk/webkit \
    4949        $(global_cppflags) \
     50        $(platform_webcore_cppflags) \
    5051        $(platformgtk_cppflags) \
    5152        $(webcore_cppflags) \
Note: See TracChangeset for help on using the changeset viewer.