Title: [161188] trunk
Revision
161188
Author
[email protected]
Date
2014-01-01 07:35:00 -0800 (Wed, 01 Jan 2014)

Log Message

[GTK] Rename libtestnetscapeplugin to libTestNetscapePlugin
https://bugs.webkit.org/show_bug.cgi?id=126349

Reviewed by Carlos Garcia Campos.

All CMake ports use "libTestNetscapePlugin," so choosing the same
name in the autotools port will make the transition easier.

Source/WebKit2:

* UIProcess/API/gtk/tests/TestWebKitWebContext.cpp:
(testWebContextGetPlugins): Use the new plugin library name.

Tools:

* GNUmakefile.am: Rename the plugin library.

LayoutTests:

* platform/gtk/plugins/plugin-_javascript_-access-expected.txt: Change the plugin name.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (161187 => 161188)


--- trunk/LayoutTests/ChangeLog	2014-01-01 13:35:13 UTC (rev 161187)
+++ trunk/LayoutTests/ChangeLog	2014-01-01 15:35:00 UTC (rev 161188)
@@ -1,3 +1,15 @@
+2014-01-01  Martin Robinson  <[email protected]>
+
+        [GTK] Rename libtestnetscapeplugin to libTestNetscapePlugin
+        https://bugs.webkit.org/show_bug.cgi?id=126349
+
+        Reviewed by Carlos Garcia Campos.
+
+        All CMake ports use "libTestNetscapePlugin," so choosing the same
+        name in the autotools port will make the transition easier.
+
+        * platform/gtk/plugins/plugin-_javascript_-access-expected.txt: Change the plugin name.
+
 2013-12-30  Antti Koivisto  <[email protected]>
 
         XML document builder should create render tree asynchronously

Modified: trunk/LayoutTests/platform/gtk/plugins/plugin-_javascript_-access-expected.txt (161187 => 161188)


--- trunk/LayoutTests/platform/gtk/plugins/plugin-_javascript_-access-expected.txt	2014-01-01 13:35:13 UTC (rev 161187)
+++ trunk/LayoutTests/platform/gtk/plugins/plugin-_javascript_-access-expected.txt	2014-01-01 15:35:00 UTC (rev 161188)
@@ -2,7 +2,7 @@
 
 Description: Simple Netscape® plug-in that handles test content for WebKit
 
-Filename: libtestnetscapeplugin.so
+Filename: libTestNetscapePlugin.so
 
 Mime Types:
 

Modified: trunk/Source/WebKit2/ChangeLog (161187 => 161188)


--- trunk/Source/WebKit2/ChangeLog	2014-01-01 13:35:13 UTC (rev 161187)
+++ trunk/Source/WebKit2/ChangeLog	2014-01-01 15:35:00 UTC (rev 161188)
@@ -1,3 +1,16 @@
+2014-01-01  Martin Robinson  <[email protected]>
+
+        [GTK] Rename libtestnetscapeplugin to libTestNetscapePlugin
+        https://bugs.webkit.org/show_bug.cgi?id=126349
+
+        Reviewed by Carlos Garcia Campos.
+
+        All CMake ports use "libTestNetscapePlugin," so choosing the same
+        name in the autotools port will make the transition easier.
+
+        * UIProcess/API/gtk/tests/TestWebKitWebContext.cpp:
+        (testWebContextGetPlugins): Use the new plugin library name.
+
 2013-12-31  Brendan Long  <[email protected]>
 
         [Gtk] WebKitWebInspector has build warnings due to uninitialized didChangeAttachedWidth member

Modified: trunk/Source/WebKit2/UIProcess/API/gtk/tests/TestWebKitWebContext.cpp (161187 => 161188)


--- trunk/Source/WebKit2/UIProcess/API/gtk/tests/TestWebKitWebContext.cpp	2014-01-01 13:35:13 UTC (rev 161187)
+++ trunk/Source/WebKit2/UIProcess/API/gtk/tests/TestWebKitWebContext.cpp	2014-01-01 15:35:00 UTC (rev 161188)
@@ -89,7 +89,7 @@
     }
     g_assert(WEBKIT_IS_PLUGIN(testPlugin.get()));
 
