Title: [88177] trunk/Tools
Revision
88177
Author
x...@webkit.org
Date
2011-06-06 11:51:32 -0700 (Mon, 06 Jun 2011)

Log Message

2011-06-06  Xan Lopez  <xlo...@igalia.com>

        Reviewed by Martin Robinson.

        [GTK] Enable feature/symbol detection in NWRT/GTK
        https://bugs.webkit.org/show_bug.cgi?id=62136

        Disable feature detection through DRT, since we don't support it,
        and set the libwebcore patch correctly so that symbol detection
        through 'nm' works.

        * Scripts/webkitpy/layout_tests/port/gtk.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (88176 => 88177)


--- trunk/Tools/ChangeLog	2011-06-06 18:43:40 UTC (rev 88176)
+++ trunk/Tools/ChangeLog	2011-06-06 18:51:32 UTC (rev 88177)
@@ -1,3 +1,16 @@
+2011-06-06  Xan Lopez  <xlo...@igalia.com>
+
+        Reviewed by Martin Robinson.
+
+        [GTK] Enable feature/symbol detection in NWRT/GTK
+        https://bugs.webkit.org/show_bug.cgi?id=62136
+
+        Disable feature detection through DRT, since we don't support it,
+        and set the libwebcore patch correctly so that symbol detection
+        through 'nm' works.
+
+        * Scripts/webkitpy/layout_tests/port/gtk.py:
+
 2011-06-06  Shishir Agrawal  <shis...@chromium.org>
 
         Reviewed by Tony Gentilcore.

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/gtk.py (88176 => 88177)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/gtk.py	2011-06-06 18:43:40 UTC (rev 88176)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/gtk.py	2011-06-06 18:51:32 UTC (rev 88177)
@@ -103,3 +103,20 @@
 
     def _is_redhat_based(self):
         return self._filesystem.exists(self._filesystem.join('/etc', 'redhat-release'))
+
+    def _path_to_webcore_library(self):
+        gtk_library_names = [
+            "libwebkitgtk-1.0.so",
+            "libwebkitgtk-3.0.so",
+            "libwebkit2gtk-1.0.so",
+        ]
+
+        for library in gtk_library_names:
+            full_library = self._build_path(".libs", library)
+            if os.path.isfile(full_library):
+                return full_library
+
+        return None
+
+    def _runtime_feature_list(self):
+        return None
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to