Changeset 120993 in webkit


Ignore:
Timestamp:
Jun 21, 2012 7:05:25 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[GTK] Use the empty plugin support on non-X11 and non-Windows platforms
https://bugs.webkit.org/show_bug.cgi?id=89501

Patch by Kalev Lember <kalevlember@gmail.com> on 2012-06-21
Reviewed by Martin Robinson.

The GTK+ port doesn't currently support NPAPI plugins on platforms other
than X11 or Windows. Using PluginPackageNone and PluginViewNone makes it
easier to build it on other platforms and also allows us to drop some
ifdefs from PluginPackageGtk and PluginViewGtk.

  • GNUmakefile.list.am:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r120991 r120993  
     12012-06-21  Kalev Lember  <kalevlember@gmail.com>
     2
     3        [GTK] Use the empty plugin support on non-X11 and non-Windows platforms
     4        https://bugs.webkit.org/show_bug.cgi?id=89501
     5
     6        Reviewed by Martin Robinson.
     7
     8        The GTK+ port doesn't currently support NPAPI plugins on platforms other
     9        than X11 or Windows. Using PluginPackageNone and PluginViewNone makes it
     10        easier to build it on other platforms and also allows us to drop some
     11        ifdefs from PluginPackageGtk and PluginViewGtk.
     12
     13        * GNUmakefile.list.am:
     14
    1152012-06-21  Shinya Kawanaka  <shinyak@chromium.org>
    216
  • trunk/Source/WebCore/GNUmakefile.list.am

    r120984 r120993  
    48354835        Source/WebCore/plugins/gtk/gtk2xtbin.c \
    48364836        Source/WebCore/plugins/gtk/gtk2xtbin.h \
     4837        Source/WebCore/plugins/gtk/PluginPackageGtk.cpp \
     4838        Source/WebCore/plugins/gtk/PluginViewGtk.cpp \
    48374839        Source/WebCore/plugins/gtk/xembed.h
    4838 endif
    4839 
     4840else
    48404841if TARGET_WIN32
    48414842webcore_sources += \
     
    48594860        Source/WebCore/plugins/win/PluginViewWin.cpp
    48604861else
    4861 webcoregtk_sources += \
    4862         Source/WebCore/plugins/gtk/PluginPackageGtk.cpp \
    4863         Source/WebCore/plugins/gtk/PluginViewGtk.cpp
    4864 endif
     4862webcore_sources += \
     4863        Source/WebCore/plugins/PluginPackageNone.cpp \
     4864        Source/WebCore/plugins/PluginViewNone.cpp
     4865endif # END TARGET_WIN32
     4866endif # END TARGET_X11
    48654867
    48664868# ----
Note: See TracChangeset for help on using the changeset viewer.