-    GOwnPtr<char> pluginPath(g_build_filename(WEBKIT_TEST_PLUGIN_DIR, "libtestnetscapeplugin.so", NULL));
+    GOwnPtr<char> pluginPath(g_build_filename(WEBKIT_TEST_PLUGIN_DIR, "libTestNetscapePlugin.so", NULL));
     g_assert_cmpstr(webkit_plugin_get_path(testPlugin.get()), ==, pluginPath.get());
     g_assert_cmpstr(webkit_plugin_get_description(testPlugin.get()), ==, "Simple Netscape® plug-in that handles test content for WebKit");
     GList* mimeInfoList = webkit_plugin_get_mime_info_list(testPlugin.get());

Modified: trunk/Tools/ChangeLog (161187 => 161188)


--- trunk/Tools/ChangeLog	2014-01-01 13:35:13 UTC (rev 161187)
+++ trunk/Tools/ChangeLog	2014-01-01 15:35:00 UTC (rev 161188)
@@ -1,3 +1,15 @@
+2014-01-01  Martin Robinson  <[email protected]>
+
+        [GTK] Rename libtestnetscapeplugin to libTestNetscapePlugin
+        https://bugs.webkit.org/show_bug.cgi?id=126349
+
+        Reviewed by Carlos Garcia Campos.
+
+        All CMake ports use "libTestNetscapePlugin," so choosing the same
+        name in the autotools port will make the transition easier.
+
+        * GNUmakefile.am: Rename the plugin library.
+
 2014-01-01  ChangSeok Oh  <[email protected]>
 
         [GTK][WK2] Back items are shown in reverse order in MiniBrowser

Modified: trunk/Tools/GNUmakefile.am (161187 => 161188)


--- trunk/Tools/GNUmakefile.am	2014-01-01 13:35:13 UTC (rev 161187)
+++ trunk/Tools/GNUmakefile.am	2014-01-01 15:35:00 UTC (rev 161188)
@@ -203,9 +203,9 @@
 # Build TestNetscapePlugin only for X11
 # since we don't support plugins for non-X11 builds at the moment.
 noinst_LTLIBRARIES += \
-	TestNetscapePlugin/libtestnetscapeplugin.la
+	TestNetscapePlugin/libTestNetscapePlugin.la
 
-TestNetscapePlugin_libtestnetscapeplugin_la_CPPFLAGS = \
+TestNetscapePlugin_libTestNetscapePlugin_la_CPPFLAGS = \
 	-I$(srcdir)/Tools/DumpRenderTree \
 	-I$(srcdir)/Source/WebCore \
 	-I$(srcdir)/Source/WebCore/bridge \
@@ -218,15 +218,15 @@
 
 # For the Gtk port we want to use XP_UNIX both on X11 and Mac
 if !TARGET_WIN32
-TestNetscapePlugin_libtestnetscapeplugin_la_CPPFLAGS += -DXP_UNIX
+TestNetscapePlugin_libTestNetscapePlugin_la_CPPFLAGS += -DXP_UNIX
 endif
 
 # Add MOZ_X11 only for X11 targets
 if TARGET_X11
-TestNetscapePlugin_libtestnetscapeplugin_la_CPPFLAGS += -DMOZ_X11
+TestNetscapePlugin_libTestNetscapePlugin_la_CPPFLAGS += -DMOZ_X11
 endif
 
-TestNetscapePlugin_libtestnetscapeplugin_la_SOURCES = \
+TestNetscapePlugin_libTestNetscapePlugin_la_SOURCES = \
 	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/DocumentOpenInDestroyStream.cpp \
 	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/EvaluateJSAfterRemovingPluginElement.cpp \
 	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/FormValue.cpp \
@@ -258,13 +258,13 @@
 	Tools/DumpRenderTree/TestNetscapePlugIn/unix/ForwardingHeaders/WebKit/npfunctions.h \
 	Tools/DumpRenderTree/TestNetscapePlugIn/unix/ForwardingHeaders/WebKit/npruntime.h
 
-TestNetscapePlugin_libtestnetscapeplugin_la_LDFLAGS = \
+TestNetscapePlugin_libTestNetscapePlugin_la_LDFLAGS = \
 	-rpath ${shell pwd}/$(top_builddir)/../unix/TestNetscapePlugin/.libs \
 	$(no_undefined) \
 	-avoid-version \
 	-module
 
-CLEANFILES += TestNetscapePlugin/libtestnetscapeplugin.la
+CLEANFILES += TestNetscapePlugin/libTestNetscapePlugin.la
 endif
 
 check-local:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to